Hello All,
I would like to know is it possible to create an interface like this
using Java? Shown at this link:
http://i71.photobucket.com/albums/i140/carpinate/DERSGUI.jpg
How would I go about coding the outside of the interface to be a
rectangle with rounded corners?
Any useful websites or tutorials to help explain this?
Thanx,
~ Floetic ~
Knute Johnson - 03 Mar 2008 07:03 GMT
> Hello All,
>
[quoted text clipped - 10 lines]
>
> ~ Floetic ~
I don't think that is possible with Java.

Signature
Knute Johnson
email s/nospam/knute/
Karsten Lentzsch - 03 Mar 2008 08:41 GMT
> I would like to know is it possible to create an interface like this
> using Java? Shown at this link:
[quoted text clipped - 4 lines]
> rectangle with rounded corners?
> Any useful websites or tutorials to help explain this?
Google "Java transparent windows" and you'll get some
pointers how to do this: 1) using JNI, 2) with a hack,
3) with the recently used Java core feature.
-Karsten
mearvk - 04 Mar 2008 10:33 GMT
> Hello All,
>
[quoted text clipped - 10 lines]
>
> ~ Floetic ~
Look into custom borders. When java paints its GUIs, one of the steps
is paintBorders. If you subclass a JFrame and override that method
you might have some luck.
John - 10 Mar 2008 19:28 GMT
> Hello All,
>
[quoted text clipped - 10 lines]
>
> ~ Floetic ~
You might look at "Swing Hacks", an O"Reilly book by Marinacci and
Adamson.