Kiln » TortoiseHg » TortoiseHg
Clone URL:  
status.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# status.py - working copy browser # # Copyright 2010 Steve Borho <steve@borho.org> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. import os from mercurial import ui, hg, util, patch, cmdutil, error, mdiff from tortoisehg.hgqt import qtlib, htmlui from tortoisehg.util import paths, hglib from tortoisehg.util.i18n import _ from PyQt4.QtCore import Qt, QVariant, SIGNAL, QAbstractTableModel from PyQt4.QtCore import QObject, QEvent, QMimeData, QUrl from PyQt4.QtGui import QWidget, QVBoxLayout, QSplitter, QTreeView from PyQt4.QtGui import QTextEdit, QFont, QColor, QDrag # This widget can be used as the basis of the commit tool or any other # working copy browser. # A QuickOp style dialog will need to create the workingctx instance by # hand, not using repo[None], in order to pass in the results from its # own call to localrepo.status(), else it will not be able to see clean # or ignored files. # Technical Debt # filter using pats # show example of wctx manual creation # wctx.ignored() does not exist, need a back-door # Handle large files, binary files, subrepos better # Thread refreshWctx, connect to an external progress bar # Thread rowSelected, connect to an external progress bar # Need a mechanism to clear pats # Save splitter position, use parent's QSetting # Show merge status column, when appropriate # Context menu, toolbar # Sorting, filtering of working files # Chunk selection # tri-state checkboxes for commit # File type (unknown/deleted) toggles # Investigate Qt.DecorationRole and possible use of overlay icons # Investigate folding/nesting of files class StatusWidget(QWidget): def __init__(self, pats, parent=None): QWidget.__init__(self, parent) root = paths.find_root() assert(root) self.repo = hg.repository(ui.ui(), path=root) self.wctx = self.repo[None] # determine the user configured status colors # (in the future, we could support full rich-text tags) qtlib.configstyles(self.repo.ui) for stat in color_labels.keys(): effect = qtlib.geteffect(color_labels[stat]) for e in effect.split(';'): if e.startswith('color:'): colors[stat] = QColor(e[7:]) break split = QSplitter(Qt.Horizontal) layout = QVBoxLayout() layout.addWidget(split) self.setLayout(layout) self.tv = WctxFileTree(root, split) self.connect(self.tv, SIGNAL('clicked(QModelIndex)'), self.rowSelected) self.te = QTextEdit(split) self.te.document().setDefaultStyleSheet(qtlib.thgstylesheet) self.te.setReadOnly(True) self.te.setLineWrapMode(QTextEdit.NoWrap) # it is not clear why I had to set this QFont to get monospace f = QFont("Monospace") f.setStyleHint(QFont.TypeWriter) f.setPointSize(9) self.te.setFont(f) if not parent: self.setWindowTitle(_('TortoiseHg Status')) self.resize(650, 400) # 60% for diff pane split.setStretchFactor(0, 2) split.setStretchFactor(1, 5) self.refreshWctx() self.updateModel() def refreshWctx(self): hglib.invalidaterepo(self.repo) wctx = self.repo[None] try: # Force wctx to load _status property wctx.unknown() except (OSError, IOError, util.Abort), e: self.status_error = str(e) self.wctx = wctx def isMerge(self): return bool(self.wctx.p2()) def updateModel(self): tm = WctxModel(self.wctx) self.tv.setModel(tm) self.tv.setItemsExpandable(False) self.tv.setRootIsDecorated(False) self.tv.setSortingEnabled(True) self.tv.sortByColumn(COL_PATH_DISPLAY) self.tv.resizeColumnToContents(COL_CHECK) self.tv.resizeColumnToContents(COL_STATUS) self.tv.resizeColumnToContents(COL_PATH_DISPLAY) self.connect(self.tv, SIGNAL('activated(QModelIndex)'), tm.toggleRow) self.connect(self.tv, SIGNAL('pressed(QModelIndex)'), tm.pressedRow) def rowSelected(self, index): 'Connected to treeview "clicked" signal' pfile = index.model().getPath(index) wfile = util.pconvert(pfile) hu = htmlui.htmlui() try: m = cmdutil.matchfiles(self.repo, [wfile]) opts = mdiff.diffopts(git=True, nodates=True) n2, n1 = None, self.wctx.p1().node() for s, l in patch.difflabel(patch.diff, self.repo, n1, n2, match=m, opts=opts): hu.write(s, label=l) except (IOError, error.RepoError, error.LookupError, util.Abort), e: self.status_error = str(e) o, e = hu.getdata() self.te.setHtml(o) class WctxFileTree(QTreeView): def __init__(self, root, parent=None): QTreeView.__init__(self, parent) self.root = root def keyPressEvent(self, event): if event.key() == 32: for index in self.selectedIndexes(): self.model().toggleRow(index) def dragObject(self): rows = set() urls = [] for index in self.selectedIndexes(): if index.row() not in rows: rows.add(index.row()) path = self.model().getPath(index) u = QUrl() u.setPath('file://' + os.path.join(self.root, path)) urls.append(u) if rows: d = QDrag(self) m = QMimeData() m.setUrls(urls) d.setMimeData(m) d.start(Qt.CopyAction) def mouseMoveEvent(self, event): self.dragObject() COL_CHECK = 0 COL_STATUS = 1 COL_PATH_DISPLAY = 2 COL_PATH = 3 tips = { 'M': _('%s is modified'), 'A': _('%s is added'), 'R': _('%s is removed'), '?': _('%s is not tracked (unknown)'), '!': _('%s is missing!'), 'I': _('%s is ignored'), 'C': _('%s is not modified (clean)'), 'S': _('%s is a dirty subrepo'), } color_labels = { 'M': 'status.modified', 'A': 'status.added', 'R': 'status.removed', '?': 'status.unknown', '!': 'status.deleted', 'I': 'status.ignored', 'C': 'status.clean', 'S': 'status.subrepo', } colors = {} class WctxModel(QAbstractTableModel): def __init__(self, wctx, parent=None): QAbstractTableModel.__init__(self, parent) rows = [] for m in wctx.modified(): rows.append([True, 'M', hglib.tounicode(m), m]) for a in wctx.added(): rows.append([True, 'A', hglib.tounicode(a), a]) for r in wctx.removed(): rows.append([True, 'R', hglib.tounicode(r), r]) for d in wctx.deleted(): rows.append([False, '!', hglib.tounicode(d), d]) for u in wctx.unknown(): rows.append([False, '?', hglib.tounicode(u), u]) # TODO: wctx.ignored() does not exist #for i in wctx.ignored(): # rows.append([False, 'I', hglib.tounicode(i), i]) for c in wctx.clean(): rows.append([False, 'C', hglib.tounicode(c), c]) try: for s in wctx.substate: if wctx.sub(s).dirty(): rows.append([False, 'S', hglib.tounicode(s), s]) except (OSError, IOError, error.ConfigError), e: self.status_error = str(e) self.rows = rows self.headers = ('*', _('Stat'), _('Filename')) def rowCount(self, parent): return len(self.rows) def columnCount(self, parent): return len(self.headers) def data(self, index, role): if not index.isValid(): return QVariant() if index.column() == COL_CHECK: if role == Qt.CheckStateRole: # also Qt.PartiallyChecked if self.rows[index.row()][COL_CHECK]: return Qt.Checked else: return Qt.Unchecked elif role == Qt.DisplayRole: return QVariant(self.rows[index.row()][index.column()]) checked, status, upath, path = self.rows[index.row()] if role == Qt.TextColorRole: return colors.get(status, QColor('black')) elif role == Qt.ToolTipRole: if status in tips: return QVariant(tips[status] % upath) return QVariant() def headerData(self, col, orientation, role): if role != Qt.DisplayRole or orientation != Qt.Horizontal: return QVariant() else: return QVariant(self.headers[col]) def flags(self, index): flags = Qt.ItemIsSelectable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled if index.column() == COL_CHECK: flags |= Qt.ItemIsUserCheckable return flags # Custom methods def getPath(self, index): assert index.isValid() return self.rows[index.row()][COL_PATH] def toggleRow(self, index): 'Connected to "activated" signal, emitted by dbl-click or enter' assert index.isValid() row = index.row() self.rows[row][COL_CHECK] = not self.rows[row][COL_CHECK] self.emit(SIGNAL("layoutChanged()")) def pressedRow(self, index): 'Connected to "pressed" signal, emitted by mouse clicks' assert index.isValid() if index.column() == COL_CHECK: self.toggleRow(index) def run(ui, *pats, **opts): return StatusWidget(pats, None)