enter image description here

In this image taken from eclipse, "Build Automatically" shows a tick mark without a checkbox. How can I create a similar effect to this with Java JCheckBoxMenuItems, where only the tickmark and not the checkbox are visible?

link|improve this question

33% accept rate
Note: Eclipse isn't built with Swing, so it's not immediately translatable. – skaffman Jul 4 '11 at 17:52
@skaffman: what graphic library has been used to write eclipse? – Heisenbug Jul 4 '11 at 21:51
@0verbose: SWT (eclipse.org/swt) – skaffman Jul 4 '11 at 21:53
don't invent visually inconsistent ui - the appearance of the menu is controlled by the LAF and (usually) what the user is accustomed to. – kleopatra Jul 5 '11 at 8:11
feedback

3 Answers

JCheckBoxMenuItem extends from AbstractButton so you should be able to provide custom Icons for the appropriate set???Icon methods.

link|improve this answer
by anonymous up-voter +1 – mKorbel Jul 4 '11 at 22:09
As an aside, com.apple.laf.AquaLookAndFeel actually uses ✔ in the UI default for CheckBoxMenuItem.checkIcon. – trashgod Jul 4 '11 at 22:23
@mKorbel, whats with all the "by anonymous up-voter" comments? If you upvote then make a comment explaining why (if you wish). If you don't upvote then there is no need for a comment like that. – camickr Jul 5 '11 at 0:43
@camickr if it's annoying, could change that with some another empty words, that my respect in cases wheh all the words are useless, I'm who I'm, maybe my wrong decision ..., and not for all poster in this forum :-) – mKorbel Jul 5 '11 at 14:34
feedback

The appearance is defined by BasicMenuItemUI, typically unique to each Look & Feel. You can supply your own variation that overrides paintMenuItem(). As doing so will violate the user's preferred Look & Feel, you'll have to decide if it's worth the effort.

Addendum: @camickr's Icon idea is more elegant, but you can always put a ✔ (U+2714) in the menu's text.

link|improve this answer
1  
or JToggleButton with Icon +1 – mKorbel Jul 4 '11 at 20:14
1  
never a good idea to subclass an ui-delegate (too much work with questionable outcome). Even if you do, you would have to target on a concrete laf (not basicXX). Doubt that the unicode mark would appear properly aligned .. the menu layout can barely handle icons – kleopatra Jul 5 '11 at 8:07
@kleopatra: Your are right on both counts. Possibly, a rendering of the glyph might make a nice icon. – trashgod Jul 5 '11 at 15:32
feedback

you can extend JCheckbox and override paintComponent()

link|improve this answer
-1, What does a JTextField have to do with a JCheckBoxMenuItem? You wouldn't use a text field for this, components added to a menu has special functionality, that is why you don't just use a JCheckBox. – camickr Jul 4 '11 at 21:12
I meant JCheckBox ofcouse. I've edited post – Penkov Vladimir Jul 5 '11 at 4:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.