Chris@57
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@57
|
2
|
Chris@57
|
3 /*
|
Chris@57
|
4 EasyMercurial
|
Chris@57
|
5
|
Chris@57
|
6 Based on HgExplorer by Jari Korhonen
|
Chris@57
|
7 Copyright (c) 2010 Jari Korhonen
|
Chris@244
|
8 Copyright (c) 2011 Chris Cannam
|
Chris@244
|
9 Copyright (c) 2011 Queen Mary, University of London
|
Chris@57
|
10
|
Chris@57
|
11 This program is free software; you can redistribute it and/or
|
Chris@57
|
12 modify it under the terms of the GNU General Public License as
|
Chris@57
|
13 published by the Free Software Foundation; either version 2 of the
|
Chris@57
|
14 License, or (at your option) any later version. See the file
|
Chris@57
|
15 COPYING included with this distribution for more information.
|
Chris@57
|
16 */
|
Chris@57
|
17
|
Chris@43
|
18 #include "changesetitem.h"
|
Chris@281
|
19 #include "changesetscene.h"
|
Chris@117
|
20 #include "changesetdetailitem.h"
|
Chris@43
|
21 #include "changeset.h"
|
Chris@53
|
22 #include "textabbrev.h"
|
Chris@53
|
23 #include "colourset.h"
|
Chris@117
|
24 #include "debug.h"
|
Chris@43
|
25
|
Chris@43
|
26 #include <QPainter>
|
Chris@117
|
27 #include <QGraphicsScene>
|
Chris@132
|
28 #include <QGraphicsSceneMouseEvent>
|
Chris@140
|
29 #include <QMenu>
|
Chris@140
|
30 #include <QAction>
|
Chris@140
|
31 #include <QLabel>
|
Chris@140
|
32 #include <QWidgetAction>
|
Chris@153
|
33 #include <QApplication>
|
Chris@153
|
34 #include <QClipboard>
|
Chris@43
|
35
|
Chris@390
|
36 QImage *ChangesetItem::m_star = 0;
|
Chris@390
|
37
|
Chris@53
|
38 ChangesetItem::ChangesetItem(Changeset *cs) :
|
Chris@117
|
39 m_changeset(cs), m_detail(0),
|
Chris@133
|
40 m_showBranch(false), m_column(0), m_row(0), m_wide(false),
|
Chris@133
|
41 m_current(false), m_new(false)
|
Chris@53
|
42 {
|
Chris@53
|
43 m_font = QFont();
|
Chris@53
|
44 m_font.setPixelSize(11);
|
Chris@53
|
45 m_font.setBold(false);
|
Chris@53
|
46 m_font.setItalic(false);
|
Chris@168
|
47 setCursor(Qt::ArrowCursor);
|
Chris@390
|
48
|
Chris@390
|
49 if (!m_star) m_star = new QImage(":images/star.png");
|
Chris@53
|
50 }
|
Chris@53
|
51
|
Chris@141
|
52 QString
|
Chris@141
|
53 ChangesetItem::getId()
|
Chris@141
|
54 {
|
Chris@141
|
55 return m_changeset->id();
|
Chris@141
|
56 }
|
Chris@141
|
57
|
Chris@43
|
58 QRectF
|
Chris@43
|
59 ChangesetItem::boundingRect() const
|
Chris@43
|
60 {
|
Chris@55
|
61 int w = 100;
|
Chris@55
|
62 if (m_wide) w = 180;
|
Chris@250
|
63 return QRectF(-((w-50)/2 - 1), -30, w - 3, 90);
|
Chris@43
|
64 }
|
Chris@43
|
65
|
Chris@43
|
66 void
|
Chris@119
|
67 ChangesetItem::showDetail()
|
Chris@117
|
68 {
|
Chris@119
|
69 if (m_detail) return;
|
Chris@117
|
70 m_detail = new ChangesetDetailItem(m_changeset);
|
Chris@117
|
71 m_detail->setZValue(zValue() + 1);
|
Chris@117
|
72 scene()->addItem(m_detail);
|
Chris@117
|
73 int w = 100;
|
Chris@117
|
74 if (m_wide) w = 180;
|
Chris@387
|
75 if (isMerge()) w = 60;
|
Chris@124
|
76 int h = 80;
|
Chris@124
|
77 // m_detail->moveBy(x() - (m_detail->boundingRect().width() - 50) / 2,
|
Chris@124
|
78 // y() + 60);
|
Chris@124
|
79 m_detail->moveBy(x() + (w + 50) / 2 + 10 + 0.5,
|
Chris@124
|
80 y() - (m_detail->boundingRect().height() - h) / 2 + 0.5);
|
Chris@401
|
81 m_detail->ensureVisible();
|
Chris@119
|
82 emit detailShown();
|
Chris@119
|
83 }
|
Chris@119
|
84
|
Chris@119
|
85 void
|
Chris@119
|
86 ChangesetItem::hideDetail()
|
Chris@119
|
87 {
|
Chris@124
|
88 if (!m_detail) return;
|
Chris@124
|
89 scene()->removeItem(m_detail);
|
Chris@119
|
90 delete m_detail;
|
Chris@119
|
91 m_detail = 0;
|
Chris@119
|
92 emit detailHidden();
|
Chris@119
|
93 }
|
Chris@119
|
94
|
Chris@119
|
95 void
|
Chris@119
|
96 ChangesetItem::mousePressEvent(QGraphicsSceneMouseEvent *e)
|
Chris@119
|
97 {
|
Chris@119
|
98 DEBUG << "ChangesetItem::mousePressEvent" << endl;
|
Chris@132
|
99 if (e->button() == Qt::LeftButton) {
|
Chris@132
|
100 if (m_detail) {
|
Chris@132
|
101 hideDetail();
|
Chris@132
|
102 } else {
|
Chris@132
|
103 showDetail();
|
Chris@132
|
104 }
|
Chris@140
|
105 } else if (e->button() == Qt::RightButton) {
|
Chris@141
|
106 if (m_detail) {
|
Chris@141
|
107 hideDetail();
|
Chris@141
|
108 }
|
Chris@140
|
109 activateMenu();
|
Chris@119
|
110 }
|
Chris@117
|
111 }
|
Chris@117
|
112
|
Chris@117
|
113 void
|
Chris@140
|
114 ChangesetItem::activateMenu()
|
Chris@140
|
115 {
|
Chris@153
|
116 m_parentDiffActions.clear();
|
Chris@288
|
117 m_summaryActions.clear();
|
Chris@153
|
118
|
Chris@140
|
119 QMenu *menu = new QMenu;
|
Chris@165
|
120 QLabel *label = new QLabel(tr("<qt><b> Revision: </b>%1</qt>")
|
Chris@165
|
121 .arg(Changeset::hashOf(m_changeset->id())));
|
Chris@141
|
122 QWidgetAction *wa = new QWidgetAction(menu);
|
Chris@140
|
123 wa->setDefaultWidget(label);
|
Chris@140
|
124 menu->addAction(wa);
|
Chris@140
|
125 menu->addSeparator();
|
Chris@141
|
126
|
Chris@153
|
127 QAction *copyId = menu->addAction(tr("Copy identifier to clipboard"));
|
Chris@153
|
128 connect(copyId, SIGNAL(triggered()), this, SLOT(copyIdActivated()));
|
Chris@141
|
129
|
Chris@289
|
130 QAction *stat = menu->addAction(tr("Summarise changes"));
|
Chris@289
|
131 connect(stat, SIGNAL(triggered()), this, SLOT(showSummaryActivated()));
|
Chris@289
|
132
|
Chris@289
|
133 menu->addSeparator();
|
Chris@289
|
134
|
Chris@281
|
135 QStringList parents = m_changeset->parents();
|
Chris@153
|
136
|
Chris@288
|
137 QString leftId, rightId;
|
Chris@288
|
138 bool havePositions = false;
|
Chris@288
|
139
|
Chris@281
|
140 if (parents.size() > 1) {
|
Chris@281
|
141 ChangesetScene *cs = dynamic_cast<ChangesetScene *>(scene());
|
Chris@281
|
142 if (cs && parents.size() == 2) {
|
Chris@281
|
143 ChangesetItem *i0 = cs->getItemById(parents[0]);
|
Chris@281
|
144 ChangesetItem *i1 = cs->getItemById(parents[1]);
|
Chris@281
|
145 if (i0 && i1) {
|
Chris@281
|
146 if (i0->x() < i1->x()) {
|
Chris@281
|
147 leftId = parents[0];
|
Chris@281
|
148 rightId = parents[1];
|
Chris@281
|
149 } else {
|
Chris@281
|
150 leftId = parents[1];
|
Chris@281
|
151 rightId = parents[0];
|
Chris@281
|
152 }
|
Chris@281
|
153 havePositions = true;
|
Chris@281
|
154 }
|
Chris@281
|
155 }
|
Chris@288
|
156 }
|
Chris@281
|
157
|
Chris@288
|
158 if (parents.size() > 1) {
|
Chris@288
|
159 if (havePositions) {
|
Chris@281
|
160
|
Chris@288
|
161 QAction *diff = menu->addAction(tr("Diff to left parent"));
|
Chris@288
|
162 connect(diff, SIGNAL(triggered()), this, SLOT(diffToParentActivated()));
|
Chris@288
|
163 m_parentDiffActions[diff] = leftId;
|
Chris@281
|
164
|
Chris@288
|
165 diff = menu->addAction(tr("Diff to right parent"));
|
Chris@288
|
166 connect(diff, SIGNAL(triggered()), this, SLOT(diffToParentActivated()));
|
Chris@288
|
167 m_parentDiffActions[diff] = rightId;
|
Chris@281
|
168
|
Chris@281
|
169 } else {
|
Chris@281
|
170
|
Chris@281
|
171 foreach (QString parentId, parents) {
|
Chris@288
|
172 QString text = tr("Diff to parent %1").arg(Changeset::hashOf(parentId));
|
Chris@288
|
173 QAction *diff = menu->addAction(text);
|
Chris@288
|
174 connect(diff, SIGNAL(triggered()), this, SLOT(diffToParentActivated()));
|
Chris@288
|
175 m_parentDiffActions[diff] = parentId;
|
Chris@281
|
176 }
|
Chris@153
|
177 }
|
Chris@153
|
178
|
Chris@153
|
179 } else {
|
Chris@153
|
180
|
Chris@288
|
181 QAction *diff = menu->addAction(tr("Diff to parent"));
|
Chris@288
|
182 connect(diff, SIGNAL(triggered()), this, SLOT(diffToParentActivated()));
|
Chris@153
|
183 }
|
Chris@153
|
184
|
Chris@153
|
185 QAction *diffCurrent = menu->addAction(tr("Diff to current working folder"));
|
Chris@141
|
186 connect(diffCurrent, SIGNAL(triggered()), this, SLOT(diffToCurrentActivated()));
|
Chris@141
|
187
|
Chris@140
|
188 menu->addSeparator();
|
Chris@141
|
189
|
Chris@153
|
190 QAction *update = menu->addAction(tr("Update to this revision"));
|
Chris@153
|
191 connect(update, SIGNAL(triggered()), this, SLOT(updateActivated()));
|
Chris@153
|
192
|
Chris@140
|
193 QAction *merge = menu->addAction(tr("Merge from here to current"));
|
Chris@141
|
194 connect(merge, SIGNAL(triggered()), this, SLOT(mergeActivated()));
|
Chris@153
|
195
|
Chris@153
|
196 menu->addSeparator();
|
Chris@153
|
197
|
Chris@278
|
198 QAction *branch = menu->addAction(tr("Start new branch..."));
|
Chris@278
|
199 branch->setEnabled(m_current);
|
Chris@278
|
200 connect(branch, SIGNAL(triggered()), this, SLOT(newBranchActivated()));
|
Chris@278
|
201
|
Chris@153
|
202 QAction *tag = menu->addAction(tr("Add tag..."));
|
Chris@141
|
203 connect(tag, SIGNAL(triggered()), this, SLOT(tagActivated()));
|
Chris@141
|
204
|
Chris@148
|
205 menu->exec(QCursor::pos());
|
Chris@148
|
206
|
Chris@141
|
207 ungrabMouse();
|
Chris@140
|
208 }
|
Chris@140
|
209
|
Chris@153
|
210 void
|
Chris@153
|
211 ChangesetItem::copyIdActivated()
|
Chris@153
|
212 {
|
Chris@153
|
213 QClipboard *clipboard = QApplication::clipboard();
|
Chris@153
|
214 clipboard->setText(Changeset::hashOf(m_changeset->id()));
|
Chris@153
|
215 }
|
Chris@153
|
216
|
Chris@153
|
217 void ChangesetItem::diffToParentActivated()
|
Chris@153
|
218 {
|
Chris@153
|
219 QAction *a = qobject_cast<QAction *>(sender());
|
Chris@153
|
220 QString parentId;
|
Chris@153
|
221 if (m_parentDiffActions.contains(a)) {
|
Chris@153
|
222 parentId = m_parentDiffActions[a];
|
Chris@153
|
223 DEBUG << "ChangesetItem::diffToParentActivated: specific parent "
|
Chris@153
|
224 << parentId << " selected" << endl;
|
Chris@153
|
225 } else {
|
Chris@153
|
226 parentId = m_changeset->parents()[0];
|
Chris@153
|
227 DEBUG << "ChangesetItem::diffToParentActivated: "
|
Chris@153
|
228 << "no specific parent selected, using first parent "
|
Chris@153
|
229 << parentId << endl;
|
Chris@153
|
230 }
|
Chris@153
|
231
|
Chris@153
|
232 emit diffToParent(getId(), parentId);
|
Chris@153
|
233 }
|
Chris@153
|
234
|
Chris@289
|
235 void ChangesetItem::showSummaryActivated()
|
Chris@288
|
236 {
|
Chris@289
|
237 emit showSummary(m_changeset);
|
Chris@288
|
238 }
|
Chris@288
|
239
|
Chris@141
|
240 void ChangesetItem::updateActivated() { emit updateTo(getId()); }
|
Chris@141
|
241 void ChangesetItem::diffToCurrentActivated() { emit diffToCurrent(getId()); }
|
Chris@141
|
242 void ChangesetItem::mergeActivated() { emit mergeFrom(getId()); }
|
Chris@141
|
243 void ChangesetItem::tagActivated() { emit tag(getId()); }
|
Chris@278
|
244 void ChangesetItem::newBranchActivated() { emit newBranch(getId()); }
|
Chris@141
|
245
|
Chris@140
|
246 void
|
Chris@288
|
247 ChangesetItem::paint(QPainter *paint, const QStyleOptionGraphicsItem *, QWidget *)
|
Chris@43
|
248 {
|
Chris@387
|
249 if (isMerge()) {
|
Chris@387
|
250 paintMerge(paint);
|
Chris@387
|
251 } else {
|
Chris@387
|
252 paintNormal(paint);
|
Chris@387
|
253 }
|
Chris@387
|
254 }
|
Chris@387
|
255
|
Chris@387
|
256 bool
|
Chris@387
|
257 ChangesetItem::isMerge() const
|
Chris@387
|
258 {
|
Chris@387
|
259 return (m_changeset && m_changeset->parents().size() > 1);
|
Chris@387
|
260 }
|
Chris@387
|
261
|
Chris@387
|
262 void
|
Chris@387
|
263 ChangesetItem::paintNormal(QPainter *paint)
|
Chris@387
|
264 {
|
Chris@53
|
265 paint->save();
|
Chris@53
|
266
|
Chris@53
|
267 ColourSet *colourSet = ColourSet::instance();
|
Chris@53
|
268 QColor branchColour = colourSet->getColourFor(m_changeset->branch());
|
Chris@128
|
269 QColor userColour = colourSet->getColourFor(m_changeset->author());
|
Chris@53
|
270
|
Chris@53
|
271 QFont f(m_font);
|
Chris@53
|
272
|
Chris@54
|
273 QTransform t = paint->worldTransform();
|
Chris@53
|
274 float scale = std::min(t.m11(), t.m22());
|
Chris@53
|
275 if (scale > 1.0) {
|
Chris@53
|
276 int ps = int((f.pixelSize() / scale) + 0.5);
|
Chris@53
|
277 if (ps < 8) ps = 8;
|
Chris@53
|
278 f.setPixelSize(ps);
|
Chris@53
|
279 }
|
Chris@54
|
280
|
Chris@250
|
281 bool showText = (scale >= 0.2);
|
Chris@250
|
282 bool showProperLines = (scale >= 0.1);
|
Chris@250
|
283
|
Chris@250
|
284 if (!showProperLines) {
|
Chris@54
|
285 paint->setPen(QPen(branchColour, 0));
|
Chris@54
|
286 } else {
|
Chris@54
|
287 paint->setPen(QPen(branchColour, 2));
|
Chris@54
|
288 }
|
Chris@53
|
289
|
Chris@53
|
290 paint->setFont(f);
|
Chris@53
|
291 QFontMetrics fm(f);
|
Chris@53
|
292 int fh = fm.height();
|
Chris@55
|
293
|
Chris@55
|
294 int width = 100;
|
Chris@55
|
295 if (m_wide) width = 180;
|
Chris@55
|
296 int x0 = -((width - 50) / 2 - 1);
|
Chris@55
|
297
|
Chris@250
|
298 int textwid = width - 7;
|
Chris@250
|
299
|
Chris@250
|
300 QString comment;
|
Chris@250
|
301 QStringList lines;
|
Chris@250
|
302 int lineCount = 3;
|
Chris@250
|
303
|
Chris@250
|
304 if (showText) {
|
Chris@250
|
305
|
Chris@250
|
306 comment = m_changeset->comment().trimmed();
|
Chris@250
|
307 comment = comment.replace("\\n", " ");
|
Chris@250
|
308 comment = comment.replace(QRegExp("^\"\\s*\\**\\s*"), "");
|
Chris@250
|
309 comment = comment.replace(QRegExp("\"$"), "");
|
Chris@250
|
310 comment = comment.replace("\\\"", "\"");
|
Chris@250
|
311
|
Chris@250
|
312 comment = TextAbbrev::abbreviate(comment, fm, textwid,
|
Chris@250
|
313 TextAbbrev::ElideEnd, "...", 3);
|
Chris@250
|
314 // abbreviate() changes this (ouch!), restore it
|
Chris@250
|
315 textwid = width - 5;
|
Chris@250
|
316
|
Chris@250
|
317 lines = comment.split('\n');
|
Chris@250
|
318 lineCount = lines.size();
|
Chris@250
|
319
|
Chris@250
|
320 if (lineCount < 2) lineCount = 2;
|
Chris@250
|
321 }
|
Chris@250
|
322
|
Chris@250
|
323 int height = (lineCount + 1) * fh + 2;
|
Chris@56
|
324 QRectF r(x0, 0, width - 3, height);
|
Chris@250
|
325
|
Chris@250
|
326 if (showProperLines) {
|
Chris@250
|
327
|
Chris@393
|
328 if (m_new) {
|
Chris@396
|
329 paint->setBrush(QColor(255, 255, 220));
|
Chris@393
|
330 } else {
|
Chris@393
|
331 paint->setBrush(Qt::white);
|
Chris@393
|
332 }
|
Chris@250
|
333
|
Chris@250
|
334 if (m_current) {
|
Chris@386
|
335 paint->drawRoundedRect(QRectF(x0 - 4, -4, width + 5, height + 8),
|
Chris@386
|
336 10, 10);
|
Chris@393
|
337 if (m_new) {
|
Chris@393
|
338 paint->save();
|
Chris@393
|
339 paint->setPen(Qt::yellow);
|
Chris@393
|
340 paint->setBrush(Qt::NoBrush);
|
Chris@393
|
341 paint->drawRoundedRect(QRectF(x0 - 2, -2, width + 1, height + 4),
|
Chris@393
|
342 10, 10);
|
Chris@393
|
343 paint->restore();
|
Chris@393
|
344 }
|
Chris@250
|
345 }
|
Chris@250
|
346 }
|
Chris@250
|
347
|
Chris@250
|
348 if (!showText) {
|
Chris@386
|
349 paint->drawRoundedRect(r, 7, 7);
|
Chris@53
|
350 paint->restore();
|
Chris@53
|
351 return;
|
Chris@53
|
352 }
|
Chris@53
|
353
|
Chris@386
|
354 paint->save();
|
Chris@386
|
355 paint->setPen(Qt::NoPen);
|
Chris@386
|
356 paint->drawRoundedRect(r, 7, 7);
|
Chris@386
|
357 paint->setBrush(QBrush(userColour));
|
Chris@386
|
358 paint->drawRoundedRect(QRectF(x0 + 0.5, 0.5, width - 4, fh - 0.5), 7, 7);
|
chris@391
|
359 paint->drawRect(QRectF(x0 + 0.5, fh/2.0, width - 4, fh/2.0));
|
Chris@386
|
360 paint->restore();
|
Chris@53
|
361
|
Chris@53
|
362 paint->setPen(QPen(Qt::white));
|
Chris@53
|
363
|
Chris@250
|
364 QString person = TextAbbrev::abbreviate(m_changeset->authorName(),
|
Chris@250
|
365 fm, textwid);
|
Chris@55
|
366 paint->drawText(x0 + 3, fm.ascent(), person);
|
Chris@53
|
367
|
Chris@53
|
368 paint->setPen(QPen(Qt::black));
|
Chris@53
|
369
|
Chris@147
|
370 QStringList tags = m_changeset->tags();
|
Chris@147
|
371 if (!tags.empty()) {
|
Chris@147
|
372 QStringList nonTipTags;
|
Chris@147
|
373 foreach (QString t, tags) {
|
Chris@147
|
374 // I'm not convinced that showing the tip tag really
|
Chris@147
|
375 // works; I think perhaps it confuses as much as it
|
Chris@147
|
376 // illuminates. But also, our current implementation
|
Chris@147
|
377 // doesn't interact well with it because it moves -- it's
|
Chris@147
|
378 // the one thing that can actually (in normal use) change
|
Chris@147
|
379 // inside an existing changeset record even during an
|
Chris@147
|
380 // incremental update
|
Chris@147
|
381 if (t != "tip") nonTipTags.push_back(t);
|
Chris@147
|
382 }
|
Chris@147
|
383 if (!nonTipTags.empty()) {
|
Chris@147
|
384 QString tagText = nonTipTags.join(" ").trimmed();
|
Chris@147
|
385 int tw = fm.width(tagText);
|
Chris@147
|
386 paint->fillRect(QRectF(x0 + width - 8 - tw, 1, tw + 4, fh - 1),
|
Chris@147
|
387 QBrush(Qt::yellow));
|
Chris@147
|
388 paint->drawText(x0 + width - 6 - tw, fm.ascent(), tagText);
|
Chris@147
|
389 }
|
Chris@128
|
390 }
|
Chris@128
|
391
|
Chris@386
|
392 paint->setPen(QPen(branchColour, 2));
|
Chris@386
|
393 paint->setBrush(Qt::NoBrush);
|
Chris@386
|
394 paint->drawRoundedRect(r, 7, 7);
|
Chris@386
|
395
|
Chris@74
|
396 if (m_showBranch) {
|
Chris@56
|
397 // write branch name
|
Chris@153
|
398 paint->save();
|
Chris@56
|
399 f.setBold(true);
|
Chris@56
|
400 paint->setFont(f);
|
Chris@153
|
401 paint->setPen(QPen(branchColour));
|
Chris@56
|
402 QString branch = m_changeset->branch();
|
Chris@74
|
403 if (branch == "") branch = "default";
|
Chris@56
|
404 int wid = width - 3;
|
Chris@56
|
405 branch = TextAbbrev::abbreviate(branch, QFontMetrics(f), wid);
|
Chris@56
|
406 paint->drawText(x0, -fh + fm.ascent() - 4, branch);
|
Chris@56
|
407 f.setBold(false);
|
Chris@153
|
408 paint->restore();
|
Chris@56
|
409 }
|
Chris@56
|
410
|
chris@392
|
411 if (m_current && showProperLines) {
|
chris@392
|
412 paint->setRenderHint(QPainter::SmoothPixmapTransform, true);
|
chris@392
|
413 int starSize = fh * 1.5;
|
chris@392
|
414 paint->drawImage(QRectF(x0 + width - starSize,
|
chris@392
|
415 -fh, starSize, starSize),
|
chris@392
|
416 *m_star);
|
chris@392
|
417 }
|
chris@392
|
418
|
Chris@53
|
419 paint->setFont(f);
|
Chris@53
|
420
|
Chris@53
|
421 for (int i = 0; i < lines.size(); ++i) {
|
Chris@55
|
422 paint->drawText(x0 + 3, i * fh + fh + fm.ascent(), lines[i].trimmed());
|
Chris@53
|
423 }
|
Chris@53
|
424
|
Chris@53
|
425 paint->restore();
|
Chris@43
|
426 }
|
Chris@387
|
427
|
Chris@387
|
428 void
|
Chris@387
|
429 ChangesetItem::paintMerge(QPainter *paint)
|
Chris@387
|
430 {
|
Chris@387
|
431 paint->save();
|
Chris@387
|
432
|
Chris@387
|
433 ColourSet *colourSet = ColourSet::instance();
|
Chris@387
|
434 QColor branchColour = colourSet->getColourFor(m_changeset->branch());
|
Chris@387
|
435 QColor userColour = colourSet->getColourFor(m_changeset->author());
|
Chris@387
|
436
|
Chris@387
|
437 QFont f(m_font);
|
Chris@387
|
438
|
Chris@387
|
439 QTransform t = paint->worldTransform();
|
Chris@387
|
440 float scale = std::min(t.m11(), t.m22());
|
Chris@387
|
441 if (scale > 1.0) {
|
Chris@387
|
442 int ps = int((f.pixelSize() / scale) + 0.5);
|
Chris@387
|
443 if (ps < 8) ps = 8;
|
Chris@387
|
444 f.setPixelSize(ps);
|
Chris@387
|
445 }
|
Chris@387
|
446
|
Chris@387
|
447 bool showText = (scale >= 0.2);
|
Chris@387
|
448 bool showProperLines = (scale >= 0.1);
|
Chris@387
|
449
|
Chris@387
|
450 if (!showProperLines) {
|
Chris@387
|
451 paint->setPen(QPen(branchColour, 0));
|
Chris@387
|
452 } else {
|
Chris@387
|
453 paint->setPen(QPen(branchColour, 2));
|
Chris@387
|
454 }
|
Chris@387
|
455
|
Chris@387
|
456 paint->setFont(f);
|
Chris@387
|
457 QFontMetrics fm(f);
|
Chris@387
|
458 int fh = fm.height();
|
Chris@387
|
459 int size = fh * 2;
|
Chris@387
|
460 int x0 = -size/2 + 25;
|
Chris@387
|
461
|
Chris@393
|
462 if (m_new) {
|
Chris@396
|
463 paint->setBrush(QColor(255, 255, 220));
|
Chris@393
|
464 } else {
|
Chris@393
|
465 paint->setBrush(Qt::white);
|
Chris@393
|
466 }
|
Chris@390
|
467
|
Chris@390
|
468 if (showProperLines) {
|
Chris@390
|
469
|
Chris@390
|
470 if (m_current) {
|
Chris@390
|
471 paint->drawEllipse(QRectF(x0 - 4, fh - 4, size + 8, size + 8));
|
Chris@390
|
472
|
Chris@393
|
473 if (m_new) {
|
Chris@393
|
474 paint->save();
|
Chris@393
|
475 paint->setPen(Qt::yellow);
|
Chris@393
|
476 paint->setBrush(Qt::NoBrush);
|
Chris@393
|
477 paint->drawEllipse(QRectF(x0 - 2, fh - 2, size + 4, size + 4));
|
Chris@393
|
478 paint->restore();
|
Chris@393
|
479 }
|
Chris@390
|
480 }
|
Chris@390
|
481 }
|
Chris@390
|
482
|
Chris@387
|
483 paint->drawEllipse(QRectF(x0, fh, size, size));
|
Chris@387
|
484
|
Chris@387
|
485 if (m_showBranch) {
|
Chris@387
|
486 // write branch name
|
Chris@387
|
487 paint->save();
|
Chris@387
|
488 f.setBold(true);
|
Chris@387
|
489 paint->setFont(f);
|
Chris@387
|
490 paint->setPen(QPen(branchColour));
|
Chris@387
|
491 QString branch = m_changeset->branch();
|
Chris@387
|
492 if (branch == "") branch = "default";
|
Chris@387
|
493 int wid = size * 3;
|
Chris@387
|
494 branch = TextAbbrev::abbreviate(branch, QFontMetrics(f), wid);
|
Chris@387
|
495 paint->drawText(-wid/2 + 25, fm.ascent() - 4, branch);
|
Chris@387
|
496 f.setBold(false);
|
Chris@387
|
497 paint->restore();
|
Chris@387
|
498 }
|
Chris@387
|
499
|
Chris@390
|
500 if (m_current && showProperLines) {
|
Chris@390
|
501 paint->setRenderHint(QPainter::SmoothPixmapTransform, true);
|
Chris@390
|
502 int starSize = fh * 1.5;
|
Chris@390
|
503 paint->drawImage(QRectF(x0 + size - starSize/2,
|
Chris@390
|
504 0, starSize, starSize),
|
Chris@390
|
505 *m_star);
|
Chris@390
|
506 }
|
Chris@390
|
507
|
Chris@387
|
508 paint->restore();
|
Chris@387
|
509 }
|
Chris@387
|
510
|