Example #1
0
void Main::obrir_about()
{
        About *a = new About;
	a->exec();

	delete a;
}
Example #2
0
void MainWindow::ClickAbout(){

    About *about = new About(this);
    about->exec();



}
void MainWindow::on_actionAbout_triggered()
{
    About mDialog;
    mDialog.setWindowFlags( Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint );
    mDialog.setWindowTitle("About");
    mDialog.setModal(true);
            mDialog.exec();
}
Example #4
0
void MainWindow::on_actionAbout_triggered()
{
    //QMessageBox::information(this, tr("About Calculator"),tr("this Application designed by Mr.s.h.h"));
    this->close();
    About x;
    x.exec();
    this->show();

}
Example #5
0
void toolbar::Info()
{
    About inf;
    QFile file(":/qss/zoombuttton.qss");
    file.open(QFile::ReadOnly);
    inf.setStyleSheet(file.readAll());
    inf.setMaximumHeight(170);
    inf.setMaximumWidth(400);
    inf.exec();
}
Example #6
0
void MainWindow::on_actionAbout_triggered()
{
    if (About::opened)
        About::aboutDlg->activateWindow();
    else
    {
        About dlg;
        dlg.exec();
    }
}
Example #7
0
void FreeSSM::about()
{
	About *aboutdlg = new About(this, _language);
#ifdef SMALL_RESOLUTION
	aboutdlg->showFullScreen();
#else
	aboutdlg->show();
#endif
	aboutdlg->exec();
	delete aboutdlg;
}
Example #8
0
bool isAboutMenu(int argc, char *argv[]) {
    if (argc != 2)
        return false;

    QString arg(argv[1]);
    arg = arg.trimmed().toUpper();
    if (arg == "-ABOUT" || arg == "--ABOUT") {
        Q_INIT_RESOURCE(AboutResources);
        About about;
        about.setAppName(APP_NAME);
        about.setVersion(APP_VERSION);
        about.setDescription(APP_DESCRIPTION);
        about.setContactInfo(CONTACT_INFO);
        about.exec();
        return true;
    }

    return false;
}
Example #9
0
/**
 * Opens the about dialog with program infos
 */
void MainWindow::on_actionAbout_triggered()
{
    About about;
    about.setModal(true);
    about.exec();
}
Example #10
0
// Help -> About
void
MainWindow::aboutTriggered()
{
    About aboutBox;
    aboutBox.exec();
}
Example #11
0
void MainWindow::ShowAbout()
{
    About a;
    a.exec();
}
Example #12
0
void MainWindow::on_actionAbout_triggered()
{
    About *aboutDlg = new About;
    aboutDlg->show();
    aboutDlg->exec();
}
void MainWindow::on_About_triggered()
{
   About ab;

   ab.exec();
}
void MainWindow::on_actionAcerca_de_triggered()
{
    About about (this);
    about.exec();
}
Example #15
0
void qfit::displayInfo()
{
    About *about = new About(this);
    about->exec();
}