Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / java / awt / Menu.java
blob3cc9cc301ae682c37626c8ebb4258275813eacb2
1 /* Menu.java -- A Java AWT Menu
2 Copyright (C) 1999, 2002, 2004 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 java.awt;
41 import java.awt.peer.MenuPeer;
42 import java.io.Serializable;
43 import java.util.Enumeration;
44 import java.util.Vector;
46 import javax.accessibility.AccessibleContext;
47 import javax.accessibility.AccessibleRole;
49 /**
50 * This class represents a pull down or tear off menu in Java's AWT.
52 * @author Aaron M. Renn (arenn@urbanophile.com)
54 public class Menu extends MenuItem implements MenuContainer, Serializable
58 * Static Variables
61 // Serialization Constant
62 private static final long serialVersionUID = -8809584163345499784L;
64 /*************************************************************************/
67 * Instance Variables
70 /**
71 * @serial The actual items in the menu
73 private Vector items = new Vector();
75 /**
76 * @serial Flag indicating whether or not this menu is a tear off
78 private boolean tearOff;
80 /**
81 * @serial Indicates whether or not this is a help menu.
83 private boolean isHelpMenu;
86 * @serial Unused in this implementation, but present in Sun's
87 * serialization spec. Value obtained via reflection.
89 private int menuSerializedDataVersion = 1;
91 static final transient String separatorLabel = "-";
93 /*************************************************************************/
96 * Constructors
99 /**
100 * Initializes a new instance of <code>Menu</code> with no label and that
101 * is not a tearoff;
103 * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
105 public
106 Menu()
110 /*************************************************************************/
113 * Initializes a new instance of <code>Menu</code> that is not a tearoff and
114 * that has the specified label.
116 * @param label The menu label.
118 * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
120 public
121 Menu(String label)
123 this(label, false);
126 /*************************************************************************/
129 * Initializes a new instance of <code>Menu</code> with the specified
130 * label and tearoff status.
132 * @param label The label for this menu
133 * @param isTearOff <code>true</code> if this menu is a tear off menu,
134 * <code>false</code> otherwise.
136 * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
138 public
139 Menu(String label, boolean isTearOff)
141 super(label);
143 tearOff = isTearOff;
145 if (label.equals("Help"))
146 isHelpMenu = true;
148 if (GraphicsEnvironment.isHeadless())
149 throw new HeadlessException ();
152 /*************************************************************************/
155 * Instance Methods
159 * Tests whether or not this menu is a tearoff.
161 * @return <code>true</code> if this menu is a tearoff, <code>false</code>
162 * otherwise.
164 public boolean
165 isTearOff()
167 return(tearOff);
170 /*************************************************************************/
173 * Returns the number of items in this menu.
175 * @return The number of items in this menu.
177 public int
178 getItemCount()
180 return countItems ();
184 * Returns the number of items in this menu.
186 * @return The number of items in this menu.
188 * @deprecated As of JDK 1.1, replaced by getItemCount().
190 public int countItems ()
192 return items.size ();
195 /*************************************************************************/
198 * Returns the item at the specified index.
200 * @return The item at the specified index.
202 * @exception ArrayIndexOutOfBoundsException If the index value is not valid.
204 public MenuItem
205 getItem(int index)
207 return((MenuItem)items.elementAt(index));
210 /*************************************************************************/
213 * Adds the specified item to this menu. If it was previously part of
214 * another menu, it is first removed from that menu.
216 * @param item The new item to add.
218 * @return The item that was added.
220 public MenuItem
221 add(MenuItem item)
223 items.addElement(item);
224 if (item.parent != null)
226 item.parent.remove(item);
228 item.parent = this;
230 if (peer != null)
232 MenuPeer mp = (MenuPeer) peer;
233 mp.addItem(item);
236 return item;
239 /*************************************************************************/
242 * Add an item with the specified label to this menu.
244 * @param label The label of the menu item to add.
246 public void
247 add(String label)
249 add(new MenuItem(label));
252 /*************************************************************************/
255 * Inserts the specified menu item into this menu at the specified index.
257 * @param item The menu item to add.
258 * @param index The index of the menu item.
260 * @exception IllegalArgumentException If the index is less than zero.
261 * @exception ArrayIndexOutOfBoundsException If the index is otherwise invalid.
263 public void
264 insert(MenuItem item, int index)
266 if (index < 0)
267 throw new IllegalArgumentException("Index is less than zero");
269 MenuPeer peer = (MenuPeer) getPeer();
270 if (peer == null)
271 return;
273 int count = getItemCount ();
275 if (index >= count)
276 peer.addItem (item);
277 else
279 for (int i = count - 1; i >= index; i--)
280 peer.delItem (i);
282 peer.addItem (item);
284 for (int i = index; i < count; i++)
285 peer.addItem ((MenuItem) items.elementAt (i));
288 items.insertElementAt(item, index);
291 /*************************************************************************/
294 * Inserts an item with the specified label into this menu at the specified index.
296 * @param label The label of the item to add.
297 * @param index The index of the menu item.
299 * @exception IllegalArgumentException If the index is less than zero.
300 * @exception ArrayIndexOutOfBoundsException If the index is otherwise invalid.
302 public void
303 insert(String label, int index)
305 insert(new MenuItem(label), index);
308 /*************************************************************************/
311 * Adds a separator bar at the current menu location.
313 public void
314 addSeparator()
316 add(new MenuItem(separatorLabel));
319 /*************************************************************************/
322 * Inserts a separator bar at the specified index value.
324 * @param index The index at which to insert a separator bar.
326 * @exception IllegalArgumentException If the index is less than zero.
327 * @exception ArrayIndexOutOfBoundsException If the index is otherwise invalid.
329 public void
330 insertSeparator(int index)
332 insert(new MenuItem(separatorLabel), index);
335 /*************************************************************************/
338 * Deletes the item at the specified index from this menu.
340 * @param index The index of the item to remove.
342 * @exception ArrayIndexOutOfBoundsException If the index is otherwise invalid.
344 public synchronized void
345 remove(int index)
347 items.removeElementAt(index);
349 MenuPeer mp = (MenuPeer)getPeer();
350 if (mp != null)
351 mp.delItem(index);
354 /*************************************************************************/
357 * Removes the specifed item from the menu. If the specified component
358 * does not exist, this method does nothing.
360 * @param item The component to remove.
362 public void
363 remove(MenuComponent item)
365 int index = items.indexOf(item);
366 if (index == -1)
367 return;
369 remove(index);
372 /*************************************************************************/
375 * Removes all the elements from this menu.
377 public synchronized void
378 removeAll()
380 int count = getItemCount();
381 for(int i = 0; i < count; i++)
383 // We must always remove item 0.
384 remove(0);
388 /*************************************************************************/
391 * Creates the native peer for this object.
393 public void
394 addNotify()
396 if (peer == null)
397 peer = getToolkit().createMenu(this);
398 Enumeration e = items.elements();
399 while (e.hasMoreElements())
401 MenuItem mi = (MenuItem)e.nextElement();
402 mi.addNotify();
404 super.addNotify ();
407 /*************************************************************************/
410 * Destroys the native peer for this object.
412 public void
413 removeNotify()
415 Enumeration e = items.elements();
416 while (e.hasMoreElements())
418 MenuItem mi = (MenuItem) e.nextElement();
419 mi.removeNotify();
421 super.removeNotify();
424 /*************************************************************************/
427 * Returns a debugging string for this menu.
429 * @return A debugging string for this menu.
431 public String
432 paramString()
434 return (",tearOff=" + tearOff + ",isHelpMenu=" + isHelpMenu
435 + super.paramString());
439 * Basic Accessibility class for Menu. Details get provided in derived
440 * classes.
442 protected class AccessibleAWTMenu extends AccessibleAWTMenuItem
444 protected AccessibleAWTMenu()
448 public AccessibleRole getAccessibleRole()
450 return AccessibleRole.MENU;
455 * Gets the AccessibleContext associated with this <code>Menu</code>.
456 * The context is created, if necessary.
458 * @return the associated context
460 public AccessibleContext getAccessibleContext()
462 /* Create the context if this is the first request */
463 if (accessibleContext == null)
464 accessibleContext = new AccessibleAWTMenu();
465 return accessibleContext;
468 } // class Menu