0N/A/*
2362N/A * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/Apackage sun.awt.X11;
0N/A
0N/Aimport java.awt.*;
0N/Aimport java.awt.peer.*;
0N/A
0N/Aimport java.util.Vector;
1696N/Aimport sun.util.logging.PlatformLogger;
5255N/Aimport sun.awt.AWTAccessor;
0N/A
0N/Apublic class XMenuPeer extends XMenuItemPeer implements MenuPeer {
0N/A
0N/A /************************************************
0N/A *
0N/A * Data members
0N/A *
0N/A ************************************************/
1696N/A private static PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XMenuPeer");
0N/A
0N/A /**
0N/A * Window that correspond to this menu
0N/A */
0N/A XMenuWindow menuWindow;
0N/A
0N/A /************************************************
0N/A *
0N/A * Construction
0N/A *
0N/A ************************************************/
0N/A XMenuPeer(Menu target) {
0N/A super(target);
0N/A }
0N/A
0N/A /**
0N/A * This function is called when menu is bound
0N/A * to its container window. Creates submenu window
0N/A * that fills its items vector while construction
0N/A */
0N/A void setContainer(XBaseMenuWindow container) {
0N/A super.setContainer(container);
0N/A menuWindow = new XMenuWindow(this);
0N/A }
0N/A
0N/A
0N/A /************************************************
0N/A *
0N/A * Implementaion of interface methods
0N/A *
0N/A ************************************************/
0N/A
0N/A /*
0N/A * From MenuComponentPeer
0N/A */
0N/A
0N/A /**
0N/A * Disposes menu window if needed
0N/A */
0N/A public void dispose() {
0N/A if (menuWindow != null) {
0N/A menuWindow.dispose();
0N/A }
0N/A super.dispose();
0N/A }
0N/A
0N/A /**
0N/A * Resets text metrics for this item, for its menu window
0N/A * and for all descendant menu windows
0N/A */
0N/A public void setFont(Font font) {
0N/A //TODO:We can decrease count of repaints here
0N/A //and get rid of recursion
0N/A resetTextMetrics();
0N/A
0N/A XMenuWindow menuWindow = getMenuWindow();
0N/A if (menuWindow != null) {
0N/A menuWindow.setItemsFont(font);
0N/A }
0N/A
0N/A repaintIfShowing();
0N/A }
0N/A
0N/A /*
0N/A * From MenuPeer
0N/A */
0N/A /**
0N/A * addSeparator routines are not used
0N/A * in peers. Shared code invokes addItem("-")
0N/A * for adding separators
0N/A */
0N/A public void addSeparator() {
1696N/A if (log.isLoggable(PlatformLogger.FINER)) log.finer("addSeparator is not implemented");
0N/A }
0N/A
0N/A public void addItem(MenuItem item) {
0N/A XMenuWindow menuWindow = getMenuWindow();
0N/A if (menuWindow != null) {
0N/A menuWindow.addItem(item);
0N/A } else {
1696N/A if (log.isLoggable(PlatformLogger.FINE)) {
0N/A log.fine("Attempt to use XMenuWindowPeer without window");
0N/A }
0N/A }
0N/A }
0N/A
0N/A public void delItem(int index) {
0N/A XMenuWindow menuWindow = getMenuWindow();
0N/A if (menuWindow != null) {
0N/A menuWindow.delItem(index);
0N/A } else {
1696N/A if (log.isLoggable(PlatformLogger.FINE)) {
0N/A log.fine("Attempt to use XMenuWindowPeer without window");
0N/A }
0N/A }
0N/A }
0N/A
0N/A /************************************************
0N/A *
0N/A * Access to target's fields
0N/A *
0N/A ************************************************/
0N/A Vector getTargetItems() {
5255N/A return AWTAccessor.getMenuAccessor().getItems((Menu)getTarget());
0N/A }
0N/A
0N/A /************************************************
0N/A *
0N/A * Overriden behaviour
0N/A *
0N/A ************************************************/
0N/A boolean isSeparator() {
0N/A return false;
0N/A }
0N/A
0N/A //Fix for 6180416: Shortcut keys are displayed against Menus on XToolkit
0N/A //Menu should always return null as shortcutText
0N/A String getShortcutText() {
0N/A return null;
0N/A }
0N/A
0N/A /************************************************
0N/A *
0N/A * Utility functions
0N/A *
0N/A ************************************************/
0N/A
0N/A /**
0N/A * Returns menu window of this menu or null
0N/A * it this menu has no container and so its
0N/A * window can't be created.
0N/A */
0N/A XMenuWindow getMenuWindow() {
0N/A return menuWindow;
0N/A }
0N/A
0N/A}