2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / javax / swing / JDialog.java
blob11f27b239e0ee53f7e5316a0b01dd3abc0fa4060
1 /* JDialog.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package javax.swing;
41 import java.awt.BorderLayout;
42 import java.awt.Component;
43 import java.awt.Container;
44 import java.awt.Dialog;
45 import java.awt.Dimension;
46 import java.awt.Frame;
47 import java.awt.Graphics;
48 import java.awt.LayoutManager;
49 import java.awt.event.KeyEvent;
50 import java.awt.event.WindowEvent;
51 import javax.accessibility.Accessible;
52 import javax.accessibility.AccessibleContext;
54 /**
55 * Unlike JComponent derivatives, JDialog inherits from
56 * java.awt.Dialog. But also lets a look-and-feel component to its work.
58 * @author Ronald Veldema (rveldema@cs.vu.nl)
60 public class JDialog extends Dialog implements Accessible
62 public final static int HIDE_ON_CLOSE = 0;
63 public final static int DISPOSE_ON_CLOSE = 1;
64 public final static int DO_NOTHING_ON_CLOSE = 2;
66 protected AccessibleContext accessibleContext;
68 private int close_action = HIDE_ON_CLOSE;
70 /***************************************************
73 * constructors
76 *************/
78 JDialog(Frame owner)
80 this(owner, "dialog");
83 JDialog(Frame owner,
84 String s)
86 this(owner, s, true);
89 JDialog(Frame owner,
90 String s,
91 boolean modeld)
93 super(owner, s, modeld);
96 JDialog(Frame owner,
97 // String s,
98 boolean modeld)
100 super(owner, "JDialog", modeld);
102 JDialog(Dialog owner)
104 this(owner, "dialog");
107 JDialog(Dialog owner,
108 String s)
110 this(owner, s, true);
113 JDialog(Dialog owner,
114 String s,
115 boolean modeld)
117 super(owner, s, modeld);
121 /***************************************************
124 * methods, this part is shared with JDialog, JFrame
127 *************/
130 private boolean checking;
131 protected JRootPane rootPane;
133 void setLocationRelativeTo(Component c)
138 protected void frameInit()
140 super.setLayout(new BorderLayout(1, 1));
141 getRootPane(); // will do set/create
144 public Dimension getPreferredSize()
146 Dimension d = super.getPreferredSize();
147 return d;
150 JMenuBar getJMenuBar()
151 { return getRootPane().getJMenuBar(); }
153 void setJMenuBar(JMenuBar menubar)
154 { getRootPane().setJMenuBar(menubar); }
157 public void setLayout(LayoutManager manager)
158 { super.setLayout(manager); }
160 void setLayeredPane(JLayeredPane layeredPane)
161 { getRootPane().setLayeredPane(layeredPane); }
163 JLayeredPane getLayeredPane()
164 { return getRootPane().getLayeredPane(); }
166 JRootPane getRootPane()
168 if (rootPane == null)
169 setRootPane(createRootPane());
170 return rootPane;
173 void setRootPane(JRootPane root)
175 if (rootPane != null)
176 remove(rootPane);
178 rootPane = root;
179 add(rootPane, BorderLayout.CENTER);
182 JRootPane createRootPane()
183 { return new JRootPane(); }
185 Container getContentPane()
186 { return getRootPane().getContentPane(); }
188 void setContentPane(Container contentPane)
189 { getRootPane().setContentPane(contentPane); }
191 Component getGlassPane()
192 { return getRootPane().getGlassPane(); }
194 void setGlassPane(Component glassPane)
195 { getRootPane().setGlassPane(glassPane); }
198 protected void addImpl(Component comp, Object constraints, int index)
199 { super.addImpl(comp, constraints, index); }
202 public void remove(Component comp)
203 { getContentPane().remove(comp); }
205 protected boolean isRootPaneCheckingEnabled()
206 { return checking; }
209 protected void setRootPaneCheckingEnabled(boolean enabled)
210 { checking = enabled; }
213 public void update(Graphics g)
214 { paint(g); }
216 protected void processKeyEvent(KeyEvent e)
217 { super.processKeyEvent(e); }
219 /////////////////////////////////////////////////////////////////////////////////
222 protected void processWindowEvent(WindowEvent e)
224 // System.out.println("PROCESS_WIN_EV-1: " + e);
225 super.processWindowEvent(e);
226 // System.out.println("PROCESS_WIN_EV-2: " + e);
227 switch (e.getID())
229 case WindowEvent.WINDOW_CLOSING:
231 switch(close_action)
233 case DISPOSE_ON_CLOSE:
235 System.out.println("user requested dispose on close");
236 dispose();
237 break;
239 case HIDE_ON_CLOSE:
241 setVisible(false);
242 break;
244 case DO_NOTHING_ON_CLOSE:
245 break;
247 break;
250 case WindowEvent.WINDOW_CLOSED:
251 case WindowEvent.WINDOW_OPENED:
252 case WindowEvent.WINDOW_ICONIFIED:
253 case WindowEvent.WINDOW_DEICONIFIED:
254 case WindowEvent.WINDOW_ACTIVATED:
255 case WindowEvent.WINDOW_DEACTIVATED:
256 break;
261 void setDefaultCloseOperation(int operation)
262 { close_action = operation; }
264 protected String paramString()
265 { return "JDialog"; }
267 public AccessibleContext getAccessibleContext()
269 return null;