The Twitter team has approved TwitNotes as an “official” Twitter application so from v. 1.0.2 the source will show up as “from TwitNotes” as shown below.

The Twitter team has approved TwitNotes as an “official” Twitter application so from v. 1.0.2 the source will show up as “from TwitNotes” as shown below.

So it appears you can actually set the row height of a SWT table despite me previously saying you couldn’t. The caveat is that it cannot be set on a per row basis. Row height is set using a Listener for SWT.MeasureItem and then setting the height property of the supplied event object as shown below.
// resize the row height using a MeasureItem listener
table.addListener(SWT.MeasureItem, new Listener() {
public void handleEvent(Event event) {
// height cannot be per row so simply set
event.height = 67;
}
});
If need be you could compute the actual height using the GC.stringExtent(String).y and simply set to the biggest value you encounter.
Information from Custom Drawing Table and Tree Items at Eclipse.org.
As mentioned in the documentation TwitNotes is extensible using extension points. One of the extensions make it possible to contribute so called submit area providers that is functionality that can submit information. The supplied Twitter submit area provider is one example but if you add another the UI is simply augmented with a tabbed folder as shown below where there’s two providers present.

This article and some valuable IM’ing with Bob Balfe helped me solve my bundle dependency issues. Thanks again Bob.
Getting Started with OSGi: Dependencies between Bundles @ Eclipsezone.com
TwitNotes v. 1.0.1 is now available from the update site. This release solves the following issues:
To update go to File/Application/Install and select “Search for updates of the currently installed features” and follow the directions on screen (almost like installing in the first place).
Comments welcome to this post.
Vowe posted on how to install TwitNotes on Mac. Thanks.
Hat off to Vaughan Rivett for posting a comprehensive video on how to install TwitNotes incl. editing the plugin_customization.ini file for those having that need.
As reported on the comments to my earlier post there is an issue with the text not wrapping on Windows XP. The good thing is that I have reproduced the issue on Notes 8.0.1 on Windows XP in a VMWare machine so I can fix the issue. No guarantee as to when though I have a couple of conference calls this week… ๐
If you’re running XP and not having the text wrap issue please let me know by commenting.
TwitNotes v. 1.0 is ready for installation via a remote update site. Installation and configuration instructions can be found at http://lekkimworld.com/twitnotes. Be sure to read the Configuration section on how to configure your Twitter credentials.
Post questions as comments below. I hope the plugin works for you as well… ๐

TwitNotes is ready for distribution and I have the update site all lined up. Only problem holding me back releasing it is an issue I have with conflicting components from my sidebar plug-in and the Lotus Expeditor platform. My plug-in needs ship with Apache Commons HttpClient v. 3.1 and Apache Commons Lang v. 2.3. For some reason my versions of the components wont deploy to Notes 8 since the components conflict with the versions supplied with Lotus Expeditor. The funny thing is that it works perfectly when launching Notes from the Eclipse IDE.
If anyone has any ideas why this might be so please let me know. Maybe a feature patch? Other ideas?