我的 main.cpp 看起来像这样:
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
在我的 mainwindow.cpp 中,我想在“while”的每个循环中显示不同的图像,所以它看起来像这样:
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
image = load_an_image
int i=0;
while (i<15)
{
show image in the MainWindow
waitkey (wait until I press a key or wait some time)
do something to this image for the next loop
i++
}
}
但是,直到“while”完成,主窗口才会显示,我找不到如何在每个循环中显示主窗口。
谁能给我任何建议?