Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / classpath / javax / swing / plaf / multi / MultiSplitPaneUI.java
blobf481f8109d9f60cb66c64b77c2faef32f296f5dd
1 /* MultiSplitPaneUI.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. */
38 package javax.swing.plaf.multi;
40 import java.awt.Dimension;
41 import java.awt.Graphics;
42 import java.util.Iterator;
43 import java.util.Vector;
45 import javax.accessibility.Accessible;
46 import javax.swing.JComponent;
47 import javax.swing.JSplitPane;
48 import javax.swing.LookAndFeel;
49 import javax.swing.UIManager;
50 import javax.swing.plaf.ComponentUI;
51 import javax.swing.plaf.SplitPaneUI;
53 /**
54 * A UI delegate that that coordinates multiple {@link SplitPaneUI}
55 * instances, one from the primary look and feel, and one or more from the
56 * auxiliary look and feel(s).
58 * @see UIManager#addAuxiliaryLookAndFeel(LookAndFeel)
60 public class MultiSplitPaneUI extends SplitPaneUI
63 /** A list of references to the actual component UIs. */
64 protected Vector uis;
66 /**
67 * Creates a new <code>MultiSplitPaneUI</code> instance.
69 * @see #createUI(JComponent)
71 public MultiSplitPaneUI()
73 uis = new Vector();
76 /**
77 * Creates a delegate object for the specified component. If any auxiliary
78 * look and feels support this component, a <code>MultiSplitPaneUI</code> is
79 * returned, otherwise the UI from the default look and feel is returned.
81 * @param target the component.
83 * @see MultiLookAndFeel#createUIs(ComponentUI, Vector, JComponent)
85 public static ComponentUI createUI(JComponent target)
87 MultiSplitPaneUI mui = new MultiSplitPaneUI();
88 return MultiLookAndFeel.createUIs(mui, mui.uis, target);
91 /**
92 * Calls the {@link ComponentUI#installUI(JComponent)} method for all
93 * the UI delegates managed by this <code>MultiSplitPaneUI</code>.
95 * @param c the component.
97 public void installUI(JComponent c)
99 Iterator iterator = uis.iterator();
100 while (iterator.hasNext())
102 ComponentUI ui = (ComponentUI) iterator.next();
103 ui.installUI(c);
108 * Calls the {@link ComponentUI#uninstallUI(JComponent)} method for all
109 * the UI delegates managed by this <code>MultiSplitPaneUI</code>.
111 * @param c the component.
113 public void uninstallUI(JComponent c)
115 Iterator iterator = uis.iterator();
116 while (iterator.hasNext())
118 ComponentUI ui = (ComponentUI) iterator.next();
119 ui.uninstallUI(c);
124 * Returns an array containing the UI delegates managed by this
125 * <code>MultiSplitPaneUI</code>. The first item in the array is always
126 * the UI delegate from the installed default look and feel.
128 * @return An array of UI delegates.
130 public ComponentUI[] getUIs()
132 return MultiLookAndFeel.uisToArray(uis);
136 * Calls the {@link ComponentUI#contains(JComponent, int, int)} method for all
137 * the UI delegates managed by this <code>MultiSplitPaneUI</code>,
138 * returning the result for the UI delegate from the primary look and
139 * feel.
141 * @param c the component.
142 * @param x the x-coordinate.
143 * @param y the y-coordinate.
145 * @return <code>true</code> if the specified (x, y) coordinate falls within
146 * the bounds of the component as rendered by the UI delegate in the
147 * primary look and feel, and <code>false</code> otherwise.
149 public boolean contains(JComponent c, int x, int y)
151 boolean result = false;
152 Iterator iterator = uis.iterator();
153 // first UI delegate provides the return value
154 if (iterator.hasNext())
156 ComponentUI ui = (ComponentUI) iterator.next();
157 result = ui.contains(c, x, y);
159 // return values from auxiliary UI delegates are ignored
160 while (iterator.hasNext())
162 ComponentUI ui = (ComponentUI) iterator.next();
163 /* boolean ignored = */ ui.contains(c, x, y);
165 return result;
169 * Calls the {@link ComponentUI#update(Graphics, JComponent)} method for all
170 * the UI delegates managed by this <code>MultiSplitPaneUI</code>.
172 * @param g the graphics device.
173 * @param c the component.
175 public void update(Graphics g, JComponent c)
177 Iterator iterator = uis.iterator();
178 while (iterator.hasNext())
180 ComponentUI ui = (ComponentUI) iterator.next();
181 ui.update(g, c);
186 * Calls the <code>paint(Graphics, JComponent)</code> method for all the UI
187 * delegates managed by this <code>MultiSplitPaneUI</code>.
189 * @param g the graphics device.
190 * @param c the component.
192 public void paint(Graphics g, JComponent c)
194 Iterator iterator = uis.iterator();
195 while (iterator.hasNext())
197 ComponentUI ui = (ComponentUI) iterator.next();
198 ui.paint(g, c);
203 * Calls the {@link ComponentUI#getPreferredSize(JComponent)} method for all
204 * the UI delegates managed by this <code>MultiSplitPaneUI</code>,
205 * returning the preferred size for the UI delegate from the primary look and
206 * feel.
208 * @param c the component.
210 * @return The preferred size returned by the UI delegate from the primary
211 * look and feel.
213 public Dimension getPreferredSize(JComponent c)
215 Dimension result = null;
216 Iterator iterator = uis.iterator();
217 // first UI delegate provides the return value
218 if (iterator.hasNext())
220 ComponentUI ui = (ComponentUI) iterator.next();
221 result = ui.getPreferredSize(c);
223 // return values from auxiliary UI delegates are ignored
224 while (iterator.hasNext())
226 ComponentUI ui = (ComponentUI) iterator.next();
227 /* Dimension ignored = */ ui.getPreferredSize(c);
229 return result;
233 * Calls the {@link ComponentUI#getMinimumSize(JComponent)} method for all
234 * the UI delegates managed by this <code>MultiSplitPaneUI</code>,
235 * returning the minimum size for the UI delegate from the primary look and
236 * feel.
238 * @param c the component.
240 * @return The minimum size returned by the UI delegate from the primary
241 * look and feel.
243 public Dimension getMinimumSize(JComponent c)
245 Dimension result = null;
246 Iterator iterator = uis.iterator();
247 // first UI delegate provides the return value
248 if (iterator.hasNext())
250 ComponentUI ui = (ComponentUI) iterator.next();
251 result = ui.getMinimumSize(c);
253 // return values from auxiliary UI delegates are ignored
254 while (iterator.hasNext())
256 ComponentUI ui = (ComponentUI) iterator.next();
257 /* Dimension ignored = */ ui.getMinimumSize(c);
259 return result;
263 * Calls the {@link ComponentUI#getMaximumSize(JComponent)} method for all
264 * the UI delegates managed by this <code>MultiSplitPaneUI</code>,
265 * returning the maximum size for the UI delegate from the primary look and
266 * feel.
268 * @param c the component.
270 * @return The maximum size returned by the UI delegate from the primary
271 * look and feel.
273 public Dimension getMaximumSize(JComponent c)
275 Dimension result = null;
276 Iterator iterator = uis.iterator();
277 // first UI delegate provides the return value
278 if (iterator.hasNext())
280 ComponentUI ui = (ComponentUI) iterator.next();
281 result = ui.getMaximumSize(c);
283 // return values from auxiliary UI delegates are ignored
284 while (iterator.hasNext())
286 ComponentUI ui = (ComponentUI) iterator.next();
287 /* Dimension ignored = */ ui.getMaximumSize(c);
289 return result;
293 * Calls the {@link ComponentUI#getAccessibleChildrenCount(JComponent)} method
294 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>,
295 * returning the count for the UI delegate from the primary look and
296 * feel.
298 * @param c the component.
300 * @return The count returned by the UI delegate from the primary
301 * look and feel.
303 public int getAccessibleChildrenCount(JComponent c)
305 int result = 0;
306 Iterator iterator = uis.iterator();
307 // first UI delegate provides the return value
308 if (iterator.hasNext())
310 ComponentUI ui = (ComponentUI) iterator.next();
311 result = ui.getAccessibleChildrenCount(c);
313 // return values from auxiliary UI delegates are ignored
314 while (iterator.hasNext())
316 ComponentUI ui = (ComponentUI) iterator.next();
317 /* int ignored = */ ui.getAccessibleChildrenCount(c);
319 return result;
323 * Calls the {@link ComponentUI#getAccessibleChild(JComponent, int)} method
324 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>,
325 * returning the child for the UI delegate from the primary look and
326 * feel.
328 * @param c the component
329 * @param i the child index.
331 * @return The child returned by the UI delegate from the primary
332 * look and feel.
334 public Accessible getAccessibleChild(JComponent c, int i)
336 Accessible result = null;
337 Iterator iterator = uis.iterator();
338 // first UI delegate provides the return value
339 if (iterator.hasNext())
341 ComponentUI ui = (ComponentUI) iterator.next();
342 result = ui.getAccessibleChild(c, i);
344 // return values from auxiliary UI delegates are ignored
345 while (iterator.hasNext())
347 ComponentUI ui = (ComponentUI) iterator.next();
348 /* Accessible ignored = */ ui.getAccessibleChild(c, i);
350 return result;
354 * Calls the {@link SplitPaneUI#resetToPreferredSizes(JSplitPane)} method
355 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>.
357 * @param pane the component.
359 public void resetToPreferredSizes(JSplitPane pane) {
360 Iterator iterator = uis.iterator();
361 while (iterator.hasNext())
363 SplitPaneUI ui = (SplitPaneUI) iterator.next();
364 ui.resetToPreferredSizes(pane);
369 * Calls the {@link SplitPaneUI#setDividerLocation(JSplitPane, int)} method
370 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>.
372 * @param pane the component.
373 * @param location the location.
375 public void setDividerLocation(JSplitPane pane, int location) {
376 Iterator iterator = uis.iterator();
377 while (iterator.hasNext())
379 SplitPaneUI ui = (SplitPaneUI) iterator.next();
380 ui.setDividerLocation(pane, location);
385 * Calls the {@link SplitPaneUI#getDividerLocation(JSplitPane)} method for all
386 * the UI delegates managed by this <code>MultiSplitPaneUI</code>,
387 * returning the location for the UI delegate from the primary look and
388 * feel.
390 * @param pane the component.
392 * @return The location returned by the UI delegate from the primary
393 * look and feel.
395 public int getDividerLocation(JSplitPane pane) {
396 int result = 0;
397 Iterator iterator = uis.iterator();
398 // first UI delegate provides the return value
399 if (iterator.hasNext())
401 SplitPaneUI ui = (SplitPaneUI) iterator.next();
402 result = ui.getDividerLocation(pane);
404 // return values from auxiliary UI delegates are ignored
405 while (iterator.hasNext())
407 SplitPaneUI ui = (SplitPaneUI) iterator.next();
408 /* int ignored = */ ui.getDividerLocation(pane);
410 return result;
414 * Calls the {@link SplitPaneUI#getMinimumDividerLocation(JSplitPane)} method
415 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>,
416 * returning the location for the UI delegate from the primary look and
417 * feel.
419 * @param pane the component.
421 * @return The location returned by the UI delegate from the primary
422 * look and feel.
424 public int getMinimumDividerLocation(JSplitPane pane) {
425 int result = 0;
426 Iterator iterator = uis.iterator();
427 // first UI delegate provides the return value
428 if (iterator.hasNext())
430 SplitPaneUI ui = (SplitPaneUI) iterator.next();
431 result = ui.getMinimumDividerLocation(pane);
433 // return values from auxiliary UI delegates are ignored
434 while (iterator.hasNext())
436 SplitPaneUI ui = (SplitPaneUI) iterator.next();
437 /* int ignored = */ ui.getMinimumDividerLocation(pane);
439 return result;
443 * Calls the {@link SplitPaneUI#getMaximumDividerLocation(JSplitPane)} method
444 * for all the UI delegates managed by this <code>MultiSplitPaneUI</code>,
445 * returning the location for the UI delegate from the primary look and
446 * feel.
448 * @param pane the component.
450 * @return The location returned by the UI delegate from the primary
451 * look and feel.
453 public int getMaximumDividerLocation(JSplitPane pane) {
454 int result = 0;
455 Iterator iterator = uis.iterator();
456 // first UI delegate provides the return value
457 if (iterator.hasNext())
459 SplitPaneUI ui = (SplitPaneUI) iterator.next();
460 result = ui.getMaximumDividerLocation(pane);
462 // return values from auxiliary UI delegates are ignored
463 while (iterator.hasNext())
465 SplitPaneUI ui = (SplitPaneUI) iterator.next();
466 /* int ignored = */ ui.getMaximumDividerLocation(pane);
468 return result;
472 * Calls the {@link SplitPaneUI#finishedPaintingChildren(JSplitPane,
473 * Graphics)} method for all the UI delegates managed by this
474 * <code>MultiSplitPaneUI</code>.
476 * @param pane the component.
477 * @param g the graphics device.
479 public void finishedPaintingChildren(JSplitPane pane, Graphics g) {
480 Iterator iterator = uis.iterator();
481 while (iterator.hasNext())
483 SplitPaneUI ui = (SplitPaneUI) iterator.next();
484 ui.finishedPaintingChildren(pane, g);