Creating an expand panel type interface

Hi,

I'm looking for some advice about creating an expand panel type interface using Swing / AWT. I want to achieve some properties / options panels which look sort of like the following (from Swing Sightings) :

Panel with thick title including rounded corners and an image (search, selections, database panels) -

http://java.sun.com/products/jfc/tsc/sightings/S23/kbforge/sun01.png

Similar to the above, but with a gradient and drop shadow (span, alignment, insets panels) -

http://java.sun.com/products/jfc/tsc/sightings/S21/abeille/login_dev.png

Ability to collapse / expand (search, selections, suggestions panels) - http://java.sun.com/products/jfc/tsc/sightings/S21/aduna/query-answer-2.png

Having recently been using SWT, I know there is an ExpandBar control but I don't think there is a Swing equivalent?

From the screenshots listed, I'm particularly interested in achieving a panel with the rounded corners and image in the first screenshot. The drop shadow and gradient would also be nice if possible, with the collapse / expand behaviour a bonus extra

Does anyone have any hints (or links) on how to achieve this goal?

All advice appreciated

Cheers

Dan

[1245 byte] By [danmec1a] at [2007-11-27 8:51:28]
# 1
did you take a look on LAF (look and feel) stuff?
calvino_inda at 2007-7-12 21:04:43 > top of Java-index,Java Essentials,Java Programming...
# 2
I have played with look and feels, but it's more the controls to make up the panels in the first place.I mean I know how to set borders on JPanels etc, but not how to achieve a big thick title with an image.CheersDan
danmec1a at 2007-7-12 21:04:43 > top of Java-index,Java Essentials,Java Programming...
# 3
maybe if you create your own border with overriding paint method and everything, it could work
calvino_inda at 2007-7-12 21:04:43 > top of Java-index,Java Essentials,Java Programming...