Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Pop-up Menus 
 

A PopupMenu is similar to a Menu as it contains MenuItem objects.

 

Pop-up Menus

                         

A PopupMenu is similar to a Menu as it contains MenuItem objects. The Pop-up Menu can be popped over any component while generating the appropriate mouse event rather than letting it appear at the top of a Frame. Menu class can only be added to a Frame and not to the Applet. To add it to the Applet you need to use the Swing component set. 

In the program code given below, we have used MouseEvent.isPopupTrigger() method to trigger the MouseEvent that pops up the menu. The example below shows the triggering of a pop-up menu and its activation through a command button.

 

import java.awt.*; 
import java.awt.event.*; 
import java.applet.Applet;

public class PopupMenuDemo extends Applet
    Button b; 
    TextField msg; 
    PopupAppMenu m; 
    public PopupMenuDemo(){ 
      setSize(200200)
      b = new Button("Pop-up Menu")
      add(b, BorderLayout.NORTH)
      msg = new TextField()
      msg.setEditable(false)
      add(msg, BorderLayout.SOUTH)
      m = new PopupAppMenu(this)
      add(m)
      b.addActionListener(new ActionListener(){ 
        public void actionPerformed(ActionEvent e){ 
          m.show(b, 2020)
          
  })
  addMouseListener(new MouseAdapter(){ 
    public void mousePressed(MouseEvent e){ 
      if (e.isPopupTrigger()) 
        m.show(e.getComponent(), e.getX(), e.getY())
      
      public void mouseReleased(MouseEvent e){ 
      if (e.isPopupTrigger()) 
        m.show(e.getComponent(), e.getX(), e.getY())
      
    })
    
    public static void main(String[] args){ 
    PopupMenuDemo app = new PopupMenuDemo()
    app.setVisible(true)
    
  
   
  class PopupAppMenu extends PopupMenu 
    implements ActionListener
    PopupMenuDemo ref; 
    public PopupAppMenu(PopupMenuDemo ref){ 
    super("File")
    this.ref = ref; 
    MenuItem mi; 
    add(mi = new MenuItem("Copy"))
    mi.addActionListener(this)
    add(mi = new MenuItem("Open"))
    mi.addActionListener(this)
    add(mi = new MenuItem("Cut"))
    mi.addActionListener(this)
    add(mi = new MenuItem("Paste"))
    mi.addActionListener(this)
    
    public void actionPerformed(ActionEvent e){ 
    String item = e.getActionCommand()
    ref.msg.setText("Option Selected: " + item)
    
  

Output of the program:

C:\newprgrm>javac PopupMenuDemo.java

C:\newprgrm>appletviewer PopupMenuDemo.html

Download this example.

 

 

                         

» View all related tutorials
Related Tags: c class make method sed boolean value ole set oo frame if boo to ram bool argument e il not

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 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

Excellent material.not only this but all the topics covered are very helpful for upcoming software engineers..GOOD JOB!!!

Posted by sidhartha chandrasekhar on Monday, 03.3.08 @ 18:28pm | #51164

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.