lttng: Add time alignment work to scatter chart
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / histogram / HistogramView.java
CommitLineData
6e512b93 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2009, 2015 Ericsson
1b055dfa 3 *
6e512b93
ASL
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
1b055dfa 8 *
6e512b93 9 * Contributors:
b59134e1 10 * William Bourque - Initial API and implementation
c392540b 11 * Yuriy Vashchuk - GUI reorganisation, simplification and some related code improvements.
1b055dfa 12 * Yuriy Vashchuk - Histograms optimisation.
c392540b
FC
13 * Yuriy Vashchuk - Histogram Canvas Heritage correction
14 * Francois Chouinard - Cleanup and refactoring
e0752744 15 * Francois Chouinard - Moved from LTTng to TMF
65cdf787 16 * Patrick Tasse - Update for mouse wheel zoom
2fc582d2 17 * Xavier Raynaud - Support multi-trace coloring
6e512b93 18 *******************************************************************************/
3e9fdb8b 19
2bdf0193 20package org.eclipse.tracecompass.tmf.ui.views.histogram;
6e512b93 21
c14c0757
GB
22import java.util.Collection;
23
dab5f596 24import org.eclipse.jdt.annotation.NonNull;
95aa81ef
JCK
25import org.eclipse.jface.action.Action;
26import org.eclipse.jface.action.IAction;
27import org.eclipse.jface.action.Separator;
b59134e1 28import org.eclipse.swt.SWT;
2fc582d2 29import org.eclipse.swt.custom.CLabel;
f7d9ea05
BH
30import org.eclipse.swt.custom.SashForm;
31import org.eclipse.swt.custom.ScrolledComposite;
720d67cb
PT
32import org.eclipse.swt.events.MouseAdapter;
33import org.eclipse.swt.events.MouseEvent;
65cdf787 34import org.eclipse.swt.events.MouseWheelListener;
720d67cb
PT
35import org.eclipse.swt.events.PaintEvent;
36import org.eclipse.swt.events.PaintListener;
2fc582d2 37import org.eclipse.swt.graphics.GC;
720d67cb 38import org.eclipse.swt.graphics.Image;
f7d9ea05 39import org.eclipse.swt.graphics.Point;
720d67cb 40import org.eclipse.swt.graphics.Rectangle;
b59134e1 41import org.eclipse.swt.layout.GridData;
252ae4bd 42import org.eclipse.swt.layout.GridLayout;
2fc582d2 43import org.eclipse.swt.layout.RowLayout;
6e512b93 44import org.eclipse.swt.widgets.Composite;
2fc582d2 45import org.eclipse.swt.widgets.Control;
80c930fa 46import org.eclipse.swt.widgets.Display;
e8c79054 47import org.eclipse.swt.widgets.Event;
720d67cb 48import org.eclipse.swt.widgets.Label;
e8c79054
BH
49import org.eclipse.swt.widgets.Listener;
50import org.eclipse.swt.widgets.Sash;
2bdf0193
AM
51import org.eclipse.tracecompass.internal.tmf.ui.Activator;
52import org.eclipse.tracecompass.internal.tmf.ui.ITmfImageConstants;
53import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest;
54import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType;
e8c79054 55import org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal;
2bdf0193 56import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
e8c79054 57import org.eclipse.tracecompass.tmf.core.signal.TmfSignalManager;
2bdf0193 58import org.eclipse.tracecompass.tmf.core.signal.TmfSignalThrottler;
2bdf0193
AM
59import org.eclipse.tracecompass.tmf.core.signal.TmfTraceClosedSignal;
60import org.eclipse.tracecompass.tmf.core.signal.TmfTraceOpenedSignal;
61import org.eclipse.tracecompass.tmf.core.signal.TmfTraceRangeUpdatedSignal;
62import org.eclipse.tracecompass.tmf.core.signal.TmfTraceSelectedSignal;
63import org.eclipse.tracecompass.tmf.core.signal.TmfTraceUpdatedSignal;
e8c79054 64import org.eclipse.tracecompass.tmf.core.signal.TmfWindowRangeUpdatedSignal;
2bdf0193
AM
65import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
66import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
67import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
68import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
21852dfa 69import org.eclipse.tracecompass.tmf.core.trace.TmfTraceContext;
2bdf0193 70import org.eclipse.tracecompass.tmf.core.trace.TmfTraceManager;
e8c79054
BH
71import org.eclipse.tracecompass.tmf.ui.signal.TmfTimeViewAlignmentInfo;
72import org.eclipse.tracecompass.tmf.ui.signal.TmfTimeViewAlignmentSignal;
73import org.eclipse.tracecompass.tmf.ui.views.ITmfTimeAligned;
2bdf0193 74import org.eclipse.tracecompass.tmf.ui.views.TmfView;
95aa81ef 75import org.eclipse.ui.IActionBars;
6e512b93 76
544fe9b7 77/**
faa38350 78 * The purpose of this view is to provide graphical time distribution statistics about the trace events.
544fe9b7 79 * <p>
c392540b
FC
80 * The view is composed of two histograms and two controls:
81 * <ul>
faa38350 82 * <li>an event distribution histogram for the whole trace;
c392540b
FC
83 * <li>an event distribution histogram for current time window (window span);
84 * <li>the timestamp of the currently selected event;
85 * <li>the window span (size of the time window of the smaller histogram).
86 * </ul>
87 * The histograms x-axis show their respective time range.
abbdd66a 88 *
f8177ba2 89 * @version 2.0
2af7df97 90 * @author Francois Chouinard
544fe9b7 91 */
e8c79054 92public class HistogramView extends TmfView implements ITmfTimeAligned {
c392540b
FC
93
94 // ------------------------------------------------------------------------
95 // Constants
96 // ------------------------------------------------------------------------
97
b544077e
BH
98 /**
99 * The view ID as defined in plugin.xml
100 */
dab5f596 101 public static final @NonNull String ID = "org.eclipse.linuxtools.tmf.ui.views.histogram"; //$NON-NLS-1$
c392540b 102
d2e4afa7 103 private static final Image LINK_IMG = Activator.getDefault().getImageFromPath(ITmfImageConstants.IMG_UI_LINK);
720d67cb 104
f7d9ea05
BH
105 private static final int[] DEFAULT_WEIGHTS = {1, 3};
106
c392540b
FC
107 // ------------------------------------------------------------------------
108 // Attributes
109 // ------------------------------------------------------------------------
110
faa38350
PT
111 // The current trace
112 private ITmfTrace fTrace;
c392540b 113
f8177ba2 114 // Current timestamp/time window - everything in the TIME_SCALE
faa38350
PT
115 private long fTraceStartTime;
116 private long fTraceEndTime;
c392540b
FC
117 private long fWindowStartTime;
118 private long fWindowEndTime;
d7ee91bb 119 private long fWindowSpan;
0fcf3b09
PT
120 private long fSelectionBeginTime;
121 private long fSelectionEndTime;
c392540b 122
e8c79054
BH
123 // SashForm
124 private SashForm fSashForm;
f7d9ea05
BH
125 private ScrolledComposite fScrollComposite;
126 private Composite fTimeControlsComposite;
e8c79054
BH
127 private Composite fTimeRangeComposite;
128 private Listener fSashDragListener;
f7d9ea05 129
c392540b 130 // Time controls
720d67cb
PT
131 private HistogramTextControl fSelectionStartControl;
132 private HistogramTextControl fSelectionEndControl;
c392540b
FC
133 private HistogramTextControl fTimeSpanControl;
134
720d67cb
PT
135 // Link
136 private Label fLinkButton;
137 private boolean fLinkState;
138
c392540b
FC
139 // Histogram/request for the full trace range
140 private static FullTraceHistogram fFullTraceHistogram;
141 private HistogramRequest fFullTraceRequest;
142
143 // Histogram/request for the selected time range
144 private static TimeRangeHistogram fTimeRangeHistogram;
145 private HistogramRequest fTimeRangeRequest;
146
2fc582d2
XR
147 // Legend area
148 private Composite fLegendArea;
149 private Image[] fLegendImages;
150
38df2c82
AM
151 // Throttlers for the time sync and time-range sync signals
152 private final TmfSignalThrottler fTimeSyncThrottle;
153 private final TmfSignalThrottler fTimeRangeSyncThrottle;
154
95aa81ef
JCK
155 // Action for toggle showing the lost events
156 private Action hideLostEventsAction;
2fc582d2
XR
157 // Action for toggle showing the traces
158 private Action showTraceAction;
95aa81ef 159
c392540b
FC
160 // ------------------------------------------------------------------------
161 // Constructor
162 // ------------------------------------------------------------------------
163
b544077e
BH
164 /**
165 * Default constructor
166 */
c392540b
FC
167 public HistogramView() {
168 super(ID);
38df2c82
AM
169 fTimeSyncThrottle = new TmfSignalThrottler(this, 200);
170 fTimeRangeSyncThrottle = new TmfSignalThrottler(this, 200);
c392540b
FC
171 }
172
6a13fa07 173 @Override
c392540b 174 public void dispose() {
1b055dfa 175 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
4dc47e28
FC
176 fTimeRangeRequest.cancel();
177 }
1b055dfa 178 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
4dc47e28
FC
179 fFullTraceRequest.cancel();
180 }
6a13fa07
FC
181 fFullTraceHistogram.dispose();
182 fTimeRangeHistogram.dispose();
720d67cb
PT
183 fSelectionStartControl.dispose();
184 fSelectionEndControl.dispose();
f8177ba2 185 fTimeSpanControl.dispose();
03ec1f6a
MAL
186 disposeLegendImages();
187
4dc47e28 188 super.dispose();
c392540b
FC
189 }
190
03ec1f6a
MAL
191 private void disposeLegendImages() {
192 if (fLegendImages != null) {
193 for (Image i: fLegendImages) {
194 i.dispose();
195 }
196 }
197 fLegendImages = null;
198 }
199
c392540b
FC
200 // ------------------------------------------------------------------------
201 // TmfView
202 // ------------------------------------------------------------------------
203
204 @Override
c392540b 205 public void createPartControl(Composite parent) {
e8c79054 206 super.createPartControl(parent);
c392540b
FC
207
208 // Control labels
720d67cb
PT
209 final String selectionStartLabel = Messages.HistogramView_selectionStartLabel;
210 final String selectionEndLabel = Messages.HistogramView_selectionEndLabel;
c392540b
FC
211 final String windowSpanLabel = Messages.HistogramView_windowSpanLabel;
212
213 // --------------------------------------------------------------------
214 // Set the HistogramView layout
215 // --------------------------------------------------------------------
e8c79054 216 Composite viewComposite = new Composite(getParentComposite(), SWT.FILL);
f7d9ea05 217 GridLayout gridLayout = new GridLayout(1, false);
c392540b
FC
218 gridLayout.verticalSpacing = 0;
219 gridLayout.marginHeight = 0;
220 gridLayout.marginWidth = 0;
221 viewComposite.setLayout(gridLayout);
222
f7d9ea05
BH
223 // --------------------------------------------------------------------
224 // Add a sash for time controls and time range histogram
225 // --------------------------------------------------------------------
e8c79054
BH
226
227 /*
228 * The ScrolledComposite preferred size can be larger than its visible
229 * width. This affects the preferred width of the SashForm. Set the
230 * preferred width to 1 to prevent it from affecting the preferred width
231 * of the view composite.
232 */
233 fSashForm = new SashForm(viewComposite, SWT.NONE) {
234 @Override
235 public Point computeSize(int wHint, int hHint) {
236 Point computedSize = super.computeSize(wHint, hHint);
237 if (wHint == SWT.DEFAULT) {
238 return new Point(1, computedSize.y);
239 }
240 return computedSize;
241 }
242 @Override
243 public Point computeSize(int wHint, int hHint, boolean changed) {
244 Point computedSize = super.computeSize(wHint, hHint, changed);
245 if (wHint == SWT.DEFAULT) {
246 return new Point(1, computedSize.y);
247 }
248 return computedSize;
249 }
250 };
f7d9ea05 251 GridData gridData = new GridData(GridData.FILL, GridData.FILL, false, true);
e8c79054 252 fSashForm.setLayoutData(gridData);
f7d9ea05 253
c392540b
FC
254 // --------------------------------------------------------------------
255 // Time controls
256 // --------------------------------------------------------------------
e8c79054 257 fScrollComposite = new PackedScrolledComposite(fSashForm, SWT.H_SCROLL | SWT.V_SCROLL);
f7d9ea05
BH
258 fTimeControlsComposite = new Composite(fScrollComposite, SWT.NONE);
259 fScrollComposite.setContent(fTimeControlsComposite);
260 gridLayout = new GridLayout(1, false);
261 gridLayout.marginHeight = 0;
262 gridLayout.marginWidth = 0;
263 fScrollComposite.setLayout(gridLayout);
264 fScrollComposite.setExpandHorizontal(true);
265 fScrollComposite.setExpandVertical(true);
c392540b 266
f7d9ea05
BH
267 gridLayout = new GridLayout(1, false);
268 gridLayout.marginHeight = 0;
269 gridLayout.marginWidth = 0;
270 fTimeControlsComposite.setLayout(gridLayout);
271 gridData = new GridData(GridData.FILL, GridData.CENTER, false, true);
272 fTimeControlsComposite.setLayoutData(gridData);
273
274 Composite innerComp = new Composite(fTimeControlsComposite, SWT.NONE);
275
276 gridLayout = new GridLayout(2, false);
277 innerComp.setLayout(gridLayout);
c392540b
FC
278 gridLayout.marginHeight = 0;
279 gridLayout.marginWidth = 0;
280 gridLayout.horizontalSpacing = 5;
720d67cb 281 gridLayout.verticalSpacing = 1;
f7d9ea05
BH
282 gridData = new GridData(GridData.FILL, GridData.CENTER, false, true);
283 innerComp.setLayoutData(gridData);
720d67cb 284
f7d9ea05
BH
285 Composite selectionGroup = new Composite(innerComp, SWT.BORDER);
286 gridLayout = new GridLayout(1, false);
720d67cb
PT
287 gridLayout.marginHeight = 0;
288 gridLayout.marginWidth = 0;
720d67cb 289 selectionGroup.setLayout(gridLayout);
f7d9ea05
BH
290 gridData = new GridData(GridData.BEGINNING, GridData.CENTER, false, false);
291 selectionGroup.setLayoutData(gridData);
c392540b 292
720d67cb 293 // Selection start control
f7d9ea05 294 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
720d67cb
PT
295 fSelectionStartControl = new HistogramSelectionStartControl(this, selectionGroup, selectionStartLabel, 0L);
296 fSelectionStartControl.setLayoutData(gridData);
297 fSelectionStartControl.setValue(Long.MIN_VALUE);
298
299 // Selection end control
f7d9ea05 300 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
720d67cb
PT
301 fSelectionEndControl = new HistogramSelectionEndControl(this, selectionGroup, selectionEndLabel, 0L);
302 fSelectionEndControl.setLayoutData(gridData);
303 fSelectionEndControl.setValue(Long.MIN_VALUE);
304
305 // Link button
f7d9ea05
BH
306 gridData = new GridData(GridData.BEGINNING, GridData.CENTER, false, false);
307 fLinkButton = new Label(innerComp, SWT.NONE);
720d67cb
PT
308 fLinkButton.setImage(LINK_IMG);
309 fLinkButton.setLayoutData(gridData);
310 addLinkButtonListeners();
c392540b
FC
311
312 // Window span time control
f7d9ea05
BH
313 gridData = new GridData(GridData.FILL, GridData.CENTER, false, false);
314 fTimeSpanControl = new HistogramTimeRangeControl(this, innerComp, windowSpanLabel, 0L);
c392540b 315 fTimeSpanControl.setLayoutData(gridData);
da7bdcbc 316 fTimeSpanControl.setValue(Long.MIN_VALUE);
c392540b
FC
317
318 // --------------------------------------------------------------------
319 // Time range histogram
320 // --------------------------------------------------------------------
e8c79054 321 fTimeRangeComposite = new Composite(fSashForm, SWT.NONE);
f7d9ea05
BH
322 gridLayout = new GridLayout(1, true);
323 gridLayout.marginTop = 0;
e8c79054
BH
324 gridLayout.marginWidth = 0;
325 fTimeRangeComposite.setLayout(gridLayout);
c392540b
FC
326
327 // Use remaining horizontal space
f7d9ea05 328 gridData = new GridData(GridData.FILL, GridData.FILL, true, true);
e8c79054 329 fTimeRangeComposite.setLayoutData(gridData);
c392540b
FC
330
331 // Histogram
e8c79054 332 fTimeRangeHistogram = new TimeRangeHistogram(this, fTimeRangeComposite, true);
c392540b
FC
333
334 // --------------------------------------------------------------------
335 // Full range histogram
336 // --------------------------------------------------------------------
f7d9ea05
BH
337 final Composite fullRangeComposite = new Composite(viewComposite, SWT.FILL);
338 gridLayout = new GridLayout(1, true);
c392540b
FC
339 fullRangeComposite.setLayout(gridLayout);
340
341 // Use remaining horizontal space
f7d9ea05 342 gridData = new GridData(GridData.FILL, GridData.FILL, true, true, 2, 1);
c392540b
FC
343 fullRangeComposite.setLayoutData(gridData);
344
345 // Histogram
346 fFullTraceHistogram = new FullTraceHistogram(this, fullRangeComposite);
347
2fc582d2
XR
348 fLegendArea = new Composite(viewComposite, SWT.FILL);
349 fLegendArea.setLayoutData(new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false, 2, 1));
350 fLegendArea.setLayout(new RowLayout());
351
65cdf787
PT
352 // Add mouse wheel listener to time span control
353 MouseWheelListener listener = fFullTraceHistogram.getZoom();
354 fTimeSpanControl.addMouseWheelListener(listener);
355
95aa81ef
JCK
356 // View Action Handling
357 contributeToActionBars();
358
21852dfa 359 ITmfTrace trace = TmfTraceManager.getInstance().getActiveTrace();
3ac5721a
AM
360 if (trace != null) {
361 traceSelected(new TmfTraceSelectedSignal(this, trace));
1b055dfa 362 }
f7d9ea05 363
e8c79054
BH
364 fSashForm.setVisible(true);
365 fSashForm.setWeights(DEFAULT_WEIGHTS);
366
367 fTimeControlsComposite.addPaintListener(new PaintListener() {
368 @Override
369 public void paintControl(PaintEvent e) {
370 // Sashes in a SashForm are being created on layout so add the
371 // drag listener here
372 if (fSashDragListener == null) {
373 for (Control control : fSashForm.getChildren()) {
374 if (control instanceof Sash) {
375 fSashDragListener = new Listener() {
376 @Override
377 public void handleEvent(Event event) {
378 TmfSignalManager.dispatchSignal(new TmfTimeViewAlignmentSignal(fSashForm, getTimeViewAlignmentInfo()));
379 }
380 };
381 control.removePaintListener(this);
382 control.addListener(SWT.Selection, fSashDragListener);
383 // There should be only one sash
384 break;
385 }
386 }
387 }
388 }
389 });
ecfd1d41 390 }
c392540b
FC
391
392 @Override
c392540b 393 public void setFocus() {
faa38350 394 fFullTraceHistogram.fCanvas.setFocus();
833a21aa 395 }
c392540b 396
f8177ba2 397 void refresh() {
e8c79054
BH
398 getParentComposite().layout(true);
399 }
400
401 /**
402 * @since 1.0
403 */
404 @Override
405 public TmfTimeViewAlignmentInfo getTimeViewAlignmentInfo() {
406 if (fSashForm == null) {
407 return null;
408 }
409 return new TmfTimeViewAlignmentInfo(fSashForm.getShell(), fSashForm.toDisplay(0, 0), getTimeAxisOffset());
410 }
411
412 private int getTimeAxisOffset() {
2e23a015 413 return fScrollComposite.getSize().x + fSashForm.getSashWidth() + fTimeRangeHistogram.getPointAreaOffset();
e8c79054
BH
414 }
415
416 /**
417 * @since 1.0
418 */
419 @Override
420 public int getAvailableWidth(int requestedOffset) {
421 int pointAreaWidth = fTimeRangeHistogram.getPointAreaWidth();
422 int curTimeAxisOffset = getTimeAxisOffset();
423 if (pointAreaWidth <= 0) {
424 pointAreaWidth = fSashForm.getBounds().width - curTimeAxisOffset;
425 }
e8c79054
BH
426 int endOffset = curTimeAxisOffset + pointAreaWidth;
427 GridLayout layout = (GridLayout) fTimeRangeComposite.getLayout();
428 int endOffsetWithoutMargin = endOffset + layout.marginRight;
429 int availableWidth = endOffsetWithoutMargin - requestedOffset;
430 availableWidth = Math.min(fSashForm.getBounds().width, Math.max(0, availableWidth));
431
432 return availableWidth;
433 }
434
435 /**
436 * @since 1.0
437 */
438 @Override
439 public void performAlign(int offset, int width) {
e8c79054 440 int total = fSashForm.getBounds().width;
c34ab48a
PT
441 int plotAreaOffset = fTimeRangeHistogram.getPointAreaOffset();
442 int width1 = Math.max(0, offset - plotAreaOffset - fSashForm.getSashWidth());
443 int width2 = Math.max(0, total - width1 - fSashForm.getSashWidth());
e8c79054
BH
444 fSashForm.setWeights(new int[] { width1, width2 });
445 fSashForm.layout();
446
447 // calculate right margin
448 GridLayout layout = (GridLayout) fTimeRangeComposite.getLayout();
449 int timeBasedControlsWidth = fTimeRangeComposite.getSize().x;
450 int marginSize = timeBasedControlsWidth - width - plotAreaOffset;
451 layout.marginRight = Math.max(0, marginSize);
452 fTimeRangeComposite.layout();
f8177ba2
FC
453 }
454
c392540b
FC
455 // ------------------------------------------------------------------------
456 // Accessors
457 // ------------------------------------------------------------------------
458
faa38350
PT
459 /**
460 * Returns the current trace handled by the view
461 *
462 * @return the current trace
faa38350
PT
463 */
464 public ITmfTrace getTrace() {
465 return fTrace;
466 }
467
b544077e
BH
468 /**
469 * Returns the time range of the current selected window (base on default time scale).
abbdd66a 470 *
b544077e
BH
471 * @return the time range of current selected window.
472 */
c392540b 473 public TmfTimeRange getTimeRange() {
f8177ba2
FC
474 return new TmfTimeRange(
475 new TmfTimestamp(fWindowStartTime, ITmfTimestamp.NANOSECOND_SCALE),
476 new TmfTimestamp(fWindowEndTime, ITmfTimestamp.NANOSECOND_SCALE));
c392540b
FC
477 }
478
95aa81ef
JCK
479 /**
480 * get the show lost events action
481 *
482 * @return The action object
95aa81ef
JCK
483 */
484 public Action getShowLostEventsAction() {
485 if (hideLostEventsAction == null) {
486 /* show lost events */
487 hideLostEventsAction = new Action(Messages.HistogramView_hideLostEvents, IAction.AS_CHECK_BOX) {
488 @Override
489 public void run() {
490 HistogramScaledData.hideLostEvents = hideLostEventsAction.isChecked();
491 long maxNbEvents = HistogramScaledData.hideLostEvents ? fFullTraceHistogram.fScaledData.fMaxValue : fFullTraceHistogram.fScaledData.fMaxCombinedValue;
3311a6ca 492 fFullTraceHistogram.setMaxNbEvents(maxNbEvents);
95aa81ef 493 maxNbEvents = HistogramScaledData.hideLostEvents ? fTimeRangeHistogram.fScaledData.fMaxValue : fTimeRangeHistogram.fScaledData.fMaxCombinedValue;
3311a6ca 494 fTimeRangeHistogram.setMaxNbEvents(maxNbEvents);
95aa81ef
JCK
495 }
496 };
497 hideLostEventsAction.setText(Messages.HistogramView_hideLostEvents);
498 hideLostEventsAction.setToolTipText(Messages.HistogramView_hideLostEvents);
499 hideLostEventsAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_SHOW_LOST_EVENTS));
500 }
501 return hideLostEventsAction;
502 }
503
2fc582d2
XR
504 /**
505 * get the show trace action
506 *
507 * @return The action object
2fc582d2
XR
508 */
509 public Action getShowTraceAction() {
510 if (showTraceAction == null) {
511 /* show lost events */
512 showTraceAction = new Action(Messages.HistogramView_showTraces, IAction.AS_CHECK_BOX) {
513 @Override
514 public void run() {
515 Histogram.showTraces = showTraceAction.isChecked();
516 fFullTraceHistogram.fCanvas.redraw();
517 fTimeRangeHistogram.fCanvas.redraw();
518 updateLegendArea();
519 }
520 };
521 showTraceAction.setChecked(true);
522 showTraceAction.setText(Messages.HistogramView_showTraces);
523 showTraceAction.setToolTipText(Messages.HistogramView_showTraces);
524 showTraceAction.setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_SHOW_HIST_TRACES));
525 }
526 return showTraceAction;
527 }
528
c392540b
FC
529 // ------------------------------------------------------------------------
530 // Operations
531 // ------------------------------------------------------------------------
532
b544077e 533 /**
0fcf3b09
PT
534 * Broadcast TmfSignal about new current selection time range.
535 * @param beginTime the begin time of current selection.
536 * @param endTime the end time of current selection.
b544077e 537 */
0fcf3b09
PT
538 void updateSelectionTime(long beginTime, long endTime) {
539 updateDisplayedSelectionTime(beginTime, endTime);
540 TmfTimestamp beginTs = new TmfTimestamp(beginTime, ITmfTimestamp.NANOSECOND_SCALE);
541 TmfTimestamp endTs = new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE);
97c71024 542 TmfSelectionRangeUpdatedSignal signal = new TmfSelectionRangeUpdatedSignal(this, beginTs, endTs);
0fcf3b09 543 fTimeSyncThrottle.queue(signal);
c392540b
FC
544 }
545
720d67cb
PT
546 /**
547 * Get selection begin time
548 * @return the begin time of current selection
549 */
550 long getSelectionBegin() {
551 return fSelectionBeginTime;
552 }
553
554 /**
555 * Get selection end time
556 * @return the end time of current selection
557 */
558 long getSelectionEnd() {
559 return fSelectionEndTime;
560 }
561
562 /**
563 * Get the link state
564 * @return true if begin and end selection time should be linked
565 */
566 boolean getLinkState() {
567 return fLinkState;
568 }
569
b544077e 570 /**
0fcf3b09 571 * Broadcast TmfSignal about new selection time range.
b544077e
BH
572 * @param startTime the new start time
573 * @param endTime the new end time
574 */
f8177ba2 575 void updateTimeRange(long startTime, long endTime) {
faa38350 576 if (fTrace != null) {
c392540b 577 // Build the new time range; keep the current time
f8177ba2
FC
578 TmfTimeRange timeRange = new TmfTimeRange(
579 new TmfTimestamp(startTime, ITmfTimestamp.NANOSECOND_SCALE),
580 new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE));
c392540b
FC
581 fTimeSpanControl.setValue(endTime - startTime);
582
38df2c82
AM
583 updateDisplayedTimeRange(startTime, endTime);
584
c392540b 585 // Send the FW signal
97c71024 586 TmfWindowRangeUpdatedSignal signal = new TmfWindowRangeUpdatedSignal(this, timeRange);
38df2c82 587 fTimeRangeSyncThrottle.queue(signal);
c392540b
FC
588 }
589 }
590
b544077e
BH
591 /**
592 * Broadcast TmfSignal about new selected time range.
593 * @param newDuration new duration (relative to current start time)
594 */
c392540b 595 public synchronized void updateTimeRange(long newDuration) {
faa38350 596 if (fTrace != null) {
6a13fa07 597 long delta = newDuration - fWindowSpan;
1c6a842a 598 long newStartTime = fWindowStartTime - (delta / 2);
6a13fa07 599 setNewRange(newStartTime, newDuration);
c392540b
FC
600 }
601 }
602
603 private void setNewRange(long startTime, long duration) {
41b5c37f
AM
604 long realStart = startTime;
605
606 if (realStart < fTraceStartTime) {
607 realStart = fTraceStartTime;
1b055dfa 608 }
c392540b 609
41b5c37f 610 long endTime = realStart + duration;
faa38350
PT
611 if (endTime > fTraceEndTime) {
612 endTime = fTraceEndTime;
1c6a842a 613 if ((endTime - duration) > fTraceStartTime) {
41b5c37f 614 realStart = endTime - duration;
1b055dfa 615 } else {
41b5c37f 616 realStart = fTraceStartTime;
6a13fa07 617 }
c392540b 618 }
41b5c37f 619 updateTimeRange(realStart, endTime);
833a21aa 620 }
c392540b
FC
621
622 // ------------------------------------------------------------------------
623 // Signal handlers
624 // ------------------------------------------------------------------------
625
b544077e 626 /**
faa38350 627 * Handles trace opened signal. Loads histogram if new trace time range is not
b544077e 628 * equal <code>TmfTimeRange.NULL_RANGE</code>
fec1ac0b 629 * @param signal the trace opened signal
b544077e 630 */
1406f802 631 @TmfSignalHandler
faa38350 632 public void traceOpened(TmfTraceOpenedSignal signal) {
c392540b 633 assert (signal != null);
faa38350
PT
634 fTrace = signal.getTrace();
635 loadTrace();
ecfd1d41 636 }
550d787e 637
faa38350
PT
638 /**
639 * Handles trace selected signal. Loads histogram if new trace time range is not
640 * equal <code>TmfTimeRange.NULL_RANGE</code>
641 * @param signal the trace selected signal
faa38350
PT
642 */
643 @TmfSignalHandler
644 public void traceSelected(TmfTraceSelectedSignal signal) {
645 assert (signal != null);
646 if (fTrace != signal.getTrace()) {
647 fTrace = signal.getTrace();
648 loadTrace();
649 }
650 }
651
652 private void loadTrace() {
c392540b 653 initializeHistograms();
e8c79054 654 getParentComposite().redraw();
550d787e
FC
655 }
656
ea279a69 657 /**
faa38350
PT
658 * Handles trace closed signal. Clears the view and data model and cancels requests.
659 * @param signal the trace closed signal
ea279a69
FC
660 */
661 @TmfSignalHandler
faa38350
PT
662 public void traceClosed(TmfTraceClosedSignal signal) {
663
664 if (signal.getTrace() != fTrace) {
665 return;
666 }
ea279a69
FC
667
668 // Kill any running request
669 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
670 fTimeRangeRequest.cancel();
671 }
672 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
673 fFullTraceRequest.cancel();
674 }
675
676 // Initialize the internal data
faa38350
PT
677 fTrace = null;
678 fTraceStartTime = 0L;
679 fTraceEndTime = 0L;
f8177ba2
FC
680 fWindowStartTime = 0L;
681 fWindowEndTime = 0L;
d7ee91bb 682 fWindowSpan = 0L;
0fcf3b09
PT
683 fSelectionBeginTime = 0L;
684 fSelectionEndTime = 0L;
ea279a69
FC
685
686 // Clear the UI widgets
687 fFullTraceHistogram.clear();
688 fTimeRangeHistogram.clear();
720d67cb
PT
689 fSelectionStartControl.setValue(Long.MIN_VALUE);
690 fSelectionEndControl.setValue(Long.MIN_VALUE);
f8177ba2 691
da7bdcbc 692 fTimeSpanControl.setValue(Long.MIN_VALUE);
2fc582d2
XR
693
694 for (Control c: fLegendArea.getChildren()) {
695 c.dispose();
696 }
03ec1f6a 697 disposeLegendImages();
2fc582d2
XR
698 fLegendArea.layout();
699 fLegendArea.getParent().layout();
ea279a69
FC
700 }
701
b544077e 702 /**
faa38350 703 * Handles trace range updated signal. Extends histogram according to the new time range. If a
b544077e
BH
704 * HistogramRequest is already ongoing, it will be cancelled and a new request with the new range
705 * will be issued.
abbdd66a 706 *
faa38350 707 * @param signal the trace range updated signal
b544077e 708 */
74237cc3 709 @TmfSignalHandler
faa38350 710 public void traceRangeUpdated(TmfTraceRangeUpdatedSignal signal) {
74237cc3 711
faa38350 712 if (signal.getTrace() != fTrace) {
09d11238
PT
713 return;
714 }
715
74237cc3
FC
716 TmfTimeRange fullRange = signal.getRange();
717
faa38350
PT
718 fTraceStartTime = fullRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
719 fTraceEndTime = fullRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
74237cc3 720
faa38350
PT
721 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
722 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
74237cc3 723
74237cc3
FC
724 sendFullRangeRequest(fullRange);
725 }
c392540b 726
b544077e 727 /**
faa38350
PT
728 * Handles the trace updated signal. Used to update time limits (start and end time)
729 * @param signal the trace updated signal
b544077e 730 */
a28d503d 731 @TmfSignalHandler
faa38350
PT
732 public void traceUpdated(TmfTraceUpdatedSignal signal) {
733 if (signal.getTrace() != fTrace) {
a28d503d
PT
734 return;
735 }
faa38350
PT
736 TmfTimeRange fullRange = signal.getTrace().getTimeRange();
737 fTraceStartTime = fullRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
738 fTraceEndTime = fullRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
a28d503d 739
faa38350
PT
740 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
741 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
742
743 if ((fFullTraceRequest != null) && fFullTraceRequest.getRange().getEndTime().compareTo(signal.getRange().getEndTime()) < 0) {
744 sendFullRangeRequest(fullRange);
745 }
746}
a28d503d 747
b544077e 748 /**
97c71024
AM
749 * Handles the selection range updated signal. Sets the current time
750 * selection in the time range histogram as well as the full histogram.
abbdd66a 751 *
97c71024
AM
752 * @param signal
753 * the signal to process
754 * @since 1.0
b544077e 755 */
c392540b 756 @TmfSignalHandler
97c71024 757 public void selectionRangeUpdated(final TmfSelectionRangeUpdatedSignal signal) {
80c930fa
PT
758 if (Display.getCurrent() == null) {
759 // Make sure the signal is handled in the UI thread
760 Display.getDefault().asyncExec(new Runnable() {
761 @Override
762 public void run() {
e8c79054 763 if (getParentComposite().isDisposed()) {
80c930fa
PT
764 return;
765 }
97c71024 766 selectionRangeUpdated(signal);
80c930fa
PT
767 }
768 });
769 return;
770 }
c392540b 771
0fcf3b09
PT
772 // Update the selected time range
773 ITmfTimestamp beginTime = signal.getBeginTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE);
774 ITmfTimestamp endTime = signal.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE);
775 updateDisplayedSelectionTime(beginTime.getValue(), endTime.getValue());
ecfd1d41 776 }
f05aabed 777
b544077e 778 /**
97c71024
AM
779 * Updates the current window time range in the time range histogram and
780 * full range histogram.
781 *
782 * @param signal
783 * the signal to process
784 * @since 1.0
b544077e 785 */
c392540b 786 @TmfSignalHandler
97c71024 787 public void windowRangeUpdated(final TmfWindowRangeUpdatedSignal signal) {
80c930fa
PT
788 if (Display.getCurrent() == null) {
789 // Make sure the signal is handled in the UI thread
790 Display.getDefault().asyncExec(new Runnable() {
791 @Override
792 public void run() {
e8c79054 793 if (getParentComposite().isDisposed()) {
80c930fa
PT
794 return;
795 }
97c71024 796 windowRangeUpdated(signal);
80c930fa
PT
797 }
798 });
799 return;
800 }
c392540b 801
faa38350 802 if (fTrace != null) {
1c6a842a
PT
803 // Validate the time range
804 TmfTimeRange range = signal.getCurrentRange().getIntersection(fTrace.getTimeRange());
805 if (range == null) {
806 return;
807 }
808
38df2c82
AM
809 updateDisplayedTimeRange(
810 range.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue(),
811 range.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue());
c392540b 812
38df2c82 813 // Send the event request to populate the small histogram
c392540b 814 sendTimeRangeRequest(fWindowStartTime, fWindowEndTime);
f8177ba2 815
c392540b
FC
816 fTimeSpanControl.setValue(fWindowSpan);
817 }
b59134e1 818 }
c392540b
FC
819
820 // ------------------------------------------------------------------------
821 // Helper functions
822 // ------------------------------------------------------------------------
823
824 private void initializeHistograms() {
faa38350 825 TmfTimeRange fullRange = updateTraceTimeRange();
21852dfa
AM
826
827 TmfTraceContext ctx = TmfTraceManager.getInstance().getCurrentTraceContext();
828 long selectionBeginTime = ctx.getSelectionRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
829 long selectionEndTime = ctx.getSelectionRange().getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
830 long startTime = ctx.getWindowRange().getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
831 long duration = ctx.getWindowRange().getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue() - startTime;
74237cc3 832
faa38350
PT
833 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
834 fTimeRangeRequest.cancel();
835 }
74237cc3 836 fTimeRangeHistogram.clear();
faa38350 837 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
d7ee91bb 838 fTimeRangeHistogram.setTimeRange(startTime, duration);
0fcf3b09 839 fTimeRangeHistogram.setSelection(selectionBeginTime, selectionEndTime);
2fc582d2 840 fTimeRangeHistogram.fDataModel.setTrace(fTrace);
c392540b 841
faa38350
PT
842 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
843 fFullTraceRequest.cancel();
844 }
74237cc3 845 fFullTraceHistogram.clear();
faa38350 846 fFullTraceHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
d7ee91bb 847 fFullTraceHistogram.setTimeRange(startTime, duration);
0fcf3b09 848 fFullTraceHistogram.setSelection(selectionBeginTime, selectionEndTime);
2fc582d2 849 fFullTraceHistogram.fDataModel.setTrace(fTrace);
c392540b 850
d7ee91bb
PT
851 fWindowStartTime = startTime;
852 fWindowSpan = duration;
853 fWindowEndTime = startTime + duration;
6a13fa07 854
0fcf3b09
PT
855 fSelectionBeginTime = selectionBeginTime;
856 fSelectionEndTime = selectionEndTime;
720d67cb
PT
857 fSelectionStartControl.setValue(fSelectionBeginTime);
858 fSelectionEndControl.setValue(fSelectionEndTime);
f8177ba2 859
f7d9ea05
BH
860 // make sure that the scrollbar is setup properly
861 fScrollComposite.setMinSize(fTimeControlsComposite.computeSize(SWT.DEFAULT, SWT.DEFAULT));
d7ee91bb 862 fTimeSpanControl.setValue(duration);
6a13fa07 863
c14c0757
GB
864 Collection<ITmfTrace> traces = TmfTraceManager.getTraceSet(fTrace);
865 if (!traces.isEmpty()) {
866 this.showTraceAction.setEnabled(traces.size() < fFullTraceHistogram.getMaxNbTraces());
2fc582d2
XR
867 }
868 updateLegendArea();
869
2af7df97 870 if (!fullRange.equals(TmfTimeRange.NULL_RANGE)) {
d7ee91bb 871 sendTimeRangeRequest(startTime, startTime + duration);
2af7df97
FC
872 sendFullRangeRequest(fullRange);
873 }
74237cc3
FC
874 }
875
2fc582d2
XR
876 private void updateLegendArea() {
877 for (Control c: fLegendArea.getChildren()) {
878 c.dispose();
879 }
03ec1f6a 880 disposeLegendImages();
2fc582d2 881 if (fFullTraceHistogram.showTraces()) {
c14c0757
GB
882 Collection<ITmfTrace> traces = TmfTraceManager.getTraceSet(fTrace);
883 fLegendImages = new Image[traces.size()];
2fc582d2
XR
884 int traceIndex = 0;
885 for (ITmfTrace trace : traces) {
886 fLegendImages[traceIndex] = new Image(fLegendArea.getDisplay(), 16, 16);
887 GC gc = new GC(fLegendImages[traceIndex]);
888 gc.setBackground(fFullTraceHistogram.getTraceColor(traceIndex));
889 gc.fillRectangle(0, 0, 15, 15);
890 gc.setForeground(fLegendArea.getDisplay().getSystemColor(SWT.COLOR_BLACK));
891 gc.drawRectangle(0, 0, 15, 15);
892 gc.dispose();
893
894 CLabel label = new CLabel(fLegendArea, SWT.NONE);
895 label.setText(trace.getName());
896 label.setImage(fLegendImages[traceIndex]);
897 traceIndex++;
898 }
899 }
900 fLegendArea.layout();
901 fLegendArea.getParent().layout();
902 }
903
0fcf3b09
PT
904 private void updateDisplayedSelectionTime(long beginTime, long endTime) {
905 fSelectionBeginTime = beginTime;
906 fSelectionEndTime = endTime;
38df2c82 907
0fcf3b09
PT
908 fFullTraceHistogram.setSelection(fSelectionBeginTime, fSelectionEndTime);
909 fTimeRangeHistogram.setSelection(fSelectionBeginTime, fSelectionEndTime);
720d67cb
PT
910 fSelectionStartControl.setValue(fSelectionBeginTime);
911 fSelectionEndControl.setValue(fSelectionEndTime);
38df2c82
AM
912 }
913
914 private void updateDisplayedTimeRange(long start, long end) {
915 fWindowStartTime = start;
916 fWindowEndTime = end;
917 fWindowSpan = fWindowEndTime - fWindowStartTime;
918 fFullTraceHistogram.setTimeRange(fWindowStartTime, fWindowSpan);
919 }
920
faa38350
PT
921 private TmfTimeRange updateTraceTimeRange() {
922 fTraceStartTime = 0L;
923 fTraceEndTime = 0L;
74237cc3 924
faa38350 925 TmfTimeRange timeRange = fTrace.getTimeRange();
c6023803 926 if (!timeRange.equals(TmfTimeRange.NULL_RANGE)) {
faa38350
PT
927 fTraceStartTime = timeRange.getStartTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
928 fTraceEndTime = timeRange.getEndTime().normalize(0, ITmfTimestamp.NANOSECOND_SCALE).getValue();
74237cc3
FC
929 }
930 return timeRange;
b59134e1 931 }
c392540b
FC
932
933 private void sendTimeRangeRequest(long startTime, long endTime) {
1b055dfa 934 if ((fTimeRangeRequest != null) && !fTimeRangeRequest.isCompleted()) {
c392540b 935 fTimeRangeRequest.cancel();
088c1d4e 936 }
f8177ba2
FC
937 TmfTimestamp startTS = new TmfTimestamp(startTime, ITmfTimestamp.NANOSECOND_SCALE);
938 TmfTimestamp endTS = new TmfTimestamp(endTime, ITmfTimestamp.NANOSECOND_SCALE);
c392540b
FC
939 TmfTimeRange timeRange = new TmfTimeRange(startTS, endTS);
940
941 fTimeRangeHistogram.clear();
15844a4e 942 fTimeRangeHistogram.setFullRange(fTraceStartTime, fTraceEndTime);
c392540b 943 fTimeRangeHistogram.setTimeRange(startTime, endTime - startTime);
4cf201de 944
faa38350 945 int cacheSize = fTrace.getCacheSize();
2740e05c
AM
946 fTimeRangeRequest = new HistogramRequest(fTimeRangeHistogram.getDataModel(),
947 timeRange, 0, ITmfEventRequest.ALL_DATA, cacheSize, ExecutionType.FOREGROUND, false);
faa38350 948 fTrace.sendRequest(fTimeRangeRequest);
088c1d4e 949 }
c392540b 950
74237cc3 951 private void sendFullRangeRequest(TmfTimeRange fullRange) {
1b055dfa 952 if ((fFullTraceRequest != null) && !fFullTraceRequest.isCompleted()) {
c392540b
FC
953 fFullTraceRequest.cancel();
954 }
faa38350 955 int cacheSize = fTrace.getCacheSize();
2740e05c
AM
956 fFullTraceRequest = new HistogramRequest(fFullTraceHistogram.getDataModel(),
957 fullRange,
958 (int) fFullTraceHistogram.fDataModel.getNbEvents(),
959 ITmfEventRequest.ALL_DATA,
960 cacheSize,
961 ExecutionType.BACKGROUND, true);
faa38350 962 fTrace.sendRequest(fFullTraceRequest);
ed4b3b9f 963 }
c392540b 964
95aa81ef
JCK
965 private void contributeToActionBars() {
966 IActionBars bars = getViewSite().getActionBars();
967 bars.getToolBarManager().add(getShowLostEventsAction());
2fc582d2 968 bars.getToolBarManager().add(getShowTraceAction());
95aa81ef
JCK
969 bars.getToolBarManager().add(new Separator());
970 }
971
720d67cb
PT
972 private void addLinkButtonListeners() {
973 fLinkButton.addMouseListener(new MouseAdapter() {
974 @Override
975 public void mouseDown(MouseEvent e) {
976 fSelectionEndControl.setEnabled(fLinkState);
977 fLinkState = !fLinkState;
978 fLinkButton.redraw();
979 }
980 });
981
982 fLinkButton.addPaintListener(new PaintListener() {
983 @Override
984 public void paintControl(PaintEvent e) {
985 if (fLinkState) {
986 Rectangle r = fLinkButton.getBounds();
987 r.x = -1;
988 r.y = -1;
989 e.gc.setForeground(e.display.getSystemColor(SWT.COLOR_WIDGET_NORMAL_SHADOW));
990 e.gc.drawRectangle(r);
991 r.x = 0;
992 r.y = 0;
993 e.gc.setForeground(e.display.getSystemColor(SWT.COLOR_DARK_GRAY));
994 e.gc.drawRectangle(r);
995 }
996 }
997 });
998 }
f7d9ea05
BH
999
1000 private static class PackedScrolledComposite extends ScrolledComposite {
1001 Point fScrollBarSize; // Size of OS-specific scrollbar
1002
1003 public PackedScrolledComposite(Composite parent, int style) {
1004 super(parent, style);
1005 Composite composite = new Composite(parent, SWT.H_SCROLL | SWT.V_SCROLL);
1006 composite.setSize(1, 1);
1007 fScrollBarSize = composite.computeSize(0, 0);
1008 composite.dispose();
1009 }
1010
1011 @Override
1012 public Point computeSize(int wHint, int hHint, boolean changed) {
1013 Point point = super.computeSize(wHint, hHint, changed);
1014 // Remove scrollbar size if applicable
1015 point.x += ((getStyle() & SWT.V_SCROLL) != 0) ? -fScrollBarSize.x : 0;
1016 point.y += ((getStyle() & SWT.H_SCROLL) != 0) ? -fScrollBarSize.y : 0;
1017 return point;
1018 }
1019 }
6e512b93 1020}
This page took 0.166156 seconds and 5 git commands to generate.