组合框菜单范例 : 组合框 « Swing组件 « 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 » Swing组件 » 组合框屏幕截图 
组合框菜单范例
组合框菜单范例

// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html


import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.Icon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
import javax.swing.border.EtchedBorder;
import javax.swing.border.TitledBorder;
import javax.swing.plaf.basic.BasicArrowButton;

/**
 @version 1.0 05/10/99
 */
public class ComboBoxMenuExample extends JFrame {

  public ComboBoxMenuExample() {
    super("ComboBoxMenu Example");

    String[] itemStr = "name""Red""Blue""number""255,0,0",
        "0,0,255",
        // separator
        "system""control""controlHighlight""controlShadow",
        "text" };

    JMenuItem[] menuItems = new JMenuItem[7];
    menuItems[0new JMenuItem(itemStr[1]);
    menuItems[1new JMenuItem(itemStr[2]);
    menuItems[2new JMenuItem(itemStr[4]);
    menuItems[3new JMenuItem(itemStr[5]);
    menuItems[4new JMenuItem(itemStr[8]);
    menuItems[5new JMenuItem(itemStr[9]);
    menuItems[6new JMenuItem(itemStr[10]);

    JMenu[] menus = new JMenu[4];
    menus[0new JMenu(itemStr[0]);
    menus[1new JMenu(itemStr[3]);
    menus[2new JMenu(itemStr[6]);
    menus[3new JMenu(itemStr[7]);

    menus[0].add(menuItems[0]);
    menus[0].add(menuItems[1]);
    menus[1].add(menuItems[2]);
    menus[1].add(menuItems[3]);
    menus[3].add(menuItems[4]);
    menus[3].add(menuItems[5]);
    menus[2].add(menus[3]);
    menus[2].add(menuItems[6]);

    JMenu menu = ComboMenuBar.createMenu(menuItems[0].getText());
    menu.add(menus[0]);
    menu.add(menus[1]);
    menu.addSeparator();
    menu.add(menus[2]);

    ComboMenuBar comboMenu = new ComboMenuBar(menu);

    JComboBox combo = new JComboBox();
    combo.addItem(itemStr[1]);
    combo.addItem(itemStr[2]);
    combo.addItem(itemStr[4]);
    combo.addItem(itemStr[5]);
    combo.addItem(itemStr[8]);
    combo.addItem(itemStr[9]);
    combo.addItem(itemStr[10]);

    getContentPane().setLayout(new FlowLayout());
    getContentPane().add(new ComboPanel("Fake ComboBox", comboMenu));
    getContentPane().add(new ComboPanel("ComboBox", combo));
  }

  class ComboPanel extends JPanel {
    ComboPanel(String title, JComponent c) {
      setLayout(new FlowLayout());
      setBorder(new TitledBorder(title));
      add(c);
    }
  }

  public static void main(String args[]) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    ComboBoxMenuExample frame = new ComboBoxMenuExample();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    frame.setSize(370100);
    frame.setVisible(true);
  }
}

class ComboMenuBar extends JMenuBar {

  JMenu menu;

  Dimension preferredSize;

  public ComboMenuBar(JMenu menu) {
    this.menu = menu;

    Color color = UIManager.getColor("Menu.selectionBackground");
    UIManager.put("Menu.selectionBackground", UIManager
        .getColor("Menu.background"));
    menu.updateUI();
    UIManager.put("Menu.selectionBackground", color);

    MenuItemListener listener = new MenuItemListener();
    setListener(menu, listener);

    add(menu);
  }

  class MenuItemListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
      JMenuItem item = (JMenuIteme.getSource();
      menu.setText(item.getText());
      menu.requestFocus();
    }
  }

  private void setListener(JMenuItem item, ActionListener listener) {
    if (item instanceof JMenu) {
      JMenu menu = (JMenuitem;
      int n = menu.getItemCount();
      for (int i = 0; i < n; i++) {
        setListener(menu.getItem(i), listener);
      }
    else if (item != null) { // null means separator
      item.addActionListener(listener);
    }
  }

  public String getSelectedItem() {
    return menu.getText();
  }

  public void setPreferredSize(Dimension size) {
    preferredSize = size;
  }

  public Dimension getPreferredSize() {
    if (preferredSize == null) {
      Dimension sd = super.getPreferredSize();
      Dimension menuD = getItemSize(menu);
      Insets margin = menu.getMargin();
      Dimension retD = new Dimension(menuD.width, margin.top
          + margin.bottom + menuD.height);
      menu.setPreferredSize(retD);
      preferredSize = retD;
    }
    return preferredSize;
  }

  private Dimension getItemSize(JMenu menu) {
    Dimension d = new Dimension(00);
    int n = menu.getItemCount();
    for (int i = 0; i < n; i++) {
      Dimension itemD;
      JMenuItem item = menu.getItem(i);
      if (item instanceof JMenu) {
        itemD = getItemSize((JMenuitem);
      else if (item != null) {
        itemD = item.getPreferredSize();
      else {
        itemD = new Dimension(00)// separator
      }
      d.width = Math.max(d.width, itemD.width);
      d.height = Math.max(d.height, itemD.height);
    }
    return d;
  }

  public static class ComboMenu extends JMenu {
    ArrowIcon iconRenderer;

    public ComboMenu(String label) {
      super(label);
      iconRenderer = new ArrowIcon(SwingConstants.SOUTH, true);
      setBorder(new EtchedBorder());
      setIcon(new BlankIcon(null, 11));
      setHorizontalTextPosition(JButton.LEFT);
      setFocusPainted(true);
    }

    public void paintComponent(Graphics g) {
      super.paintComponent(g);
      Dimension d = this.getPreferredSize();
      int x = Math.max(0, d.width - iconRenderer.getIconWidth() 3);
      int y = Math.max(0,
          (d.height - iconRenderer.getIconHeight()) 2);
      iconRenderer.paintIcon(this, g, x, y);
    }
  }

  public static JMenu createMenu(String label) {
    return new ComboMenu(label);
  }

}

class ArrowIcon implements Icon, SwingConstants {
  private static final int DEFAULT_SIZE = 11;

  //private static final int DEFAULT_SIZE = 5;

  private int size;

  private int iconSize;

  private int direction;

  private boolean isEnabled;

  private BasicArrowButton iconRenderer;

  public ArrowIcon(int direction, boolean isPressedView) {
    this(DEFAULT_SIZE, direction, isPressedView);
  }

  public ArrowIcon(int iconSize, int direction, boolean isEnabled) {
    this.size = iconSize / 2;
    this.iconSize = iconSize;
    this.direction = direction;
    this.isEnabled = isEnabled;
    iconRenderer = new BasicArrowButton(direction);
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    iconRenderer.paintTriangle(g, x, y, size, direction, isEnabled);
  }

  public int getIconWidth() {
    //int retCode;
    switch (direction) {
    case NORTH:
    case SOUTH:
      return iconSize;
    case EAST:
    case WEST:
      return size;
    }
    return iconSize;
  }

  public int getIconHeight() {
    switch (direction) {
    case NORTH:
    case SOUTH:
      return size;
    case EAST:
    case WEST:
      return iconSize;
    }
    return size;
  }
}

class BlankIcon implements Icon {
  private Color fillColor;

  private int size;

  public BlankIcon() {
    this(null, 11);
  }

  public BlankIcon(Color color, int size) {
    //UIManager.getColor("control")
    //UIManager.getColor("controlShadow")
    fillColor = color;

    this.size = size;
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    if (fillColor != null) {
      g.setColor(fillColor);
      g.drawRect(x, y, size - 1, size - 1);
    }
  }

  public int getIconWidth() {
    return size;
  }

  public int getIconHeight() {
    return size;
  }
}
           
       
Related examples in the same category
1. 图形界面组合表图形界面组合表
2. 组合框的颜色选择器(仅限Windows颜色选择)组合框的颜色选择器(仅限Windows颜色选择)
3. MSN类似的图形界面组合框MSN类似的图形界面组合框
4. 图形界面自动完成下拉框图形界面自动完成下拉框
5. 自动完成下拉框
6. 阶梯组合框范例阶梯组合框范例
7. 块组合框范例块组合框范例
8. Disabled ComboBox ExampleDisabled ComboBox Example
9. 工具提示组合框范例工具提示组合框范例
10. JComboBox :加入自动完成, Binay查询2JComboBox :加入自动完成, Binay查询2
11. JComboBox: adding automatic completion-Catching user inputJComboBox: adding automatic completion-Catching user input
12. JComboBox: adding automatic completion-Adding automatic selectionJComboBox: adding automatic completion-Adding automatic selection
13. JComboBox: adding automatic completion-Adding automatic completionJComboBox: adding automatic completion-Adding automatic completion
14. JComboBox: adding automatic completion-Fixed Auto SelectionJComboBox: adding automatic completion-Fixed Auto Selection
15. JComboBox: adding automatic completion-Case insensitive matchingJComboBox: adding automatic completion-Case insensitive matching
16. JComboBox: adding automatic completion-Prefer the currently selected itemJComboBox: adding automatic completion-Prefer the currently selected item
17. JComboBox: adding automatic completion-Ignore input that does not matchJComboBox: adding automatic completion-Ignore input that does not match
18. JComboBox: adding automatic completion-Highlight complete textJComboBox: adding automatic completion-Highlight complete text
19. JComboBox: adding automatic completion-Popup the item listJComboBox: adding automatic completion-Popup the item list
20. JComboBox: adding automatic completion-Cursor positionJComboBox: adding automatic completion-Cursor position
21. JComboBox: adding automatic completion-Handling the initial selectionJComboBox: adding automatic completion-Handling the initial selection
22. JComboBox: adding automatic completion-Handling focus lossJComboBox: adding automatic completion-Handling focus loss
23. JComboBox: adding automatic completion-BackspaceJComboBox: adding automatic completion-Backspace
24. JComboBox: adding automatic completion-Backspace 2JComboBox: adding automatic completion-Backspace 2
25. JComboBox: adding automatic completion-Pressing backspace at the beginningJComboBox: adding automatic completion-Pressing backspace at the beginning
26. JComboBox: adding automatic completion-Maximum MatchJComboBox: adding automatic completion-Maximum Match
27. JComboBox: adding automatic completion-Non-strict matchingJComboBox: adding automatic completion-Non-strict matching
28. JComboBox: adding automatic completion-Non-strict matching 2JComboBox: adding automatic completion-Non-strict matching 2
29. JComboBox: adding automatic completion-Binary Lookup and PerformanceJComboBox: adding automatic completion-Binary Lookup and Performance
30. JComboBox: adding automatic completion-Binay Lookup 2JComboBox: adding automatic completion-Binay Lookup 2
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.