Package org.openstreetmap.josm.gui.widgets

Examples of org.openstreetmap.josm.gui.widgets.QuadStateCheckBox


                allowedStates.add(QuadStateCheckBox.State.PARTIAL);
            allowedStates.add(QuadStateCheckBox.State.SELECTED);
            if (!disable_off || value_off.equals(oneValue))
                allowedStates.add(QuadStateCheckBox.State.NOT_SELECTED);
            allowedStates.add(QuadStateCheckBox.State.UNSET);
            check = new QuadStateCheckBox(locale_text, initialState,
                    allowedStates.toArray(new QuadStateCheckBox.State[allowedStates.size()]));

            p.add(check, GBC.eol().fill(GBC.HORIZONTAL));
            return true;
        }
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.widgets.QuadStateCheckBox

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.