本文整理汇总了C++中QWizard::show方法的典型用法代码示例。如果您正苦于以下问题:C++ QWizard::show方法的具体用法?C++ QWizard::show怎么用?C++ QWizard::show使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QWizard
的用法示例。
在下文中一共展示了QWizard::show方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: on_profilesButton_clicked
void ProfileDialog::on_profilesButton_clicked()
{
QString name = QInputDialog::getText(this, tr("Enter name"), tr("Profile name:"), QLineEdit::Normal);
if (name.isEmpty()) {
QMessageBox::critical(this, tr("Invalid name"), tr("Name can not be empty!"));
return;
}
QString pass = QInputDialog::getText(this, tr("Enter password"), tr("Password:"), QLineEdit::Password);
QString passr = QInputDialog::getText(this, tr("Repeat password"), tr("Repeat password:"), QLineEdit::Password);
if (pass != passr) {
QMessageBox::critical(this, tr("Incorrect password"), tr("Passwords don't match each other"));
return;
}
if (pass.isEmpty()) {
QMessageBox::critical(this, tr("Incorrect password"), tr("Password can not be empty!"));
return;
}
QWizard *wizard = new ProfileCreationWizard(m_manager, name, pass);
#if defined(QUTIM_MOBILE_UI)
wizard->showMaximized();
#else
wizard->show();
#endif
connect(wizard, SIGNAL(accepted()), this, SLOT(deleteLater()));
connect(wizard, SIGNAL(rejected()), this, SLOT(show()));
hide();
}
示例2: on_Add__released
void AccountsListWidget::on_Add__released ()
{
QWizard *wizard = new QWizard (this);
wizard->setAttribute (Qt::WA_DeleteOnClose);
wizard->setWindowTitle (tr ("Add account"));
wizard->addPage (new AddAccountWizardFirstPage (wizard));
wizard->show ();
}
示例3: InitiateAccountAddition
void InitiateAccountAddition(QWidget *parent)
{
QWizard *wizard = new QWizard (parent);
wizard->setAttribute (Qt::WA_DeleteOnClose);
wizard->setWindowTitle (QObject::tr ("Add account"));
wizard->addPage (new AddAccountWizardFirstPage (wizard));
wizard->show ();
}
示例4: main
//! [9] //! [10]
int main(int argc, char *argv[])
//! [9] //! [11]
{
QApplication app(argc, argv);
QString translatorFileName = QLatin1String("qt_");
translatorFileName += QLocale::system().name();
QTranslator *translator = new QTranslator(&app);
if (translator->load(translatorFileName, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
app.installTranslator(translator);
QWizard wizard;
wizard.addPage(createIntroPage());
wizard.addPage(createRegistrationPage());
wizard.addPage(createConclusionPage());
wizard.setWindowTitle("Trivial Wizard");
wizard.show();
return app.exec();
}