How can I create multiple floatable/dockable toolbars/palettes/views which stay inside the application frame (unlike Swing JToolBars)? Is it poosible to have such a framework for AWT also?
Created May 4, 2012
As far as dealing multiple toolbars goes, if you want to stick with JToolBar... You will need to create a new ToolBarUI and override public void setFloating(boolean b, Point p), protected void dragTo(Point position, Point origin), and protected void floatAt(Point position, Point origin) to deal with adding multiple toolbars to a single constraint.