net.s17fabu.vip.gwt.showcase.client.content.lists.CwMenuBar.java Source code

Java tutorial

Introduction

Here is the source code for net.s17fabu.vip.gwt.showcase.client.content.lists.CwMenuBar.java

Source

/*
 * 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 net.s17fabu.vip.gwt.showcase.client.content.lists;

import net.s17fabu.vip.gwt.showcase.client.ContentWidget;

import com.google.gwt.i18n.client.Constants;
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.
 */
public class CwMenuBar extends ContentWidget {
    /**
     * The constants used in this Content Widget.
     */
    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.
     */
    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.
     */
    @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;
    }
}