Examples of PreferencesDialog


Examples of com.dbxml.db.admin.dialogs.PreferencesDialog

   public void editBeautify_actionPerformed(ActionEvent e) {
      textEditor.beautify();
   }

   public void filePreferences_actionPerformed(ActionEvent e) {
      PreferencesDialog prefs = new PreferencesDialog(this);
      prefs.show();
   }
View Full Code Here

Examples of com.santiagolizardo.beobachter.gui.dialogs.PreferencesDialog

      dialog.setVisible(true);
    } else if (fontSelectorMenuItem == source) {
      FontChooserDialog dialog = new FontChooserDialog(mainWindow);
      dialog.setVisible(true);     
    } else if (preferencesMenuItem == source) {
      PreferencesDialog dialog = new PreferencesDialog(mainWindow);
      dialog.setVisible(true);
    }
  }
View Full Code Here

Examples of com.valhalla.jbother.preferences.PreferencesDialog

            } else if (e.getSource() == sortItem)
                BuddyList.getInstance().getBuddyListTree().setSortByStatus(
                        sortItem.getState());
            else if (e.getSource() == prefsItem) {
                if (!DialogTracker.containsDialog(PreferencesDialog.class))
                    new PreferencesDialog().setVisible(true);
            } else if (e.getSource() == priority)
                new PriorityDialog().setVisible(true);
            else if (e.getSource() == deleteAccount)
                deleteAccountHandler();
            else if (e.getSource() == changePassword) {
View Full Code Here

Examples of com.valhalla.jbother.preferences.PreferencesDialog

        {
            if( e.getSource() == prefsItem )
            {
                if( !DialogTracker.containsDialog( PreferencesDialog.class ) )
                {
                    new PreferencesDialog().setVisible(true);
                }
            }
            else if( e.getSource() == quitItem )
            {
                com.valhalla.Logger.debug( "Quitting..." );
View Full Code Here

Examples of de.hwrberlin.it11.tsp.gui.dialog.PreferencesDialog

    editMenuItemEditPreferences.addSelectionListener(new SelectionAdapter() {

      @Override
      public void widgetSelected(SelectionEvent pE) {
        new PreferencesDialog(pParent, _currentTabContent.getController().getProject()).open();
      }
    });

    helpMenuItemHelp.addSelectionListener(new SelectionAdapter() {
View Full Code Here

Examples of edu.harvard.wcfia.yoshikoder.ui.dialog.PreferencesDialog

    public PreferencesAction(Yoshikoder yk) {
        super(yk, PreferencesAction.class.getName());
    }

    public void actionPerformed(ActionEvent e) {
        PreferencesDialog dia = new PreferencesDialog(yoshikoder);
        dia.setVisible(true);
    }
View Full Code Here

Examples of hermes.browser.dialog.PreferencesDialog

               }));
            }
            else if (component instanceof HermesTreeNode)
            {
               final HermesTreeNode hermesNode = (HermesTreeNode) component;
               final PreferencesDialog dialog = new PreferencesDialog(HermesBrowser.getBrowser());

               dialog.init();
               dialog.refocus(hermesNode.getHermes().getId());
               JideSwingUtilities.centerWindow(dialog);
               dialog.setVisible(true) ;
            }
            else if (component instanceof NamingConfigTreeNode)
            {
               final NamingConfigTreeNode namingNode = (NamingConfigTreeNode) component;
               final EditNamingConfigDialog dialog = new EditNamingConfigDialog(HermesBrowser.getBrowser(), namingNode.getId(), HermesBrowser.getBrowser()
                     .getConfig().getNaming());

               dialog.pack();
               JideSwingUtilities.centerWindow(dialog);
               dialog.setVisible(true) ;
            }
            else if (component instanceof MessageStoreURLTreeNode)
            {
               MessageStoreURLTreeNode node = (MessageStoreURLTreeNode) component ;
              
View Full Code Here

Examples of hermes.browser.dialog.PreferencesDialog

   public void actionPerformed(ActionEvent arg0)
   {
      try
      {
         PreferencesDialog dialog = new PreferencesDialog(HermesBrowser.getBrowser());

         dialog.init();
         dialog.show();

         dialog.setLocationRelativeTo(HermesBrowser.getBrowser());
      }
      catch (Throwable t)
      {
         HermesBrowser.getBrowser().showErrorDialog(t) ;
      }
View Full Code Here

Examples of hermes.browser.dialog.PreferencesDialog

      setEnabled(!HermesBrowser.getBrowser().isRestricted()) ;
   }

   public void actionPerformed(ActionEvent arg0)
   {
      final PreferencesDialog dialog = new PreferencesDialog(HermesBrowser.getBrowser());

      dialog.init();
      dialog.getDestinationConfigPanel().reset();
      dialog.refocus(SessionConfigPanel.NEWSESSION);
      JideSwingUtilities.centerWindow(dialog);
      dialog.show();

   }
View Full Code Here

Examples of hermes.browser.dialog.general.PreferencesDialog

    setEnabled(!HermesBrowser.getBrowser().isRestricted());
  }

  public void actionPerformed(ActionEvent arg0) {
    try {
      PreferencesDialog dialog = new PreferencesDialog();
      dialog.setVisible(true);
    } catch (Exception ex) {
      HermesBrowser.getBrowser().showErrorDialog(ex);
    }
  }
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.