⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cwmenubar.java

📁 Google Web Toolkit (GWT)
💻 JAVA
字号:
/* * Copyright 2008 Google Inc. *  * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *  * http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */package com.google.gwt.sample.showcase.client.content.lists;import com.google.gwt.i18n.client.Constants;import com.google.gwt.sample.showcase.client.ContentWidget;import com.google.gwt.sample.showcase.client.ShowcaseAnnotations.ShowcaseData;import com.google.gwt.sample.showcase.client.ShowcaseAnnotations.ShowcaseSource;import com.google.gwt.sample.showcase.client.ShowcaseAnnotations.ShowcaseStyle;import com.google.gwt.user.client.Command;import com.google.gwt.user.client.Window;import com.google.gwt.user.client.ui.MenuBar;import com.google.gwt.user.client.ui.MenuItem;import com.google.gwt.user.client.ui.Widget;/** * Example file. */@ShowcaseStyle({".gwt-MenuBar", ".gwt-MenuBarPopup", "html>body .gwt-MenuBarPopup",    "* html .gwt-MenuBarPopup"})public class CwMenuBar extends ContentWidget {  /**   * The constants used in this Content Widget.   */  @ShowcaseSource  public static interface CwConstants extends Constants,      ContentWidget.CwConstants {    String cwMenuBarDescription();    String cwMenuBarEditCategory();    String[] cwMenuBarEditOptions();    String cwMenuBarFileCategory();    String[] cwMenuBarFileOptions();    String[] cwMenuBarFileRecents();    String[] cwMenuBarGWTOptions();    String cwMenuBarHelpCategory();    String[] cwMenuBarHelpOptions();    String cwMenuBarName();    String[] cwMenuBarPrompts();  }  /**   * An instance of the constants.   */  @ShowcaseData  private CwConstants constants;  /**   * Constructor.   *    * @param constants the constants   */  public CwMenuBar(CwConstants constants) {    super(constants);    this.constants = constants;  }  @Override  public String getDescription() {    return constants.cwMenuBarDescription();  }  @Override  public String getName() {    return constants.cwMenuBarName();  }  /**   * Initialize this example.   */  @ShowcaseSource  @Override  public Widget onInitialize() {    // Create a command that will execute on menu item selection    Command menuCommand = new Command() {      private int curPhrase = 0;      private final String[] phrases = constants.cwMenuBarPrompts();      public void execute() {        Window.alert(phrases[curPhrase]);        curPhrase = (curPhrase + 1) % phrases.length;      }    };    // Create a menu bar    MenuBar menu = new MenuBar();    menu.setAutoOpen(true);    menu.setWidth("500px");    menu.setAnimationEnabled(true);    // Create a sub menu of recent documents    MenuBar recentDocsMenu = new MenuBar(true);    String[] recentDocs = constants.cwMenuBarFileRecents();    for (int i = 0; i < recentDocs.length; i++) {      recentDocsMenu.addItem(recentDocs[i], menuCommand);    }    // Create the file menu    MenuBar fileMenu = new MenuBar(true);    fileMenu.setAnimationEnabled(true);    menu.addItem(new MenuItem(constants.cwMenuBarFileCategory(), fileMenu));    String[] fileOptions = constants.cwMenuBarFileOptions();    for (int i = 0; i < fileOptions.length; i++) {      if (i == 3) {        fileMenu.addSeparator();        fileMenu.addItem(fileOptions[i], recentDocsMenu);        fileMenu.addSeparator();      } else {        fileMenu.addItem(fileOptions[i], menuCommand);      }    }    // Create the edit menu    MenuBar editMenu = new MenuBar(true);    menu.addItem(new MenuItem(constants.cwMenuBarEditCategory(), editMenu));    String[] editOptions = constants.cwMenuBarEditOptions();    for (int i = 0; i < editOptions.length; i++) {      editMenu.addItem(editOptions[i], menuCommand);    }    // Create the GWT menu    MenuBar gwtMenu = new MenuBar(true);    menu.addItem(new MenuItem("GWT", true, gwtMenu));    String[] gwtOptions = constants.cwMenuBarGWTOptions();    for (int i = 0; i < gwtOptions.length; i++) {      gwtMenu.addItem(gwtOptions[i], menuCommand);    }    // Create the help menu    MenuBar helpMenu = new MenuBar(true);    menu.addSeparator();    menu.addItem(new MenuItem(constants.cwMenuBarHelpCategory(), helpMenu));    String[] helpOptions = constants.cwMenuBarHelpOptions();    for (int i = 0; i < helpOptions.length; i++) {      helpMenu.addItem(helpOptions[i], menuCommand);    }    // Return the menu    menu.ensureDebugId("cwMenuBar");    return menu;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -