! Shows/hides the GroupBox with export options in this dialog. */
| 356 | Shows/hides the GroupBox with export options in this dialog. |
| 357 | */ |
| 358 | void ExportSpreadsheetDialog::toggleOptions() { |
| 359 | m_showOptions = !m_showOptions; |
| 360 | ui->gbOptions->setVisible(m_showOptions); |
| 361 | m_showOptions ? m_showOptionsButton->setText(i18n("Hide Options")) : m_showOptionsButton->setText(i18n("Show Options")); |
| 362 | |
| 363 | // resize the dialog |
| 364 | layout()->activate(); |
| 365 | resize(QSize(this->width(), 0).expandedTo(minimumSize())); |
| 366 | } |
| 367 | |
| 368 | /*! |
| 369 | opens a file dialog and lets the user select the file. |
nothing calls this directly
no test coverage detected