Home | History | Annotate | Download | only in QT

Lines Matching defs:currentRow

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