Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

status: make rows checkable

Only sensitive to row activation (dbl-click, or enter). Clicking
on the checkbox or hitting space do not yet work.

Changeset 154aa9dbd1a7

Parent 45469bf20d70

by Steve Borho

Changes to one file · Browse files at 154aa9dbd1a7 Showing diff from parent 45469bf20d70 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
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
 # 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.    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.QtGui import QWidget, QVBoxLayout, QSplitter, QTreeView  from PyQt4.QtGui import QTextEdit, QFont    # 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  # Select entire table row when clicked  # File type (unknown/deleted) toggles    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]     split = QSplitter(Qt.Horizontal)   layout = QVBoxLayout()   layout.addWidget(split)   self.setLayout(layout)     self.tv = QTreeView(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.setItemsExpandable(False)   self.tv.setRootIsDecorated(False)   self.tv.setSortingEnabled(True)   self.tv.sortByColumn(1)   self.tv.setModel(tm)   self.tv.resizeColumnToContents(0)   self.tv.resizeColumnToContents(1) + self.connect(self.tv, SIGNAL('activated(QModelIndex)'), tm.toggleRow)     def rowSelected(self, index):   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)      COL_STATUS = 0  COL_PATH_DISPLAY = 1  COL_PATH = 2    class WctxModel(QAbstractTableModel):   def __init__(self, wctx, parent=None):   QAbstractTableModel.__init__(self, parent)   rows = []   for m in wctx.modified():   rows.append(('M', hglib.tounicode(m), m))   for a in wctx.added():   rows.append(('A', hglib.tounicode(a), a))   for r in wctx.removed():   rows.append(('R', hglib.tounicode(r), r))   for d in wctx.deleted():   rows.append(('!', hglib.tounicode(d), d))   for u in wctx.unknown():   rows.append(('?', hglib.tounicode(u), u))   # TODO: wctx.ignored() does not exist   #for i in wctx.ignored():   # rows.append(('I', hglib.tounicode(i), i))   for c in wctx.clean():   rows.append(('C', hglib.tounicode(c), c))   try:   for s in wctx.substate:   if wctx.sub(s).dirty():   rows.append(('S', hglib.tounicode(s), s))   except (OSError, IOError, error.ConfigError), e:   self.status_error = str(e)   self.rows = rows   self.headers = (_('Stat'), _('Filename')) + self.checked = [False,] * len(rows)     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() or role != Qt.DisplayRole: + if not index.isValid():   return QVariant() - return QVariant(self.rows[index.row()][index.column()]) - - def getPath(self, index): - assert index.isValid() - return self.rows[index.row()][COL_PATH] + if role == Qt.DisplayRole: + return QVariant(self.rows[index.row()][index.column()]) + if role == Qt.CheckStateRole and index.column() == COL_STATUS: + # also Qt.PartiallyChecked + if self.checked[index.row()]: + return Qt.Checked + else: + return Qt.Unchecked + 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): - return Qt.ItemIsSelectable | Qt.ItemIsEnabled + flags = Qt.ItemIsSelectable | Qt.ItemIsEnabled + if index.column() == COL_STATUS: + 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): + assert index.isValid() + self.checked[index.row()] = not self.checked[index.row()] + self.emit(SIGNAL("layoutChanged()"))      def run(ui, *pats, **opts):   return StatusWidget(pats, None)