Examples of AboutDialog


Examples of com.mucommander.ui.dialog.about.AboutDialog

       
        // Do nothing (return) when in 'no events mode'
        if(mainFrame.getNoEventsMode())
            return;

        new AboutDialog(mainFrame).showDialog();
    }
View Full Code Here

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

      }
    } else if (checkForUpdatesMenuItem == ev.getSource()) {
      UpdateManager updateManager = new UpdateManager(mainWindow);
      updateManager.checkForUpdate();
    } else if (aboutThisAppMenuItem == ev.getSource()) {
      AboutDialog aboutDialog = new AboutDialog(mainWindow);
      aboutDialog.setVisible(true);
    }
  }
View Full Code Here

Examples of com.tagtraum.perf.gcviewer.AboutDialog

*/
public class About extends AbstractAction {
    private AboutDialog aboutDialog;

    public About(final Frame parent) {
        aboutDialog = new AboutDialog(parent);
        putValue(NAME, LocalisationHelper.getString("main_frame_menuitem_about"));
        putValue(SHORT_DESCRIPTION, LocalisationHelper.getString("main_frame_menuitem_hint_about"));
        putValue(MNEMONIC_KEY, new Integer(LocalisationHelper.getString("main_frame_menuitem_mnemonic_about").charAt(0)));
        putValue(ACTION_COMMAND_KEY, "about");
        putValue(SMALL_ICON, new ImageIcon(Toolkit.getDefaultToolkit().getImage(parent.getClass().getResource("images/about.png"))));
View Full Code Here

Examples of com.valhalla.jbother.AboutDialog

     */
    class MenuActionListener implements ActionListener {
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == aboutItem)
                if (!DialogTracker.containsDialog(AboutDialog.class))
                    new AboutDialog().setVisible(true);
        }
View Full Code Here

Examples of de.hpi.eworld.core.ui.dialogs.AboutDialog

    final SharedAction aboutAction = new SharedAction() {
      private static final long serialVersionUID = 1193212316930095284L;

      @Override
      protected void execute(final ActionEvent e) {
        final AboutDialog dialog = new AboutDialog(MainWindow.getInstance());
        dialog.setVisible(true);
      }
    };
    aboutAction.setText("About");
    aboutAction.setIcon(ResourceLoader.createIconFromLocalResource(CorePlugin.class, Images.ABOUT_IMAGE, 16));
    aboutAction.setMnemonic(KeyEvent.VK_A);
View Full Code Here

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

    helpMenuItemAbout.addSelectionListener(new SelectionAdapter() {

      @Override
      public void widgetSelected(SelectionEvent pE) {
        new AboutDialog(pParent, _currentTabContent.getController().getProject()).open();
      }
    });
  }
View Full Code Here

Examples of de.yaams.extensions.basemap.tiled.mapeditor.dialogs.AboutDialog

    tilesetsPanel.save();
  }

  private void showAboutDialog() {
    if (aboutDialog == null) {
      aboutDialog = new AboutDialog(YaFrame.get());
    }
    aboutDialog.setVisible(true);
  }
View Full Code Here

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

        super(yk, WindowsAboutAction.class.getName());
    }

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

Examples of fr.soleil.salsa.client.view.AboutDialog

        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutDialog(controllerTool.getApplicationController().getView());
                }
                if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
View Full Code Here

Examples of fr.soleil.salsa.client.view.AboutDialog

        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutDialog(controllerTool.getApplicationController().getView());
                }
                if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
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.