QDialog exec() and getting result value(QDialog exec() 并获取结果值)
问题描述
我已经将 QDialog
子类化以实现类似于 QMessageBox
的功能(我需要它来允许自定义).它有一条短信和确定"、取消"按钮.我正在使用 exec()
显示对话框以使其阻塞.现在,当用户单击确定/取消时,我如何返回真/假值?
I have subclassed QDialog
to implement functionality similar to QMessageBox
( I needed this to allow for customization). It has a text message and OK, Cancel buttons. I am showing the dialog using exec()
to make it blocking. Now, how do I return values of true/false when the user clicks on OK/Cancel?
我尝试将按钮连接到 setResult()
然后,在单击时返回结果值,但是
I tried connecting the buttons to setResult()
and then, return the result value when clicked, but
- 单击按钮不会关闭对话框
- 返回值不正确.以下是我写的代码.我认为我在执行/结果部分错了 - 但我不知道如何解决它.
class MyMessageBox : public QDialog {
Q_OBJECT
private slots:
void onOKButtonClicked() { this->setResult(QDialog::Accepted); }
void onCancelButtonClicked() { this->setResult(QDialog::Rejected); }
public:
MyMessageBox(QMessageBox::Icon icon, const QString& title,
const QString& text, bool showCancelButton = true,
QWidget* parent = 0);
virtual void resizeEvent(QResizeEvent* e);
QDialog::DialogCode showYourself()
{
this->setWindowModality(Qt::ApplicationModal);
this->exec();
return static_cast<QDialog::DialogCode>(this->result());
}
};
用户将实例化该类并调用 showYourself()
,它应该返回值并关闭(和删除)对话框.
The user will instantiate the class and call showYourself()
which is expected to return the value and also close(and delete) the dialog.
我已经发布了部分代码.如果您需要更多,请告诉我,我会发布完整版本.
I have posted partial code. Let me know if you need more and I will post the complete version.
推荐答案
几点:
- 与其自己使用
setResult()
,不如使用 QDialog::accept() 和 QDialog::reject(). - 看来您没有充分利用信号和插槽.您需要创建对话(或另一个)的对象来收听对话的信号.
- 在您的代码中,您也没有将信号连接到插槽.
- 在我的修复中
onOKButtonClicked
和onCancelButtonClicked
是不必要的. - 通过我的修复,您不需要
showYourself()
.只需调用exec
和事件信息会流动.
- Rather than using
setResult()
yourself, use QDialog::accept() and QDialog::reject(). - It seems you are not taking full advantage of the signals and slots. You need the object which create the dialog (or another one) to listen to the signals of the dialog.
- In your code you are not connecting signals to slots either.
- With my fix
onOKButtonClicked
andonCancelButtonClicked
are unnecessary. - With my fix you don't need
showYourself()
. Just callexec
and with the events information will flow.
您需要在显示对话框之前添加此代码(this
假设它在对话框方法中):
You need to add this code before showing the dialog (this
assume it is in a dialog method):
QObject::connect(acceptButton, SIGNAL(clicked()), this, SLOT(accept()));
QObject::connect(rejectButton, SIGNAL(clicked()), this, SLOT(reject()));
在调用者对象中你有
void someInitFunctionOrConstructor(){
QObject::connect(mydialog, SIGNAL(finished (int)), this, SLOT(dialogIsFinished(int)));
}
void dialogIsFinished(int){ //this is a slot
if(result == QDialog::Accepted){
//do something
return
}
//do another thing
}
这篇关于QDialog exec() 并获取结果值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:QDialog exec() 并获取结果值


基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01