Example #1
0
File: app.cpp Project: speakman/qlc
//
// Help -> About QLC
//
void App::slotHelpAbout()
{
  AboutBox* ab;
  ab = new AboutBox(this);
  ab->exec();
  delete ab;
}
Example #2
0
// Shows the About Application Dialog
void GUI::aboutapptr()
{
	AboutBox *aboutdialog = new AboutBox();
	aboutdialog->setStyle(QStyleFactory::create("Plastique"));
	aboutdialog->setWindowIcon(QIcon(":/ICONS/aboutapp.png"));
	aboutdialog->setWindowTitle(tr("About Visualize and Slice"));
	aboutdialog->setFixedSize(550,350);
	aboutdialog->exec();
}
void StartAndHelpScreen::on_pushButton_clicked()
{
    AboutBox box;
    box.exec();
}
Example #4
0
void MainWindow::about(void)
{
	AboutBox lAboutBox;
	lAboutBox.exec();
}