More Tutorials| Bioinformatics| Open Source| Photoshop| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Creating Menu using GWT 
 

This example describes the Basics for building the Menu using GWT.

 

Creating Menu using GWT

                         

This example describes the Basics for building the Menu using GWT. The steps involved in Building the Menu Structure are described below:-

final Label label = new Label("Move the cursor over the Menu item")
Here we are declaring label. Label is a widget that contains text.

Command cmd = new Command()
Command is an interface that encapsulates an action for execution. This Interface can be often implemented with an anonymous inner class.

Window.alert("Menu item have been selected")
This is an alert whenever an Menu item is selected.

Menu Bar File = new MenuBar(true)
Creating a Menu bar named File. A Menu bar can contain any number of items.

File.addItem("New",cmd)
This is a method for adding item to the Menubar.Here we are adding New to the Menu bar named File

MenuBarex.java

package org.yournamehere.client;
import com.google.gwt.core.client.EntryPoint;
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.Label;
import com.google.gwt.user.client.ui.RootPanel;

public class MenuBarex implements EntryPoint{

 public void onModuleLoad() {
     final Label label = new Label("Move the cursor over the Menuitem");
     final Label label1 = new Label("");
     Command cmd = new Command() {
      public void execute() {
        Window.alert("Menu item have been selected");
      }
    };
    MenuBar File = new MenuBar(true);
    File.addItem("New",cmd);
    File.addItem("Open",cmd);
    File.addItem("Close",cmd);

    MenuBar Edit = new MenuBar(true);
    Edit.addItem("Undo", cmd);
    Edit.addItem("Redo", cmd);
    Edit.addItem("Cut", cmd);
    Edit.addItem("Copy", cmd);

    MenuBar Format = new MenuBar(true);
    Format.addItem("Word wrap", cmd);
    Format.addItem("Font", cmd);
    
    MenuBar menu = new MenuBar();
    menu.addItem("File", File);
    menu.addItem("Edit", Edit);
    menu.addItem("Format", Format);
     
    RootPanel.get().add(label);
    RootPanel.get().add(label1);
    RootPanel.get().add(label1);
    RootPanel.get().add(menu);
    
  }
}

Main.gwt.xml

<?xml version="1.0" encoding="UTF-8"?>
<module>
  <inherits name="com.google.gwt.user.User"/>
  <entry-point class="org.yournamehere.client.MenuBarex"/>
  
</module>

Output of the program

Download source code

                         

» View all related tutorials
Related Tags: c xml file server data gwt vi using this ie example exam e il des trie from in ml m

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.