Update copyright.
[official-gcc.git] / libjava / javax / swing / JWindow.java
blobc74e33870c018bfbb03f947114465887df211974
1 /* JWindow.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. */
38 package javax.swing;
40 import java.awt.*;
41 import java.awt.event.*;
42 import javax.accessibility.*;
44 /**
45 * Unlike JComponent derivatives, JWindow inherits from
46 * java.awt.Window. But also lets a look-and-feel component to its work.
48 * @author Ronald Veldema (rveldema@cs.vu.nl)
50 public class JWindow extends Window implements Accessible
52 public final static int HIDE_ON_CLOSE = 0;
53 public final static int EXIT_ON_CLOSE = 1;
54 public final static int DISPOSE_ON_CLOSE = 2;
55 public final static int DO_NOTHING_ON_CLOSE = 3;
57 protected AccessibleContext accessibleContext;
59 private int close_action = EXIT_ON_CLOSE;
62 /***************************************************
65 * constructors
68 *************/
70 // huuu ?
71 public JWindow(Frame f)
73 super(f);
76 /***************************************************
79 * methods, this part is shared with JDialog, JFrame
82 *************/
85 private boolean checking;
86 protected JRootPane rootPane;
89 protected void frameInit()
91 super.setLayout(new BorderLayout(1, 1));
92 getRootPane(); // will do set/create
95 public Dimension getPreferredSize()
97 Dimension d = super.getPreferredSize();
98 return d;
101 JMenuBar getJMenuBar()
102 { return getRootPane().getJMenuBar(); }
104 void setJMenuBar(JMenuBar menubar)
105 { getRootPane().setJMenuBar(menubar); }
108 public void setLayout(LayoutManager manager)
109 { super.setLayout(manager); }
111 void setLayeredPane(JLayeredPane layeredPane)
112 { getRootPane().setLayeredPane(layeredPane); }
114 JLayeredPane getLayeredPane()
115 { return getRootPane().getLayeredPane(); }
117 JRootPane getRootPane()
119 if (rootPane == null)
120 setRootPane(createRootPane());
121 return rootPane;
124 void setRootPane(JRootPane root)
126 if (rootPane != null)
127 remove(rootPane);
129 rootPane = root;
130 add(rootPane, BorderLayout.CENTER);
133 JRootPane createRootPane()
134 { return new JRootPane(); }
136 Container getContentPane()
137 { return getRootPane().getContentPane(); }
139 void setContentPane(Container contentPane)
140 { getRootPane().setContentPane(contentPane); }
142 Component getGlassPane()
143 { return getRootPane().getGlassPane(); }
145 void setGlassPane(Component glassPane)
146 { getRootPane().setGlassPane(glassPane); }
149 protected void addImpl(Component comp, Object constraints, int index)
150 { super.addImpl(comp, constraints, index); }
153 public void remove(Component comp)
154 { getContentPane().remove(comp); }
156 protected boolean isRootPaneCheckingEnabled()
157 { return checking; }
160 protected void setRootPaneCheckingEnabled(boolean enabled)
161 { checking = enabled; }
164 public void update(Graphics g)
165 { paint(g); }
167 protected void processKeyEvent(KeyEvent e)
168 { super.processKeyEvent(e); }
170 /////////////////////////////////////////////////////////////////////////////////
172 public AccessibleContext getAccessibleContext()
173 { return null; }
175 int getDefaultCloseOperation()
176 { return close_action; }
178 protected String paramString()
179 { return "JWindow"; }
182 protected void processWindowEvent(WindowEvent e)
184 // System.out.println("PROCESS_WIN_EV-1: " + e);
185 super.processWindowEvent(e);
186 // System.out.println("PROCESS_WIN_EV-2: " + e);
187 switch (e.getID())
189 case WindowEvent.WINDOW_CLOSING:
191 switch(close_action)
193 case EXIT_ON_CLOSE:
195 System.out.println("user requested exit on close");
196 System.exit(1);
197 break;
199 case DISPOSE_ON_CLOSE:
201 System.out.println("user requested dispose on close");
202 dispose();
203 break;
205 case HIDE_ON_CLOSE:
207 setVisible(false);
208 break;
210 case DO_NOTHING_ON_CLOSE:
211 break;
213 break;
216 case WindowEvent.WINDOW_CLOSED:
217 case WindowEvent.WINDOW_OPENED:
218 case WindowEvent.WINDOW_ICONIFIED:
219 case WindowEvent.WINDOW_DEICONIFIED:
220 case WindowEvent.WINDOW_ACTIVATED:
221 case WindowEvent.WINDOW_DEACTIVATED:
222 break;
227 void setDefaultCloseOperation(int operation)
228 { close_action = operation; }