Maintain default status for all dialogs using ButtonController

Should fix rest of #11417
This commit is contained in:
Juergen Spitzmueller 2018-12-20 12:56:30 +01:00
parent 33344c6015
commit e087722900
5 changed files with 25 additions and 18 deletions

View File

@ -114,6 +114,7 @@ public:
QPushButton * cancel_;
QPushButton * restore_;
QCheckBox * auto_apply_;
QPushButton * default_;
typedef QList<QWidget *> Widgets;
Widgets read_only_;
@ -205,7 +206,7 @@ bool ButtonController::setReadOnly(bool ro)
// refreshReadOnly(); This will enable all widgets in dialogs, no matter if
// they allowed to be enabled, so when you plan to
// reenable this call, read this before:
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg128222.html
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg128222.html
refresh();
return ro;
}
@ -243,7 +244,9 @@ void ButtonController::refresh() const
bool const enabled = policy().buttonStatus(ButtonPolicy::AUTOAPPLY);
d->auto_apply_->setEnabled(enabled);
}
if (d->default_)
// Somewhere in the chain this can lose default status (#11417)
d->default_->setDefault(true);
}
@ -263,15 +266,19 @@ void ButtonController::addCheckedLineEdit(QLineEdit * input, QWidget * label)
}
void ButtonController::setOK(QPushButton * obj)
void ButtonController::setOK(QPushButton * obj, bool const default_button)
{
d->okay_ = obj;
if (default_button)
d->default_ = obj;
}
void ButtonController::setApply(QPushButton * obj)
void ButtonController::setApply(QPushButton * obj, bool const default_button)
{
d->apply_ = obj;
if (default_button)
d->default_ = obj;
}
@ -281,15 +288,19 @@ void ButtonController::setAutoApply(QCheckBox * obj)
}
void ButtonController::setCancel(QPushButton * obj)
void ButtonController::setCancel(QPushButton * obj, bool const default_button)
{
d->cancel_ = obj;
if (default_button)
d->default_ = obj;
}
void ButtonController::setRestore(QPushButton * obj)
void ButtonController::setRestore(QPushButton * obj, bool const default_button)
{
d->restore_ = obj;
if (default_button)
d->default_ = obj;
}

View File

@ -92,11 +92,13 @@ public:
//
//@{
/// Store pointers to these widgets.
void setOK(QPushButton * obj);
void setApply(QPushButton * obj);
void setCancel(QPushButton * obj);
void setRestore(QPushButton * obj);
/// Store pointers to these widgets. \param default_button determines
/// the default button of the dialog (bound to return). This is
/// OK by default.
void setOK(QPushButton * obj, bool const default_button = true);
void setApply(QPushButton * obj, bool const default_button = false);
void setCancel(QPushButton * obj, bool const default_button = false);
void setRestore(QPushButton * obj, bool const default_button = false);
void setAutoApply(QCheckBox * obj);
//@}

View File

@ -154,10 +154,6 @@ void GuiInclude::typeChanged(int v)
listingsGB->setEnabled(false);
break;
}
//see this thread
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg118471.html
//for the reason this is here.
buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
}

View File

@ -385,8 +385,6 @@ void GuiRef::updateContents()
// Activate OK/Apply buttons if the users inserts a new ref
// and we have a valid pre-setting.
bc().setValid(isValid() && new_inset);
// Somewhere in the chain this can lose default status (#11417)
buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
}

View File

@ -253,7 +253,7 @@ void InsetParamsDialog::updateView()
bool const update_widget =
(synchronizedCB->isChecked() || immediateApplyCB->isChecked());
updateView(update_widget);
// Somewhere in the chain this can lose default status (#11417)
buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
}