Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / classpath / javax / swing / plaf / metal / MetalComboBoxUI.java
bloba43ee3cb04fe53130d6564e5f57ff23fa760ffce
1 /* MetalComboBoxUI.java
2 Copyright (C) 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., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 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.plaf.metal;
41 import java.awt.Container;
42 import java.awt.Dimension;
43 import java.awt.Graphics;
44 import java.awt.Insets;
45 import java.awt.LayoutManager;
46 import java.awt.Rectangle;
47 import java.awt.event.MouseEvent;
48 import java.beans.PropertyChangeEvent;
49 import java.beans.PropertyChangeListener;
51 import javax.swing.CellRendererPane;
52 import javax.swing.ComboBoxEditor;
53 import javax.swing.Icon;
54 import javax.swing.JButton;
55 import javax.swing.JComboBox;
56 import javax.swing.JComponent;
57 import javax.swing.plaf.ComponentUI;
58 import javax.swing.plaf.basic.BasicComboBoxUI;
59 import javax.swing.plaf.basic.BasicComboPopup;
60 import javax.swing.plaf.basic.ComboPopup;
63 /**
64 * A UI delegate for the {@link JComboBox} component.
66 public class MetalComboBoxUI extends BasicComboBoxUI
68 /**
69 * A layout manager that arranges the editor component (if active) and the
70 * button that make up the combo box.
72 public class MetalComboBoxLayoutManager
73 extends BasicComboBoxUI.ComboBoxLayoutManager
75 /**
76 * Creates a new instance of the layout manager.
78 public MetalComboBoxLayoutManager()
80 // Nothing to do here.
83 /**
84 * Arranges the editor (if visible) and button that comprise the combo
85 * box.
87 * @param parent the parent.
89 public void layoutContainer(Container parent)
91 JComboBox cb = (JComboBox) parent;
92 if (!cb.isEditable())
94 Rectangle bounds = parent.getBounds();
95 arrowButton.setBounds(0, 0, bounds.width, bounds.height);
97 else
98 superLayout(parent);
102 * Calls the <code>layoutContainer(Container)</code> method in the super
103 * class.
105 * @param parent the container.
107 public void superLayout(Container parent)
109 super.layoutContainer(parent);
114 * A listener used to handle property changes in the {@link JComboBox}
115 * component, to ensure that the UI delegate accurately reflects the current
116 * state in the rendering onscreen.
118 public class MetalPropertyChangeListener
119 extends BasicComboBoxUI.PropertyChangeHandler
122 * Creates a new listener.
124 public MetalPropertyChangeListener()
126 // Nothing to do here.
130 * Handles a property change event, updating the UI components as
131 * appropriate.
133 * @param e the event.
135 public void propertyChange(PropertyChangeEvent e)
137 if (e.getPropertyName().equals("editable"))
138 editablePropertyChanged(e);
139 super.propertyChange(e);
144 * A popup menu for the combo-box.
146 * @see #createPopup()
148 * @deprecated 1.4
150 public class MetalComboPopup extends BasicComboPopup
153 * Creates a new popup.
155 * @param cBox the combo box.
157 public MetalComboPopup(JComboBox cBox)
159 super(cBox);
162 public void delegateFocus(MouseEvent e)
164 super.delegateFocus(e);
169 * Constructs a new instance of MetalComboBoxUI.
171 public MetalComboBoxUI()
173 super();
177 * Returns an instance of MetalComboBoxUI.
179 * @param component the component for which we return an UI instance
181 * @return an instance of MetalComboBoxUI
183 public static ComponentUI createUI(JComponent component)
185 return new MetalComboBoxUI();
189 * Creates an editor for the combo box.
191 * @return An editor.
193 protected ComboBoxEditor createEditor()
195 return new MetalComboBoxEditor.UIResource();
199 * Creates a popup for the combo box.
201 * @return A popup.
203 protected ComboPopup createPopup()
205 return new MetalComboPopup(comboBox);
209 * Creates a new button for use in rendering the JComboBox.
211 * @return A button.
213 protected JButton createArrowButton()
215 JButton button = new MetalComboBoxButton(comboBox, new MetalComboBoxIcon(),
216 new CellRendererPane(), listBox);
217 button.setMargin(new Insets(0, 1, 1, 3));
218 return button;
222 * Creates a new property change listener.
224 * @return A new property change listener.
226 public PropertyChangeListener createPropertyChangeListener()
228 return new MetalPropertyChangeListener();
231 public void paint(Graphics g, JComponent c)
233 // do nothing, the button and text field are painted elsewhere
237 * Updates the button and text field to reflect a change in the 'editable'
238 * property.
240 * @param e the event.
242 * @deprecated 1.4
244 protected void editablePropertyChanged(PropertyChangeEvent e)
246 if (arrowButton instanceof MetalComboBoxButton)
248 MetalComboBoxButton b = (MetalComboBoxButton) arrowButton;
249 b.setIconOnly(comboBox.isEditable());
251 if (comboBox.isEditable())
253 arrowButton.setText(null);
254 if (editor != null)
255 editor.setVisible(true);
257 else
259 String text = "";
260 Object selected = comboBox.getSelectedItem();
261 if (selected != null)
262 text = selected.toString();
263 arrowButton.setText(text);
264 if (editor != null)
265 editor.setVisible(true);
270 * Creates a new layout manager for the UI delegate.
272 * @return A new layout manager.
274 protected LayoutManager createLayoutManager()
276 return new MetalComboBoxLayoutManager();
280 * Not used in Classpath.
282 * @deprecated 1.4
284 protected void removeListeners()
286 // no longer used in JDK 1.4
290 * Returns the minimum size for the combo.
292 * @param c the component
294 * @return The minimum size for the combo box.
296 public Dimension getMinimumSize(JComponent c)
298 Dimension d = getDisplaySize();
299 MetalComboBoxButton b = (MetalComboBoxButton) arrowButton;
300 Insets insets = b.getInsets();
301 int insetsH = insets.top + insets.bottom;
302 int insetsW = insets.left + insets.right;
303 if (!comboBox.isEditable())
305 Icon icon = b.getComboIcon();
306 int iconWidth = icon.getIconWidth() + 6;
307 return new Dimension(d.width + insetsW + iconWidth, d.height + insetsH);
309 else
310 // FIXME: the following dimensions pass most of the Mauve tests, but
311 // I don't yet understand the logic behind this...it is probably wrong
312 return new Dimension(d.width + insetsW + (d.height + insetsH) - 4,
313 d.height + insetsH + 1);