Examples of PrintAction


Examples of ag.ion.noa4e.editor.ui.actions.PrintAction

   *
   * @author Andreas Br�ker
   * @date 15.07.2006
   */
  private void createActions() {
    printAction = new PrintAction();
    printAction.setActionDefinitionId(ActionFactory.PRINT.getId());
  }
View Full Code Here

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

    menu.addSeparator();

    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()));
View Full Code Here

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

    add(editor.bind("Save", new SaveAction(false),
        "/com/mxgraph/examples/swing/images/save.gif"));

    addSeparator();

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

    addSeparator();

    add(editor.bind("Cut", TransferHandler.getCutAction(),
View Full Code Here

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

    menu.addSeparator();

    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()));
View Full Code Here

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

    add(editor.bind("Save", new SaveAction(false),
        "/com/mxgraph/examples/swing/images/save.gif"));

    addSeparator();

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

    addSeparator();

    add(editor.bind("Cut", TransferHandler.getCutAction(),
View Full Code Here

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

    menu.add(editor.bind(mxResources.get("saveAs"), new SaveAction(true), "/com/mxgraph/examples/swing/images/saveas.gif"));

    menu.addSeparator();

    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()));
View Full Code Here

Examples of org.eclipse.gef.ui.actions.PrintAction

    action = new SaveAction(this);
    registry.registerAction(action);
    getPropertyActions().add(action.getId());

    registry.registerAction(new PrintAction(this));

    action = new CopyRecordAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
View Full Code Here

Examples of org.eclipse.gef.ui.actions.PrintAction

    protected Object run( final Presentation context )
    {
        final DiagramPresentation diagramPresentation = (DiagramPresentation) context;
        final SapphireDiagramEditor diagramEditor = diagramPresentation.getConfigurationManager().getDiagramEditor();

        ( new PrintAction( diagramEditor ) ).run();

        return null;
    }
View Full Code Here

Examples of org.eclipse.gef.ui.actions.PrintAction

    action = new DirectEditAction((IWorkbenchPart) this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());

    action = new PrintAction(this);
    registry.registerAction(action);

    action = new ExportAction(this);
    registry.registerAction(action);
View Full Code Here

Examples of org.eclipse.gef.ui.actions.PrintAction

    registry.registerAction(action);

    action = new OpenConfigFile(this);
    registry.registerAction(action);

    action = new PrintAction(this);
    registry.registerAction(action);
  }
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.