Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java')
-rwxr-xr-xprofiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java376
1 files changed, 188 insertions, 188 deletions
diff --git a/profiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java b/profiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java
index 600882bec7..7d0b0e0988 100755
--- a/profiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java
+++ b/profiling/org.eclipse.linuxtools.dataviewers.charts/src/org/eclipse/linuxtools/dataviewers/charts/view/ChartView.java
@@ -1,188 +1,188 @@
-/*******************************************************************************
- * Copyright (c) 2009 STMicroelectronics.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Marzia Maugeri <marzia.maugeri@st.com> - initial API and implementation
- *******************************************************************************/
-package org.eclipse.linuxtools.dataviewers.charts.view;
-
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.jface.action.IToolBarManager;
-import org.eclipse.linuxtools.dataviewers.charts.Activator;
-import org.eclipse.linuxtools.dataviewers.charts.actions.SaveChartAction;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.ui.IActionBars;
-import org.eclipse.ui.IWorkbenchPage;
-import org.eclipse.ui.PartInitException;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.part.ViewPart;
-import org.swtchart.Chart;
-
-
-/**
- * The chart view.
- *
- * <br/>This view is multiple and all the created chart will be displayed in an instance of this view.
- * Each one will have a primary id equals to ChartView.VIEW_ID and an integer (increased by 1 at each new view) for the secondary id.
- *
- * @author Marzia Maugeri <marzia.maugeri@st.com>
- *
- */
-public class ChartView extends ViewPart {
-
- /** The primary id of this view */
- public static final String VIEW_ID = "org.eclipse.linuxtools.dataviewers.charts.view";
-
- /** The current secondary id for these views */
- private static int SEC_ID = 0;
- private static final Object lock = new Object();
-
- private Composite parent;
-
- private SaveChartAction saveChartAction;
-
-
-
- /**
- * Create and open a new chart view
- * <br/>
- * <br/><u><b>Note</b></u>: this method uses the UI thread to open the view and then it sets the input chart.
- * The UI thread execution is synchronized on internal Integer SEC_ID which is the secondary id of the chart view.
- * Each new chart view has a secondary id equal to SEC_ID++.
- *
- * @param chart
- */
- public static void createChartView(final Chart chart) {
- PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
- @Override
- public void run() {
- try {
- synchronized(lock) {
- ChartView view = (ChartView)PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(VIEW_ID, ""+(SEC_ID++), IWorkbenchPage.VIEW_ACTIVATE);
- view.setChart(chart);
-
- }
- } catch (PartInitException e) {
- Status s = new Status(
- IStatus.ERROR,
- Activator.PLUGIN_ID,
- IStatus.ERROR,
- e.getMessage(),
- e);
- Activator.getDefault().getLog().log(s);
- }
- }
- });
-
-
- }
-
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
- */
- @Override
- public void createPartControl(Composite parent) {
- try {
- this.parent = parent;
-// paintCanvas = new Canvas( parent, SWT.NONE );
-// paintCanvas.setLayoutData( new GridData( GridData.FILL_BOTH ) );
-// paintCanvas.setBackground( Display.getDefault( )
-// .getSystemColor( SWT.COLOR_WHITE ) );
-
- createActions(parent);
- IActionBars actionBars = getViewSite().getActionBars();
- initToolBar(actionBars.getToolBarManager());
-
- } catch (Throwable _)
- {
- Status s = new Status(
- IStatus.ERROR,
- Activator.PLUGIN_ID,
- IStatus.ERROR,
- "Error when creating AWT Frame...",
- _);
- Activator.getDefault().getLog().log(s);
- }
- }
-
- protected void createActions(Composite parent) {
- saveChartAction = new SaveChartAction(getViewSite().getShell(),this);
- }
-
- protected void initToolBar(IToolBarManager manager) {
- manager.add(saveChartAction);
- manager.update(true);
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ui.part.WorkbenchPart#setFocus()
- */
- @Override
- public void setFocus() {
- if (parent != null) {
- parent.setFocus();
- } else {
- Status s = new Status(
- IStatus.ERROR,
- Activator.PLUGIN_ID,
- "Error setting the focus to the chart view: main composite is not set!");
- Activator.getDefault().getLog().log(s);
- }
- }
-
- /**
- * Close this view
- * <br/>
- * <br/><u><b>Note</b></u>: it uses the UI thread to get the workbench window. Then it closes the view.
- */
- public void closeView() {
- PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
- @Override
- public void run() {
- PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().hideView(ChartView.this);
- }
- });
- }
-
- /**
- * Set the chart in this view
- *
- * @param chart
- */
- public void setChart(Chart chart) {
- if (chart != null) {
- saveChartAction.setChart(chart);
-
- } else {
- saveChartAction.setEnabled(false);
- Status s = new Status(
- IStatus.ERROR,
- Activator.PLUGIN_ID,
- "Error adding the chart to the chart view: SWT is not set!");
- Activator.getDefault().getLog().log(s);
- }
- }
-
- @Override
- public void dispose( )
- {
- super.dispose( );
- }
-
- public Composite getParent() {
- return parent;
- }
-
- public static int getSecId() {
- return SEC_ID;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2009 STMicroelectronics.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Marzia Maugeri <marzia.maugeri@st.com> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.linuxtools.dataviewers.charts.view;
+
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.jface.action.IToolBarManager;
+import org.eclipse.linuxtools.dataviewers.charts.Activator;
+import org.eclipse.linuxtools.dataviewers.charts.actions.SaveChartAction;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.ui.IActionBars;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.part.ViewPart;
+import org.swtchart.Chart;
+
+
+/**
+ * The chart view.
+ *
+ * <br/>This view is multiple and all the created chart will be displayed in an instance of this view.
+ * Each one will have a primary id equals to ChartView.VIEW_ID and an integer (increased by 1 at each new view) for the secondary id.
+ *
+ * @author Marzia Maugeri <marzia.maugeri@st.com>
+ *
+ */
+public class ChartView extends ViewPart {
+
+ /** The primary id of this view */
+ public static final String VIEW_ID = "org.eclipse.linuxtools.dataviewers.charts.view";
+
+ /** The current secondary id for these views */
+ private static int SEC_ID = 0;
+ private static final Object lock = new Object();
+
+ private Composite parent;
+
+ private SaveChartAction saveChartAction;
+
+
+
+ /**
+ * Create and open a new chart view
+ * <br/>
+ * <br/><u><b>Note</b></u>: this method uses the UI thread to open the view and then it sets the input chart.
+ * The UI thread execution is synchronized on internal Integer SEC_ID which is the secondary id of the chart view.
+ * Each new chart view has a secondary id equal to SEC_ID++.
+ *
+ * @param chart
+ */
+ public static void createChartView(final Chart chart) {
+ PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
+ @Override
+ public void run() {
+ try {
+ synchronized(lock) {
+ ChartView view = (ChartView)PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(VIEW_ID, ""+(SEC_ID++), IWorkbenchPage.VIEW_ACTIVATE);
+ view.setChart(chart);
+
+ }
+ } catch (PartInitException e) {
+ Status s = new Status(
+ IStatus.ERROR,
+ Activator.PLUGIN_ID,
+ IStatus.ERROR,
+ e.getMessage(),
+ e);
+ Activator.getDefault().getLog().log(s);
+ }
+ }
+ });
+
+
+ }
+
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
+ */
+ @Override
+ public void createPartControl(Composite parent) {
+ try {
+ this.parent = parent;
+// paintCanvas = new Canvas( parent, SWT.NONE );
+// paintCanvas.setLayoutData( new GridData( GridData.FILL_BOTH ) );
+// paintCanvas.setBackground( Display.getDefault( )
+// .getSystemColor( SWT.COLOR_WHITE ) );
+
+ createActions(parent);
+ IActionBars actionBars = getViewSite().getActionBars();
+ initToolBar(actionBars.getToolBarManager());
+
+ } catch (Throwable _)
+ {
+ Status s = new Status(
+ IStatus.ERROR,
+ Activator.PLUGIN_ID,
+ IStatus.ERROR,
+ "Error when creating AWT Frame...",
+ _);
+ Activator.getDefault().getLog().log(s);
+ }
+ }
+
+ protected void createActions(Composite parent) {
+ saveChartAction = new SaveChartAction(getViewSite().getShell(),this);
+ }
+
+ protected void initToolBar(IToolBarManager manager) {
+ manager.add(saveChartAction);
+ manager.update(true);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.part.WorkbenchPart#setFocus()
+ */
+ @Override
+ public void setFocus() {
+ if (parent != null) {
+ parent.setFocus();
+ } else {
+ Status s = new Status(
+ IStatus.ERROR,
+ Activator.PLUGIN_ID,
+ "Error setting the focus to the chart view: main composite is not set!");
+ Activator.getDefault().getLog().log(s);
+ }
+ }
+
+ /**
+ * Close this view
+ * <br/>
+ * <br/><u><b>Note</b></u>: it uses the UI thread to get the workbench window. Then it closes the view.
+ */
+ public void closeView() {
+ PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
+ @Override
+ public void run() {
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().hideView(ChartView.this);
+ }
+ });
+ }
+
+ /**
+ * Set the chart in this view
+ *
+ * @param chart
+ */
+ public void setChart(Chart chart) {
+ if (chart != null) {
+ saveChartAction.setChart(chart);
+
+ } else {
+ saveChartAction.setEnabled(false);
+ Status s = new Status(
+ IStatus.ERROR,
+ Activator.PLUGIN_ID,
+ "Error adding the chart to the chart view: SWT is not set!");
+ Activator.getDefault().getLog().log(s);
+ }
+ }
+
+ @Override
+ public void dispose( )
+ {
+ super.dispose( );
+ }
+
+ public Composite getParent() {
+ return parent;
+ }
+
+ public static int getSecId() {
+ return SEC_ID;
+ }
+}

Back to the top