Examples of SettingsPanel


Examples of captureplugin.drivers.defaultdriver.configpanels.SettingsPanel

        mTab.add(mLocalizer.msg("Application", "Application"), new ApplicationPanel(mConfig));
        mTab.add(mLocalizer.msg("Parameter", "Parameter"), new ParameterPanel(this, mConfig));
        mTab.add(Localizer.getLocalization(Localizer.I18N_CHANNELS), new ChannelPanel(mConfig));
        mTab.add(mLocalizer.msg("Variables", "Variables"), new VariablePanel(mConfig));
       
        JScrollPane scrollPane = new JScrollPane(new SettingsPanel(mConfig));
        scrollPane.setBorder(null);
        scrollPane.getViewport().setBorder(null);
       
        mTab.add(Localizer.getLocalization(Localizer.I18N_SETTINGS), scrollPane);
       
View Full Code Here

Examples of net.datacrow.console.windows.settings.SettingsPanel

        fldHelp.setText(help);
       
        //**********************************************************
        //Settings panel
        //**********************************************************
        pnlSettings = new SettingsPanel(settings, true);
        pnlSettings.setVisible(true);
        pnlSettings.initializeSettings();

        //**********************************************************
        //Action panel
View Full Code Here

Examples of net.datacrow.console.windows.settings.SettingsPanel

            PanelExportConfiguration._EXPORT_DATA_RELATED_MODULES, Boolean.TRUE, ComponentFactory._CHECKBOX,
                "", DcResources.getText("lblExportModuleItemsSub"), false, false));    
        group.add(new Setting(DcRepository.ValueTypes._STRING, PanelExportConfiguration._PATH, null, ComponentFactory._DIRECTORYFIELD,
                "", DcResources.getText("lblExportModulePath"), true, true));        
       
        settingsPanel = new SettingsPanel(group, true);
        settingsPanel.setVisible(true);
        settingsPanel.initializeSettings();
       
        add(settingsPanel, Layout.getGBC(0, 0, 1, 1, 1.0, 1.0
               ,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH,
View Full Code Here

Examples of net.datacrow.console.windows.settings.SettingsPanel

        group = new SettingsGroup("", "");
        group.add(new Setting(DcRepository.ValueTypes._STRING,
                PanelImportConfiguration._IMPORT_FILE, null, ComponentFactory._FILEFIELD,
                "", DcResources.getText("lblModuleImportFile"), true, true));        
       
        settingsPanel = new SettingsPanel(group, true);
        settingsPanel.setVisible(true);
        settingsPanel.initializeSettings();
       
        add(settingsPanel, Layout.getGBC(0, 0, 1, 1, 1.0, 1.0
               ,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH,
View Full Code Here

Examples of net.datacrow.console.windows.settings.SettingsPanel

       
        for (Setting setting : server.getSettings()) {
            group.add(setting);
        }
           
        panelSettings = new SettingsPanel(group, true);
        panelSettings.setVisible(true);
        panelSettings.initializeSettings();

        //**********************************************************
        //Actions panel
View Full Code Here

Examples of org.apache.openmeetings.web.user.profile.SettingsPanel

          basePanel = new OAuthPanel(CHILD_ID);
        }
        break;
      case profile:
        if (TYPE_MESSAGES.equals(type)) {
          basePanel = new SettingsPanel(CHILD_ID, MESSAGES_TAB_ID);
        } else if (TYPE_EDIT.equals(type)) {
          basePanel = new SettingsPanel(CHILD_ID, EDIT_PROFILE_TAB_ID);
        }
        break;
      case room:
        try {
          Long roomId = Long.parseLong(type);
View Full Code Here

Examples of org.apache.openmeetings.web.user.profile.SettingsPanel

          basePanel = new OAuthPanel(CHILD_ID);
        }
        break;
      case profile:
        if (TYPE_MESSAGES.equals(type)) {
          basePanel = new SettingsPanel(CHILD_ID, MESSAGES_TAB_ID);
        } else if (TYPE_EDIT.equals(type)) {
          basePanel = new SettingsPanel(CHILD_ID, EDIT_PROFILE_TAB_ID);
        }
        break;
      case room:
        try {
          Long roomId = Long.parseLong(type);
View Full Code Here

Examples of org.moltools.apps.probemaker.swingui.SettingsPanel

    //Tag pane
    tagPane = new TagSetupPanel(platform,this);
    probeMaker.addProjectListener(tagPane);
       
    //Settings pane   
    settingsPane = new SettingsPanel(this, paramFileChooser);
    platform.getPlugInManager().addListener(settingsPane);
    settingsPane.plugInsChanged(platform.getPlugInManager());
    probeMaker.addProjectListener(settingsPane);     
   
    //Probe table and panes
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.