How do you make a Swing/JFace/SWT GUI addressable? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T23:35:08Z http://stackoverflow.com/feeds/question/302606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable 5 How do you make a Swing/JFace/SWT GUI addressable? Nicolas Marchildon 2008-11-19T16:59:46Z 2008-11-22T13:52:21Z <p>I have a "fat" GUI that it getting fairly complex, and I would like to add links from a place to an other, and add back/forward buttons to ease navigation. It seems to me that this would be easier if my application was addressable: each composite could have its URI, and links would use that URI.</p> <p>Are there design patterns applicable to this problem?</p> <p>I could just look at the source code for Firefox or Eclipse, but these are huge projects and it would take a good amount of time making sense of it, so I'm asking here. Is there a simpler example somewhere?</p> <p>Of course it would be simpler if I had build a web app in the first place, but I'm not going to rewrite this huge app from scratch anytime soon.</p> http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable/302634#302634 1 Answer by AdamC for How do you make a Swing/JFace/SWT GUI addressable? AdamC 2008-11-19T17:08:28Z 2008-11-19T17:08:28Z <p>My solution for doing things like this usually involves the <a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">listener pattern</a>. In a nutshell, you reduce coupling by providing a way to send and receive events to and from interested parties (composites in this case). This is fairly easy to implement, even when retrofitting. This way, your events and parties can change without changing the dependent code.</p> http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable/302660#302660 0 Answer by Outlaw Programmer for How do you make a Swing/JFace/SWT GUI addressable? Outlaw Programmer 2008-11-19T17:16:57Z 2008-11-19T17:16:57Z <p>You could build a "global" registry that maps unique IDs to objects (or maybe class names). These objects could be JPanels, for instance. When the user clicks on a link or button, some Controller is notified with the key of the new page to be displayed. This Controller could create that JPanel and place it in the application's frame.</p> http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable/302756#302756 0 Answer by mmyers for How do you make a Swing/JFace/SWT GUI addressable? mmyers 2008-11-19T17:45:20Z 2008-11-19T17:45:20Z <p>In Swing, you might use a <a href="http://java.sun.com/javase/6/docs/api/java/awt/CardLayout.html" rel="nofollow">CardLayout</a>. You can have each "page" be a card, and the name of the card (chosen when adding cards to the layout) would be equivalent to the URI you want.</p> <p>Example:</p> <pre><code>String PAGE_1_KEY = "page 1"; String PAGE_2_KEY = "page 2"; // as many keys as you need JFrame frame = ...; frame.setLayout(new CardLayout()); frame.add(createPage1(), PAGE_1_KEY); frame.add(createPage2(), PAGE_2_KEY); // etc. </code></pre> <p>Then in your buttons' action listeners, you would call</p> <pre><code>((CardLayout)frame.getLayout()).show(frame, PAGE_1_KEY); // or whichever </code></pre> http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable/311362#311362 0 Answer by Rastislav Komara for How do you make a Swing/JFace/SWT GUI addressable? Rastislav Komara 2008-11-22T13:52:21Z 2008-11-22T13:52:21Z <p>My last approach included global manager and registration of links. Each part of UI was able to name yourself uniquely and register. The global manager knows about each one and then use some dirty work to bring this part visible. The back/forward navigation was made by special undo/redo manager. Each "display" was able to obtain navigation manager and register its "undo" event. It was hard work to make it work, but the resulting feature was quite useful. We discussed about using some simple JNDI service to locate and name UI parts. It may be useful in linking too.</p>