MultiToolTipUI.java 10.8 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/* MultiToolTipUI.java --
   Copyright (C) 2005 Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package javax.swing.plaf.multi;

import java.awt.Dimension;
import java.awt.Graphics;
import java.util.Iterator;
import java.util.Vector;

import javax.accessibility.Accessible;
import javax.swing.JComponent;
import javax.swing.LookAndFeel;
import javax.swing.UIManager;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.ToolTipUI;

/**
53 54
 * A UI delegate that that coordinates multiple {@link ToolTipUI}
 * instances, one from the primary look and feel, and one or more from the
Tom Tromey committed
55
 * auxiliary look and feel(s).
56
 *
Tom Tromey committed
57 58
 * @see UIManager#addAuxiliaryLookAndFeel(LookAndFeel)
 */
59
public class MultiToolTipUI extends ToolTipUI
Tom Tromey committed
60 61 62 63
{

  /** A list of references to the actual component UIs. */
  protected Vector uis;
64

Tom Tromey committed
65 66
  /**
   * Creates a new <code>MultiToolTipUI</code> instance.
67
   *
Tom Tromey committed
68 69
   * @see #createUI(JComponent)
   */
70
  public MultiToolTipUI()
Tom Tromey committed
71 72 73
  {
    uis = new Vector();
  }
74

Tom Tromey committed
75
  /**
76
   * Creates a delegate object for the specified component.  If any auxiliary
Tom Tromey committed
77 78
   * look and feels support this component, a <code>MultiToolTipUI</code> is
   * returned, otherwise the UI from the default look and feel is returned.
79
   *
Tom Tromey committed
80
   * @param target  the component.
81
   *
Tom Tromey committed
82 83 84 85 86 87 88
   * @see MultiLookAndFeel#createUIs(ComponentUI, Vector, JComponent)
   */
  public static ComponentUI createUI(JComponent target)
  {
    MultiToolTipUI mui = new MultiToolTipUI();
    return MultiLookAndFeel.createUIs(mui, mui.uis, target);
  }
89

Tom Tromey committed
90
  /**
91
   * Calls the {@link ComponentUI#installUI(JComponent)} method for all
Tom Tromey committed
92
   * the UI delegates managed by this <code>MultiToolTipUI</code>.
93
   *
Tom Tromey committed
94 95 96 97 98 99 100 101 102 103 104 105 106
   * @param c  the component.
   */
  public void installUI(JComponent c)
  {
    Iterator iterator = uis.iterator();
    while (iterator.hasNext())
    {
      ComponentUI ui = (ComponentUI) iterator.next();
      ui.installUI(c);
    }
  }

  /**
107
   * Calls the {@link ComponentUI#uninstallUI(JComponent)} method for all
Tom Tromey committed
108
   * the UI delegates managed by this <code>MultiToolTipUI</code>.
109
   *
Tom Tromey committed
110 111 112 113 114 115 116 117 118 119 120
   * @param c  the component.
   */
  public void uninstallUI(JComponent c)
  {
    Iterator iterator = uis.iterator();
    while (iterator.hasNext())
    {
      ComponentUI ui = (ComponentUI) iterator.next();
      ui.uninstallUI(c);
    }
  }
121

Tom Tromey committed
122 123
  /**
   * Returns an array containing the UI delegates managed by this
124
   * <code>MultiToolTipUI</code>.  The first item in the array is always
Tom Tromey committed
125
   * the UI delegate from the installed default look and feel.
126
   *
Tom Tromey committed
127 128 129 130 131 132
   * @return An array of UI delegates.
   */
  public ComponentUI[] getUIs()
  {
    return MultiLookAndFeel.uisToArray(uis);
  }
133

Tom Tromey committed
134
  /**
135 136 137 138 139
   * Calls the {@link ComponentUI#contains(JComponent, int, int)} method for all
   * the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the result for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
140 141 142
   * @param c  the component.
   * @param x  the x-coordinate.
   * @param y  the y-coordinate.
143
   *
Tom Tromey committed
144 145
   * @return <code>true</code> if the specified (x, y) coordinate falls within
   *         the bounds of the component as rendered by the UI delegate in the
146
   *         primary look and feel, and <code>false</code> otherwise.
Tom Tromey committed
147
   */
148
  public boolean contains(JComponent c, int x, int y)
Tom Tromey committed
149 150 151 152
  {
    boolean result = false;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
153
    if (iterator.hasNext())
Tom Tromey committed
154 155 156 157 158 159 160 161 162 163 164 165
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.contains(c, x, y);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* boolean ignored = */ ui.contains(c, x, y);
      }
    return result;
  }
166

Tom Tromey committed
167
  /**
168
   * Calls the {@link ComponentUI#update(Graphics, JComponent)} method for all
Tom Tromey committed
169
   * the UI delegates managed by this <code>MultiToolTipUI</code>.
170
   *
Tom Tromey committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184
   * @param g  the graphics device.
   * @param c  the component.
   */
  public void update(Graphics g, JComponent c)
  {
    Iterator iterator = uis.iterator();
    while (iterator.hasNext())
    {
      ComponentUI ui = (ComponentUI) iterator.next();
      ui.update(g, c);
    }
  }

  /**
185
   * Calls the <code>paint(Graphics, JComponent)</code> method for all the UI
Tom Tromey committed
186
   * delegates managed by this <code>MultiToolTipUI</code>.
187
   *
Tom Tromey committed
188 189 190 191 192 193 194 195 196 197 198 199
   * @param g  the graphics device.
   * @param c  the component.
   */
  public void paint(Graphics g, JComponent c)
  {
    Iterator iterator = uis.iterator();
    while (iterator.hasNext())
    {
      ComponentUI ui = (ComponentUI) iterator.next();
      ui.paint(g, c);
    }
  }
200

Tom Tromey committed
201 202
  /**
   * Calls the {@link ComponentUI#getPreferredSize(JComponent)} method for all
203 204 205 206
   * the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the preferred size for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
207
   * @param c  the component.
208 209 210
   *
   * @return The preferred size returned by the UI delegate from the primary
   *         look and feel.
Tom Tromey committed
211 212 213 214 215 216
   */
  public Dimension getPreferredSize(JComponent c)
  {
    Dimension result = null;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
217
    if (iterator.hasNext())
Tom Tromey committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.getPreferredSize(c);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* Dimension ignored = */ ui.getPreferredSize(c);
      }
    return result;
  }

  /**
   * Calls the {@link ComponentUI#getMinimumSize(JComponent)} method for all
233 234 235 236
   * the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the minimum size for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
237
   * @param c  the component.
238 239 240
   *
   * @return The minimum size returned by the UI delegate from the primary
   *         look and feel.
Tom Tromey committed
241 242 243 244 245 246
   */
  public Dimension getMinimumSize(JComponent c)
  {
    Dimension result = null;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
247
    if (iterator.hasNext())
Tom Tromey committed
248 249 250 251 252 253 254 255 256 257 258 259
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.getMinimumSize(c);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* Dimension ignored = */ ui.getMinimumSize(c);
      }
    return result;
  }
260

Tom Tromey committed
261 262
  /**
   * Calls the {@link ComponentUI#getMaximumSize(JComponent)} method for all
263 264 265 266
   * the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the maximum size for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
267
   * @param c  the component.
268 269 270
   *
   * @return The maximum size returned by the UI delegate from the primary
   *         look and feel.
Tom Tromey committed
271 272 273 274 275 276
   */
  public Dimension getMaximumSize(JComponent c)
  {
    Dimension result = null;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
277
    if (iterator.hasNext())
Tom Tromey committed
278 279 280 281 282 283 284 285 286 287 288 289
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.getMaximumSize(c);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* Dimension ignored = */ ui.getMaximumSize(c);
      }
    return result;
  }
290

Tom Tromey committed
291 292
  /**
   * Calls the {@link ComponentUI#getAccessibleChildrenCount(JComponent)} method
293 294 295 296
   * for all the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the count for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
297
   * @param c  the component.
298 299 300
   *
   * @return The count returned by the UI delegate from the primary
   *         look and feel.
Tom Tromey committed
301 302 303 304 305 306
   */
  public int getAccessibleChildrenCount(JComponent c)
  {
    int result = 0;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
307
    if (iterator.hasNext())
Tom Tromey committed
308 309 310 311 312 313 314 315 316 317 318 319
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.getAccessibleChildrenCount(c);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* int ignored = */ ui.getAccessibleChildrenCount(c);
      }
    return result;
  }
320

Tom Tromey committed
321 322
  /**
   * Calls the {@link ComponentUI#getAccessibleChild(JComponent, int)} method
323 324 325 326
   * for all the UI delegates managed by this <code>MultiToolTipUI</code>,
   * returning the child for the UI delegate from the primary look and
   * feel.
   *
Tom Tromey committed
327 328
   * @param c  the component
   * @param i  the child index.
329 330 331
   *
   * @return The child returned by the UI delegate from the primary
   *         look and feel.
Tom Tromey committed
332 333 334 335 336 337
   */
  public Accessible getAccessibleChild(JComponent c, int i)
  {
    Accessible result = null;
    Iterator iterator = uis.iterator();
    // first UI delegate provides the return value
338
    if (iterator.hasNext())
Tom Tromey committed
339 340 341 342 343 344 345 346 347 348 349 350
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        result = ui.getAccessibleChild(c, i);
      }
    // return values from auxiliary UI delegates are ignored
    while (iterator.hasNext())
      {
        ComponentUI ui = (ComponentUI) iterator.next();
        /* Accessible ignored = */ ui.getAccessibleChild(c, i);
      }
    return result;
  }
351

Tom Tromey committed
352
}