I have a simple rectangle figure with a label and try to give a default
font to it. Later it should be possible to change the font in the
Appearance section of the Eclipse property view.
The following code in the figure's editpart sets the font, but it can't
be changed later:
protected NodeFigure createNodeFigure() {
NodeFigure figure = createNodePlate();
figure.setLayoutManager(new StackLayout());
IFigure shape = createNodeShape();
figure.add(shape);
shape.setFont(FIGURE_FONT);
contentPane = setupContentPane(shape);
return figure;
}
Thanks,
Michael