tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / dialogs / MinMaxDialog.java
CommitLineData
73005152 1/**********************************************************************
c8422608 2 * Copyright (c) 2005, 2013 IBM Corporation, Ericsson
73005152
BH
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
c8422608
AM
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
73005152 11 **********************************************************************/
c8422608 12
df0b8ff4 13package org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs;
73005152
BH
14
15import org.eclipse.jface.dialogs.Dialog;
16import org.eclipse.jface.dialogs.IDialogConstants;
17import org.eclipse.jface.dialogs.MessageDialog;
3bd46eef 18import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimestamp;
73005152 19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
df0b8ff4 20import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
73005152
BH
21import org.eclipse.swt.SWT;
22import org.eclipse.swt.events.SelectionEvent;
23import org.eclipse.swt.events.SelectionListener;
24import org.eclipse.swt.layout.GridData;
25import org.eclipse.swt.layout.GridLayout;
26import org.eclipse.swt.widgets.Composite;
27import org.eclipse.swt.widgets.Control;
28import org.eclipse.swt.widgets.Group;
29import org.eclipse.swt.widgets.Label;
30import org.eclipse.swt.widgets.Shell;
31import org.eclipse.swt.widgets.Text;
32
33/**
c8422608
AM
34 * Dialog box for entering minimum and maximum time range for time compression bar.
35 *
df0b8ff4 36 * @version 1.0
73005152 37 * @author sveyrier
df0b8ff4 38 * @author Bernd Hufmann
c8422608 39 *
73005152
BH
40 */
41public class MinMaxDialog extends Dialog {
42
df0b8ff4
BH
43 // ------------------------------------------------------------------------
44 // Attributes
45 // ------------------------------------------------------------------------
46 /**
c8422608 47 * Label for minimum.
df0b8ff4 48 */
eb63f5ff 49 protected Label fMinLabel;
df0b8ff4
BH
50 /**
51 * Label for maximum.
52 */
eb63f5ff 53 protected Label fMaxLabel;
df0b8ff4
BH
54 /**
55 * Label for scale
56 */
eb63f5ff 57 protected Label fScaleLabel;
df0b8ff4
BH
58 /**
59 * Label for precision.
60 */
eb63f5ff 61 protected Label fPrecisionLabel;
df0b8ff4 62 /**
c8422608 63 * Text field for minimum.
df0b8ff4 64 */
eb63f5ff 65 protected Text fMinText;
df0b8ff4 66 /**
c8422608 67 * Text field for maximum.
df0b8ff4 68 */
eb63f5ff 69 protected Text fMaxText;
df0b8ff4 70 /**
c8422608 71 * Text field for scale.
df0b8ff4 72 */
eb63f5ff 73 protected Text fScaleText;
df0b8ff4 74 /**
c8422608 75 * Text field for precision.
df0b8ff4 76 */
eb63f5ff 77 protected Text fPrecisionText;
df0b8ff4
BH
78 /**
79 * The sequence diagram widget reference.
80 */
eb63f5ff 81 protected SDWidget fSdWidget;
df0b8ff4
BH
82
83 // ------------------------------------------------------------------------
84 // Constructor
85 // ------------------------------------------------------------------------
86 /**
87 * Standard constructor.
88 * @param shell The shell
c8422608 89 * @param viewer The sequence diagram widget reference.
df0b8ff4
BH
90 */
91 public MinMaxDialog(Shell shell, SDWidget viewer) {
92 super(shell);
eb63f5ff 93 fSdWidget = viewer;
73005152
BH
94 }
95
df0b8ff4
BH
96 // ------------------------------------------------------------------------
97 // Methods
98 // ------------------------------------------------------------------------
99 /**
100 * Method to create a grid data base on horizontal span.
101 * @param span The horizontal span
102 * @return a grid data object
103 */
73005152
BH
104 protected GridData newGridData(int span) {
105 GridData data = new GridData(GridData.GRAB_VERTICAL | GridData.VERTICAL_ALIGN_FILL | GridData.GRAB_HORIZONTAL | GridData.HORIZONTAL_ALIGN_FILL);
106 data.horizontalSpan = span;
107 return data;
108 }
109
110 @Override
111 protected Control createDialogArea(Composite p) {
112 p.getShell().setText(SDMessages._123);
113 Composite parent = (Composite) super.createDialogArea(p);
114
115 GridLayout parentLayout = new GridLayout();
116 parentLayout.numColumns = 6;
117 parent.setLayout(parentLayout);
118
119 Group g1 = new Group(parent, SWT.SHADOW_NONE);
120 g1.setLayoutData(newGridData(3));
121 GridLayout g1layout = new GridLayout();
122 g1layout.numColumns = 3;
123 g1.setLayout(g1layout);
124
eb63f5ff
BH
125 fMinLabel = new Label(g1, SWT.RADIO);
126 fMinLabel.setText(SDMessages._124);
127 fMinLabel.setLayoutData(newGridData(1));
73005152 128
eb63f5ff
BH
129 fMinText = new Text(g1, SWT.SINGLE | SWT.BORDER);
130 fMinText.setLayoutData(newGridData(2));
131 fMinText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getValue()));
73005152 132
eb63f5ff
BH
133 fMaxLabel = new Label(g1, SWT.RADIO);
134 fMaxLabel.setText(SDMessages._125);
135 fMaxLabel.setLayoutData(newGridData(1));
73005152 136
eb63f5ff
BH
137 fMaxText = new Text(g1, SWT.SINGLE | SWT.BORDER);
138 fMaxText.setLayoutData(newGridData(2));
139 fMaxText.setText(String.valueOf(fSdWidget.getFrame().getMaxTime().getValue()));
73005152 140
eb63f5ff
BH
141 fScaleLabel = new Label(g1, SWT.RADIO);
142 fScaleLabel.setText(SDMessages._136);
143 fScaleLabel.setLayoutData(newGridData(1));
73005152 144
eb63f5ff
BH
145 fScaleText = new Text(g1, SWT.SINGLE | SWT.BORDER);
146 fScaleText.setLayoutData(newGridData(2));
147 fScaleText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getScale()));
73005152 148
c8422608 149
eb63f5ff
BH
150 fPrecisionLabel = new Label(g1, SWT.RADIO);
151 fPrecisionLabel.setText(SDMessages._137);
152 fPrecisionLabel.setLayoutData(newGridData(1));
73005152 153
eb63f5ff
BH
154 fPrecisionText = new Text(g1, SWT.SINGLE | SWT.BORDER);
155 fPrecisionText.setLayoutData(newGridData(2));
156 fPrecisionText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getPrecision()));
73005152
BH
157
158 return parent;
159 }
160
161 @Override
162 protected void okPressed() {
73005152
BH
163 long min = 0;
164 long max = 0;
5179fc01
FC
165 int scale = 0;
166 int precision = 0;
73005152 167 try {
eb63f5ff
BH
168 min = Long.parseLong(fMinText.getText());
169 max = Long.parseLong(fMaxText.getText());
170 scale = Integer.parseInt(fScaleText.getText());
171 precision = Integer.parseInt(fPrecisionText.getText());
73005152 172
eb63f5ff
BH
173 fSdWidget.getFrame().setMax(new TmfTimestamp(max, scale, precision));
174 fSdWidget.getFrame().setMin(new TmfTimestamp(min, scale, precision));
73005152 175
eb63f5ff 176 fSdWidget.redraw();
73005152
BH
177
178 super.okPressed();
179 } catch (Exception e) {
180 MessageDialog.openError(getShell(), SDMessages._98, SDMessages._99);
181 }
182 }
183
184 @Override
185 protected void createButtonsForButtonBar(Composite parent) {
186 super.createButtonsForButtonBar(parent);
187 createButton(parent, IDialogConstants.CLIENT_ID, SDMessages._126, false);
188 getButton(IDialogConstants.CLIENT_ID).addSelectionListener(new SelectionListener() {
11252342 189
73005152
BH
190 @Override
191 public void widgetSelected(SelectionEvent e) {
eb63f5ff
BH
192 fSdWidget.getFrame().resetCustomMinMax();
193 fMinText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getValue()));
194 fMaxText.setText(String.valueOf(fSdWidget.getFrame().getMaxTime().getValue()));
195 fScaleText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getScale()));
196 fPrecisionText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getPrecision()));
197 fMaxText.getParent().layout(true);
73005152
BH
198 }
199
200 @Override
201 public void widgetDefaultSelected(SelectionEvent e) {
df0b8ff4 202 // nothing to do
73005152 203 }
73005152
BH
204 });
205 }
206}
This page took 0.0747409999999999 seconds and 5 git commands to generate.