JComboBox与自定义渲染器和编辑器 : 组合框 « 图形用户界面 « 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 » 图形用户界面 » 组合框屏幕截图 
JComboBox与自定义渲染器和编辑器
JComboBox与自定义渲染器和编辑器
 
/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/
// EditableComboBox.java
//A fancy example of JComboBox with a custom renderer and editor used to
//display a list of JLabel objects that include both text and icons.
//

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.HashMap;
import java.util.Map;

import javax.swing.ComboBoxEditor;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.BevelBorder;

public class EditableComboBox extends JPanel {

  private BookEntry books[] {
      new BookEntry("Ant: The Definitive Guide""covers/ant.gif"),
      new BookEntry("Database Programming with JDBC and Java",
          "covers/jdbc.gif"),
      new BookEntry("Developing Java Beans""covers/beans.gif"),
      new BookEntry("Developing JSP Custom Tag Libraries",
          "covers/jsptl.gif"),
      new BookEntry("Java 2D Graphics""covers/java2d.gif"),
      new BookEntry("Java and XML""covers/jxml.gif"),
      new BookEntry("Java and XSLT""covers/jxslt.gif"),
      new BookEntry("Java and SOAP""covers/jsoap.gif"),
      new BookEntry("Java and XML Data Binding""covers/jxmldb.gif"),
      new BookEntry("Java Cookbook""covers/jcook.gif"),
      new BookEntry("Java Cryptography""covers/jcrypto.gif"),
      new BookEntry("Java Distributed Computing""covers/jdist.gif"),
      new BookEntry("Java I/O""covers/javaio.gif"),
      new BookEntry("Java in a Nutshell""covers/javanut.gif"),
      new BookEntry("Java Management Extensions""covers/jmx.gif"),
      new BookEntry("Java Message Service""covers/jms.gif"),
      new BookEntry("Java Network Programming""covers/jnetp.gif"),
      new BookEntry("Java Performance Tuning""covers/jperf.gif"),
      new BookEntry("Java RMI""covers/jrmi.gif"),
      new BookEntry("Java Security""covers/jsec.gif"),
      new BookEntry("JavaServer Pages""covers/jsp.gif"),
      new BookEntry("Java Servlet Programming""covers/servlet.gif"),
      new BookEntry("Java Swing""covers/swing.gif"),
      new BookEntry("Java Threads""covers/jthread.gif"),
      new BookEntry("Java Web Services""covers/jws.gif"),
      new BookEntry("Learning Java""covers/learnj.gif") };

  Map bookMap = new HashMap();

  public EditableComboBox() {
    // Build a mapping from book titles to their entries
    for (int i = 0; i < books.length; i++) {
      bookMap.put(books[i].getTitle(), books[i]);
    }

    setLayout(new BorderLayout());

    JComboBox bookCombo = new JComboBox(books);
    bookCombo.setEditable(true);
    bookCombo.setEditor(new ComboBoxEditorExample(bookMap, books[0]));
    bookCombo.setMaximumRowCount(4);
    bookCombo.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.out.println("You chose "
            ((JComboBoxe.getSource()).getSelectedItem() "!");
      }
    });
    bookCombo.setActionCommand("Hello");
    add(bookCombo, BorderLayout.CENTER);
  }

  public static void main(String s[]) {
    JFrame frame = new JFrame("Combo Box Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new EditableComboBox());
    frame.pack();
    frame.setVisible(true);
  }
}

class BookEntry {
  private final String title;

  private final String imagePath;

  private ImageIcon image;

  public BookEntry(String title, String imagePath) {
    this.title = title;
    this.imagePath = imagePath;
  }

  public String getTitle() {
    return title;
  }

  public ImageIcon getImage() {
    if (image == null) {
      image = new ImageIcon(imagePath);
    }
    return image;
  }

  // Override standard toString method to give a useful result
  public String toString() {
    return title;
  }
}

class ComboBoxEditorExample implements ComboBoxEditor {
  Map map;

  ImagePanel panel;

  ImageIcon questionIcon;

  public ComboBoxEditorExample(Map m, BookEntry defaultChoice) {
    map = m;
    panel = new ImagePanel(defaultChoice);
    questionIcon = new ImageIcon("question.gif");
  }

  public void setItem(Object anObject) {
    if (anObject != null) {
      panel.setText(anObject.toString());
      BookEntry entry = (BookEntrymap.get(anObject.toString());
      if (entry != null)
        panel.setIcon(entry.getImage());
      else
        panel.setIcon(questionIcon);
    }
  }

  public Component getEditorComponent() {
    return panel;
  }

  public Object getItem() {
    return panel.getText();
  }

  public void selectAll() {
    panel.selectAll();
  }

  public void addActionListener(ActionListener l) {
    panel.addActionListener(l);
  }

  public void removeActionListener(ActionListener l) {
    panel.removeActionListener(l);
  }

  //  We create our own inner class to handle setting and
  //  repainting the image and the text.
  class ImagePanel extends JPanel {

    JLabel imageIconLabel;

    JTextField textField;

    public ImagePanel(BookEntry initialEntry) {
      setLayout(new BorderLayout());

      imageIconLabel = new JLabel(initialEntry.getImage());
      imageIconLabel.setBorder(new BevelBorder(BevelBorder.RAISED));

      textField = new JTextField(initialEntry.getTitle());
      textField.setColumns(45);
      textField.setBorder(new BevelBorder(BevelBorder.LOWERED));

      add(imageIconLabel, BorderLayout.WEST);
      add(textField, BorderLayout.EAST);
    }

    public void setText(String s) {
      textField.setText(s);
    }

    public String getText() {
      return (textField.getText());
    }

    public void setIcon(Icon i) {
      imageIconLabel.setIcon(i);
      repaint();
    }

    public void selectAll() {
      textField.selectAll();
    }

    public void addActionListener(ActionListener l) {
      textField.addActionListener(l);
    }

    public void removeActionListener(ActionListener l) {
      textField.removeActionListener(l);
    }
  }
}

           
         
  
Related examples in the same category
1. 组合框按钮和下拉列表
2. 使用下拉列表使用下拉列表
3. 可编辑的组合框可编辑的组合框
4. 创建一个简单的组合框
5. 字体选择组合框字体选择组合框
6. 颜色组合框渲染颜色组合框渲染
7. 通过选择附近的标签,选择ComboBox通过选择附近的标签,选择ComboBox
8. ComoboBox从文件加载,保存项目ComoboBox从文件加载,保存项目
9. JList和JComboBox之间共享模型JList和JComboBox之间共享模型
10. 组合框演示2组合框演示2
11. 自定义组合框与图像自定义组合框与图像
12. 组合框演示组合框演示
13. 名单:共享数据名单:共享数据
14. 选择组合框选择组合框
15. MultiKey组合框MultiKey组合框
16. PopupCombo样本PopupCombo样本
17. JList和ComboBoxJList和ComboBox
18. 组合框组合框
19. 色彩组合框: ComboBoxEditor演示色彩组合框: ComboBoxEditor演示
20. Determining When the Menu of a JComboBox Component Is Displayed
21. JComboBox组件事件监听
22. Listening for Changes to the Selected Item in a JComboBox Component
23. Setting the Number of Visible Items in the Menu of a JComboBox Component
24. Displaying the Menu in a JComboBox Component Using a Keystroke If the Selected Item Is Not Unique
25. Displaying the Menu in a JComboBox Component Using a Keystroke
26. Determining If the Menu of a JComboBox Component Is Visible
27. Selecting an Item in a JComboBox Component with Multiple Keystrokes
28. 添加和删除项目JComboBox组件
29. 加入此项目到第一个项目后
30. 新增项目到列表的末尾
31. 删除第一个项目
32. 删除最后一个项目
33. 移除所有项目
34. 获取JComboBox组件中的项目
35. Getting and Setting the Selected Item in a JComboBox Component
36. If the combobox is editable, the new value can be any value
37. 创建一个只读和可编辑的JComboBox组件
38. ArrayListComboBoxModel演示ArrayListComboBoxModel演示
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.