[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools] Re: MultiPageEditor example

The current MultiPageEditor (in com.ibm.eclipse.ui.part) provides minimal 
value-add over EditorPart.  It would be simpler for you to ignore it, and 
create your own TabFolder directly.
Alternatively, subclass MultiPageEditor, use getTabFolder(), and create 
your TabItems under it (all it's really doing for you here is creating the 
TabFolder).

Also note that you could use a CTabFolder with a style bit of SWT.BOTTOM 
to get the tabs at bottom, as is done with multi-docked views.

We are working on an improved MultiPageEditor.