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?

link|improve this question

40% accept rate
3  
What functionality don't you need? You can invoke setUndecorated(true) on your JFrame, but regardless, you'll need a container object to render your components with! – mre Jun 27 '11 at 16:02
Toolbars, menubar, child components, dragging ... – Mikhas Jun 27 '11 at 16:07
@Mikhas, Then it sounds like invoking the method on your JFrame will 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
3  
Here's an example. – trashgod Jun 27 '11 at 16:11
@trashgod, +1, good ole Java2D...very cool!:) – mre Jun 27 '11 at 16:12
show 2 more comments
feedback

3 Answers

If you don't want the functions a JFrame provides and just want floating graphics then use a JWindow. It does not have window decorations.

Example with plain label in a JWindow:

public static void main(String args[]) {
    JWindow w = new JWindow();
    w.add(new JLabel("Testing a Window!!!!!"));
    w.setLocation(300, 300);
    w.pack();
    w.setVisible(true);
}
link|improve this answer
2  
Um, I think you need a top-level container. – trashgod Jun 27 '11 at 16:19
@Trashgod, I assume you could have an invisible Frame as the owner for the Window. I haven't tried it myself though. – jzd Jun 27 '11 at 17:54
1  
@trashgod, you got me curious so I just tried and added an example. The Window does need an owner, but that owner does not need to be visible. – jzd Jun 27 '11 at 17:59
@jzd why AWT Containers, is there something specific – mKorbel Jun 27 '11 at 18:23
@mKorbel, the question was how to avoid a JFrame. And want to extend/use instead that has less functionality. It is a strange question, but a Window fits the requirements. – jzd Jun 27 '11 at 18:46
show 6 more comments
feedback

All in all, you'll need to familiarize yourself with Java2D, as demonstrated by @trashgod's comment. In particular, Composting Graphics. And understand that using a top-level container to render Swing components is always required.

NOTE

If @trashgod provides an answer, I'll gladly remove mine and up-vote his accordingly.

link|improve this answer
feedback

Depend on what you need. Probably an undecorated JFrame is all you need. I don't really understand your argument about "all the functionality I don't need", because, at different levels you'll get it anyway, either by another component or by the underlaying OS. You can't get rid of that.

Now addressing your question you can always use a JDialog

link|improve this answer
1  
JFrame leave a button in the taskbar (uncool); (J)Window is usually the one of choice (imo) – bestsss Jun 27 '11 at 17:09
1  
Yeap, much better than a (J)Window is a JDialog wich doesn't leave the button in the taskbar either and still toplevel containter – OscarRyz Jun 27 '11 at 18:20
JDialog w/o parent Frame uses a shared swing frame (which can be obtained via new JDialog().getParent() ) – bestsss Jun 27 '11 at 18:37
It is still not clear what does the OP means with a lot of functionality I dont need – OscarRyz Jun 27 '11 at 19:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.