QInputDialog 和 QMessageBox

QInputDialog and QMessageBox

我正在为使用 Qt 框架的考试做一些准备,我想知道如何以基本方式使用 QInputDialog 和 QMessageBox(我的考试是手写编码)

Qt API 在使用时确实让人难以理解,但它对我的项目来说很好,因为我可以用一种真正 "hacky" 的方式完成我想要的东西主题布局很差...

让我进入正题,在这种情况下使用 QInputDialog 和 QMessageBox 的简洁方法是什么:

#include <QApplication>
#include <QInputDialog>
#include <QDate>
#include <QMessageBox>

int computeAge(QDate id) {
  int years = QDate::currentDate().year() - id.year();
  int days = QDate::currentDate().daysTo(QDate
              (QDate::currentDate().year(), id.month(), id.day()));
  if(days > 0) 
    years--;
  return years
}

int main(int argc, char *argv[]) {
  QApplication a(argc, argv);
  /*  I want my QInputDialog and MessageBox in here somewhere */
  return a.exec();
}

对于我的 QInputDialog,我希望用户提供他们的出生日期(不用担心输入验证) 我想使用 QMessageBox 来显示用户的年龄

我只是不明白在基本情况下需要将哪些参数输入 QInputDialog 和 QMessageBox,因为那里似乎没有任何示例。

我该如何完成?

您可以这样做:

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    bool ok;
    // Ask for birth date as a string.
    QString text = QInputDialog::getText(0, "Input dialog",
                                         "Date of Birth:", QLineEdit::Normal,
                                         "", &ok);
    if (ok && !text.isEmpty()) {
        QDate date = QDate::fromString(text);
        int age = computeAge(date);
        // Show the age.
        QMessageBox::information (0, "The Age",
                                  QString("The age is %1").arg(QString::number(age)));
    }
    [..]