Lines Matching refs:currentRow
260 for (int row = fListWidget.currentRow() + 1; row < fListWidget.count(); in actionPlay()
325 int currentRow = fListWidget.currentRow(); in actionStepBack() local
326 if (currentRow != 0) { in actionStepBack()
327 fListWidget.setCurrentRow(currentRow - 1); in actionStepBack()
332 int currentRow = fListWidget.currentRow(); in actionStepForward() local
333 QString curRow = QString::number(currentRow); in actionStepForward()
335 if (currentRow < fListWidget.count() - 1) { in actionStepForward()
336 fListWidget.setCurrentRow(currentRow + 1); in actionStepForward()
386 fPausedRow = fListWidget.currentRow(); in pauseDrawing()
391 int currentRow = -1; in updateDrawCommandInfo() local
393 currentRow = fListWidget.currentRow(); in updateDrawCommandInfo()
395 if (currentRow == -1) { in updateDrawCommandInfo()
403 const SkTDArray<SkString*> *currInfo = fDebugger.getCommandInfo(currentRow); in updateDrawCommandInfo()
417 fCurrentCommandBox.setText(QString::number(currentRow)); in updateDrawCommandInfo()
419 fDrawCommandGeometryWidget.setDrawCommandIndex(currentRow); in updateDrawCommandInfo()
858 fCanvasWidget.drawTo(fListWidget.currentRow()); in updateImage()