/* * * Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of Oracle nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
Hashtable<String, Object> parts = new Hashtable<>();
/** * main method allows us to run as a standalone demo.
*/ publicstaticvoid main(String[] args) {
ComboBoxDemo demo = new ComboBoxDemo(null);
demo.mainImpl();
}
/** * ComboBoxDemo Constructor
*/ public ComboBoxDemo(SwingSet2 swingset) { // Set the title for this demo, and an icon used to represent this // demo inside the SwingSet2 app. super(swingset, "ComboBoxDemo", "toolbar/JComboBox.gif");
// Create a panel to hold buttons
JPanel comboBoxPanel = new JPanel() { public Dimension getMaximumSize() { returnnew Dimension(getPreferredSize().width, super.getMaximumSize().height);
}
};
comboBoxPanel.setLayout(new BoxLayout(comboBoxPanel, BoxLayout.Y_AXIS));
// Fill up the remaining space
comboBoxPanel.add(new JPanel(new BorderLayout()));
// Create and place the Face.
face = new Face();
JPanel facePanel = new JPanel();
facePanel.setLayout(new BorderLayout());
facePanel.setBorder(new BevelBorder(BevelBorder.LOWERED));
faceLabel = new JLabel(face);
facePanel.add(faceLabel, BorderLayout.CENTER); // Indicate that the face panel is controlled by the hair, eyes and // mouth combo boxes.
Object [] controlledByObjects = new Object[3];
controlledByObjects[0] = hairCB;
controlledByObjects[1] = eyesCB;
controlledByObjects[2] = mouthCB;
AccessibleRelation controlledByRelation = new AccessibleRelation(AccessibleRelation.CONTROLLED_BY_PROPERTY,
controlledByObjects);
facePanel.getAccessibleContext().getAccessibleRelationSet().add(controlledByRelation);
// Indicate that the hair, eyes and mouth combo boxes are controllers // for the face panel.
AccessibleRelation controllerForRelation = new AccessibleRelation(AccessibleRelation.CONTROLLER_FOR_PROPERTY,
facePanel);
hairCB.getAccessibleContext().getAccessibleRelationSet().add(controllerForRelation);
eyesCB.getAccessibleContext().getAccessibleRelationSet().add(controllerForRelation);
mouthCB.getAccessibleContext().getAccessibleRelationSet().add(controllerForRelation);
// add buttons and image panels to inner panel
innerPanel.add(comboBoxPanel);
innerPanel.add(Box.createRigidArea(HGAP30));
innerPanel.add(facePanel);
innerPanel.add(Box.createRigidArea(HGAP20));
// load up the face parts
addFace("brent", getString("ComboBoxDemo.brent"));
addFace("georges", getString("ComboBoxDemo.georges"));
addFace("hans", getString("ComboBoxDemo.hans"));
addFace("howard", getString("ComboBoxDemo.howard"));
addFace("james", getString("ComboBoxDemo.james"));
addFace("jeff", getString("ComboBoxDemo.jeff"));
addFace("jon", getString("ComboBoxDemo.jon"));
addFace("lara", getString("ComboBoxDemo.lara"));
addFace("larry", getString("ComboBoxDemo.larry"));
addFace("lisa", getString("ComboBoxDemo.lisa"));
addFace("michael", getString("ComboBoxDemo.michael"));
addFace("philip", getString("ComboBoxDemo.philip"));
addFace("scott", getString("ComboBoxDemo.scott"));
// set the default face
presetCB.setSelectedIndex(0);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.