aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java
diff options
context:
space:
mode:
authorKonstantin Lopyrev <klopyrev@google.com>2010-08-27 09:08:34 -0700
committerKonstantin Lopyrev <klopyrev@google.com>2010-08-27 16:21:58 -0700
commit99bd6912e7b5b97fc6d4bb787e76b2d9dfffd7ae (patch)
tree0f108bf445c903cbc2e3cb48ff3f441a3f799f5a /eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java
parent712c280346135b7c29c02a2908ff9faf103d6861 (diff)
downloadsdk-99bd6912e7b5b97fc6d4bb787e76b2d9dfffd7ae.tar.gz
Refactoring and integrating into Eclipse
Change-Id: I1fd3c3828fb2474f2f7394ee2831fcd7eb675878
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java97
1 files changed, 97 insertions, 0 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java b/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java
new file mode 100644
index 000000000..76d9b540d
--- /dev/null
+++ b/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/TreeViewView.java
@@ -0,0 +1,97 @@
+/*
+ * Copyright (C) 2010 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.android.ide.eclipse.hierarchyviewer.views;
+
+import com.android.hierarchyviewerlib.actions.CapturePSDAction;
+import com.android.hierarchyviewerlib.actions.DisplayViewAction;
+import com.android.hierarchyviewerlib.actions.InvalidateAction;
+import com.android.hierarchyviewerlib.actions.RefreshViewAction;
+import com.android.hierarchyviewerlib.actions.RequestLayoutAction;
+import com.android.hierarchyviewerlib.actions.SaveTreeViewAction;
+import com.android.hierarchyviewerlib.ui.TreeView;
+import com.android.hierarchyviewerlib.ui.TreeViewControls;
+
+import org.eclipse.jface.action.IMenuManager;
+import org.eclipse.jface.action.IToolBarManager;
+import org.eclipse.jface.action.Separator;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.FillLayout;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.ui.IActionBars;
+import org.eclipse.ui.part.ViewPart;
+
+// Awesome name.
+public class TreeViewView extends ViewPart {
+
+ public static final String ID = "com.android.ide.eclipse.hierarchyviewer.views.TreeViewView";
+
+ private TreeView treeView;
+
+ @Override
+ public void createPartControl(Composite parent) {
+ GridLayout layout = new GridLayout();
+ layout.marginWidth = layout.marginHeight = 0;
+ layout.horizontalSpacing = layout.verticalSpacing = 0;
+ parent.setLayout(layout);
+
+ Composite treeViewContainer = new Composite(parent, SWT.BORDER);
+ treeViewContainer.setLayoutData(new GridData(GridData.FILL_BOTH));
+ treeViewContainer.setLayout(new FillLayout());
+
+ treeView = new TreeView(treeViewContainer);
+
+ TreeViewControls treeViewControls = new TreeViewControls(parent);
+ treeViewControls.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
+
+ placeActions();
+ }
+
+ public void placeActions() {
+ IActionBars actionBars = getViewSite().getActionBars();
+
+ IMenuManager mm = actionBars.getMenuManager();
+ mm.removeAll();
+ mm.add(SaveTreeViewAction.getAction(getSite().getShell()));
+ mm.add(CapturePSDAction.getAction(getSite().getShell()));
+ mm.add(new Separator());
+ mm.add(RefreshViewAction.getAction());
+ mm.add(DisplayViewAction.getAction(getSite().getShell()));
+ mm.add(new Separator());
+ mm.add(InvalidateAction.getAction());
+ mm.add(RequestLayoutAction.getAction());
+
+ IToolBarManager tm = actionBars.getToolBarManager();
+ tm.removeAll();
+ tm.add(SaveTreeViewAction.getAction(getSite().getShell()));
+ tm.add(CapturePSDAction.getAction(getSite().getShell()));
+ tm.add(new Separator());
+ tm.add(RefreshViewAction.getAction());
+ tm.add(DisplayViewAction.getAction(getSite().getShell()));
+ tm.add(new Separator());
+ tm.add(InvalidateAction.getAction());
+ tm.add(RequestLayoutAction.getAction());
+ }
+
+
+ @Override
+ public void setFocus() {
+ treeView.setFocus();
+ }
+
+}