Lines Matching refs:currentRow
191 for (int row = fListWidget.currentRow() + 1; row < fListWidget.count(); in actionPlay()
256 int currentRow = fListWidget.currentRow(); in actionStepBack() local
257 if (currentRow != 0) { in actionStepBack()
258 fListWidget.setCurrentRow(currentRow - 1); in actionStepBack()
263 int currentRow = fListWidget.currentRow(); in actionStepForward() local
264 QString curRow = QString::number(currentRow); in actionStepForward()
266 if (currentRow < fListWidget.count() - 1) { in actionStepForward()
267 fListWidget.setCurrentRow(currentRow + 1); in actionStepForward()
321 fPausedRow = fListWidget.currentRow(); in pauseDrawing()
326 int currentRow = -1; in updateDrawCommandInfo() local
328 currentRow = fListWidget.currentRow(); in updateDrawCommandInfo()
330 if (currentRow == -1) { in updateDrawCommandInfo()
338 const SkTDArray<SkString*> *currInfo = fDebugger.getCommandInfo(currentRow); in updateDrawCommandInfo()
352 fCurrentCommandBox.setText(QString::number(currentRow)); in updateDrawCommandInfo()
354 fDrawCommandGeometryWidget.setDrawCommandIndex(currentRow); in updateDrawCommandInfo()
796 fCanvasWidget.drawTo(fListWidget.currentRow()); in updateImage()