comparison changesetitem.h @ 288:ca6edd303c9d

Add "Summarise changes" options to changeset item right-button menu (already existed for uncommitted item)
author Chris Cannam
date Mon, 21 Feb 2011 11:37:58 +0000
parents 8fd71f570884
children 37f67999b661
comparison
equal deleted inserted replaced
285:769ab0fa125d 288:ca6edd303c9d
61 void detailHidden(); 61 void detailHidden();
62 62
63 void updateTo(QString); 63 void updateTo(QString);
64 void diffToCurrent(QString); 64 void diffToCurrent(QString);
65 void diffToParent(QString child, QString parent); 65 void diffToParent(QString child, QString parent);
66 void showSummaryToParent(QString child, QString parent);
66 void mergeFrom(QString); 67 void mergeFrom(QString);
67 void tag(QString); 68 void tag(QString);
68 69
69 public slots: 70 public slots:
70 void showDetail(); 71 void showDetail();
72 73
73 private slots: 74 private slots:
74 void copyIdActivated(); 75 void copyIdActivated();
75 void updateActivated(); 76 void updateActivated();
76 void diffToParentActivated(); 77 void diffToParentActivated();
78 void showSummaryToParentActivated();
77 void diffToCurrentActivated(); 79 void diffToCurrentActivated();
78 void mergeActivated(); 80 void mergeActivated();
79 void tagActivated(); 81 void tagActivated();
80 82
81 protected: 83 protected:
93 bool m_wide; 95 bool m_wide;
94 bool m_current; 96 bool m_current;
95 bool m_new; 97 bool m_new;
96 98
97 QMap<QAction *, QString> m_parentDiffActions; 99 QMap<QAction *, QString> m_parentDiffActions;
100 QMap<QAction *, QString> m_summaryActions;
98 }; 101 };
99 102
100 #endif // CHANGESETITEM_H 103 #endif // CHANGESETITEM_H