Examples of SettingsDialog


Examples of ch.mtSystems.jnc.view.dialogs.SettingsDialog

  public void widgetSelected(SelectionEvent e)
  {
    if(e.getSource() == tiSettings)
    {
      (new SettingsDialog(shell)).open();
    } else if(e.getSource() == tiSave)
    {
      if(e.detail == SWT.ARROW)
      {
        Rectangle rect = tiSave.getBounds();
View Full Code Here

Examples of com.alibaba.antx.config.gui.dialog.SettingsDialog

        this.gui = gui;
    }

    public void run() {
        SettingsDialog od = new SettingsDialog(gui);

        if (od.open() == Dialog.OK) {
            gui.setOpenFiles(od.getFiles());
            gui.setDescriptorPatterns(od.getDescriptorPatterns());
            gui.setPackagePatterns(od.getPackagePatterns());

            open();
        }
    }
View Full Code Here

Examples of com.arjuna.ats.tools.toolsframework.dialogs.SettingsDialog

    }
  }

  private void showSettingsDialog()
  {
    SettingsDialog dlg = new SettingsDialog(this, _plugins);

    int x = (int) this.getLocation().getX() + (this.getWidth() / 2) - (dlg.getWidth() / 2);
    int y = (int) this.getLocation().getY() + (this.getHeight() / 2) - (dlg.getHeight() / 2);

    dlg.setLocation(x, y);
  }
View Full Code Here

Examples of com.arjuna.ats.tools.toolsframework.dialogs.SettingsDialog

    }
  }

  private void showSettingsDialog()
  {
    SettingsDialog dlg = new SettingsDialog(this, _plugins);

    int x = (int) this.getLocation().getX() + (this.getWidth() / 2) - (dlg.getWidth() / 2);
    int y = (int) this.getLocation().getY() + (this.getHeight() / 2) - (dlg.getHeight() / 2);

    dlg.setLocation(x, y);
  }
View Full Code Here

Examples of com.jidesoft.spring.richclient.googledemo.preferences.SettingsDialog

  public PreferencesCommand() {
        super(ID);
    }
 
    protected void doExecuteCommand() {
      SettingsDialog dialog = new SettingsDialog(getParentWindowControl(), "Preferences");
      dialog.pack();
      JideSwingUtilities.globalCenterWindow(dialog);
      dialog.setVisible(true);
    }
View Full Code Here

Examples of com.jme3.app.SettingsDialog

        };
        SwingUtilities.invokeLater(new Runnable() {

            public void run() {
                synchronized (lock) {
                    SettingsDialog dialog = new SettingsDialog(settings, iconUrl, loadFromRegistry);
                    dialog.setSelectionListener(selectionListener);
                    dialog.showDialog();
                }
            }
        });

        synchronized (lock) {
View Full Code Here

Examples of com.smoker.imagesearch.view.SettingsDialog

    if (reindex) index();
  }

  public void settings()
  {
    new SettingsDialog(this, imageDisplay, settings.getSettingsRanges(), settings.getSettings());
  }
View Full Code Here

Examples of com.tulskiy.musique.plugins.discogs.dialog.SettingsDialog

        return true;
    }

    @Override
    public void configure(Window parent) {
        SettingsDialog settingsDialog = new SettingsDialog(parent);
        settingsDialog.setLocationRelativeTo(null);
        settingsDialog.setVisible(true);
    }
View Full Code Here

Examples of de.hpi.eworld.networkview.settings.SettingsDialog

      networkViewSettingsAction = new SharedAction() {
        private static final long serialVersionUID = 3980129486744377572L;

        @Override
        protected void execute(final ActionEvent e) {
          final SettingsDialog dialog = new SettingsDialog();
          dialog.setVisible(true);
        }
      };
      networkViewSettingsAction.setText("Network View Settings");
      networkViewSettingsAction.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S, InputEvent.CTRL_DOWN_MASK
              | InputEvent.ALT_DOWN_MASK));
View Full Code Here

Examples of edu.unc.cs.sportsync.main.ui.settings.SettingsDialog

      settingsDialog = new Shell(getShell(), SWT.DIALOG_TRIM);
      FillLayout layout = new FillLayout();
      settingsDialog.setText("Settings");
      settingsDialog.setLayout(layout);
      settingsDialog.setSize(450, 300);
      settingsComposite = new SettingsDialog(settingsDialog, SWT.NONE, settings, audioApplyButtonListener, saveButtonListener, audioControl);

      settingsDialog.open();
    }
  }
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.