use of org.eclipse.jface.action.GroupMarker in project mdw-designer by CenturyLinkCloud.
the class ProcessInstanceActionGroup method fillActionBars.
@Override
public void fillActionBars(IActionBars actionBars) {
super.fillActionBars(actionBars);
IToolBarManager toolbar = actionBars.getToolBarManager();
toolbar.add(new GroupMarker("mdw.process.instance.group"));
toolbar.add(refreshAction);
toolbar.add(filterAction);
toolbar.add(pageDownAction);
toolbar.add(pageUpAction);
}
use of org.eclipse.jface.action.GroupMarker in project mdw-designer by CenturyLinkCloud.
the class AutomatedTestActionGroup method fillActionBars.
@Override
public void fillActionBars(IActionBars actionBars) {
super.fillActionBars(actionBars);
IToolBarManager toolbar = actionBars.getToolBarManager();
toolbar.add(new GroupMarker("mdw.toolbox.group"));
toolbar.add(rerunAction);
toolbar.add(stopAction);
toolbar.add(formatFunctionTestResultsAction);
toolbar.add(formatLoadTestResultsAction);
}
use of org.eclipse.jface.action.GroupMarker in project mdw-designer by CenturyLinkCloud.
the class ToolboxViewActionGroup method fillActionBars.
@Override
public void fillActionBars(IActionBars actionBars) {
super.fillActionBars(actionBars);
IToolBarManager toolbar = actionBars.getToolBarManager();
toolbar.add(new GroupMarker("mdw.toolbox.group"));
toolbar.add(sortAction);
toolbar.add(filterAction);
toolbar.add(refreshAction);
toolbar.add(saveAction);
toolbar.add(discoverAction);
toolbar.add(newAction);
toolbar.add(deleteAction);
}
use of org.eclipse.jface.action.GroupMarker in project polymap4-core by Polymap4.
the class FilterActionGroup method fillActionBars.
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.actions.ActionGroup#fillActionBars(org.eclipse.ui.IActionBars)
*/
public void fillActionBars(IActionBars actionBars) {
IMenuManager menu = actionBars.getMenuManager();
menu.appendToGroup(IWorkbenchActionConstants.MB_ADDITIONS, new Separator(FILTER_ACTION_GROUP));
if (selectFiltersAction != null) {
menu.appendToGroup(FILTER_ACTION_GROUP, selectFiltersAction);
menu.appendToGroup(FILTER_ACTION_GROUP, new GroupMarker(FILTER_ACTION_GROUP_FILTERS_START));
menu.appendToGroup(FILTER_ACTION_GROUP_FILTERS_START, new Separator(FILTER_ACTION_GROUP_FILTERS_END));
for (Iterator iter = filterShortcutActions.iterator(); iter.hasNext(); ) {
IAction action = (IAction) iter.next();
menu.appendToGroup(FILTER_ACTION_GROUP_FILTERS_START, action);
}
}
}
use of org.eclipse.jface.action.GroupMarker in project polymap4-core by Polymap4.
the class CommonNavigatorActionGroup method fillToolBar.
protected void fillToolBar(IToolBarManager toolBar) {
if (backAction.isEnabled() || upAction.isEnabled() || forwardAction.isEnabled()) {
toolBar.add(backAction);
toolBar.add(forwardAction);
toolBar.add(upAction);
toolBar.add(new Separator(FRAME_ACTION_SEPARATOR_ID));
frameActionsShown = true;
}
toolBar.add(new GroupMarker(FRAME_ACTION_GROUP_ID));
if (collapseAllAction != null) {
toolBar.add(collapseAllAction);
}
if (toggleLinkingAction != null) {
toolBar.add(toggleLinkingAction);
}
}
Aggregations