lbDate.setFont(font);
add(lbDate, cc.xy(6, 2));
if (aItem.getObject() instanceof IArticle)
{
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());
DelegatingMouseListener ml = new DelegatingMouseListener(lbTitle, false, 2);
lbTitle.addMouseListener(ml);
}