Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable repoview: use the same variable name as repomodel

Changeset 62089388a516

Parent 48b83428454e

by Steve Borho

Changes to one file · Browse files at 62089388a516 Showing diff from parent 48b83428454e Diff from another changeset...

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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
 
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
 # 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 mercurial import error    from tortoisehg.util import hglib  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import htmldelegate    from PyQt4.QtCore import *  from PyQt4.QtGui import *    class HgRepoView(QTableView):     revisionClicked = pyqtSignal(object)   revisionAltClicked = pyqtSignal(object)   revisionSelected = pyqtSignal(object)   revisionActivated = pyqtSignal(object)   menuRequested = pyqtSignal(QPoint, object)   showMessage = pyqtSignal(unicode)     def __init__(self, repo, parent=None):   QTableView.__init__(self, parent)   self.repo = repo   self.current_rev = -1   self.setShowGrid(False)     vh = self.verticalHeader()   vh.hide()   vh.setDefaultSectionSize(20)     self.horizontalHeader().setHighlightSections(False)     self.standardDelegate = self.itemDelegate()   self.htmlDelegate = htmldelegate.HTMLDelegate(self)     self.setSelectionMode(QAbstractItemView.ExtendedSelection)   self.setSelectionBehavior(QAbstractItemView.SelectRows)     self.doubleClicked.connect(self.revActivated)   self.clicked.connect(self.revClicked)     def setRepo(self, repo):   self.repo = repo     def mousePressEvent(self, event):   index = self.indexAt(event.pos())   if not index.isValid():   return   if event.button() == Qt.MidButton:   self.gotoAncestor(index)   return   QTableView.mousePressEvent(self, event)     def contextMenuEvent(self, event):   self.menuRequested.emit(event.globalPos(), self.selectedRevisions())     def setModel(self, model):   QTableView.setModel(self, model)   #Check if the font contains the glyph needed by the model   if not QFontMetrics(self.font()).inFont(QString(u'\u2605').at(0)):   model.unicodestar = False   if not QFontMetrics(self.font()).inFont(QString(u'\u2327').at(0)): - model.unicodeclosed = False + model.unicodexinabox = False   self.selectionModel().currentRowChanged.connect(self.onRowChange)   self.resetDelegate()   self._rev_history = []   self._rev_pos = -1   self._in_history = False   model.layoutChanged.connect(self.resetDelegate)     def resetBrowseHistory(self, revs):   self._rev_history = revs[:]   self._rev_pos = -1   self.forward()     def resetDelegate(self):   # Model column layout has changed so we need to move   # our column delegate to correct location   if not self.model():   return   model = self.model()     for c in range(model.columnCount(QModelIndex())):   if model._columns[c] in ['Description', 'Changes']:   self.setItemDelegateForColumn(c, self.htmlDelegate)   else:   self.setItemDelegateForColumn(c, self.standardDelegate)     def resizeColumns(self, *args):   # resize columns the smart way: the column holding Description   # is resized according to the total widget size.   if not self.model():   return   hh = self.horizontalHeader()   hh.setStretchLastSection(False)   self._resizeColumns()   hh.setStretchLastSection(True)     def _resizeColumns(self):   # _resizeColumns misbehaves if called with last section streched   for c, w in enumerate(self._columnWidthHints()):   self.setColumnWidth(c, w)     def sizeHintForColumn(self, column):   return self._columnWidthHints()[column]     def _columnWidthHints(self):   """Return list of recommended widths of all columns"""   model = self.model()   col1_width = self.viewport().width()   fontm = QFontMetrics(self.font())   tot_stretch = 0.0   widths = [-1 for _i in xrange(model.columnCount(QModelIndex()))]   for c in range(model.columnCount(QModelIndex())):   if model._columns[c] in model._stretchs:   tot_stretch += model._stretchs[model._columns[c]]   continue   w = model.maxWidthValueForColumn(c)   if isinstance(w, int):   widths[c] = w   elif w is not None:   w = fontm.width(hglib.tounicode(str(w)) + 'w')   widths[c] = w   else:   w = super(HgRepoView, self).sizeHintForColumn(c)   widths[c] = w   col1_width -= widths[c]   col1_width = max(col1_width, 100)   for c in range(model.columnCount(QModelIndex())):   if model._columns[c] in model._stretchs:   w = model._stretchs[model._columns[c]] / tot_stretch   widths[c] = col1_width * w   return widths     def revFromindex(self, index):   if not index.isValid():   return   model = self.model()   if model and model.graph:   row = index.row()   gnode = model.graph[row]   return gnode.rev     def context(self, rev):   return self.repo.changectx(rev)     def revClicked(self, index):   rev = self.revFromindex(index)   if QApplication.keyboardModifiers() & Qt.AltModifier:   self.revisionAltClicked.emit(rev)   else:   self.revisionClicked.emit(rev)     def revActivated(self, index):   rev = self.revFromindex(index)   if rev is not None:   self.revisionActivated.emit(rev)     def onRowChange(self, index, index_from):   rev = self.revFromindex(index)   if self.current_rev != rev and not self._in_history:   del self._rev_history[self._rev_pos+1:]   self._rev_history.append(rev)   self._rev_pos = len(self._rev_history)-1   self._in_history = False   self.current_rev = rev   self.revisionSelected.emit(rev)     def selectedRevisions(self):   """Return the list of selected revisions"""   selmodel = self.selectionModel()   return [self.revFromindex(i) for i in selmodel.selectedRows()]     def gotoAncestor(self, index):   rev = self.revFromindex(index)   if rev is None or self.current_rev is None:   return   ctx = self.context(self.current_rev)   ctx2 = self.context(rev)   if ctx.thgmqunappliedpatch() or ctx2.thgmqunappliedpatch():   return   ancestor = ctx.ancestor(ctx2)   self.showMessage.emit(_("Goto ancestor of %s and %s") % (   ctx.rev(), ctx2.rev()))   self.goto(ancestor.rev())     def canGoBack(self):   return bool(self._rev_history and self._rev_pos > 0)     def canGoForward(self):   return bool(self._rev_history   and self._rev_pos < len(self._rev_history) - 1)     def back(self):   if self.canGoBack():   self._rev_pos -= 1   idx = self.model().indexFromRev(self._rev_history[self._rev_pos])   if idx is not None:   self._in_history = True   self.setCurrentIndex(idx)     def forward(self):   if self.canGoForward():   self._rev_pos += 1   idx = self.model().indexFromRev(self._rev_history[self._rev_pos])   if idx is not None:   self._in_history = True   self.setCurrentIndex(idx)     def goto(self, rev):   """   Select revision 'rev' (can be anything understood by repo.changectx())   """   if type(rev) is QString:   rev = str(rev)   try:   rev = self.repo.changectx(rev).rev()   except error.RepoError:   self.showMessage.emit(_("Can't find revision '%s'") % rev)   except LookupError, e:   self.showMessage.emit(hglib.fromunicode(str(e)))   else:   idx = self.model().indexFromRev(rev)   if idx is not None:   self.setCurrentIndex(idx)