QDialog返回值,仅接受或拒绝?

时间:2016-05-07 23:39:07

标签: c++ qt qt5 c++14 qdialog

如何从QDialog返回自定义值?它返回<{p}}

QDialog::Accepted   1
QDialog::Rejected   0

如果用户按Ok的{​​{1}}。

我在自定义对话框中思考,即三个复选框,以允许用户选择一些选项。 Cancel适合这个吗?

1 个答案:

答案 0 :(得分:3)

您对2个功能感兴趣:

通常,&#34; OK&#34; QDialog中的按钮连接到QDialog::accept()插槽。你想避免这种情况。相反,编写自己的处理程序来设置返回值:

// Custom dialog's constructor
MyDialog::MyDialog(QWidget *parent = nullptr) : QDialog(parent)
{
    // Initialize member variable widgets
    m_okButton = new QPushButton("OK", this);
    m_checkBox1 = new QCheckBox("Option 1", this);
    m_checkBox2 = new QCheckBox("Option 2", this);
    m_checkBox3 = new QCheckBox("Option 3", this);

    // Connect your "OK" button to your custom signal handler
    connect(m_okButton, &QPushButton::clicked, [=]
    {
        int result = 0;
        if (m_checkBox1->isChecked()) {
            // Update result
        }

        // Test other checkboxes and update the result accordingly
        // ...

        // The following line closes the dialog and sets its return value
        this->done(result);            
    });

    // ...
}