From: Robin Rosenberg <robin.rosenberg@dewire.com>
To: spearce@spearce.org
Cc: git@vger.kernel.org
Subject: [EGIT PATCH 10/10] Enable a tooltip in the history view
Date: Mon, 07 May 2007 23:30:09 +0200 [thread overview]
Message-ID: <20070507213009.21546.55877.stgit@lathund.dewire.com> (raw)
In-Reply-To: <20070507212636.21546.29280.stgit@lathund.dewire.com>
This tooltip show the comment in full rather than the first line only.
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
---
.../src/org/spearce/egit/ui/GitHistoryPage.java | 27 +++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/org.spearce.egit.ui/src/org/spearce/egit/ui/GitHistoryPage.java b/org.spearce.egit.ui/src/org/spearce/egit/ui/GitHistoryPage.java
index 57fefcc..e5d92fe 100644
--- a/org.spearce.egit.ui/src/org/spearce/egit/ui/GitHistoryPage.java
+++ b/org.spearce.egit.ui/src/org/spearce/egit/ui/GitHistoryPage.java
@@ -48,9 +48,11 @@ import org.eclipse.jface.viewers.Viewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.MouseListener;
+import org.eclipse.swt.events.MouseMoveListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
@@ -136,6 +138,31 @@ public class GitHistoryPage extends HistoryPage implements IAdaptable,
});
+ tree.addMouseMoveListener(new MouseMoveListener() {
+ TreeItem lastItem;
+ public void mouseMove(MouseEvent e) {
+ TreeItem item = tree.getItem(new Point(e.x,e.y));
+ if (item != null && item!=lastItem) {
+ IFileRevision rev = (IFileRevision) item.getData();
+ String commitStr=null;
+ if (appliedPatches!=null) {
+ String id = rev.getContentIdentifier();
+ if (!id.equals("Workspace")) {
+ StGitPatch patch = (StGitPatch) appliedPatches.get(new ObjectId(id));
+ if (patch!=null)
+ commitStr = "Patch: "+patch.getName();
+ } else {
+ commitStr = "Workspace:";
+ }
+ }
+ if (commitStr == null)
+ commitStr = "Commit: "+rev.getContentIdentifier();
+ tree.setToolTipText(commitStr+"\nAuthor:\t"+rev.getAuthor()+"\nDate:\t"+new Date(rev.getTimestamp())+"\n\n"+rev.getComment());
+ }
+ lastItem = item;
+ }
+ });
+
tree.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
// update the current
next prev parent reply other threads:[~2007-05-07 21:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-07 21:29 [EGIT 00/10] This weeks Eclipse patches Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 01/10] Fixes due to changes in the Eclipse Team API Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 02/10] Recursion and update of all elements regardless of need Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 03/10] Update compare window immediately Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 04/10] Bug: Do not crash when showing diff for first version of a file Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 05/10] Speed up ObjectId a little Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 06/10] Create a generic history walker Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 07/10] Cache pack index fully Robin Rosenberg
2007-05-07 21:29 ` [EGIT PATCH 08/10] Use ObjectId[] instead of List for parents Robin Rosenberg
2007-05-07 21:30 ` [EGIT PATCH 09/10] Run history refresh in background Robin Rosenberg
2007-05-07 21:30 ` Robin Rosenberg [this message]
2007-05-07 21:35 ` Eclipse support status (was: Re: [EGIT 00/10] This weeks Eclipse patches) Grzegorz Kulewski
2007-05-08 2:07 ` Shawn O. Pearce
2007-05-08 3:24 ` [EGIT 00/10] This weeks Eclipse patches Shawn O. Pearce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070507213009.21546.55877.stgit@lathund.dewire.com \
--to=robin.rosenberg@dewire.com \
--cc=git@vger.kernel.org \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).