25 if (this->prismButton->isChecked())
27 this->triButton->setChecked(
true);
29 if (this->hexButton->isChecked())
31 this->quadButton->setChecked(
true);
35 this->prismButton->setEnabled(!isChecked);
36 this->hexButton->setEnabled(!isChecked);
41 if (this->mshNameEdit->text().isEmpty())
43 OGSError::box(
"Please specify a name for the resulting mesh.");
46 _mesh_name = this->mshNameEdit->text().toStdString();
49 if (this->materialButton->isChecked())
53 else if (this->otherButton->isChecked())
57 else if (this->ignoreButton->isChecked())
64 if (this->arrayNameEdit->text().isEmpty())
70 _array_name = this->arrayNameEdit->text().toStdString();
73 if (this->quadButton->isChecked())
77 else if (this->prismButton->isChecked())
81 else if (this->hexButton->isChecked())
86 this->done(QDialog::Accepted);