Example #1
0
void MyProjectGUIFrame::OnMenuItemAbout( wxCommandEvent& event )
{
    DialogAbout *dlg = new DialogAbout(this, -1, wxT("About"));
    if ( dlg->ShowModal() == wxID_OK )
    {

    }

    dlg->Destroy();

}
Example #2
0
void MainWindow::on_action_A_propos_triggered()
{
    DialogAbout *about = new DialogAbout (this);

    about->exec();
}
void MainWindow::showAboutBox(){
    DialogAbout *about = new DialogAbout(this);
    about->setModal(true);
    about->show();
}
Example #4
0
void MainWindow::openWindowAbout()
{
    DialogAbout *windowAbout = new DialogAbout();
    windowAbout->show();
}
Example #5
0
// При команде просмотра инфо о программе.
void MainWindow::on_actionAbout_triggered()
{
    DialogAbout w; // Диалог.
    //
    w.exec();
}
Example #6
0
void MainWindow::on_actionAbout_author_triggered()
{
    DialogAbout dialog;
    dialog.setModal(true);
    dialog.exec();
}
Example #7
0
void MainWindow::showAbout() {
    DialogAbout *dlg = new DialogAbout(this, JERRY_VERSION);
    dlg->exec();
    delete dlg;
}
Example #8
0
// open the about dialog
void CcgView::openAbout()
{
    DialogAbout * about = new DialogAbout(this,&globals);
    about->exec();
    delete about;
}
void MainWindow::onActionAboutTriggered()
{
    DialogAbout dialogAbout;
    dialogAbout.exec();
}
Example #10
0
void MainWindow::on_qMdPushButton_19_clicked()
{
    DialogAbout *about = new DialogAbout(&hmiData);
    about->exec();
}
Example #11
0
void WinMain::on_actionAbout_triggered()
{
	DialogAbout* dlgAbout = new DialogAbout(this);

	dlgAbout->show();
}