⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jlabeledchoice.java

📁 测试工具
💻 JAVA
字号:
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */

package org.apache.jorphan.gui;

import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class JLabeledChoice extends JPanel implements JLabeledField {
	private static final Object[] EMPTY_OBJECT_ARRAY = new Object [0];

    private final JLabel mLabel = new JLabel();

	private final JComboBox choiceList;

	// Maybe move to vector if MT problems occur
	private final ArrayList mChangeListeners = new ArrayList(3);

	private JButton delete, add;

	/**
	 * Default constructor, The label and the Text field are left empty.
	 */
	public JLabeledChoice() {
		super();
		choiceList = new JComboBox();
		init();
	}

	public JLabeledChoice(String pLabel, boolean editable) {
		super();
		choiceList = new JComboBox();
		mLabel.setText(pLabel);
		choiceList.setEditable(editable);
		init();
	}

	/**
	 * Constructs a non-edittable combo-box with the label displaying the passed text.
	 * 
	 * @param pLabel - the text to display in the label.
	 * @param items - the items to display in the Combo box
	 */
	public JLabeledChoice(String pLabel, String[] items) {
		this(pLabel, items, false);
	}

	/**
	 * Constructs a combo-box with the label displaying the passed text.
	 * 
	 * @param pLabel - the text to display in the label.
	 * @param items - the items to display in the Combo box
	 * @param editable - if true, then Add and Delete buttons are created.
	 * 
	 */
	public JLabeledChoice(String pLabel, String[] items, boolean editable) {
		super();
		mLabel.setText(pLabel);
		choiceList = new JComboBox(items);
		choiceList.setEditable(editable);
		init();
	}

	public List getComponentList() {
		List comps = new LinkedList();
		comps.add(mLabel);
		comps.add(choiceList);
		return comps;
	}

	public void setEditable(boolean editable) {
		choiceList.setEditable(editable);
	}

	public void addValue(String item) {
		choiceList.addItem(item);
	}

	public void setValues(String[] items) {
		choiceList.removeAllItems();
		for (int i = 0; i < items.length; i++) {
			choiceList.addItem(items[i]);
		}
	}

	/**
	 * Initialises all of the components on this panel.
	 */
	private void init() {
		/*
		 * if(choiceList.isEditable()) { choiceList.addActionListener(new
		 * ComboListener()); }
		 */
		choiceList.setBorder(BorderFactory.createLoweredBevelBorder());
		// Register the handler for focus listening. This handler will
		// only notify the registered when the text changes from when
		// the focus is gained to when it is lost.
		choiceList.addItemListener(new ItemListener() {
			/**
			 * Callback method when the focus to the Text Field component is
			 * lost.
			 * 
			 * @param e
			 *            The focus event that occured.
			 */
			public void itemStateChanged(ItemEvent e) {
				if (e.getStateChange() == ItemEvent.SELECTED) {
					notifyChangeListeners();
				}
			}
		});

		// Add the sub components
		this.add(mLabel);
		this.add(choiceList);
		if (choiceList.isEditable()) {
			add = new JButton("Add");
			add.setMargin(new Insets(1, 1, 1, 1));
			add.addActionListener(new AddListener());
			this.add(add);
			delete = new JButton("Del");
			delete.setMargin(new Insets(1, 1, 1, 1));
			delete.addActionListener(new DeleteListener());
			this.add(delete);
		}

	}

	/**
	 * Set the text displayed in the label.
	 * 
	 * @param pLabel
	 *            The new label text.
	 */
	public void setLabel(String pLabel) {
		mLabel.setText(pLabel);
	}

	/**
	 * Set the text displayed in the Text Field.
	 * 
	 * @param pText
	 *            The new text to display in the text field.
	 */
	public void setText(String pText) {
		choiceList.setSelectedItem(pText);
	}

	public void setSelectedIndex(int index){
		choiceList.setSelectedIndex(index);
	}
	/**
	 * Returns the text in the Text Field.
	 * 
	 * @return The text in the Text Field. Never returns null.
	 */
	public String getText() {
        Object item = choiceList.getSelectedItem();
        if (item == null) {
            return "";
        } else {
    		return (String) item;
        }
	}
	
	public int getSelectedIndex(){
		return choiceList.getSelectedIndex();
	}

	public Object[] getSelectedItems() {
        Object list[]=choiceList.getSelectedObjects();
        if (list==null) {
            return EMPTY_OBJECT_ARRAY;
        }
		return list;
	}

	public String[] getItems() {
		String[] items = new String[choiceList.getItemCount()];
		for (int i = 0; i < items.length; i++) {
			items[i] = (String) choiceList.getItemAt(i);
		}
		return items;
	}

	/**
	 * Returns the text of the label.
	 * 
	 * @return The text of the label.
	 */
	public String getLabel() {
		return mLabel.getText();
	}

	/**
	 * Adds a change listener, that will be notified when the text in the text
	 * field is changed. The ChangeEvent that will be passed to registered
	 * listeners will contain this object as the source, allowing the new text
	 * to be extracted using the {@link #getText() getText} method.
	 * 
	 * @param pChangeListener
	 *            The listener to add
	 */
	public void addChangeListener(ChangeListener pChangeListener) {
		mChangeListeners.add(pChangeListener);
	}

	/**
	 * Removes a change listener.
	 * 
	 * @param pChangeListener
	 *            The change listener to remove.
	 */
	public void removeChangeListener(ChangeListener pChangeListener) {
		mChangeListeners.remove(pChangeListener);
	}

	/**
	 * Notify all registered change listeners that the text in the text field
	 * has changed.
	 */
	private void notifyChangeListeners() {
		ChangeEvent ce = new ChangeEvent(this);
		for (int index = 0; index < mChangeListeners.size(); index++) {
			((ChangeListener) mChangeListeners.get(index)).stateChanged(ce);
		}
	}

	private class AddListener implements ActionListener {

		public void actionPerformed(ActionEvent e) {
			Object item = choiceList.getSelectedItem();
			int index = choiceList.getSelectedIndex();
			if (!item.equals(choiceList.getItemAt(index))) {
				choiceList.addItem(item);
			}
			choiceList.setSelectedItem(item);
			notifyChangeListeners();
		}
	}

	private class DeleteListener implements ActionListener {

		public void actionPerformed(ActionEvent e) {
			if (choiceList.getItemCount() > 1) {
				choiceList.removeItemAt(choiceList.getSelectedIndex());
				notifyChangeListeners();
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -