Examples of CheckBoxList


Examples of com.dci.intellij.dbn.common.ui.list.CheckBoxList

            AbstractButton abstractButton = (AbstractButton) component;
            if (actionListener == null) actionListener = createActionListener();
            abstractButton.addActionListener(actionListener);
        }
        else if (component instanceof CheckBoxList) {
            CheckBoxList checkBoxList = (CheckBoxList) component;
            if (actionListener == null) actionListener = createActionListener();
            checkBoxList.addActionListener(actionListener);
        } else if (component instanceof JTextField) {
            JTextField textField = (JTextField) component;
            if (documentListener == null) documentListener = createDocumentListener();
            textField.getDocument().addDocumentListener(documentListener);
        } else if (component instanceof JComboBox) {
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.list.CheckBoxList

        Shortcut[] shortcuts = KeyUtil.getShortcuts("DBNavigator.Actions.Navigation.GotoDatabaseObject");
        TitledBorder border = (TitledBorder) mainPanel.getBorder();
        border.setTitle("Lookup Objects (" + KeymapUtil.getShortcutsText(shortcuts) + ")");
        updateBorderTitleForeground(mainPanel);

        lookupObjectsList = new CheckBoxList(configuration.getLookupObjectTypes());
        lookupObjectsScrollPane.setViewportView(lookupObjectsList);

        boolean databaseLoadActive = getConfiguration().getForceDatabaseLoad().value();
        loadRadioButton.setSelected(databaseLoadActive);
        noLoadRadioButton.setSelected(!databaseLoadActive);
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.list.CheckBoxList

    private JTextField textLengthThresholdTextField;
    private CheckBoxList checkBoxList;

    public DataEditorQualifiedEditorSettingsForm(DataEditorQualifiedEditorSettings settings) {
        super(settings);
        checkBoxList = new CheckBoxList(settings.getContentTypes());
        listScrollPane.setViewportView(checkBoxList);
        updateBorderTitleForeground(mainPanel);
        resetChanges();

        registerComponent(textLengthThresholdTextField);
View Full Code Here

Examples of com.jidesoft.swing.CheckBoxList

        // Generated using JFormDesigner non-commercial license
        dialogPane = new JPanel();
        vSpacer1 = new JPanel(null);
        contentPanel = new JPanel();
        trackPanel = new JScrollPane();
        trackList = new CheckBoxList();
        initTrackList();
        buttonBar = new JPanel();
        okButton = new JButton();
        cancelButton = new JButton();
View Full Code Here

Examples of com.jidesoft.swing.CheckBoxList

    private void initComponents() {
        // JFormDesigner - Component initialization - DO NOT MODIFY  //GEN-BEGIN:initComponents
        // Generated using JFormDesigner non-commercial license
        scrollPane1 = new JScrollPane();
        trackCheckBoxList = new CheckBoxList();

        //======== this ========
        setLayout(new BoxLayout(this, BoxLayout.X_AXIS));

        //======== scrollPane1 ========
View Full Code Here

Examples of com.k42b3.zubat.basic.form.CheckboxList

    item.setLayout(new BorderLayout());

    JLabel label = new JLabel(nodeLabel.getTextContent());
    label.setPreferredSize(new Dimension(100, 22));

    CheckboxList checkboxlist = new CheckboxList(nodeSrc.getTextContent());
    checkboxlist.setPreferredSize(new Dimension(255, 22));

    item.add(checkboxlist, BorderLayout.CENTER);


    requestFields.put(nodeRef.getTextContent(), checkboxlist);
View Full Code Here

Examples of com.salas.bb.utils.uif.CheckBoxList

        public ChangesConfirmationDialog(Frame frame, List<ReadingList> newLists, List<IFeed> newFeeds)
        {
            super(frame);

            addFeeds = newFeeds;
            lstAddFeeds = new CheckBoxList();
            lstAddFeeds.setListData(FeedCheckBox.wrap(addFeeds));

            addReadingLists = newLists;
            lstAddReadingLists = new CheckBoxList();
            lstAddReadingLists.setListData(ReadingListCheckBox.wrap(addReadingLists));

            enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        }
View Full Code Here

Examples of com.salas.bb.utils.uif.CheckBoxList

        list = aList;
        addFeeds = aAddFeeds;
        removeFeeds = aRemoveFeeds;

        lstAddFeeds = new CheckBoxList();
        lstAddFeeds.setListData(FeedCheckBox.wrap(addFeeds));

        lstRemoveFeeds = new CheckBoxList();
        lstRemoveFeeds.setListData(FeedCheckBox.wrap(removeFeeds));

        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    }
View Full Code Here

Examples of com.salas.bb.utils.uif.CheckBoxList

    {
        super(frame);
        feedTitle = feed.getTitle();
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);

        lstGuides = new CheckBoxList();
        lstGuides.setListData(GuideCheckBox.wrap(feed.getParentGuides()));
    }
View Full Code Here

Examples of it.freedomotic.jfrontend.utils.CheckBoxList

    }

    private void populateMultiselectionList(BehaviorLogic b) {
        final TaxonomyBehaviorLogic lb = (TaxonomyBehaviorLogic) b;
        JLabel label = new JLabel(b.getName() + ":");
        final CheckBoxList list = new CheckBoxList();
        final JTextField newItem = new JTextField(I18n.msg( "add_new_item"));
        JButton btnAdd = new JButton(I18n.msg("add"));
        btnAdd.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                if (!newItem.getText().isEmpty()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.