Examples of NewProjectAction


Examples of org.eclipse.ui.actions.NewProjectAction

  public PHPNewWizardMenu(IWorkbenchWindow window) {
    super();
    this.window = window;
    showDlgAction = ActionFactory.NEW.create(window);
    newProjectAction = new NewProjectAction(window);
    newExampleAction = new NewExampleAction(window);
  }
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.core.action.NewProjectAction

        return menuItem;
    }

    private void addProject(InterchangeView view, List<JMenuItem> items) {
        items.add(null);
        Action newProject = new NewProjectAction(view.getWindow(), projectManager);
        items.add(new KongaMenuItem(newProject));
    }
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.core.action.NewProjectAction

                if (newWizardButton != null) {
                    // We want the wizard button before the project button.
                    addOptionButton(newWizardButton, bin);
                    wizardButtonAdded = true;
                }
                ApplicationAction action = new NewProjectAction(view.getWindow(), view.getProjectManager());
                bin.add(KongaButton.forToolbar(action).setUseMediumActionIcon(true));
            } else {
                InterchangeActionFactory f = InterchangeActionFactory.getNewEntityFactory(type);
                ApplicationAction a = f.get(view);
                if (a != null) {
View Full Code Here

Examples of ru.snake.spritepacker.actions.project.NewProjectAction

    inputMap.put(REMOVE_SPRITE_KEY, REMOVE_SPRITE);
    inputMap.put(OFFSET_SPRITE_KEY, OFFSET_SPRITE);
    inputMap.put(MERGE_SIMILAR_TEXTURES_KEY, MERGE_SIMILAR_TEXTURES);
    inputMap.put(HELP_ABOUT_KEY, HELP_ABOUT);

    actionMap.put(NEW_PROJECT, new NewProjectAction(this, factory));
    actionMap.put(OPEN_PROJECT, new OpenProjectAction(this, factory));
    actionMap.put(SAVE_PROJECT, new SaveProjectAction(this, factory));
    actionMap.put(SAVE_PROJECT_AS, new SaveProjectAsAction(this, factory));
    actionMap.put(VIEW_ATLAS, new ViewAtlasAction(this, factory));
    actionMap.put(SETTINGS_PROJECT,
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.