本文整理汇总了C++中QDialogButtonBox::setParent方法的典型用法代码示例。如果您正苦于以下问题:C++ QDialogButtonBox::setParent方法的具体用法?C++ QDialogButtonBox::setParent怎么用?C++ QDialogButtonBox::setParent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDialogButtonBox
的用法示例。
在下文中一共展示了QDialogButtonBox::setParent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: changeIdentifier
void SCgView::changeIdentifier()
{
Q_ASSERT(mContextObject);
QDialog dialog(this);
dialog.setWindowTitle(tr("Change identifier"));
QLabel* label = new QLabel(tr("New identifier:"),&dialog);
QLineEdit* lineEdit = new QLineEdit(&dialog);
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel);
buttonBox->setParent(&dialog);
connect(buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(label);
layout->addWidget(lineEdit);
layout->addWidget(buttonBox);
QCompleter *completer = new QCompleter(static_cast<SCgScene*>(scene())->idtfList(), &dialog);
completer->setCaseSensitivity(Qt::CaseInsensitive);
lineEdit->setCompleter(completer);
QString oldIdtf = mContextObject->idtfValue();
lineEdit->setText(oldIdtf);
lineEdit->selectAll();
dialog.setLayout(layout);
lineEdit->setFocus();
if (dialog.exec())
{
QString newIdtf = lineEdit->text();
if(oldIdtf != newIdtf)
static_cast<SCgScene*>(scene())->changeIdtfCommand(mContextObject, newIdtf);
}
}