List with textfield input : List « Swing JFC « Java






List with textfield input

List with textfield input
 

import java.awt.Dimension;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.accessibility.AccessibleContext;
import javax.accessibility.AccessibleRole;
import javax.swing.DefaultListModel;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.ListModel;
import javax.swing.border.EmptyBorder;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;

public class ListInput extends JPanel implements ListSelectionListener,
    ActionListener {
  protected JLabel label;

  protected JTextField textfield;

  protected JList list;

  protected JScrollPane scrollPane;

  public ListInput(String[] data, String title) {
    setLayout(null);
    setBorder(new EmptyBorder(5, 5, 5, 5));
    label = new ListInputLabel(title, JLabel.LEFT);
    add(label);
    textfield = new ListInputText();
    textfield.addActionListener(this);
    label.setLabelFor(textfield); // NEW
    add(textfield);
    list = new ListInputList(data);
    list.setVisibleRowCount(4);
    list.addListSelectionListener(this);
    scrollPane = new JScrollPane(list);
    add(scrollPane);
  }

  public ListInput(String title, int numCols) {
    setLayout(null);
    setBorder(new EmptyBorder(5, 5, 5, 5));
    label = new ListInputLabel(title, JLabel.LEFT);
    add(label);
    textfield = new ListInputText(numCols);
    textfield.addActionListener(this);
    label.setLabelFor(textfield); // NEW
    add(textfield);
    list = new ListInputList();
    list.setVisibleRowCount(4);
    list.addListSelectionListener(this);
    scrollPane = new JScrollPane(list);
    add(scrollPane);
  }

  public void setToolTipText(String text) {
    super.setToolTipText(text);
    label.setToolTipText(text);
    textfield.setToolTipText(text);
    list.setToolTipText(text);
  }

  public void setDisplayedMnemonic(char ch) {
    label.setDisplayedMnemonic(ch);
  }

  public void setSelected(String sel) {
    list.setSelectedValue(sel, true);
    textfield.setText(sel);
  }

  public String getSelected() {
    return textfield.getText();
  }

  public void setSelectedInt(int value) {
    setSelected(Integer.toString(value));
  }

  public int getSelectedInt() {
    try {
      return Integer.parseInt(getSelected());
    } catch (NumberFormatException ex) {
      return -1;
    }
  }

  public void valueChanged(ListSelectionEvent e) {
    Object obj = list.getSelectedValue();
    if (obj != null)
      textfield.setText(obj.toString());
  }

  public void actionPerformed(ActionEvent e) {
    ListModel model = list.getModel();
    String key = textfield.getText().toLowerCase();
    for (int i = 0; i < model.getSize(); i++) {
      String data = (String) model.getElementAt(i);
      if (data.toLowerCase().startsWith(key)) {
        list.setSelectedValue(data, true);
        break;
      }
    }
  }

  public void addListSelectionListener(ListSelectionListener lst) {
    list.addListSelectionListener(lst);
  }

  public Dimension getPreferredSize() {
    Insets ins = getInsets();
    Dimension labelSize = label.getPreferredSize();
    Dimension textfieldSize = textfield.getPreferredSize();
    Dimension scrollPaneSize = scroll.getPreferredSize();
    int w = Math.max(Math.max(labelSize.width, textfieldSize.width),
        scrollPaneSize.width);
    int h = labelSize.height + textfieldSize.height + scrollPaneSize.height;
    return new Dimension(w + ins.left + ins.right, h + ins.top + ins.bottom);
  }

  public Dimension getMaximumSize() {
    return getPreferredSize();
  }

  public Dimension getMinimumSize() {
    return getPreferredSize();
  }

  public void doLayout() {
    Insets ins = getInsets();
    Dimension size = getSize();
    int x = ins.left;
    int y = ins.top;
    int w = size.width - ins.left - ins.right;
    int h = size.height - ins.top - ins.bottom;

    Dimension labelSize = label.getPreferredSize();
    label.setBounds(x, y, w, labelSize.height);
    y += labelSize.height;
    Dimension textfieldSize = textfield.getPreferredSize();
    textfield.setBounds(x, y, w, textfieldSize.height);
    y += textfieldSize.height;
    scrollPane.setBounds(x, y, w, h - y);
  }

  public void appendResultSet(ResultSet results, int index,
      boolean toTitleCase) {
    textfield.setText("");
    DefaultListModel model = new DefaultListModel();
    try {
      while (results.next()) {
        String str = results.getString(index);
        if (toTitleCase) {
          str = Character.toUpperCase(str.charAt(0))
              + str.substring(1);
        }

        model.addElement(str);
      }
    } catch (SQLException ex) {
      System.err.println("appendResultSet: " + ex.toString());
    }
    list.setModel(model);
    if (model.getSize() > 0)
      list.setSelectedIndex(0);
  }

  class ListInputLabel extends JLabel {
    public ListInputLabel(String text, int alignment) {
      super(text, alignment);
    }

    public AccessibleContext getAccessibleContext() {
      return ListInput.this.getAccessibleContext();
    }
  }

  class ListInputText extends JTextField {
    public ListInputText() {
    }

    public ListInputText(int numCols) {
      super(numCols);
    }

    public AccessibleContext getAccessibleContext() {
      return ListInput.this.getAccessibleContext();
    }
  }

  class ListInputList extends JList {
    public ListInputList() {
    }

    public ListInputList(String[] data) {
      super(data);
    }

    public AccessibleContext getAccessibleContext() {
      return ListInput.this.getAccessibleContext();
    }
  }

  // Accessibility Support
  public AccessibleContext getAccessibleContext() {
    if (accessibleContext == null)
      accessibleContext = new AccessibleOpenList();
    return accessibleContext;
  }

  protected class AccessibleOpenList extends AccessibleJComponent {

    public String getAccessibleName() {
      System.out.println("getAccessibleName: " + accessibleName);
      if (accessibleName != null)
        return accessibleName;
      return label.getText();
    }

    public AccessibleRole getAccessibleRole() {
      return AccessibleRole.LIST;
    }
  }

  public static void main(String[] a) {
    String[] fontNames = new String[] { "Roman", "Times Roman" };
    ListInput lstFontName = new ListInput(fontNames, "Name:");
    lstFontName.setDisplayedMnemonic('n');
    lstFontName.setToolTipText("Font name");
    JFrame f = new JFrame();
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    f.getContentPane().add(lstFontName);
    f.pack();
    f.setSize(new Dimension(300, 200));
    f.show();

  }

}


           
         
  








Related examples in the same category

1.Use JList component to display custom objects with ListCellRendererUse JList component to display custom objects with ListCellRenderer
2.An example of JList with a DefaultListModelAn example of JList with a DefaultListModel
3.Create JList from array of string valueCreate JList from array of string value
4.A graphical list selection monitorA graphical list selection monitor
5.Test of the DragGesture classes and JList to see if we can recognize a simple drag gestureTest of the DragGesture classes and JList to see if we can recognize a simple drag gesture
6.Dual JList with buttons in betweenDual JList with buttons in between
7.extends ListCellRenderer to display iconsextends ListCellRenderer to display icons
8.Add JList to Scroll paneAdd JList to Scroll pane
9.Dual Sample: JList and ComboBoxDual Sample: JList and ComboBox
10.JList selection changed listenerJList selection changed listener
11.Triple List from same data arrayTriple List from same data array
12.List with and without ScrollPane List with and without ScrollPane
13.Set visible row count and fixed cell height and widthSet visible row count and fixed cell height and width
14.List: Shared Data SampleList: Shared Data Sample
15.List Data Event DemoList Data Event Demo
16.How to use the list componentHow to use the list component
17.Create list from list modelCreate list from list model
18.How to create list cell rendererHow to create list cell renderer
19.React to list selection actionReact to list selection action
20.Construct the list componentConstruct the list component
21.Tab list rendererTab list renderer
22.Sharing a Model between a JList and JComboBoxSharing a Model between a JList and JComboBox
23.Demonstrate Swing ScrollingListDemonstrate Swing ScrollingList
24.Demonstrate Swing JList ListModelDemonstrate Swing JList ListModel
25.Weak ListModel
26.ListModel DemoListModel Demo
27.ModifyModelSample: ListModel DemoModifyModelSample: ListModel Demo
28.ArrayList with a ListModel for ease of use
29.Drag and Drop:JList and ListDrag and Drop:JList and List
30.List selection event
31.JList is a component that displays a list of objects: It allows the user to select one or more items.JList is a component that displays a list of objects: It allows the user to select one or more items.
32.A JTextArea is a multi-line text area that displays plain text.
33.JTextPane component is an advanced component for working with text.
34.Model for a JButton: manage only the state of the button
35.A default button model
36.JList: ListModel and ListSelectionModel. The ListModel handles data. ListSelectionModel works with the GUI.JList: ListModel and ListSelectionModel. The ListModel handles data. ListSelectionModel works with the GUI.
37.A single-selection JList.
38.Listening for Changes to the Items in a JList Component
39.Listening for Changes to the Selection in a JList Component
40.Detecting Double and Triple Clicks on an Item in a JList Component
41.Arranging Items in a JList Component
42.changes the layout orientation so that its items are displayed top-to-bottom and left-to-right.
43.Make the number of visible rows dependent on the height of the list, the visibleRowCount property must be set to 0:
44.Setting the Selection Mode of a JList Component
45.The selected items must be in a contiguous range
46.Multiple ranges of selected items are allowed
47.Setting the Selected Items in a JList Component
48.import javax.swing.JList;
49.Select all the items
50.Clear all selections
51.Select the first item
52.Add another selection - the third item
53.Deselect the first item
54.Select a single item
55.Getting the Selected Items in a JList Component
56.Get the index of the last selected item
57.Determine if the third item is selected
58.Determine if there are any selected items
59.Return the selected item objects:
60.Adding and Removing an Item in a JList Component
61.Append an item
62.Insert an item at the beginning
63.Create a list that allows adds and removes
64.Set method replaces an item
65.Methods are used to remove items
66.Getting the Items in a JList Component
67.Methods are used to find an item:
68.These methods can be used to find the range of visible items:
69.Get index of first visible item
70.Get index of last visible item
71.Setting a Tool Tip for an Item in a JList Component
72.Setting the Dimensions of an Item in a JList Component
73.It is also possible to set the item dimensions using a sample value:
74.Creating a JList Component
75.The items can be arbitrary objects. The toString() method of the objects is displayed in the list component.
76.Determining the Selected JRadioButton in a Button Group
77.A spinner that rolls from the end of a list to beginning
78.This program demonstrates the use of cell renderers in a list box
79.This program demonstrates a simple fixed list of stringsThis program demonstrates a simple fixed list of strings
80.This program demonstrates a list that dynamically computes list entriesThis program demonstrates a list that dynamically computes list entries