Examples of TabbedPane


Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private TabbedPane connectionTabs;
    private JPanel mainPanel;

    public TabbedBrowserForm(Project project) {
        super(project);
        connectionTabs = new TabbedPane(project);
        //connectionTabs.setBackground(GUIUtil.getListBackground());
        //mainPanel.add(connectionTabs, BorderLayout.CENTER);
        initTabs();
        connectionTabs.addListener(new TabsListener() {
            public void selectionChanged(TabInfo oldSelection, TabInfo newSelection) {
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane


    private void initTabs() {
        Project project = getProject();
        connectionTabs.dispose();
        connectionTabs = new TabbedPane(project);
        ConnectionManager connectionManager = ConnectionManager.getInstance(project);
        for (ConnectionBundle connectionBundle : connectionManager.getConnectionBundles()) {
            for (ConnectionHandler connectionHandler: connectionBundle.getConnectionHandlers()) {
                SimpleBrowserForm browserForm = new SimpleBrowserForm(connectionHandler);
                JComponent component = browserForm.getComponent();
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private JPanel mainPanel;
    private TabbedPane languageTabs;

    public CodeStyleSettingsForm(ProjectCodeStyleSettings settings) {
        super(settings);
        languageTabs = new TabbedPane(settings.getProject());
        //languageTabs.setAdjustBorders(false);
        mainPanel.add(languageTabs, BorderLayout.CENTER);
        updateBorderTitleForeground(mainPanel);
        addSettingsPanel(getConfiguration().getSQLCodeStyleSettings(), Icons.FILE_SQL);
        addSettingsPanel(getConfiguration().getPSQLCodeStyleSettings(), Icons.FILE_PLSQL);
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private TabbedPane configTabbedPane;

    public ConnectionSettingsForm(ConnectionSettings connectionSettings) {
        super(connectionSettings);
        ConnectionDatabaseSettings databaseSettings = connectionSettings.getDatabaseSettings();
        configTabbedPane = new TabbedPane(databaseSettings.getProject());
        mainPanel.add(configTabbedPane, BorderLayout.CENTER);

        TabInfo connectionTabInfo = new TabInfo(databaseSettings.createComponent());
        connectionTabInfo.setText("Connection");
        configTabbedPane.addTab(connectionTabInfo);
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private MethodExecutionResult executionResult;

    public MethodExecutionResultForm(MethodExecutionResult executionResult) {
        this.executionResult = executionResult;
        cursorOutputTabs = new TabbedPane(executionResult.getProject());
        createActionsPanel(executionResult);
        updateCursorArgumentsPanel();

        outputCursorsPanel.add(cursorOutputTabs, BorderLayout.CENTER);
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private boolean canScrollToSource;
    private Project project;

    public ExecutionConsoleForm(Project project) {
        this.project = project;
        resultTabs = new TabbedPane(project);
        mainPanel.add(resultTabs, BorderLayout.CENTER);
        resultTabs.setFocusable(false);
        //resultTabs.setAdjustBorders(false);
        resultTabs.addTabMouseListener(mouseListener);
        resultTabs.addListener(tabsListener);
View Full Code Here

Examples of com.dci.intellij.dbn.common.ui.tab.TabbedPane

    private TabbedPane configurationTabs;

    public GlobalProjectSettingsEditorForm(GlobalProjectSettings globalSettings) {
        super(globalSettings);

        configurationTabs = new TabbedPane(globalSettings.getProject());
        //configurationTabs.setAdjustBorders(false);

        mainPanel.add(configurationTabs, BorderLayout.CENTER);

        GlobalConnectionSettings connectionSettings = globalSettings.getConnectionSettings();
View Full Code Here

Examples of com.sun.lwuit.TabbedPane

        internal_state = ONLINE;
      mainForm = new Form(Datas.jid.getUsername() + " (" + Datas.jid.getPresence()+")");
      mainForm.setLayout(new BorderLayout());
      mainForm.setScrollable(false);
      mainForm.getStyle().setBgTransparency(0);
      tabbedPane = new TabbedPane();
    tabbedPane.addTabsListener(listener);
    tabbedPane.getStyle().setBgTransparency(0);
       
        //}else
          //mainForm.removeAllCommands();
View Full Code Here

Examples of com.sun.lwuit.TabbedPane

      mainForm.setLayout(new BorderLayout());
      mainForm.setScrollable(false);     
      mainForm.getStyle().setBgTransparency(0);
        mainForm.addCommand(Contents.send, 0);
    mainForm.addCommand(Contents.delete, 1);
      tabbedPane = new TabbedPane();
   
    tabbedPane.getStyle().setBgTransparency(0);
       
     
    conversationForm = new Container();
View Full Code Here

Examples of org.apache.struts2.jquery.components.TabbedPane

    public TabbedPaneModel(ValueStack stack, HttpServletRequest req, HttpServletResponse res) {
        super(stack, req, res);
    }

    protected Component getBean() {
        return new TabbedPane(stack, req, res);
    }
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.