Hi list!
I'm trying to create a UI very similar with the Eclipse or Netbeans workspace: one JTree at the left side with items, and a main panel where the views are organized using tabbed panels.
To implement something like that, using the VLDocking API I must write:
How can I do that using the spring-richclient-vldocking module? The VLDockingLayoutManager default implementation has only the following way of adding components:Code:DockingDesktop desk = new DockingDesktop(); desk.split(treePanel, contentPanel, DockingConstants.SPLIT_LEFT);
In another words, there isn't a declarative way of adding components using the split() method, right?Code:public void addDockable(DockingDesktop desktop, Dockable dockable) { desktop.addDockable(dockable); }
Did anyone try something similar?
Thanks in advance! (and sorry my poor english...)


Reply With Quote