JAL-1807 update
[jalviewjs.git] / unused / appletgui / JVDialog.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.appletgui;
22
23 import java.awt.BorderLayout;
24 import java.awt.FlowLayout;
25 import java.awt.event.ActionEvent;
26 import java.awt.event.ActionListener;
27
28 import javax.swing.JButton;
29 import javax.swing.JDialog;
30 import javax.swing.JFrame;
31 import javax.swing.JPanel;
32
33 public class JVDialog extends JDialog implements ActionListener
34 {
35   AlignmentPanel ap;
36
37   JPanel buttonPanel;
38
39   JButton ok = new JButton("Accept");
40
41   JButton cancel = new JButton("Cancel");
42
43   boolean accept = false;
44
45   JFrame owner;
46
47   public JVDialog(JFrame owner, String title, boolean modal, int width,
48           int height)
49   {
50     super(owner, title, modal);
51     this.owner = owner;
52
53     height += owner.getInsets().top + getInsets().bottom;
54
55     setBounds(owner.getBounds().x + (owner.getSize().width - width) / 2,
56             owner.getBounds().y + (owner.getSize().height - height) / 2,
57             width, height);
58   }
59
60   void setMainPanel(JPanel panel)
61   {
62     add(panel, BorderLayout.NORTH);
63
64     buttonPanel = new JPanel(new FlowLayout());
65
66     buttonPanel.add(ok);
67     buttonPanel.add(cancel);
68     ok.addActionListener(this);
69     cancel.addActionListener(this);
70
71     add(buttonPanel, BorderLayout.SOUTH);
72
73     pack();
74
75   }
76
77   public void actionPerformed(ActionEvent evt)
78   {
79     if (evt.getSource() == ok)
80     {
81       accept = true;
82     }
83
84     setVisible(false);
85   }
86
87 }