36 if (this->prismButton->isChecked())
38 this->triButton->setChecked(
true);
40 if (this->hexButton->isChecked())
42 this->quadButton->setChecked(
true);
46 this->prismButton->setEnabled(!isChecked);
47 this->hexButton->setEnabled(!isChecked);
52 if (this->mshNameEdit->text().isEmpty())
54 OGSError::box(
"Please specify a name for the resulting mesh.");
57 _mesh_name = this->mshNameEdit->text().toStdString();
60 if (this->materialButton->isChecked())
64 else if (this->otherButton->isChecked())
68 else if (this->ignoreButton->isChecked())
75 if (this->arrayNameEdit->text().isEmpty())
81 _array_name = this->arrayNameEdit->text().toStdString();
84 if (this->quadButton->isChecked())
88 else if (this->prismButton->isChecked())
92 else if (this->hexButton->isChecked())
97 this->done(QDialog::Accepted);