Still no success. All items appear at a same time.

Following is a snippet from my code.

Qt Code:
  1. for(int j = 0; j < 200 ; j++)
  2. {
  3. ...
  4. ...
  5. makeAshape(tempWidth,tempHeight,j);
  6. QTimer *timer = new QTimer(this);
  7. connect(timer, SIGNAL(timeout()), this, SLOT(makeAshape()));
  8. timer->start(1000);
  9. ...
  10. ...
  11. }
  12.  
  13. void MainWindow::makeAshape(double tempWidth, double tempHeight, int j)
  14. {
  15. square = new sqMap(tempWidth, tempHeight, processInfoVector[j], tableView_processInfo, tableView_filesInfo);
  16. }
To copy to clipboard, switch view to plain text mode