Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2009-06-22 21:19:28 +0000
committerspingel2009-06-22 21:19:28 +0000
commite28a8df4da99416bc4df84c63299182eb37ea2f7 (patch)
tree3f040695b6f9280e889da04ea98ddc856f1d4cb9 /org.eclipse.mylyn.tasks.ui
parentf7361b80b243e956b58b4605dcf5c3790603e261 (diff)
downloadorg.eclipse.mylyn.tasks-e28a8df4da99416bc4df84c63299182eb37ea2f7.tar.gz
org.eclipse.mylyn.tasks-e28a8df4da99416bc4df84c63299182eb37ea2f7.tar.xz
org.eclipse.mylyn.tasks-e28a8df4da99416bc4df84c63299182eb37ea2f7.zip
NEW - bug 277974: [patch] task list tooltip doesn't appear after Eclipse has been minimized
https://bugs.eclipse.org/bugs/show_bug.cgi?id=277974
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListToolTip.java21
1 files changed, 13 insertions, 8 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListToolTip.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListToolTip.java
index 2e773c777..23679b85d 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListToolTip.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListToolTip.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2008 Tasktop Technologies and others.
+ * Copyright (c) 2004, 2009 Tasktop Technologies and others.
* 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
@@ -7,6 +7,7 @@
*
* Contributors:
* Tasktop Technologies - initial API and implementation
+ * Kevin Barnes, IBM Corporation - fix for bug 277974
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.ui.views;
@@ -64,6 +65,7 @@ import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Scrollable;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;
import org.eclipse.swt.widgets.ToolBar;
@@ -79,7 +81,7 @@ import com.ibm.icu.text.SimpleDateFormat;
/**
* @author Mik Kersten
* @author Eric Booth
- * @author Leo Dos Santos - multi-monitor support
+ * @author Leo Dos Santos
* @author Steffen Pingel
*/
public class TaskListToolTip extends GradientToolTip {
@@ -428,12 +430,7 @@ public class TaskListToolTip extends GradientToolTip {
Rectangle bounds = getBounds(tipWidget);
if (tipWidget instanceof ScalingHyperlink) {
currentTipElement = getTaskListElement(tipWidget);
- } else if (tipWidget instanceof TreeItem) {
- Tree tree = ((TreeItem) tipWidget).getParent();
- if ((bounds != null && tree.getClientArea().contains(bounds.x, bounds.y))) {
- currentTipElement = getTaskListElement(tipWidget);
- }
- } else if ((bounds != null && control.getBounds().contains(bounds.x, bounds.y))) {
+ } else if (bounds != null && contains(bounds.x, bounds.y)) {
currentTipElement = getTaskListElement(tipWidget);
}
}
@@ -447,6 +444,14 @@ public class TaskListToolTip extends GradientToolTip {
}
}
+ private boolean contains(int x, int y) {
+ if (control instanceof Scrollable) {
+ return ((Scrollable) control).getClientArea().contains(x, y);
+ } else {
+ return control.getBounds().contains(x, y);
+ }
+ }
+
@Override
protected Composite createToolTipArea(Event event, Composite parent) {
assert currentTipElement != null;

Back to the top