]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/jface/MenuTools.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / jface / MenuTools.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.utils.ui.jface;
13
14 import org.eclipse.jface.action.IContributionItem;
15 import org.eclipse.jface.action.IMenuManager;
16 import org.eclipse.jface.action.MenuManager;
17 import org.eclipse.jface.action.SubContributionManager;
18
19 /**
20  * 
21  * 
22  * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
23  *
24  */
25 public class MenuTools {
26
27         /**
28          * Searches for existing menu, or creates a new menu.
29          * @param uniqueID unique id of the contributor (editor's ID + input)
30          * @param name name of the menu
31          * @param manager
32          * @return the menu (created or existing)
33          */
34         public static IMenuManager getOrCreate(String uniqueID,String name, IMenuManager manager) {
35         IContributionItem menu = manager.find(uniqueID+name);
36         if (menu == null) {
37                          MenuManager m = new MenuManager(name,uniqueID+name);
38                          manager.add(m);
39                          m.setVisible(true);
40                          return m;
41                  }
42         if (menu instanceof SubContributionManager) {
43                 // without this recreated menus would show only the first item.
44                 SubContributionManager emenu = (SubContributionManager)menu;
45                 return (IMenuManager)emenu.getParent();
46         }
47         return (IMenuManager)menu;
48     }
49 }