summaryrefslogtreecommitdiff
path: root/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java')
-rw-r--r--src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java159
1 files changed, 159 insertions, 0 deletions
diff --git a/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java b/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java
new file mode 100644
index 0000000..66a8c9a
--- /dev/null
+++ b/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/PopupMenuActionDelegate.java
@@ -0,0 +1,159 @@
+/*
+* Copyright (C) 2012 The Android Open Source Project
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+package com.motorolamobility.studio.android.db.devices.ui.action;
+
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.commands.IHandler;
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.ui.IObjectActionDelegate;
+import org.eclipse.ui.IWorkbenchPart;
+
+import com.motorola.studio.android.common.log.StudioLogger;
+import com.motorolamobility.studio.android.db.core.command.RefreshNodeHandler;
+import com.motorolamobility.studio.android.db.core.ui.AbstractTreeNode;
+import com.motorolamobility.studio.android.db.core.ui.ITreeNode;
+
+public class PopupMenuActionDelegate implements IObjectActionDelegate
+{
+
+ /**
+ * Enum type for ActionHandlers. If you need to add a new ActionHandler, just include
+ * a new type to this enum with the action id that you defined on your action extension point
+ */
+ enum ActionHandlers
+ {
+ REFRESH_DEVICE("com.motorolamobility.studio.android.db.devices.ui.action.refreshDeviceNode") //$NON-NLS-1$
+ {
+
+ @Override
+ public IHandler getHandler(ITreeNode node)
+ {
+ return new RefreshNodeHandler(node);
+ }
+
+ },
+ FILTER_DB_APPNODE(
+ "com.motorolamobility.studio.android.db.devices.ui.action.filterDbApplicationNode") //$NON-NLS-1$
+ {
+
+ @Override
+ public IHandler getHandler(ITreeNode node)
+ {
+ return new FilterDbApplicationHandler(node);
+ }
+
+ },
+ MAP_DEVICE_DB_APPNODE(
+ "com.motorolamobility.studio.android.db.devices.ui.action.mapDeviceDbNode") //$NON-NLS-1$
+ {
+
+ @Override
+ public IHandler getHandler(ITreeNode node)
+ {
+ return new MapDeviceDatabaseHandler(node);
+ }
+
+ },
+ SAVE_TO_LOCAL_FILE(
+ "com.motorolamobility.studio.android.db.devices.ui.action.saveToLocalFile") //$NON-NLS-1$
+ {
+
+ @Override
+ public IHandler getHandler(ITreeNode node)
+ {
+ return new SaveDatabaseToFileHandler(node);
+ }
+
+ };
+
+ private final String actionId;
+
+ private ActionHandlers(String actionId)
+ {
+ this.actionId = actionId;
+ }
+
+ public abstract IHandler getHandler(ITreeNode node);
+
+ public static ActionHandlers getActionHandlerbyId(String id)
+ {
+
+ Object ret = null;
+ for (ActionHandlers h : ActionHandlers.values())
+ {
+ if (h.actionId.equals(id))
+ {
+ ret = h;
+ break;
+ }
+ }
+
+ return (ActionHandlers) ret;
+ }
+ }
+
+ private ITreeNode currentNode;
+
+ public void run(IAction action)
+ {
+
+ ActionHandlers type = ActionHandlers.getActionHandlerbyId(action.getId());
+
+ IHandler handler = null;
+
+ if (type != null)
+ {
+ handler = type.getHandler(currentNode);
+ }
+
+ if (handler != null)
+ {
+ ExecutionEvent event = new ExecutionEvent();
+ try
+ {
+ handler.execute(event);
+ }
+ catch (ExecutionException e)
+ {
+ StudioLogger.error("Could not execute command: ", e.getMessage()); //$NON-NLS-1$
+ }
+ }
+
+ }
+
+ public void selectionChanged(IAction action, ISelection selection)
+ {
+ if (selection instanceof IStructuredSelection)
+ {
+ IStructuredSelection structuredSelection = (IStructuredSelection) selection;
+ Object selectedObject = structuredSelection.getFirstElement();
+ if (selectedObject instanceof AbstractTreeNode)
+ {
+ currentNode = (ITreeNode) selectedObject;
+ }
+ }
+
+ }
+
+ public void setActivePart(IAction action, IWorkbenchPart targetPart)
+ {
+ //do nothing
+ }
+
+}