Examples of ExitAction


Examples of at.bestsolution.drawswf.actions.ExitAction

      international.getString("MainWindowFileItemExportMn").charAt(0),
      KeyStroke.getKeyStroke(KeyEvent.VK_E, ActionEvent.CTRL_MASK));

    addSeparator();

    ExitAction exit_action =
      new ExitAction(
        international.getString("MainWindowFileItemExit"),
        international.getString("MainWindowFileItemExitTooltip"),
        "exit.png",
        MainWindow.getDrawingPanel(),
        international.getString("MainWindowFileItemExitMn").charAt(0),
View Full Code Here

Examples of ca.nengo.ui.lib.actions.ExitAction

        //Style.applyMenuStyle(menuBar, true);

        MenuBuilder fileMenu = new MenuBuilder("File");
        fileMenu.getJMenu().setMnemonic(KeyEvent.VK_F);
        initFileMenu(fileMenu);
        fileMenu.addAction(new ExitAction(this, "Quit"), KeyEvent.VK_P);
        menuBar.add(fileMenu.getJMenu());

        editMenu = new MenuBuilder("Edit");
        editMenu.getJMenu().setMnemonic(KeyEvent.VK_E);
View Full Code Here

Examples of ca.nengo.ui.lib.actions.ExitAction

    public void handlePrintFile(ApplicationEvent event) {
        JOptionPane.showMessageDialog(this, "Sorry, printing not implemented");
    }

    public void handleQuit(ApplicationEvent event) {
        new ExitAction(this, "Quit").doAction();
    }
View Full Code Here

Examples of com.alibaba.antx.config.gui.action.ExitAction

    public ConfiguratorGUI(MainWindow mainWindow, ConfigRuntimeImpl runtime) {
        this.mainWindow = mainWindow;
        this.runtime = runtime;
        this.openAction = new SettingsAction(this);
        this.exitAction = new ExitAction(this);
    }
View Full Code Here

Examples of com.mxgraph.examples.swing.editor.EditorActions.ExitAction

    menu.add(editor.bind(mxResources.get("print"), new PrintAction(),
        "/com/mxgraph/examples/swing/images/print.gif"));

    menu.addSeparator();

    menu.add(editor.bind(mxResources.get("exit"), new ExitAction()));

    // Creates the edit menu
    menu = add(new JMenu(mxResources.get("edit")));

    menu.add(editor.bind(mxResources.get("undo"), new HistoryAction(true),
View Full Code Here

Examples of com.mxgraph.examples.swing.editor.EditorActions.ExitAction

    menu.add(editor.bind(mxResources.get("print"), new PrintAction(),
        "/com/mxgraph/examples/swing/images/print.gif"));

    menu.addSeparator();

    menu.add(editor.bind(mxResources.get("exit"), new ExitAction()));

    // Creates the edit menu
    menu = add(new JMenu(mxResources.get("edit")));

    menu.add(editor.bind(mxResources.get("undo"), new HistoryAction(true),
View Full Code Here

Examples of com.mxgraph.examples.swing.editor.EditorActions.ExitAction

    menu.add(editor.bind(mxResources.get("pageSetup"), new PageSetupAction(), "/com/mxgraph/examples/swing/images/pagesetup.gif"));
    menu.add(editor.bind(mxResources.get("print"), new PrintAction(), "/com/mxgraph/examples/swing/images/print.gif"));

    menu.addSeparator();

    menu.add(editor.bind(mxResources.get("exit"), new ExitAction()));

    // Creates the edit menu
    menu = add(new JMenu(mxResources.get("edit")));

    menu.add(editor.bind(mxResources.get("undo"), new HistoryAction(true), "/com/mxgraph/examples/swing/images/undo.gif"));
View Full Code Here

Examples of com.santiagolizardo.beobachter.gui.actions.ExitAction

    recentsMenu = new RecentsMenu(mainWindow);
    recentsMenu.setEnabled(!mainWindow.getConfigData().getRecentFiles().isEmpty());
    recentsMenu.refresh();

    JMenuItem exit = new JMenuItem(new ExitAction(mainWindow));
    exit.setIcon(IconFactory.getImage("exit.png"));

    loadSessionMenuItem = new JMenuItem(tr("Manage sessions..."));
    loadSessionMenuItem.addActionListener(this);
View Full Code Here

Examples of de.yaams.extensions.basemap.tiled.mapeditor.actions.ExitAction

    // Create the actions
    saveAction = new SaveAction(this);
    saveAsAction = new SaveAsAction(this);
    saveAsImageAction = new SaveAsImageAction(this);
    exitAction = new ExitAction(this, saveAction);
    zoomInAction = new ZoomInAction();
    zoomOutAction = new ZoomOutAction();
    zoomNormalAction = new ZoomNormalAction();
    rot90Action = new LayerTransformAction(MapLayer.ROTATE_90);
    rot180Action = new LayerTransformAction(MapLayer.ROTATE_180);
View Full Code Here

Examples of net.sphene.goim.rcp.ui.actions.ExitAction

   
    menuManager.add(new OpenPreferencesAction());
   
    menuManager.add(new Separator());
   
    menuManager.add(new ExitAction());
  }
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.