My editor should have the following structure.
1) FirstParentPart 2) SecondParentPart 3) all shapes part My First parent edit part have the following code,
protected IFigure createFigure()
{
final Figure figure = new freeformlayer();
figure.setLayoutManager( new FreeformLayout() );
figure.setBorder( new MarginBorder( 3 ) );
figure.setForegroundColor( ColorConstants.black );
figure.setOpaque( false );
return figure;
}
My second edit part have the following code,
@Override
protected IFigure createFigure()
{
final Figure figure = new freeformlayer();
figure.setLayoutManager( new FreeformLayout() );
figure.setBorder( new LineBorder( 2 ) );
figure.setForegroundColor( ColorConstants.green );
figure.setOpaque( true );
return figure;
}
Editor file (InitializeViewer method)
getGraphicalViewer().reveal(getGraphicalViewer().getContents());
But while running, my second parent is not visible without setting bounds. my first parent fits to the editor, but my second parent does not. What went wrong? Any help would be appreciated