This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Swing / AWT / SWT and the fly likes Problem with JToolBar Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Problem with JToolBar" Watch "Problem with JToolBar" New topic
Author

Problem with JToolBar

Igor Stojanovic
Ranch Hand

Joined: Feb 18, 2005
Posts: 58
Hi,

I writing my text editor in Java, something very similar to Notepad but with more funcionality...i would like to have floatable toolbars which behave same as in other aplications like in Word,so far i have created 3 toolbars and the problem is when user selects and drags out 1 of them for example 2. one in middle last 2 toolbars move to the left end, and now when user closes opened (2. toolbar) he gets back under menu bar but on last postion...I am not sure if I explained it right but I will try to "draw it" down:


---------------------MENU BAR------------------------
|1.FIRST_TOOLBAR_HERE|2.TOOLBAR_HERE|3.TOOLBAR_HERE|


now i take out (drag it) second toolbar

and it looks like this now

---------------------MENU BAR------------------------
|1.FIRST_TOOLBAR_HERE|3.TOOLBAR_HERE|


|2.TOOLBAR_HERE|
-this one somewhere on screen


-after I close my second tool bar it looks like this

---------------------MENU BAR------------------------
|1.FIRST_TOOLBAR_HERE|3.TOOLBAR_HERE||2.TOOLBAR_HERE|


Problem is that now 3. toolbar is infront of 2. which has no sence


How can I fix this problem and keep toolbars floatable at same time?


Thx in advance


Igor Stojanovic
Craig Wood
Ranch Hand

Joined: Jan 14, 2004
Posts: 1535
In the JToolBar api discussion section, second paragraph there is a recommendation for obtaining proper docking behavior. Try this
Igor Stojanovic
Ranch Hand

Joined: Feb 18, 2005
Posts: 58
Thx a lot !

I solved my problem .
 
jQuery in Action, 2nd edition
 
subject: Problem with JToolBar
 
Similar Threads
Scrollable / Collapsible ToolBar
Problem in Opening JPopupMenu
Preventing Floating ToolBar to be attached in other regions
Status Bar
FBNS: Need to provide menu- and toolbar items for all actions ?