Package java.awt

Examples of java.awt.List$AccessibleAWTList


        labBoardSize = new Label(
                Messages.getString("ChatLounge.labBoardSize"), Label.CENTER); //$NON-NLS-1$
        labMapSize = new Label(
                Messages.getString("ChatLounge.labMapSize"), Label.CENTER); //$NON-NLS-1$

        lisBoardsSelected = new List(5);
        lisBoardsSelected.addActionListener(this);

        butChangeBoard = new Button(Messages
                .getString("ChatLounge.butChangeBoard")); //$NON-NLS-1$
        butChangeBoard.setActionCommand("change_board"); //$NON-NLS-1$
View Full Code Here


    /**
     * Sets up the entities panel
     */
    private void setupEntities() {
        lisEntities = new List(10);
        lisEntities.addActionListener(this);
        lisEntities.addItemListener(this);

        butLoadList = new Button(Messages.getString("ChatLounge.butLoadList")); //$NON-NLS-1$
        butLoadList.setActionCommand("load_list"); //$NON-NLS-1$
View Full Code Here

     */
    private void setupBVs() {
        labBVs = new Label(
                Messages.getString("ChatLounge.labBVs.BV"), Label.CENTER); //$NON-NLS-1$

        lisBVs = new List(5);

        panBVs = new Panel();

        bvCbg = new CheckboxGroup();
        chkBV = new Checkbox(
View Full Code Here

     */
    private void setupStarts() {
        labStarts = new Label(
                Messages.getString("ChatLounge.labStarts"), Label.CENTER); //$NON-NLS-1$

        lisStarts = new List(5);
        lisStarts.addActionListener(this);

        butChangeStart = new Button(Messages
                .getString("ChatLounge.butChangeStart")); //$NON-NLS-1$
        butChangeStart.addActionListener(this);
View Full Code Here

                        ItemEvent.SELECTED));
            }
        });

        // Create a list to hold the items in the category.
        items = new List(15);
        this.add(items, BorderLayout.CENTER);

        // Update the "select new camo" when an item is selected.
        items.addItemListener(this);
View Full Code Here

        history = new LinkedList<String>();

        chatArea = new TextArea(
                " \n", GUIPreferences.getInstance().getInt("AdvancedChatboxSize"), 40, TextArea.SCROLLBARS_VERTICAL_ONLY); //$NON-NLS-1$
        chatArea.setEditable(false);
        playerList = new List(GUIPreferences.getInstance().getInt(
                "AdvancedChatboxSize"));
        inputField = new TextField();
        inputField.addKeyListener(this);
        butDone = new Button(Messages.getString("ChatterBox.ImDone")); //$NON-NLS-1$
        butDone.setEnabled(false);
View Full Code Here

            slotLabel = new TransparentLabel(
                    Messages.getString("MechDisplay.Slot"), fm, Color.white, TransparentLabel.CENTER); //$NON-NLS-1$
            unitLabel = new TransparentLabel(
                    Messages.getString("MechDisplay.Unit"), fm, Color.white, TransparentLabel.CENTER); //$NON-NLS-1$

            locList = new List(8, false);
            locList.addItemListener(this);
            locList.addKeyListener(clientgui.menuBar);

            slotList = new List(12, false);
            slotList.addItemListener(this);
            slotList.addKeyListener(clientgui.menuBar);
            // slotList.setEnabled(false);

            unitList = new List(8, false);
            unitList.addItemListener(this);
            unitList.addKeyListener(clientgui.menuBar);

            m_chMode = new Choice();
            m_chMode.add("   "); //$NON-NLS-1$
View Full Code Here

            chSensors.addItemListener(this);

            narcLabel = new TransparentLabel(
                    Messages.getString("MechDisplay.AffectedBy"), fm, Color.white, TransparentLabel.CENTER); //$NON-NLS-1$

            narcList = new List(3, false);
            narcList.addKeyListener(clientgui.menuBar);

            // transport stuff
            // unusedL = new Label( "Unused Space:", Label.CENTER );
View Full Code Here

        Panel main = new Panel();
        main.setLayout(new BorderLayout());
        dialog.add(main);

        // Create a list as the center of the dialog.
        list = new List(5);
        list.add("data/images/camo/Wood1.jpg");
        list.add("data/images/camo/Wood2.jpg");
        list.add("data/images/camo/Urban.jpg");
        list.add("data/images/camo/Winter.jpg");
        list.select(0);
View Full Code Here

        editPanel.add(this.zustName);
        editPanel.add(this.aktion);
        editPanel.add(this.param);
        editPanel.add(this.alter);

        this.ktList = new List(5, false);
        this.ktList.add(
            "                                            "
            + "                                          ");
        this.ktList.addActionListener(this);
        this.ktList.addItemListener(this);
View Full Code Here

TOP

Related Classes of java.awt.List$AccessibleAWTList

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.