From 9b4647f1ae8c3f41163d0d4053504dab861d0c94 Mon Sep 17 00:00:00 2001 From: Matt Windsor Date: Mon, 7 Mar 2011 13:50:24 +0000 Subject: Emergency impending hard drive failure dump - lots of changes on the frontend, but they're all potentially controversial so I'm not pushing to master yet. Beginnings of show viewer. Application now run through demo menu, which allows for the links between modules to be tested. --- .../org/ury/show/viewer/LibraryControlPanel.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/uk/org/ury/show/viewer/LibraryControlPanel.java (limited to 'src/uk/org/ury/show/viewer/LibraryControlPanel.java') diff --git a/src/uk/org/ury/show/viewer/LibraryControlPanel.java b/src/uk/org/ury/show/viewer/LibraryControlPanel.java new file mode 100644 index 0000000..cf5eec2 --- /dev/null +++ b/src/uk/org/ury/show/viewer/LibraryControlPanel.java @@ -0,0 +1,33 @@ +package uk.org.ury.show.viewer; + + +import uk.org.ury.frontend.FrontendControlPanel; + + +/** + * Control panel for the demo system. + * + * @author Matt Windsor + * + */ + +public class LibraryControlPanel extends FrontendControlPanel +{ + + public + LibraryControlPanel () + { + super ("library_control_panel.xml"); + } + + + /** + * Go back to the previous module. + */ + + public void + back () + { + master.restoreModule (parent, prevCPanel); + } +} -- cgit v1.2.3