Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / javax / swing / JWindow.java
blob94efa3aa795a9a5c2318278bc5aba52dacddafda
1 /* JWindow.java --
2 Copyright (C) 2002, 2003, 2004, 2005 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.Dimension;
45 import java.awt.Frame;
46 import java.awt.Graphics;
47 import java.awt.GraphicsConfiguration;
48 import java.awt.LayoutManager;
49 import java.awt.Window;
50 import java.awt.event.KeyEvent;
52 import javax.accessibility.Accessible;
53 import javax.accessibility.AccessibleContext;
55 /**
56 * Unlike JComponent derivatives, JWindow inherits from
57 * java.awt.Window. But also lets a look-and-feel component to its work.
59 * @author Ronald Veldema (rveldema@cs.vu.nl)
61 public class JWindow extends Window implements Accessible, RootPaneContainer
63 private static final long serialVersionUID = 5420698392125238833L;
65 protected JRootPane rootPane;
66 protected boolean rootPaneCheckingEnabled;
67 protected AccessibleContext accessibleContext;
69 public JWindow()
71 super(SwingUtilities.getOwnerFrame());
72 windowInit();
75 public JWindow(GraphicsConfiguration gc)
77 super(SwingUtilities.getOwnerFrame(), gc);
78 windowInit();
81 public JWindow(Frame owner)
83 super(owner);
84 windowInit();
87 public JWindow(Window owner)
89 super(owner);
90 windowInit();
93 public JWindow(Window owner, GraphicsConfiguration gc)
95 super(owner, gc);
96 windowInit();
99 protected void windowInit()
101 super.setLayout(new BorderLayout(1, 1));
102 getRootPane(); // will do set/create
105 public Dimension getPreferredSize()
107 return super.getPreferredSize();
110 public void setLayout(LayoutManager manager)
112 super.setLayout(manager);
115 public void setLayeredPane(JLayeredPane layeredPane)
117 getRootPane().setLayeredPane(layeredPane);
120 public JLayeredPane getLayeredPane()
122 return getRootPane().getLayeredPane();
125 public JRootPane getRootPane()
127 if (rootPane == null)
128 setRootPane(createRootPane());
129 return rootPane;
132 protected void setRootPane(JRootPane root)
134 if (rootPane != null)
135 remove(rootPane);
137 rootPane = root;
138 add(rootPane, BorderLayout.CENTER);
141 protected JRootPane createRootPane()
143 return new JRootPane();
146 public Container getContentPane()
148 return getRootPane().getContentPane();
151 public void setContentPane(Container contentPane)
153 getRootPane().setContentPane(contentPane);
156 public Component getGlassPane()
158 return getRootPane().getGlassPane();
161 public void setGlassPane(Component glassPane)
163 getRootPane().setGlassPane(glassPane);
166 protected void addImpl(Component comp, Object constraints, int index)
168 super.addImpl(comp, constraints, index);
171 public void remove(Component comp)
173 getContentPane().remove(comp);
176 protected boolean isRootPaneCheckingEnabled()
178 return rootPaneCheckingEnabled;
181 protected void setRootPaneCheckingEnabled(boolean enabled)
183 rootPaneCheckingEnabled = enabled;
186 public void update(Graphics g)
188 paint(g);
191 protected void processKeyEvent(KeyEvent e)
193 super.processKeyEvent(e);
196 public AccessibleContext getAccessibleContext()
198 return null;
201 protected String paramString()
203 return "JWindow";