Time for action – styling label providers
The IStyledLabelProvider
is used to style the representation of the tree viewer, as used by the Java outline viewer to display the return type of the method, and by the team's decorator when showing when changes have occurred.
- Add the
IStyledLabelProvider
interface to theTimeZoneLabelProvider
class, and create thegetStyledText
method. If the selected element is aMap.Entry
that contains aZoneId
, add the offset afterwards in brackets:public class TimeZoneLabelProvider extends LabelProvider implements IStyledLabelProvider { public StyledString getStyledText(Object element) { String text = getText(element); StyledString styledString = new StyledString(text); if (element instanceof ZoneId) { ZoneId zone = (ZoneId)element; ZoneOffset offset = ZonedDateTime.now(zone).getOffset(); styledString.append(" (" + offset + ")", StyledString.DECORATIONS_STYLER); } return styledString; } }
- In order to use the styled label provider, it has to be wrapped within a
DelegatingStyledCellLabelProvider
. Modify the constructor, called from the create method ofTimeZoneTreeView
, as follows:treeViewer.setLabelProvider( new DelegatingStyledCellLabelProvider( new TimeZoneLabelProvider(ir)));
- Run the Eclipse instance, open the Time Zone Tree View, and the offset should be shown, displayed in a different color:
- To change the
Font
used by the view, theTimeZoneLabelProvider
needs to implement theIFontProvider
interface. JFace'sFontRegistry
can be used to return an italicized version of the default font. Add aFontRegistry
parameter to theTimeZoneLabelProvider
constructor, and implement thegetFont
method as follows:public class TimeZoneLabelProvider extends LabelProvider implements IStyledLabelProvider, IFontProvider { private final ImageRegistry ir; private final FontRegistry fr; public TimeZoneLabelProvider(ImageRegistry ir, FontRegistry fr){ this.ir = ir; this.fr = fr; } public Font getFont(Object element) { Font italic = fr.getItalic(JFaceResources.DEFAULT_FONT); return italic; } // as before }
- Modify the
TimeZoneTreeView
to instantiate and pass in the globalFontRegistry
from theJFaceResources
class:// treeViewer.setLabelProvider( // new DelegatingStyledCellLabelProvider( // new TimeZoneLabelProvider(ir))); FontRegistry fr = JFaceResources.getFontRegistry(); treeViewer.setLabelProvider( new DelegatingStyledCellLabelProvider( new TimeZoneLabelProvider(ir, fr)));
- Run the Eclipse instance again, and now the time zones should be shown in an italic font.
What just happened?
By implementing the IStyledLabelProvider
interface and wrapping it with a DelegatingStyledCellLabelProvider
class, the style of the individual elements in the tree can be controlled, including any additions or style/colors of the item. The StyledText
can render the string in different styles.
Although DecorationsStyler
was used here, additional styles can be defined with the createColorRegistryStyler
method of the StyledString
class where the two arguments are keys in the global JFace ColorRegistry
.
While colors can be changed on a character-by-character basis, the Font
is shared for the entire string. That's because when the label is calculated, its size is calculated based on the assumption that the string is displayed in a single Font
.
It's generally good programming practice to have the content or label providers use resource managers that are passed in at construction time. That way, the code can be tested using automated tests or other mock resources. Whether using the Eclipse 3.x or the Eclipse 4.x programming model, decoupling where the resources come from is key to testing.
Pop quiz – understanding JFace
Q1. What methods are present on LabelProvider
?
Q2. What is the difference between the hasChildren
and getChildren
methods on the ContentProvider
class?
Q3. What is an ImageRegistry
used for?
Q4. How do you style entries in a TreeView
?
Have a go hero – adding images for regions
Now that the basics have been covered, try extending the example as follows:
- Update the plug-in with a number of flag icons, and then create entries for the image registry. (The name of the time zone can be used for the key, which will make accessing it easier.)
- Display the name of the region in italics, but the time zones themselves in bold font.