Qt で Yes/No ボタンのあるメッセージ ボックスを表示するにはどうすればよいですか? また、どのボタンが押されたかを確認するにはどうすればよいですか?
つまり、次のようなメッセージ ボックスです。
Qt で Yes/No ボタンのあるメッセージ ボックスを表示するにはどうすればよいですか? また、どのボタンが押されたかを確認するにはどうすればよいですか?
つまり、次のようなメッセージ ボックスです。
あなたはQMessageBox::question
そのために使うでしょう。
架空のウィジェットのスロットでの例:
#include <QApplication>
#include <QMessageBox>
#include <QDebug>
// ...
void MyWidget::someSlot() {
QMessageBox::StandardButton reply;
reply = QMessageBox::question(this, "Test", "Quit?",
QMessageBox::Yes|QMessageBox::No);
if (reply == QMessageBox::Yes) {
qDebug() << "Yes was clicked";
QApplication::quit();
} else {
qDebug() << "Yes was *not* clicked";
}
}
Qt 4 および 5 で動作し、出力を表示するQT += widgets
には Qt 5 およびCONFIG += console
Win32が必要です。qDebug()
列挙型を参照して、StandardButton
使用できるボタンのリストを取得してください。この関数は、クリックされたボタンを返します。追加の引数を使用してデフォルト ボタンを設定できます (指定しない場合、または指定しない場合、 Qt は「適切なデフォルトを自動的に選択しますQMessageBox::NoButton
」 )。
QMessage オブジェクトを使用してメッセージ ボックスを作成し、ボタンを追加できます。
QMessageBox msgBox;
msgBox.setWindowTitle("title");
msgBox.setText("Question");
msgBox.setStandardButtons(QMessageBox::Yes);
msgBox.addButton(QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
if(msgBox.exec() == QMessageBox::Yes){
// do something
}else {
// do something else
}
QT は Windows と同じくらいシンプルです。同等のコードは
if (QMessageBox::Yes == QMessageBox(QMessageBox::Information, "title", "Question", QMessageBox::Yes|QMessageBox::No).exec())
{
}
QMessageBox
そのような質問をすばやく行うための静的メソッドが含まれています。
#include <QApplication>
#include <QMessageBox>
int main(int argc, char **argv)
{
QApplication app{argc, argv};
while (QMessageBox::question(nullptr,
qApp->translate("my_app", "Test"),
qApp->translate("my_app", "Are you sure you want to quit?"),
QMessageBox::Yes|QMessageBox::No)
!= QMessageBox::Yes)
// ask again
;
}
ニーズが静的メソッドで提供されるものよりも複雑な場合は、新しいQMessageBox
オブジェクトを作成し、そのメソッドを呼び出してexec()
独自のイベント ループで表示し、押されたボタンの識別子を取得する必要があります。たとえば、「いいえ」をデフォルトの回答にしたい場合があります。
#include <QApplication>
#include <QMessageBox>
int main(int argc, char **argv)
{
QApplication app{argc, argv};
auto question = new QMessageBox(QMessageBox::Question,
qApp->translate("my_app", "Test"),
qApp->translate("my_app", "Are you sure you want to quit?"),
QMessageBox::Yes|QMessageBox::No,
nullptr);
question->setDefaultButton(QMessageBox::No);
while (question->exec() != QMessageBox::Yes)
// ask again
;
}
質問と [はい] ボタンと[いいえ] ボタンで構成される QMessageBox のPython同等コード。[はい] ボタンをクリックすると、[はい] をクリックしたことを示す別のメッセージ ボックスがポップアップ表示され、[いいえ] ボタンの場合も同様です。if ブロックの後に独自のコードをプッシュできます。
button_reply = QMessageBox.question(self,"Test", "Are you sure want to quit??", QMessageBox.Yes,QMessageBox.No,)
if button_reply == QMessageBox.Yes:
QMessageBox.information(self, "Test", "Yes Button Was Clicked")
else :
QMessageBox.information(self, "Test", "No Button Was Clicked")
Python で作成する場合は、ワークベンチでこのコードを確認する必要があります。このようにも書きます。Pythonでポップアップボックスを作成しました。
msgBox = QMessageBox()
msgBox.setText("The document has been modified.")
msgBox.setInformativeText("Do you want to save your changes?")
msgBox.setStandardButtons(QMessageBox.Save | QMessageBox.Discard | QMessageBox.Cancel)
msgBox.setDefaultButton(QMessageBox.Save)
ret = msgBox.exec_()