show/hide this revision's text 2

When I was first learning Java we had to make Yahtzee (yawn) 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 extending Swing components, of course, is to have the ability to add support for keyboard shortcuts and other accessibility features that you can' do just by having a paint() 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 (below) you can see that each Die button is drawn dynamically, based on its value.

alt text
alt text
alt text

I haven't looked at this code in a while but I have a feeling there was something super tricky that gave me quite a few headaches trying to figure out. That's why I'm going to post the whole source code at the end of this post. But here's some basic steps:

  1. Create a class that extends JComponent
  2. Call parent constructor super() in your constructors
  3. It's a button so you'll need mouse input...make sure you class implements MouseListener
  4. Put this in constructor:
    enableInputMethods(true);
    addMouseListener(this);
  5. Add these to your object (important!)
    public Dimension getPreferredSize()
    public Dimension getMinimumSize()
    public Dimension getMaximumSize()
  6. Add this method to your class now: public void paintComponent(Graphics g)

The amount of space you have to work with when drawing your button is defined by getPreferredSize(). Well, assuming getMinimumSize() and getMaximumSize() 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.

show/hide this revision's text 1

When I was first learning Java we had to make Yahtzee (yawn) 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 extending Swing components, of course, is to have the ability to add support for keyboard shortcuts and other accessibility features that you can' do just by having a paint() method print a pretty picture. It may not be done the best way however, but it may be a good starting point for you.

alt text
alt text
alt text

I haven't looked at this code in a while but I have a feeling there was something super tricky that gave me quite a few headaches trying to figure out. That's why I'm going to post the whole source code at the end of this post. But here's some basic steps:

  1. Create a class that extends JComponent
  2. Call parent constructor super() in your constructors
  3. It's a button so you'll need mouse input...make sure you class implements MouseListener
  4. Put this in constructor:
    enableInputMethods(true);
    addMouseListener(this);
  5. Add these to your object (important!)
    public Dimension getPreferredSize()
    public Dimension getMinimumSize()
    public Dimension getMaximumSize()
  6. Add this method to your class now: public void paintComponent(Graphics g)

The amount of space you have to work with when drawing your button is defined by getPreferredSize(). Well, assuming getMinimumSize() and getMaximumSize() 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.