aboutsummaryrefslogtreecommitdiff
path: root/src/macosx/classes/sun/lwawt/LWCheckboxPeer.java
blob: c3b91a2fa86274756c61dccbf4bb946dce355c2a (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */


package sun.lwawt;

import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.awt.peer.CheckboxPeer;
import java.beans.Transient;

import javax.swing.JCheckBox;
import javax.swing.JComponent;
import javax.swing.JRadioButton;
import javax.swing.JToggleButton;
import javax.swing.SwingUtilities;

/**
 * Lightweight implementation of {@link CheckboxPeer}. Delegates most of the
 * work to the {@link JCheckBox} and {@link JRadioButton}, which are placed
 * inside an empty {@link JComponent}.
 */
final class LWCheckboxPeer
        extends LWComponentPeer<Checkbox, LWCheckboxPeer.CheckboxDelegate>
        implements CheckboxPeer, ItemListener {

    LWCheckboxPeer(final Checkbox target,
                   final PlatformComponent platformComponent) {
        super(target, platformComponent);
    }

    @Override
    CheckboxDelegate createDelegate() {
        return new CheckboxDelegate();
    }

    @Override
    Component getDelegateFocusOwner() {
        return getDelegate().getCurrentButton();
    }

    @Override
    void initializeImpl() {
        super.initializeImpl();
        setLabel(getTarget().getLabel());
        setState(getTarget().getState());
        setCheckboxGroup(getTarget().getCheckboxGroup());
    }

    @Override
    public void itemStateChanged(final ItemEvent e) {
        // group.setSelectedCheckbox() will repaint the component
        // to let LWCheckboxPeer correctly handle it we should call it
        // after the current event is processed
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                boolean postEvent = true;
                final CheckboxGroup group = getTarget().getCheckboxGroup();
                if (group != null) {
                    if (e.getStateChange() == ItemEvent.SELECTED) {
                        if (group.getSelectedCheckbox() != getTarget()) {
                            group.setSelectedCheckbox(getTarget());
                        } else {
                            postEvent = false;
                        }
                    } else {
                        postEvent = false;
                        if (group.getSelectedCheckbox() == getTarget()) {
                            // Don't want to leave the group with no selected
                            // checkbox.
                            getTarget().setState(true);
                        }
                    }
                } else {
                    getTarget().setState(e.getStateChange()
                                         == ItemEvent.SELECTED);
                }
                if (postEvent) {
                    postEvent(new ItemEvent(getTarget(),
                                            ItemEvent.ITEM_STATE_CHANGED,
                                            getTarget().getLabel(),
                                            e.getStateChange()));
                }
            }
        });
    }

    @Override
    public void setCheckboxGroup(final CheckboxGroup g) {
        synchronized (getDelegateLock()) {
            getDelegate().getCurrentButton().removeItemListener(this);
            getDelegate().setRadioButton(g != null);
            getDelegate().getCurrentButton().addItemListener(this);
        }
        repaintPeer();
    }

    @Override
    public void setLabel(final String label) {
        synchronized (getDelegateLock()) {
            getDelegate().setText(label);
        }
    }

    @Override
    public void setState(final boolean state) {
        synchronized (getDelegateLock()) {
            getDelegate().setSelected(state);
        }
        repaintPeer();
    }

    @Override
    public boolean isFocusable() {
        return true;
    }

    @SuppressWarnings("serial")// Safe: outer class is non-serializable.
    final class CheckboxDelegate extends JComponent {

        private final JCheckBox cb;
        private final JRadioButton rb;

        CheckboxDelegate() {
            super();
            cb = new JCheckBox() {
                @Override
                public boolean hasFocus() {
                    return getTarget().hasFocus();
                }
            };
            rb = new JRadioButton() {
                @Override
                public boolean hasFocus() {
                    return getTarget().hasFocus();
                }
            };
            setLayout(null);
            setRadioButton(false);
            add(rb);
            add(cb);
        }

        @Override
        public void setEnabled(final boolean enabled) {
            super.setEnabled(enabled);
            rb.setEnabled(enabled);
            cb.setEnabled(enabled);
        }

        @Override
        public void setOpaque(final boolean isOpaque) {
            super.setOpaque(isOpaque);
            rb.setOpaque(isOpaque);
            cb.setOpaque(isOpaque);
        }

        @Override
        @Deprecated
        public void reshape(final int x, final int y, final int w,
                            final int h) {
            super.reshape(x, y, w, h);
            cb.setBounds(0, 0, w, h);
            rb.setBounds(0, 0, w, h);
        }

        @Override
        public Dimension getPreferredSize() {
            return getCurrentButton().getPreferredSize();
        }

        @Override
        @Transient
        public Dimension getMinimumSize() {
            return getCurrentButton().getMinimumSize();
        }

        void setRadioButton(final boolean showRadioButton) {
            rb.setVisible(showRadioButton);
            cb.setVisible(!showRadioButton);
        }

        @Transient
        JToggleButton getCurrentButton() {
            return cb.isVisible() ? cb : rb;
        }

        void setText(final String label) {
            cb.setText(label);
            rb.setText(label);
        }

        void setSelected(final boolean state) {
            cb.setSelected(state);
            rb.setSelected(state);
        }
    }
}