コード例 #1
0
ファイル: ELoadScreen.cpp プロジェクト: EndrII/Space_engine
ELoadScreen::ELoadScreen(QWidget *ptr):
    QWidget(ptr)
{
    timer=new QTimer();
    timer->setInterval(10000);
    timer->start();
    img=new EImage("none");
    connect(timer,SIGNAL(timeout()),SLOT(imgUpdate()));
    bar=new QProgressBar(this);
    this->setHidden(true);
    //this->show();
}
コード例 #2
0
void MainWindow::on_actionTonsCinza_triggered()
{
    tonsCinza(img);
    imgUpdate();
}