Now an InternalFrame with menus
[jalview.git] / src / jalview / jbgui / GPCAPanel.java
index 7fc21a9..a142d5b 100755 (executable)
@@ -23,7 +23,7 @@ import java.awt.event.*;
 import javax.swing.*;\r
 \r
 public class GPCAPanel\r
-    extends JPanel\r
+    extends JInternalFrame\r
 {\r
   JPanel jPanel2 = new JPanel();\r
   JLabel jLabel1 = new JLabel();\r
@@ -34,6 +34,16 @@ public class GPCAPanel
   protected JComboBox zCombobox = new JComboBox();\r
   FlowLayout flowLayout1 = new FlowLayout();\r
   BorderLayout borderLayout1 = new BorderLayout();\r
+  JMenuBar jMenuBar1 = new JMenuBar();\r
+  JMenu fileMenu = new JMenu();\r
+  JMenu saveMenu = new JMenu();\r
+  JMenuItem eps = new JMenuItem();\r
+  JMenuItem png = new JMenuItem();\r
+  JMenuItem print = new JMenuItem();\r
+  JMenuItem outputValues = new JMenuItem();\r
+  JMenu viewMenu = new JMenu();\r
+  protected JCheckBoxMenuItem showLabels = new JCheckBoxMenuItem();\r
+  JMenuItem bgcolour = new JMenuItem();\r
 \r
   public GPCAPanel()\r
   {\r
@@ -52,12 +62,15 @@ public class GPCAPanel
       yCombobox.addItem("dim " + i);\r
       zCombobox.addItem("dim " + i);\r
     }\r
+\r
+\r
+    setJMenuBar(jMenuBar1);\r
   }\r
 \r
   private void jbInit()\r
       throws Exception\r
   {\r
-    this.setLayout(borderLayout1);\r
+    this.getContentPane().setLayout(borderLayout1);\r
     jPanel2.setLayout(flowLayout1);\r
     jLabel1.setFont(new java.awt.Font("Verdana", 0, 12));\r
     jLabel1.setText("x=");\r
@@ -91,13 +104,73 @@ public class GPCAPanel
         xCombobox_actionPerformed(e);\r
       }\r
     });\r
-    this.add(jPanel2, BorderLayout.SOUTH);\r
+    fileMenu.setText("File");\r
+    saveMenu.setText("Save as");\r
+    eps.setText("EPS");\r
+    eps.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        eps_actionPerformed(e);\r
+      }\r
+    });\r
+    png.setText("PNG");\r
+    png.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        png_actionPerformed(e);\r
+      }\r
+    });\r
+    outputValues.setText("Output Values...");\r
+    outputValues.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        outputValues_actionPerformed(e);\r
+      }\r
+    });\r
+    print.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        print_actionPerformed(e);\r
+      }\r
+    });\r
+    viewMenu.setText("View");\r
+    showLabels.setText("Show Labels");\r
+    showLabels.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        showLabels_actionPerformed(e);\r
+      }\r
+    });\r
+    print.setText("Print");\r
+    bgcolour.setText("Background Colour...");\r
+    bgcolour.addActionListener(new ActionListener()\r
+    {\r
+      public void actionPerformed(ActionEvent e)\r
+      {\r
+        bgcolour_actionPerformed(e);\r
+      }\r
+    });\r
+    this.getContentPane().add(jPanel2, BorderLayout.SOUTH);\r
     jPanel2.add(jLabel1, null);\r
     jPanel2.add(xCombobox, null);\r
     jPanel2.add(jLabel2, null);\r
     jPanel2.add(yCombobox, null);\r
     jPanel2.add(jLabel3, null);\r
     jPanel2.add(zCombobox, null);\r
+    jMenuBar1.add(fileMenu);\r
+    jMenuBar1.add(viewMenu);\r
+    fileMenu.add(saveMenu);\r
+    fileMenu.add(outputValues);\r
+    fileMenu.add(print);\r
+    saveMenu.add(eps);\r
+    saveMenu.add(png);\r
+    viewMenu.add(showLabels);\r
+    viewMenu.add(bgcolour);\r
   }\r
 \r
   protected void xCombobox_actionPerformed(ActionEvent e)\r
@@ -111,4 +184,34 @@ public class GPCAPanel
   protected void zCombobox_actionPerformed(ActionEvent e)\r
   {\r
   }\r
+\r
+  public void eps_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
+\r
+  public void png_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
+\r
+  public void outputValues_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
+\r
+  public void print_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
+\r
+  public void showLabels_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
+\r
+  public void bgcolour_actionPerformed(ActionEvent e)\r
+  {\r
+\r
+  }\r
 }\r