I'd like to create a custom swing component such as a desktop widget which does not require a JFrame (or to extend it) to be printed on the screen.
I don't want to extend the JFrame because my component is really simple and JFrame implements a lot of functionality I dont need.
Who do I start? Which class should I extend?
Many Thanks
EDIT ---------------------------------------
Thanks guys!
I'll check the references you sent. Also, is it possible to java to draw on the screen without swing API?
setUndecorated(true)on yourJFrame, but regardless, you'll need a container object to render your components with! – mre Jun 27 '11 at 16:02JFramewill do the job, although I don't understand the "child components" part...Anyway, if you wanted to add more customization to your frame, consider reading How to Create Translucent and Shaped Windows – mre Jun 27 '11 at 16:10