Is there a way to create a JButton
with your own button graphic and not just with an image inside the button?
If not, is there another way to create a custom JButton
in java?
original title: "swing - Creating a custom JButton in Java"
Is there a way to create a JButton
with your own button graphic and not just with an image inside the button?
If not, is there another way to create a custom JButton
in java?
ボタン内の画像だけでなく、独自のボタングラフィックでJButtonを作成する方法はありますか?そうでない場合、JavaでカスタムJButtonを作成する別の方法はありますか?
これは翻訳後の要約です。完全な翻訳を表示する必要がある場合は、「翻訳」アイコンをクリックしてください。
When I was first learning Java we had to make Yahtzee and I thought it would be cool to create custom Swing components and containers instead of just drawing everything on one
JPanel
. The benefit of extendingSwing
components, of course, is to have the ability to add support for keyboard shortcuts and other accessibility features that you can't do just by having apaint()
method print a pretty picture. It may not be done the best way however, but it may be a good starting point for you.Edit 8/6 - If it wasn't apparent from the images, each Die is a button you can click. This will move it to the
DiceContainer
below. Looking at the source code you can see that each Die button is drawn dynamically, based on its value.Here are the basic steps:
JComponent
super()
in your constructorsMouseListener
Put this in the constructor:
Override these methods:
Override this method:
The amount of space you have to work with when drawing your button is defined by
getPreferredSize()
, assuminggetMinimumSize()
andgetMaximumSize()
return the same value. I haven't experimented too much with this but, depending on the layout you use for your GUI your button could look completely different.And finally, the source code. In case I missed anything.
Yes, this is possible. One of the main pros for using Swing is the ease with which the abstract controls can be created and manipulates.
Here is a quick and dirty way to extend the existing JButton class to draw a circle to the right of the text.
Note that by overriding paintComponent that the contents of the button can be changed, but that the border is painted by the paintBorder method. The getPreferredSize method also needs to be managed in order to dynamically support changes to the content. Care needs to be taken when measuring font metrics and image dimensions.
For creating a control that you can rely on, the above code is not the correct approach. Dimensions and colours are dynamic in Swing and are dependent on the look and feel being used. Even the default Metal look has changed across JRE versions. It would be better to implement AbstractButton and conform to the guidelines set out by the Swing API. A good starting point is to look at the javax.swing.LookAndFeel and javax.swing.UIManager classes.
http://docs.oracle.com/javase/8/docs/api/javax/swing/LookAndFeel.html
http://docs.oracle.com/javase/8/docs/api/javax/swing/UIManager.html
Understanding the anatomy of LookAndFeel is useful for writing controls: Creating a Custom Look and Feel
You could always try the Synth look & feel. You provide an xml file that acts as a sort of stylesheet, along with any images you want to use. The code might look like this:
From there, go on and add your JButton like you normally would. The only change is that you use the setName(string) method to identify what the button should map to in the xml file.
The xml file might look like this:
The bind element there specifies what to map to (in this example, it will apply that styling to any buttons whose name property has been set to "dirt").
And a couple of useful links:
http://javadesktop.org/articles/synth/
http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/synth.html
I'm probably going a million miles in the wrong direct (but i'm only young :P ). but couldn't you add the graphic to a panel and then a mouselistener to the graphic object so that when the user on the graphic your action is preformed.
I haven't done SWING development since my early CS classes but if it wasn't built in you could just inherit
javax.swing.AbstractButton
and create your own. Should be pretty simple to wire something together with their existing framework.