Kiln » TortoiseHg » TortoiseHg
Clone URL:  
revmessage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright (c) 2009-2010 LOGILAB S.A. (Paris, FRANCE). # http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. from PyQt4.QtCore import * from PyQt4.QtGui import * from tortoisehg.hgqt import qtlib revhashprefix = 'rev_hash_' class RevMessage(QWidget): revisionLinkClicked = pyqtSignal(str) def __init__(self, parent): QWidget.__init__(self, parent) vb = QVBoxLayout() vb.setMargin(0) self._message = w = QTextBrowser() w.setLineWrapMode(QTextEdit.NoWrap) #w.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff) f = qtlib.getfont('fontcomment') f.changed.connect(lambda newfont: w.setFont(newfont)) w.setFont(f.font()) w.setOpenLinks(False) vb.addWidget(w) self.setLayout(vb) self._htmlize = qtlib.descriptionhtmlizer() self._message.anchorClicked.connect(self.anchorClicked) def anchorClicked(self, qurl): link = str(qurl.toString()) if link.startswith(revhashprefix): rev = link[len(revhashprefix):] self.revisionLinkClicked.emit(rev) else: QDesktopServices.openUrl(qurl) def displayRevision(self, ctx): self.ctx = ctx self._message.setHtml('<pre>%s</pre>' % self._htmlize(ctx.description())) def minimumSizeHint(self): return QSize(0, 25)