Fix javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / DrawableToolTip.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2008, 2011 IBM Corporation and others.
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
7 * $Id: DrawableToolTip.java,v 1.3 2008/01/24 02:29:01 apnan Exp $
8 *
9 * Contributors:
10 * IBM - Initial API and implementation
11 * Bernd Hufmann - Updated for TMF
12 **********************************************************************/
13 package org.eclipse.linuxtools.tmf.ui.views.uml2sd;
14
15 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
16 import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
17 import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
18 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
19 import org.eclipse.swt.SWT;
20 import org.eclipse.swt.events.PaintEvent;
21 import org.eclipse.swt.events.PaintListener;
22 import org.eclipse.swt.graphics.Color;
23 import org.eclipse.swt.graphics.Point;
24 import org.eclipse.swt.layout.RowLayout;
25 import org.eclipse.swt.widgets.Composite;
26 import org.eclipse.swt.widgets.Display;
27 import org.eclipse.swt.widgets.Shell;
28
29 /**
30 * This class is used to reproduce the same tooltip behavior on Windows and Linux when the mouse move hover the time
31 * compression bar used to display elapsed time using a tooltip. The tooltip is composed of 2 parts, the text value and
32 * below, a scale to visually locate the value in a time range (usually the min an max elapsed time in the whole
33 * diagram)
34 *
35 * @author sveyrier
36 */
37 public class DrawableToolTip implements PaintListener {
38
39 /**
40 * The parent control where the tooltip must be drawn
41 */
42 protected Composite parent = null;
43 /**
44 * The tooltip shell
45 */
46 protected Shell toolTipShell = null;
47 /**
48 * Time range data
49 */
50 protected TmfTimeRange minMaxRange;
51 protected ITmfTimestamp currentValue;
52
53 private static int H_MARGIN = 10;
54 private static int V_MARGIN = 10;
55
56 private static int TEXT_SCALE_MARGIN = 20;
57 private static int SCALE_LENGTH = 100;
58
59 protected String msg;
60
61 /**
62 * The color array used to represent the 10 time range slices
63 */
64 protected Color[] col;
65
66 public DrawableToolTip(Composite _parent) {
67 parent = _parent;
68 toolTipShell = new Shell(parent.getShell(), SWT.ON_TOP);
69 toolTipShell.setLayout(new RowLayout());
70 toolTipShell.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_INFO_BACKGROUND));
71 toolTipShell.addPaintListener(this);
72 toolTipShell.setSize(200, 50);
73
74 col = new Color[10];
75 col[0] = new Color(Display.getDefault(), 255, 229, 229);
76 col[1] = new Color(Display.getDefault(), 255, 204, 204);
77 col[2] = new Color(Display.getDefault(), 255, 178, 178);
78 col[3] = new Color(Display.getDefault(), 255, 153, 153);
79 col[4] = new Color(Display.getDefault(), 255, 127, 127);
80 col[5] = new Color(Display.getDefault(), 255, 102, 102);
81 col[6] = new Color(Display.getDefault(), 255, 76, 76);
82 col[7] = new Color(Display.getDefault(), 255, 51, 51);
83 col[8] = new Color(Display.getDefault(), 255, 25, 25);
84 col[9] = new Color(Display.getDefault(), 255, 0, 0);
85 }
86
87 /**
88 * Display the tooltip using the given time range(min,max) the current value and the time unit The tooltip will stay
89 * on screen until it is told otherwise
90 *
91 * @param value the current in the scale
92 * @param min the scale min
93 * @param max the scale max
94 */
95 public void showToolTip(ITmfTimestamp value, ITmfTimestamp min, ITmfTimestamp max) {
96 minMaxRange = new TmfTimeRange(min.clone(), max.clone());
97 currentValue = value.clone();
98
99 int w = toolTipShell.getBounds().width;
100 int h = toolTipShell.getBounds().height;
101 Point hr = Display.getDefault().getCursorLocation();
102 toolTipShell.setBounds(hr.x, hr.y + 26, w, h);
103 toolTipShell.setVisible(true);
104 }
105
106 /**
107 * Hide the tooltip
108 */
109 public void hideToolTip() {
110 toolTipShell.setVisible(false);
111 }
112
113 /**
114 * Draw the tooltip text on the control widget when a paint event is received
115 */
116 @Override
117 public void paintControl(PaintEvent event) {
118 msg = SDMessages._138 + " " + currentValue.toString(); //$NON-NLS-1$
119 Point size = event.gc.textExtent(msg);
120 if (size.x < SCALE_LENGTH)
121 size.x = SCALE_LENGTH;
122 event.gc.drawText(msg, H_MARGIN, V_MARGIN, true);
123 event.gc.drawLine(H_MARGIN, V_MARGIN + TEXT_SCALE_MARGIN + size.y, H_MARGIN + SCALE_LENGTH, V_MARGIN + TEXT_SCALE_MARGIN + size.y);
124
125 int step = SCALE_LENGTH / 10;
126
127 // double gr = (max - min) / 10;
128 ITmfTimestamp minMaxdelta = (TmfTimestamp) minMaxRange.getEndTime().getDelta(minMaxRange.getStartTime());
129 double gr = (minMaxdelta.getValue()) / (double) 10;
130
131 // double delta = currentValue-min;
132 ITmfTimestamp delta = (TmfTimestamp) currentValue.getDelta(minMaxRange.getStartTime());
133 long absDelta = Math.abs(delta.getValue());
134
135 int colIndex = 0;
136 if (gr != 0) {
137 // colIndex = Math.round((float)(Math.log(1+delta)/gr));
138 colIndex = Math.round((float) (absDelta / gr));
139 if (colIndex > col.length)
140 colIndex = col.length;
141 else if (colIndex <= 1)
142 colIndex = 1;
143 } else
144 colIndex = 1;
145
146 for (int i = 0; i <= 10; i++) {
147 if (i < 10)
148 event.gc.setBackground(col[i]);
149 if ((i < colIndex) && (i < 10))
150 event.gc.fillRectangle(H_MARGIN + i * step, V_MARGIN + TEXT_SCALE_MARGIN + size.y - 5, step, 11);
151 if (i == 0)
152 event.gc.drawText(SDMessages._56, H_MARGIN, size.y + 2 * V_MARGIN + TEXT_SCALE_MARGIN, true);
153 if (i == 0) {
154 int len = event.gc.textExtent(SDMessages._55).x;
155 event.gc.drawText(SDMessages._55, H_MARGIN + SCALE_LENGTH - len + 1, size.y + 2 * V_MARGIN + TEXT_SCALE_MARGIN, true);
156 }
157 int lineWidth = 10;
158 if ((i == 0) || (i == 10))
159 lineWidth = 14;
160 event.gc.drawLine(H_MARGIN + i * step, V_MARGIN + TEXT_SCALE_MARGIN + size.y - lineWidth / 2, H_MARGIN + i * step, V_MARGIN + TEXT_SCALE_MARGIN + size.y + lineWidth / 2);
161 }
162 toolTipShell.setSize(size.x + 2 * H_MARGIN + 2, 2 * size.y + 3 * V_MARGIN + TEXT_SCALE_MARGIN);
163 }
164
165 public String getText() {
166 return msg;
167 }
168
169 public String getAccessibleText() {
170 return currentValue.toString();
171 }
172
173 /**
174 * Dispose the system resource used by this kind of toolTips (a colors array essentially)
175 *
176 */
177 public void dispose() {
178 for (int i = 0; i < col.length; i++)
179 col[i].dispose();
180 }
181
182 protected static int getHorizontalMargin() {
183 return H_MARGIN;
184 }
185
186 protected static void setHorizontalMargin(int margin) {
187 H_MARGIN = margin;
188 }
189
190 protected static int getVerticalMargin() {
191 return V_MARGIN;
192 }
193
194 protected static void setVerticalMargin(int margin) {
195 V_MARGIN = margin;
196 }
197
198 protected static int getTestScaleMargin() {
199 return TEXT_SCALE_MARGIN;
200 }
201
202 protected static void setTestScaleMargin(int testScaleMargin) {
203 TEXT_SCALE_MARGIN = testScaleMargin;
204 }
205
206 protected static int getScaleLength() {
207 return SCALE_LENGTH;
208 }
209
210 protected static void setScaleLength(int scaleLength) {
211 SCALE_LENGTH = scaleLength;
212 }
213
214 }
This page took 0.039835 seconds and 6 git commands to generate.