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

status: add some documentation

Changeset ce0de634832e

Parent d867123b5e49

by Steve Borho

Changes to one file · Browse files at ce0de634832e Showing diff from parent d867123b5e49 Diff from another changeset...

 
104
105
106
 
107
108
109
 
219
220
221
 
222
223
224
225
226
227
 
228
229
230
 
104
105
106
107
108
109
110
 
220
221
222
223
224
225
226
227
228
229
230
231
232
233
@@ -104,6 +104,7 @@
  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() @@ -219,12 +220,14 @@
  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)