dangsn
2024-12-26 4e9ff2ce6a830bb2340d7c8612c72eea0c5a553e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.vci.client.framework.rightConfig.operate;
 
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.Serializable;
import java.util.Vector;
 
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JList;
import javax.swing.ListCellRenderer;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;
 
/**
 * 用于多选的JCombobox
 * @author liudi
 *
 */
public class MyComboBox extends JComboBox implements ActionListener {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    public MyComboBox() {
        addItem(new CheckValue(false, "Select All"));
        this.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent ae) {
                itemSelected();
            }
        });
    }
 
    private void itemSelected() {
        if (getSelectedItem() instanceof CheckValue) {
            if (getSelectedIndex() == 0) {
                selectedAllItem();
            } else {
                CheckValue jcb = (CheckValue) getSelectedItem();
                jcb.bolValue = (!jcb.bolValue);
                setSelectedIndex(getSelectedIndex());
            }
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    showPopup();
                }
            });
        }
    }
 
    private void selectedAllItem() {
        boolean bl = false;
        for (int i = 0; i < getItemCount(); i++) {
            CheckValue jcb = (CheckValue) getItemAt(i);
            if (i == 0) {
                bl = !jcb.bolValue;
            }
            jcb.bolValue = (bl);
        }
        setSelectedIndex(0);
    }
 
    public Vector getComboVc() {
        Vector vc = new Vector();
        for (int i = 1; i < getItemCount(); i++) {
            CheckValue jcb = (CheckValue) getItemAt(i);
            if (jcb.bolValue) {
                vc.add(jcb.value);
            }
        }
        return vc;
    }
}
 
class CheckListCellRenderer extends JCheckBox implements ListCellRenderer,
        Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = -480009971086827966L;
    protected static Border noFocusBorder;
 
    /**
     * Constructs a default renderer object for an item in a list.
     */
    public CheckListCellRenderer() {
        super();
        if (noFocusBorder == null) {
            noFocusBorder = new EmptyBorder(1, 1, 1, 1);
        }
        setOpaque(true);
        setBorder(noFocusBorder);
    }
 
    public Component getListCellRendererComponent(JList list, Object value,
            int index, boolean isSelected, boolean cellHasFocus) {
        setComponentOrientation(list.getComponentOrientation());
        if (isSelected) {
            setBackground(list.getSelectionBackground());
            setForeground(list.getSelectionForeground());
        } else {
            setBackground(list.getBackground());
            setForeground(list.getForeground());
        }
        if (value instanceof CheckValue) {
            CheckValue ckValue = (CheckValue) value;
            this.setText(ckValue.value == null ? "" : ckValue.value);
            this.setSelected(ckValue.bolValue);
        }
        setEnabled(list.isEnabled());
        setFont(list.getFont());
        setBorder((cellHasFocus) ? UIManager
                .getBorder("List.focusCellHighlightBorder") : noFocusBorder);
        return this;
    }
}
 
class CheckValue {
    public boolean bolValue = false;
    public String value = null;
 
    public CheckValue() {
    }
 
    public CheckValue(boolean bolValue, String value) {
        this.bolValue = bolValue;
        this.value = value;
    }
}