Examples of JBScrollPane


Examples of com.intellij.ui.components.JBScrollPane

                    refreshValues();
                }
            });
            jPanel.add(button, BorderLayout.NORTH);

            JBScrollPane jbScrollPane = new JBScrollPane(table);
            jbScrollPane.getVerticalScrollBar().setUnitIncrement(16);

            jPanel.add(jbScrollPane, BorderLayout.CENTER);

            Content content = ContentFactory.SERVICE.getInstance().createContent(jPanel, tableName, false);
            contentManager.addContent(content);
View Full Code Here

Examples of com.intellij.ui.components.JBScrollPane

    private CheckBoxTreeWrapper(CheckedTreeNode rootNode) {
        topPanel = new JDialog();
        topPanel.setTitle(Constants.APPLICATION_SELECTION_TITLE);

        tree = new CheckboxTree(new AppRenderer(), rootNode);
        JScrollPane jScrollPane = new JBScrollPane(tree);
        jScrollPane.setPreferredSize(new Dimension(600, 400));
        topPanel.getContentPane().add(jScrollPane, BorderLayout.CENTER);

        JPanel buttonPanel = getButtonsPanel();
        topPanel.getContentPane().add(buttonPanel, BorderLayout.SOUTH);
View Full Code Here

Examples of com.intellij.ui.components.JBScrollPane

        add(infoLabel, BorderLayout.NORTH);

        errorField.setEditable(false);
        errorField.setTabSize(2);

        final JScrollPane errorScrollPane = new JBScrollPane(errorField);
        add(errorScrollPane, BorderLayout.CENTER);
    }
View Full Code Here

Examples of com.intellij.ui.components.JBScrollPane

        final ResourceBundle resources = ResourceBundle.getBundle(CheckStyleConstants.RESOURCE_BUNDLE);
        propertiesTable.setToolTipText(resources.getString("config.file.properties.tooltip"));
        propertiesTable.setStriped(true);
        propertiesTable.getTableHeader().setReorderingAllowed(false);

        final JScrollPane propertiesScrollPane = new JBScrollPane(propertiesTable,
                JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        add(propertiesScrollPane, BorderLayout.CENTER);
    }
View Full Code Here

Examples of com.intellij.ui.components.JBScrollPane

        progressPanel.setFloatable(false);
        progressPanel.setBackground(UIManager.getColor("Panel.background"));
        progressPanel.setBorder(null);

        final JPanel toolPanel = new JPanel(new BorderLayout());
        toolPanel.add(new JBScrollPane(resultsTree), BorderLayout.CENTER);
        toolPanel.add(progressPanel, BorderLayout.NORTH);

        ToolTipManager.sharedInstance().registerComponent(resultsTree);

        return toolPanel;
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.