lttng: Update copyright headers
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / core / Lifeline.java
CommitLineData
73005152 1/**********************************************************************
df0b8ff4
BH
2 * Copyright (c) 2005, 2008 IBM Corporation and others.
3 * Copyright (c) 2011, 2012 Ericsson.
abbdd66a 4 *
73005152
BH
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v1.0
7 * which accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
abbdd66a
AM
9 *
10 * Contributors:
73005152
BH
11 * IBM - Initial API and implementation
12 * Bernd Hufmann - Updated for TMF
13 **********************************************************************/
14package org.eclipse.linuxtools.tmf.ui.views.uml2sd.core;
15
16import java.util.ArrayList;
17import java.util.List;
18
19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IColor;
20import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC;
21import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IImage;
df0b8ff4 22import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.ISDPreferences;
3145ec83 23import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.SDViewPref;
73005152
BH
24
25/**
26 * Lifeline is the UML2 lifeline graphical representation.<br>
27 * Each lifeline owns a set of event occurrences. An event occurrence is the base element in UML2 to set an event in a
28 * sequence diagram.<br>
29 * Event occurrence define the drawing order of graph node along a lifeline. In this lifeline implementation, event
30 * occurrences are just integer index. The event occurrences with the same value on different lifelines will correspond
31 * the same y coordinate value.
abbdd66a 32 *
df0b8ff4 33 * @version 1.0
73005152 34 * @author sveyrier
abbdd66a 35 *
73005152
BH
36 */
37public class Lifeline extends GraphNode {
df0b8ff4
BH
38 // ------------------------------------------------------------------------
39 // Constants
40 // ------------------------------------------------------------------------
41 /**
42 * The life line tag.
43 */
44 public static final String LIFELINE_TAG = "Lifeline"; //$NON-NLS-1$
73005152 45
df0b8ff4
BH
46 // ------------------------------------------------------------------------
47 // Attribute
48 // ------------------------------------------------------------------------
73005152
BH
49 /**
50 * The lifeline position in the containing frame
51 */
eb63f5ff 52 protected int fIndexInFrame = 0;
73005152
BH
53 /**
54 * The frame where the lifeline is drawn
55 */
eb63f5ff 56 protected Frame fFrame = null;
73005152
BH
57 /**
58 * The current event occurrence created in the lifeline
59 */
eb63f5ff 60 protected int fEventOccurrence = 0;
df0b8ff4
BH
61 /**
62 * The lifeline category.
63 */
eb63f5ff 64 protected int fCategory = -1;
df0b8ff4
BH
65 /**
66 * Flag whether lifeline has time information available or not
67 */
eb63f5ff 68 protected boolean fHasTimeInfo = false;
73005152 69
df0b8ff4
BH
70 // ------------------------------------------------------------------------
71 // Constructors
72 // ------------------------------------------------------------------------
73 /**
74 * Default constructor
75 */
76 public Lifeline() {
eb63f5ff 77 fPrefId = ISDPreferences.PREF_LIFELINE;
df0b8ff4
BH
78 }
79
80 // ------------------------------------------------------------------------
81 // Methods
82 // ------------------------------------------------------------------------
83 /*
84 * (non-Javadoc)
85 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getX()
86 */
73005152
BH
87 @Override
88 public int getX() {
eb63f5ff 89 return Metrics.FRAME_H_MARGIN + Metrics.LIFELINE_H_MAGIN + (fIndexInFrame - 1) * Metrics.swimmingLaneWidth();
73005152
BH
90 }
91
df0b8ff4
BH
92 /*
93 * (non-Javadoc)
94 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getY()
95 */
73005152
BH
96 @Override
97 public int getY() {
98 return 2 * Metrics.FRAME_NAME_H_MARGIN + Metrics.LIFELINE_VT_MAGIN / 2 + Metrics.getFrameFontHeigth() + Metrics.getLifelineHeaderFontHeigth() + Metrics.FRAME_V_MARGIN + 2 * Metrics.LIFELINE_HEARDER_TEXT_V_MARGIN;
99 }
100
df0b8ff4
BH
101 /*
102 * (non-Javadoc)
103 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getWidth()
104 */
73005152
BH
105 @Override
106 public int getWidth() {
107 return Metrics.getLifelineWidth();
108 }
109
df0b8ff4
BH
110 /*
111 * (non-Javadoc)
112 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getHeight()
113 */
73005152
BH
114 @Override
115 public int getHeight() {
116 // Set room for two text lines
117 return Metrics.getLifelineFontHeigth()/** 2 */
118 + 2 * Metrics.LIFELINE_NAME_H_MARGIN;
119 }
120
73005152
BH
121 /**
122 * Set the lifeline category for this lifeline.
abbdd66a 123 *
73005152
BH
124 * @param arrayIndex the index of the category to use
125 * @see Frame#setLifelineCategories(LifelineCategories[])
126 */
127 public void setCategory(int arrayIndex) {
eb63f5ff 128 fCategory = arrayIndex;
73005152
BH
129 }
130
131 /**
132 * Returns the tooltip text for the lifeline. It is the combination between the category name(if any) and the
133 * lifeline name
abbdd66a 134 *
73005152
BH
135 * @return the tooltip text
136 */
137 public String getToolTipText() {
eb63f5ff
BH
138 if (fCategory >= 0) {
139 LifelineCategories[] categories = fFrame.getLifelineCategories();
140 if (fCategory < categories.length) {
141 return categories[fCategory].getName() + " " + getName(); //$NON-NLS-1$
df0b8ff4 142 }
df0b8ff4 143 }
abbdd66a 144 return ""; //$NON-NLS-1$
73005152
BH
145 }
146
147 /**
148 * Returns the index of the first visible Execution Occurrence in the execution occurrence array.<br>
149 * Execution Occurrences are Y ordered in this array
abbdd66a 150 *
73005152
BH
151 * @return the first visible Execution Occurrence
152 */
153 public int getExecOccurrenceDrawIndex() {
eb63f5ff 154 if (!fHasChilden) {
73005152 155 return 0;
df0b8ff4 156 }
eb63f5ff 157 if (fIndexes.get(BasicExecutionOccurrence.EXEC_OCC_TAG) != null) {
abbdd66a 158 return fIndexes.get(BasicExecutionOccurrence.EXEC_OCC_TAG).intValue();
df0b8ff4
BH
159 }
160 return 0;
73005152
BH
161 }
162
163 /**
164 * Set the frame on which this lifeline must be drawn
abbdd66a 165 *
73005152 166 * @param parentFrame
a0a88f65 167 * Parent frame
73005152
BH
168 */
169 protected void setFrame(Frame parentFrame) {
eb63f5ff
BH
170 fFrame = parentFrame;
171 if (fHasTimeInfo) {
172 fFrame.setHasTimeInfo(true);
73005152 173 }
eb63f5ff
BH
174 if (fFrame.getMaxEventOccurrence() < getEventOccurrence() + 1) {
175 fFrame.setMaxEventOccurrence(getEventOccurrence() + 1);
df0b8ff4 176 }
73005152
BH
177 }
178
179 /**
180 * Returns the frame which this lifeline is drawn
abbdd66a 181 *
73005152
BH
182 * @return the Frame
183 */
184 protected Frame getFrame() {
eb63f5ff 185 return fFrame;
73005152
BH
186 }
187
188 /**
189 * Set the lifeline position index in the containing frame
abbdd66a 190 *
73005152
BH
191 * @param index the lifeline X position
192 */
73005152 193 protected void setIndex(int index) {
eb63f5ff 194 fIndexInFrame = index;
73005152
BH
195 }
196
197 /**
198 * Returns the lifeline position in de the containing frame
abbdd66a 199 *
73005152
BH
200 * @return the X position
201 */
202 public int getIndex() {
eb63f5ff 203 return fIndexInFrame;
73005152
BH
204 }
205
206 /**
207 * Set the lifeline event occurrence to the value given in parameter This only change the current event occurrence,
208 * greater event created on this lifeline are still valid and usable. This also need to inform the frame of the
209 * operation mostly to store in the frame the greater event found in the diagram (used to determine the frame
210 * height)
abbdd66a 211 *
0d9a6d76 212 * @param eventOcc the new current event occurrence
73005152
BH
213 */
214 public void setCurrentEventOccurrence(int eventOcc) {
eb63f5ff
BH
215 if ((fFrame != null) && (fFrame.getMaxEventOccurrence() < eventOcc)) {
216 fFrame.setMaxEventOccurrence(eventOcc);
df0b8ff4 217 }
eb63f5ff 218 fEventOccurrence = eventOcc;
73005152
BH
219 }
220
221 /**
222 * Returns the last created event occurrence along the lifeline.
abbdd66a 223 *
73005152
BH
224 * @return the current event occurrence
225 */
226 public int getEventOccurrence() {
eb63f5ff 227 return fEventOccurrence;
73005152
BH
228 }
229
230 /**
231 * Creates a new event occurrence along the lifeline.
abbdd66a 232 *
73005152
BH
233 * @return the new created event occurrence
234 */
235 public int getNewEventOccurrence() {
eb63f5ff
BH
236 setCurrentEventOccurrence(fEventOccurrence + 1);
237 return fEventOccurrence;
73005152
BH
238 }
239
240 /**
241 * Adds the execution occurrence given in parameter to the lifeline.<br>
242 * A Execution occurrence is never drawn in the frame instead it is added to a lifeline
abbdd66a 243 *
73005152
BH
244 * @param exec the execution occurrence to add
245 */
246 public void addExecution(BasicExecutionOccurrence exec) {
247 exec.setLifeline(this);
248 addNode(exec);
eb63f5ff
BH
249 if ((fFrame != null) && (fFrame.getMaxEventOccurrence() < exec.fEndEventOccurrence)) {
250 fFrame.setMaxEventOccurrence(exec.fEndEventOccurrence);
df0b8ff4 251 }
73005152
BH
252 }
253
df0b8ff4
BH
254 /**
255 * Set whether lifeline has time information available or not.
256 * @param value The value to set
257 */
73005152 258 protected void setTimeInfo(boolean value) {
eb63f5ff
BH
259 fHasTimeInfo = value;
260 if ((fFrame != null) && value) {
261 fFrame.setHasTimeInfo(value);
df0b8ff4 262 }
73005152
BH
263 }
264
265 /**
df0b8ff4 266 * Returns true if at least one execution occurrence has time info.
abbdd66a 267 *
73005152
BH
268 * @return true if at least one execution occurrence has time info
269 */
270 public boolean hasTimeInfo() {
eb63f5ff 271 return fHasTimeInfo;
73005152
BH
272 }
273
274 /**
df0b8ff4 275 * Returns the list of execution occurrence on this lifeline.
abbdd66a 276 *
73005152
BH
277 * @return the execution occurrence list
278 */
279 public List<GraphNode> getExecutions() {
eb63f5ff 280 if (fHasChilden) {
abbdd66a 281 return fNodes.get(BasicExecutionOccurrence.EXEC_OCC_TAG);
df0b8ff4
BH
282 }
283 return new ArrayList<GraphNode>();
73005152
BH
284 }
285
df0b8ff4
BH
286 /*
287 * (non-Javadoc)
288 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#contains(int, int)
289 */
73005152 290 @Override
eb63f5ff 291 public boolean contains(int xValue, int yValue) {
73005152
BH
292 int x = getX();
293 int y = getY();
294 int width = getWidth();
295 int height = getHeight();
296
eb63f5ff 297 if (fFrame == null) {
73005152 298 return false;
df0b8ff4 299 }
abbdd66a 300 if (GraphNode.contains(x, y, width, height, xValue, yValue)) {
73005152
BH
301 return true;
302 }
abbdd66a 303 if (GraphNode.contains(x + Metrics.getLifelineWidth() / 2 - Metrics.EXECUTION_OCCURRENCE_WIDTH / 2, y + height, Metrics.EXECUTION_OCCURRENCE_WIDTH, (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fFrame.getMaxEventOccurrence()
eb63f5ff 304 + Metrics.LIFELINE_VB_MAGIN - 4, xValue, yValue)) {
73005152
BH
305 return true;
306 }
307
308 height = Metrics.getLifelineFontHeigth() + 2 * Metrics.LIFELINE_HEARDER_TEXT_V_MARGIN;
309 int hMargin = (Metrics.LIFELINE_VT_MAGIN - height) / 2;
310
311 if (hMargin >= 2) {
eb63f5ff 312 if (fFrame.getVisibleAreaY() < y - height - hMargin) {
abbdd66a 313 if (GraphNode.contains(x - Metrics.LIFELINE_SPACING / 2 + 1, y - height - hMargin, Metrics.swimmingLaneWidth() - 2, height + 1, xValue, yValue)) {
73005152 314 return true;
df0b8ff4 315 }
73005152 316 } else {
abbdd66a 317 if (GraphNode.contains(x - Metrics.LIFELINE_SPACING / 2 + 1, fFrame.getVisibleAreaY(), Metrics.swimmingLaneWidth() - 2, height, xValue, yValue)) {
73005152 318 return true;
df0b8ff4 319 }
73005152
BH
320 }
321 }
eb63f5ff 322 if (getNodeAt(xValue, yValue) != null) {
73005152 323 return true;
df0b8ff4 324 }
73005152
BH
325 return false;
326 }
327
328 /**
329 * Returns the lifeline visibility for the given visible area
abbdd66a 330 *
df0b8ff4
BH
331 * @param vx The x coordinate of the visible area
332 * @param vy The y coordinate of the visible area
333 * @param vwidth The width of the visible area
334 * @param vheight The height of the visible area
73005152
BH
335 * @return true if visible false otherwise
336 */
337 @Override
338 public boolean isVisible(int vx, int vy, int vwidth, int vheight) {
339 int x = getX();
340 int width = getWidth();
df0b8ff4 341 if (((x >= vx) && (x <= vx + vwidth)) || ((x + width >= vx) && (x <= vx))) {
73005152 342 return true;
df0b8ff4 343 }
73005152
BH
344 return false;
345 }
346
df0b8ff4 347 /**
abbdd66a
AM
348 * Draws the name within the graphical context.
349 *
df0b8ff4
BH
350 * @param context The graphical context.
351 */
73005152 352 protected void drawName(IGC context) {
3145ec83
BH
353 ISDPreferences pref = SDViewPref.getInstance();
354
73005152
BH
355 int x = getX();
356 int y = getY();
357 int height = Metrics.getLifelineHeaderFontHeigth() + 2 * Metrics.LIFELINE_HEARDER_TEXT_V_MARGIN;
358 int hMargin = Metrics.LIFELINE_VT_MAGIN / 4;// (Metrics.LIFELINE_NAME_H_MARGIN)/2;
359
360 context.setLineStyle(context.getLineSolidStyle());
3145ec83
BH
361 context.setBackground(pref.getBackGroundColor(ISDPreferences.PREF_LIFELINE_HEADER));
362 context.setForeground(pref.getForeGroundColor(ISDPreferences.PREF_LIFELINE_HEADER));
363 context.setFont(pref.getFont(ISDPreferences.PREF_LIFELINE_HEADER));
73005152 364 if (hMargin >= 0) {
eb63f5ff 365 if (fFrame.getVisibleAreaY() < y - height - hMargin) {
73005152
BH
366 context.fillRectangle(x - Metrics.LIFELINE_SPACING / 2 + 1, y - height - hMargin, Metrics.swimmingLaneWidth() - 2, height);
367 context.drawRectangle(x - Metrics.LIFELINE_SPACING / 2 + 1, y - height - hMargin, Metrics.swimmingLaneWidth() - 2, height);
3145ec83 368 context.setForeground(pref.getFontColor(ISDPreferences.PREF_LIFELINE_HEADER));
73005152
BH
369 context.drawTextTruncatedCentred(getName(), x + Metrics.LIFELINE_NAME_V_MARGIN - Metrics.LIFELINE_SPACING / 2 + 1, y - height - hMargin, Metrics.swimmingLaneWidth() - 2 * Metrics.LIFELINE_NAME_V_MARGIN - 2, height, true);
370 } else {
eb63f5ff
BH
371 context.fillRectangle(x - Metrics.LIFELINE_SPACING / 2 + 1, fFrame.getVisibleAreaY(), Metrics.swimmingLaneWidth() - 2, height);
372 context.drawRectangle(x - Metrics.LIFELINE_SPACING / 2 + 1, fFrame.getVisibleAreaY(), Metrics.swimmingLaneWidth() - 2, height);
3145ec83 373 context.setForeground(pref.getFontColor(ISDPreferences.PREF_LIFELINE_HEADER));
eb63f5ff 374 context.drawTextTruncatedCentred(getName(), x - Metrics.LIFELINE_SPACING / 2 + Metrics.LIFELINE_NAME_V_MARGIN + 1, fFrame.getVisibleAreaY(), Metrics.swimmingLaneWidth() - 2 * Metrics.LIFELINE_NAME_V_MARGIN - 2, height, true);
73005152
BH
375 }
376 }
377 }
378
379 /**
380 * Force the lifeline to be drawn at the given coordinate
abbdd66a 381 *
73005152 382 * @param context - the context to draw into
0d9a6d76
FC
383 * @param x - the x coordinate
384 * @param y - the y coordinate
73005152
BH
385 */
386 public void draw(IGC context, int x, int y) {
abbdd66a 387
3145ec83 388 ISDPreferences pref = SDViewPref.getInstance();
abbdd66a 389
73005152
BH
390 // Set the draw color depending if the lifeline must be selected or not
391 context.setLineWidth(Metrics.NORMAL_LINE_WIDTH);
392 if (isSelected()) {
3145ec83
BH
393 if (pref.useGradienColor()) {
394 context.setGradientColor(pref.getBackGroundColor(ISDPreferences.PREF_LIFELINE));
73005152 395 }
3145ec83
BH
396 context.setBackground(pref.getBackGroundColorSelection());
397 context.setForeground(pref.getForeGroundColorSelection());
73005152 398 } else {
3145ec83
BH
399 if (pref.useGradienColor()) {
400 context.setGradientColor(pref.getBackGroundColor(ISDPreferences.PREF_LIFELINE));
401 context.setBackground(pref.getBackGroundColor(ISDPreferences.PREF_FRAME));
df0b8ff4 402 } else {
3145ec83 403 context.setBackground(pref.getBackGroundColor(ISDPreferences.PREF_LIFELINE));
df0b8ff4 404 }
3145ec83 405 context.setForeground(pref.getForeGroundColor(ISDPreferences.PREF_LIFELINE));
73005152
BH
406 }
407 // Store the lifeline coordinates to save some calls
408 int width = getWidth();
409 int height = getHeight();
410
411 // Draw the rectangle which contain the lifeline name
3145ec83 412 if (pref.useGradienColor()) {
73005152
BH
413 context.fillGradientRectangle(x, y, width, height / 2 - 7, true);
414 context.fillRectangle(x, y + height / 2 - 8, width, +height / 2 - 5);
415 context.fillGradientRectangle(x, y + height, width, -height / 2 + 6, true);
df0b8ff4 416 } else {
73005152 417 context.fillRectangle(x, y, width, height);
df0b8ff4 418 }
73005152
BH
419 context.drawRectangle(x, y, width, height);
420
eb63f5ff
BH
421 if (fCategory >= 0) {
422 LifelineCategories[] categories = fFrame.getLifelineCategories();
423 if (fCategory < categories.length) {
424 IImage image = categories[fCategory].getImage();
df0b8ff4 425 if (image != null) {
73005152 426 context.drawImage(image, x, y, width, height);
df0b8ff4 427 }
73005152
BH
428 }
429 }
430
431 // Draw the lifeline label into the rectangle
432 // The label is truncated if it cannot fit
433 IColor temp = context.getForeground();
3145ec83
BH
434 context.setFont(pref.getFont(ISDPreferences.PREF_LIFELINE));
435 context.setForeground(pref.getFontColor(ISDPreferences.PREF_LIFELINE));
73005152
BH
436 context.drawTextTruncatedCentred(getName(), x + Metrics.LIFELINE_NAME_V_MARGIN, y, Metrics.getLifelineWidth() - 2 * Metrics.LIFELINE_NAME_V_MARGIN, height, true);
437
438 context.setLineStyle(context.getLineDashStyle());
439 context.setForeground(temp);
440 int oldStyle = context.getLineStyle();
441
442 // Now draw the lifeline vertical line
443 // this line height depends on a stop assignment
444 // if there is no stop the line is drawn to the bottom of the frame
445
446 // by default set the height to reach the frame bottom
eb63f5ff 447 int dashedLineEnd = y + height + (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fFrame.getMaxEventOccurrence() + Metrics.LIFELINE_VB_MAGIN;
73005152
BH
448 /*
449 * if (stop != null) { dashedLineEnd = stop.getY(); }
450 */
451
452 if (isSelected()) {
3145ec83 453 context.setForeground(pref.getBackGroundColorSelection());
73005152
BH
454 context.setLineWidth(5);
455 context.drawLine(x + Metrics.getLifelineWidth() / 2, y + height, x + Metrics.getLifelineWidth() / 2, dashedLineEnd - 4);
3145ec83 456 context.setForeground(pref.getForeGroundColorSelection());
73005152
BH
457 }
458
459 context.setLineWidth(Metrics.NORMAL_LINE_WIDTH);
460 context.drawLine(x + Metrics.getLifelineWidth() / 2, y + height, x + Metrics.getLifelineWidth() / 2, dashedLineEnd - 4);
461 context.drawLine(x + Metrics.getLifelineWidth() / 2, y + height, x + Metrics.getLifelineWidth() / 2, dashedLineEnd - 4);
462 context.setLineStyle(oldStyle);
463
464 context.setLineStyle(context.getLineSolidStyle());
465
df0b8ff4 466 if (hasFocus()) {
73005152 467 drawFocus(context);
df0b8ff4 468 }
73005152
BH
469
470 super.drawChildenNodes(context);
471 }
472
473 /**
474 * Draws the select execution occurrence region using the given color
abbdd66a 475 *
73005152
BH
476 * @param context the graphical context
477 * @param startEvent the region start
478 * @param nbEvent the region height
479 * @param color the color to use
480 */
481 public void highlightExecOccurrenceRegion(IGC context, int startEvent, int nbEvent, IColor color) {
482 IColor backupColor = context.getBackground();
483 context.setBackground(color);
484 int x = getX() + Metrics.getLifelineWidth() / 2 - Metrics.EXECUTION_OCCURRENCE_WIDTH / 2;
485 int y = getY() + getHeight() + (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * startEvent;
486 int width = Metrics.EXECUTION_OCCURRENCE_WIDTH;
487 int height = ((Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing())) * nbEvent;
488 context.fillRectangle(x, y, width, height);
489 context.setBackground(backupColor);
490 }
491
df0b8ff4
BH
492 /*
493 * (non-Javadoc)
494 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#draw(org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC)
495 */
73005152
BH
496 @Override
497 public void draw(IGC context) {
498 draw(context, getX(), getY());
499 }
500
df0b8ff4
BH
501 /*
502 * (non-Javadoc)
503 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getArrayId()
504 */
73005152
BH
505 @Override
506 public String getArrayId() {
507 return LIFELINE_TAG;
508 }
509
df0b8ff4
BH
510 /*
511 * (non-Javadoc)
512 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#positiveDistanceToPoint(int, int)
513 */
73005152
BH
514 @Override
515 public boolean positiveDistanceToPoint(int x, int y) {
abbdd66a 516 if (getX() > x - Metrics.swimmingLaneWidth()) {
73005152 517 return true;
abbdd66a 518 }
73005152
BH
519 return false;
520 }
521
df0b8ff4
BH
522 /*
523 * (non-Javadoc)
524 * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.GraphNode#getNodeAt(int, int)
525 */
73005152
BH
526 @Override
527 public GraphNode getNodeAt(int x, int y) {
528 int vy = 0;
529 int vh = 0;
530 if (getFrame() != null) {
531 vy = getFrame().getVisibleAreaY();
532 vh = getFrame().getVisibleAreaHeight();
df0b8ff4 533 } else {
73005152 534 return null;
df0b8ff4
BH
535 }
536 if (getExecutions() == null) {
73005152 537 return null;
df0b8ff4 538 }
73005152 539 for (int i = getExecOccurrenceDrawIndex(); i < getExecutions().size(); i++) {
abbdd66a 540 GraphNode node = getExecutions().get(i);
73005152 541 if (node.getHeight() < 0) {
df0b8ff4 542 if (node.getY() + node.getHeight() > vy + vh) {
73005152 543 break;
df0b8ff4 544 }
73005152 545 } else {
df0b8ff4 546 if (node.getY() > vy + vh) {
73005152 547 break;
df0b8ff4 548 }
73005152
BH
549 }
550 if (node.contains(x, y)) {
551 GraphNode internal = node.getNodeAt(x, y);
df0b8ff4 552 if (internal != null) {
73005152 553 return internal;
df0b8ff4
BH
554 }
555 return node;
73005152
BH
556 }
557 }
558 return null;
559 }
560}
This page took 0.09553 seconds and 5 git commands to generate.