diff changesetitem.h @ 117:d5db15bf250c

* Start to sketch thing that shows the details of a changeset in the history view
author Chris Cannam
date Fri, 26 Nov 2010 22:46:29 +0000
parents 10eb97683aa9
children 005a54380502
line wrap: on
line diff
--- a/changesetitem.h	Fri Nov 26 22:06:52 2010 +0000
+++ b/changesetitem.h	Fri Nov 26 22:46:29 2010 +0000
@@ -22,6 +22,7 @@
 #include <QFont>
 
 class Changeset;
+class ChangesetDetailItem;
 
 class ChangesetItem : public QGraphicsItem
 {
@@ -44,9 +45,13 @@
     bool shouldShowBranch() const { return m_showBranch; }
     void setShowBranch(bool s) { m_showBranch = s; }
 
+protected:
+    virtual void mousePressEvent(QGraphicsSceneMouseEvent *);
+
 private:
     QFont m_font;
     Changeset *m_changeset;
+    ChangesetDetailItem *m_detail;
     bool m_showBranch;
     int m_column;
     int m_row;