Link to home
Start Free TrialLog in
Avatar of TheDownsizer
TheDownsizer

asked on

making toolbar radio buttons, but with ordinary button look and feel

Hello,

Does anyone have any suggestions for making a JToolBar's buttons behave like grouped radio buttons, but have them look like regular buttons using AbstractAction objects? What I'm trying to do is have a button continue to look depressed after it is clicked. Then if they click another button on the toolbar, it then stays depressed and the former button becomes unpressed.

Thanks.
Avatar of jimmack
jimmack

Would switching the icon using setIcon() and setPressedIcon() be adequate?

I don't think that the 3d effect of the button would look pressed, but it's a thought ;-)
Avatar of TheDownsizer

ASKER

I want to stay away from having to create icons for the buttons, if possible.
Thought so :-(

If you want the "pressed" effect to stay, I don't think there's an easy way to do that (certainly nothing as easy as the icons).  I'm not exactly sure how you could do it.  I suspect that you'd need to start digging around in the AbstractButton class, probably extending it for your own purposes and overriding (if possible) the way it displays itself.

Just hang around for a while, one of the other experts is sure to be able to provide some more detail.

At this time of day, objects should be the next heavyweight on the scene ;-)
I tried wrapping an Action with a JRadioButton and then adding the button to the tool bar, like so:

      JRadioButton j = new JRadioButton(new ModeAction( "mode A", new ImageIcon( "images/modeA.gif" )));
      toolBar.add( j );

It uses an icon, but unfortunately the button on the toolbar looks like a radio button with the label "mode A" to the right of it instead of just showing the icon "modeA.gif".

Any thoughts on how to get just the icon to show instead? I'm thinking maybe once the radio button displays only the icon, the button will probably stay looking pressed after clicking it since it is a radio button.

Avatar of CEHJ
I'm probably not clear enough in my posts, but grouping the button's isn't my problem.

What I'd like to do is get rid of the radio button look by using a button icon. (In a prior post I wrote "I want to stay away from having to create icons for the buttons", but I meant to say I don't want to create *additional* icons for the pressed look and swap different icons in and out, unless it was necessary.) Once the button is clicked, I want the appearance to stay as the shaded, pressed look.

I am using an Action object for a JRadioButton, but the radio button does not display the icon that is provided from the Action object. (I chose an Action object because I may add it to a menu and it makes it simple to do.) It displays the radio button and text. Any ideas how to get the JRadioButton to display the image rather than the text and radio-button from the Action? Thanks.



ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hey CEHJ -

I appreciate your help, but I guess I am just not clear enough about what I want to do. The sample you posted is close to the result I'm looking for, but I purposely wrote the ModeAction class (derived from AbstractAction) to use for the toolbar buttons so it can be reused for corresponding menu items in the future. When I create a JRadioButton from the ModeAction, the resulting component uses the default radio button l&f, rather than showing the icon. Since it's the default l&f, I can't get the pressed button look to take effect.
I ended up creating toggle buttons created from ModeActions and setting it's text to empty strings. Perhaps not the greatest solution but it does the job:

      ModeAction ma = new ModeAction( "A", new ImageIcon( "A.gif" ));
      JToggleButton button = new JToggleButton( ma );
      button.setText( "" );

That leaves me with a different problem of synchronizing the toolbar with corresponding menu items, which I will open a new question for some other time.

Thanks for the guidance.
OK - sorry i couldn't be more accurate ;-)