IArticle article = (IArticle)aItem.getObject();
lbPin = new ArticlePinControl(article);
add(lbPin, cc.xy(10, 2));
lbUnread = new ArticleReadControl(article);
add(lbUnread, cc.xy(8, 2));
// Setup the tooltip and delegate the mouse events to the parent (this panel)
IFeed feed = article.getFeed();
lbTitle.setToolTipText(feed == null ? null : feed.getTitle());