Hi there..
Long time ago, I got some challenge to create some MDI (Multiple Document Interface) application. Why I called it challenge? Because I must create it with Java and I didn’t have experience on using Swing. But thanks to Netbeans, it makes Swing gui development far easier.
Netbeans provided some tools for gui building. You just need to drag-and-drop, edit some properties, and adding some event-handling. Voila, your desktop application will be up and running. But there is a but. In MDI application, we’ll need a scrollable desktop pane. For your information, desktop pane is a home for all of child windows. If I dragged the child window outside the desktop pane, the desktop pane should automatically give scroll to facilitate it. Java have library to implement dekstop pane. It’s called JDesktopPane. But the usual JDesktopPane didn’t have support for auto-scrolling.
Gerald Nunn in Java World site write a way to conquer this deficiencies. He create some libraries that we can use to enhance the usual JDesktopPane. He called the object MDIDesktopPane. All we have to do are just download it, link it to our codes, and use it.
In Netbeans, these were I did:
- I extracted the sample code (library) into the same package with my gui package.
- Using gui builder tools provided by Netbeans, I created
JFrameand inside it, I addedJMenuBar,JItem, andJMenuItemas necessary. - Using gui builder, Netbeans will generate function called
initComponents. This function lists all of the variable declarations and gui setups for components added before. - In the
JFrameconstructor, theinitComponentsfunction will be called. In this area, we will added theMDIDesktopPaneinit. - Before that, I created
MDIDesktopPanedeclaration. It will not far from this:private MDIDesktopPane desktop = new MDIDesktopPane(); private JScrollPane scrollPane = new JScrollPane();
We need
JScrollPanebecause it will support the scrolling functions. - Then, after the
initComponentsfunction, I added theMDIDesktopPaneand theJScrollPaneto the frame.jMenuBar1.add(new WindowMenu(desktop)); scrollPane.getViewport().add(desktop); getContentPane().setLayout(new BorderLayout()); getContentPane().add(scrollPane,BorderLayout.CENTER);
FYI,
jMenuBar1was the variable name of myJMenuBar. It means I addedWindowMenuof theMDIDesktopto the menu bar.WindowMenuwas a class to control the display of all of the child menu like cascaded or tiled windows. - It’s done. It’s simple, right.
With this MDIDesktopPane and WindowMenu class, I finally conquer the scrollable desktop pane. Thanks to Gerald Nunn for his great class.

Comments
Shrinath M Aithal (19/05/2009)
dude, I respect your knowledge, and its great that you went deep into internet and did some work..
But there is an “Easier” way of doing this in netbeans..
If all you want is a scrollable JDesktopPane in netbeans, here goes how to :
1. create a jscrollpane using gui builder.
2. insert your desktop pane into that scrollpane..
3. clikc on the desktop pane and set the properties – “maximum size”, “minimum size”, “preferred size” as same.. like if max size you want to set is 1920×1080, then set min size and preferred size also as 1920,1080.
There you are.. immediatly the scrollbar appears and your desktop pane is scrollable..
you can then insert any component to desktop pane.. it holds good..
if you have any internal frames going out , then just increase the preferred size and max size, you’ll be good..
you can play with those properties and find out more things..
if anything is wrong in my post, please correct me..
http://arifn.web.id/blog/wp-content/plugins/smilies-themer/onionhead/kucing_kagum.gif
———shrinath_m2
sidudun (20/05/2009)
dear Shrinath..
thanks for your comment..
I’m aware of this “Easier” way few moments after I wrote this post. As a matter of fact, I used it too in my
JInternalFrame. One of the reasons I still use the way above is that the library hasWindowMenuclass that can control the display of all child windows (cascaded or tiled).I tried your way after I read your comment. I tried to add
JInternalFrameinto theJDesktopPane. But the scrolling bar didn’t auto expand when I drag theJInternalFrameoutside theJDesktopPane. Did it work on you? Would you mind share it with me?Thank you before..
Robin (07/12/2009)
The trick to making the “easier” way work is to override reshape() in JInternalFrame. In your subclass, get the parent (be sure to do a null check!), then you can resize the parent if needed by changing both its preferredSize and its size. I did this and it works. However, resizing the parent from within the child document breaks the natural component hierarchy in a way I don’t like. I’d therefore already planned to subclass JDesktopPane in my next version.
So I really appreciate your post, and I think I will try using MDIDesktopPane instead because I’m also not happy with the Default iconization in Swing and was considering writing my own code for that.
jaycakep (04/06/2009)
thanx dude its very helpfull
sidudun (04/06/2009)
u’re welcome..
glad i could help.. ^^