applet的菜单栏演示 : 程序 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 程序屏幕截图 
applet的菜单栏演示
 

/*
 * Copyright (c) 2000 David Flanagan. All rights reserved. This code is from the
 * book Java Examples in a Nutshell, 2nd Edition. It is provided AS-IS, WITHOUT
 * ANY WARRANTY either expressed or implied. You may study, use, and modify it
 * for any non-commercial purpose. You may distribute it non-commercially as
 * long as you retain this notice. For a commercial use license, or to purchase
 * the book (recommended), visit http://www.davidflanagan.com/javaexamples2.
 */

import java.applet.Applet;
import java.awt.AWTEvent;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Insets;
import java.awt.Panel;
import java.awt.PopupMenu;
import java.awt.event.MouseEvent;
import java.util.Vector;

public class AppletMenuBarDemo extends Applet {
  public void init() {
    AppletMenuBar menubar = new AppletMenuBar();
    menubar.setForeground(Color.black);
    menubar.setHighlightColor(Color.red);
    menubar.setFont(new Font("helvetica", Font.BOLD, 12));
    this.setLayout(new BorderLayout());
    this.add(menubar, BorderLayout.NORTH);

    PopupMenu file = new PopupMenu();
    file.add("New...");
    file.add("Open...");
    file.add("Save As...");
    PopupMenu edit = new PopupMenu();
    edit.add("Cut");
    edit.add("Copy");
    edit.add("Paste");

    menubar.addMenu("File", file);
    menubar.addMenu("Edit", edit);
  }
}

/*
 * Copyright (c) 2000 David Flanagan. All rights reserved. This code is from the
 * book Java Examples in a Nutshell, 2nd Edition. It is provided AS-IS, WITHOUT
 * ANY WARRANTY either expressed or implied. You may study, use, and modify it
 * for any non-commercial purpose. You may distribute it non-commercially as
 * long as you retain this notice. For a commercial use license, or to purchase
 * the book (recommended), visit http://www.davidflanagan.com/javaexamples2.
 */

class AppletMenuBar extends Panel {
  // Menubar contents
  Vector labels = new Vector();

  Vector menus = new Vector();

  // Properties
  Insets margins = new Insets(310310)// top, left, bottom, right

  int spacing = 10// Space between menu labels

  Color highlightColor; // Rollover color for labels

  // internal stuff
  boolean remeasure = true// Whether the labels need to be remeasured

  int[] widths; // The width of each label

  int[] startPositions; // Where each label starts

  int ascent, descent; // Font metrics

  Dimension prefsize = new Dimension()// How big do we want to be?

  int highlightedItem = -1// Which item is the mouse over?

  /**
   * Create a new component that simulates a menubar by displaying the
   * specified labels. Whenever the user clicks the specified label, popup up
   * the PopupMenu specified in the menus array. Elements of the menus arra
   * may be a static PopupMenu object, or a PopupMenuFactory object for
   * dynamically creating menus. Perhaps we'll also provide some other kind of
   * constructor or factory method that reads popup menus out of a config
   * file.
   */
  public AppletMenuBar() {
    // We'd like these kinds of events to be delivered
    enableEvents(AWTEvent.MOUSE_EVENT_MASK
        | AWTEvent.MOUSE_MOTION_EVENT_MASK);
  }

  /** Add a popup menu to the menubar */
  public void addMenu(String label, PopupMenu menu) {
    insertMenu(label, menu, -1);
  }

  /** Insert a popup menu into the menubar */
  public void insertMenu(String label, PopupMenu menu, int index) {
    if (index < 0)
      index += labels.size() 1// Position to put it at
    this.add(menu)// Popup belongs to us
    labels.insertElementAt(label, index)// Remember the label
    menus.insertElementAt(menu, index)// Remember the menu
    remeasure = true// Remeasure everything
    invalidate()// Container must relayout
  }

  /** Property accessor methods for margins property */
  public Insets getMargins() {
    return (Insetsmargins.clone();
  }

  public void setMargins(Insets margins) {
    this.margins = margins;
    remeasure = true;
    invalidate();
  }

  /** Property accessor methods for spacing property */
  public int getSpacing() {
    return spacing;
  }

  public void setSpacing(int spacing) {
    if (this.spacing != spacing) {
      this.spacing = spacing;
      remeasure = true;
      invalidate();
    }
  }

  /** Accessor methods for highlightColor property */
  public Color getHighlightColor() {
    if (highlightColor == null)
      return getForeground();
    else
      return highlightColor;
  }

  public void setHighlightColor(Color c) {
    if (highlightColor != c) {
      highlightColor = c;
      repaint();
    }
  }

  /** We override the setFont() method so we can remeasure */
  public void setFont(Font f) {
    super.setFont(f);
    remeasure = true;
    invalidate();
  }

  /** Override these color property setter method so we can repaint */
  public void setForeground(Color c) {
    super.setForeground(c);
    repaint();
  }

  public void setBackground(Color c) {
    super.setBackground(c);
    repaint();
  }

  /**
   * This method is called to draw tell the component to redraw itself. If we
   * were implementing a Swing component, we'd override paintComponent()
   * instead
   */
  public void paint(Graphics g) {
    if (remeasure)
      measure()// Remeasure everything first, if needed

    // Figure out Y coordinate to draw at
    Dimension size = getSize();
    int baseline = size.height - margins.bottom - descent;
    // Set the font to draw with
    g.setFont(getFont());
    // Loop through the labels
    int nummenus = labels.size();
    for (int i = 0; i < nummenus; i++) {
      // Set the drawing color. Highlight the current item
      if ((i == highlightedItem&& (highlightColor != null))
        g.setColor(getHighlightColor());
      else
        g.setColor(getForeground());

      // Draw the menu label at the position computed in measure()
      g.drawString((Stringlabels.elementAt(i), startPositions[i],
          baseline);
    }

    // Now draw a groove at the bottom of the menubar.
    Color bg = getBackground();
    g.setColor(bg.darker());
    g.drawLine(0, size.height - 2, size.width, size.height - 2);
    g.setColor(bg.brighter());
    g.drawLine(0, size.height - 1, size.width, size.height - 1);
  }

  /** Called when a mouse event happens over the menubar */
  protected void processMouseEvent(MouseEvent e) {
    int type = e.getID()// What type of event?
    int item = findItemAt(e.getX())// Over which menu label?

    if (type == MouseEvent.MOUSE_PRESSED) {
      // If it was a mouse down event, then pop up the menu
      if (item == -1)
        return;
      Dimension size = getSize();
      PopupMenu pm = (PopupMenumenus.elementAt(item);
      if (pm != null)
        pm.show(this, startPositions[item3, size.height);

    else if (type == MouseEvent.MOUSE_EXITED) {
      // If the mouse left the menubar, then unhighlight
      if (highlightedItem != -1) {
        highlightedItem = -1;
        if (highlightColor != null)
          repaint();
      }
    else if ((type == MouseEvent.MOUSE_MOVED)
        || (type == MouseEvent.MOUSE_ENTERED)) {
      // If the mouse moved, change the highlighted item, if necessary
      if (item != highlightedItem) {
        highlightedItem = item;
        if (highlightColor != null)
          repaint();
      }
    }
  }

  /** This method is called when the mouse moves */
  protected void processMouseMotionEvent(MouseEvent e) {
    processMouseEvent(e);
  }

  /** This utility method converts an X coordinate to a menu label index */
  protected int findItemAt(int x) {
    // This could be a more efficient search...
    int nummenus = labels.size();
    int halfspace = spacing / 1;
    int i;
    for (i = nummenus - 1; i >= 0; i--) {
      if ((x >= startPositions[i- halfspace)
          && (x <= startPositions[i+ widths[i+ halfspace))
        break;
    }
    return i;
  }

  /**
   * Measure the menu labels, and figure out their positions, so we can
   * determine when a click happens, and so we can redraw efficiently.
   */
  protected void measure() {
    // Get information about the font
    FontMetrics fm = this.getFontMetrics(getFont());
    // Remember the basic font size
    ascent = fm.getAscent();
    descent = fm.getDescent();
    // Create arrays to hold the measurements and positions
    int nummenus = labels.size();
    widths = new int[nummenus];
    startPositions = new int[nummenus];

    // Measure the label strings and
    // figure out the starting position of each label
    int pos = margins.left;
    for (int i = 0; i < nummenus; i++) {
      startPositions[i= pos;
      String label = (Stringlabels.elementAt(i);
      widths[i= fm.stringWidth(label);
      pos += widths[i+ spacing;
    }

    // Compute our preferred size from this data
    prefsize.width = pos - spacing + margins.right;
    prefsize.height = ascent + descent + margins.top + margins.bottom;

    // We've don't need to be remeasured anymore.
    remeasure = false;
  }

  /**
   * These methods tell the container how big the menubar wants to be.
   *  
   */
  public Dimension getMinimumSize() {
    return getPreferredSize();
  }

  public Dimension getPreferredSize() {
    if (remeasure)
      measure();
    return prefsize;
  }

  /** @deprecated Here for compatibility with Java 1.0 */
  public Dimension minimumSize() {
    return getPreferredSize();
  }

  /** @deprecated Here for compatibility with Java 1.0 */
  public Dimension preferredSize() {
    return getPreferredSize();
  }

  /**
   * This method is called when the underlying AWT component is created. We
   * can't measure ourselves (no font metrics) until this is called.
   */
  public void addNotify() {
    super.addNotify();
    measure();
  }

  /** This method tells the container not to give us keyboard focus */
  public boolean isFocusTraversable() {
    return false;
  }

}

           
         
  
Related examples in the same category
1. Icon Demo Applet
2. 套接字程序
3. Applet Socket Quote
4. Applet的打印
5. Applet的系统属性
6. Applet的声音
7. 查看文件
8. 通信应用程序(互相沟通)
9. Get Applets
10. JDBC的程序
11. 应用程序和一个applet应用程序和一个applet
12. 应用程序及图形界面组件应用程序及图形界面组件
13. Jbuttons中图标行为Jbuttons中图标行为
14. 签名Applet
15. 负载资源的程序
16. 涂抹程序涂抹程序
17. 切换按钮切换按钮
18. 弹跳圈弹跳圈
19. 时钟演示程序时钟演示程序
20. Applet的事件测试Applet的事件测试
21. Applet的参数
22. 第一个程序
23. AppletViewer -一个简单的Applet的浏览器程序
24. 一个简单的贷款计算器程序一个简单的贷款计算器程序
25. URLButton -一个按钮类对象,跳跃到网址
26. 在一个应用程序的HTML文件中获取名单标签
27. 演示程序方法
28. 表明getParameterInfo ( )和getAppletInfo ( )
29. 散步示范文本
30. Java小程序可以运行的CGI的(对某些浏览器)
31. 演示选择程序
32. 演示程序:连接到遗留系统
33. ShowDocApplet :尝试showDocument ( )
34. 书签
35. Java波程序演示
36. Slide Puzzle
37. A class to allow use of the ncsa ISMAP format in java applets
38. 文件读取程序
39. Applet I18N
40. 图像装载程序
41. Thread Race Applet
42. 程序:从一个applet打印
43. 从JavaScript代码呼唤方法一个applet
44. 读取一个applet参数
45. 改变一个applet的背景颜色
46. 参数传递到Java小程序
47. 显示浏览器状态栏中的信息
48. 您自己的应用程序运行环境
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.