| 393 | } |
| 394 | |
| 395 | void ExportDialog::updateButtonState() |
| 396 | { |
| 397 | QPushButton* exportButton = d_buttonBox->button(QDialogButtonBox::Save); |
| 398 | QString format = d_formatCombo->currentData().toString(); |
| 399 | |
| 400 | if (format == MULTI_PNG_FORMAT) { |
| 401 | exportButton->setEnabled(!d_selectedTargetDir.isEmpty() && !d_targetNamePattern->text().isEmpty()); |
| 402 | } |
| 403 | else { |
| 404 | exportButton->setEnabled(!d_selectedTargetFile.isEmpty()); |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | void ExportDialog::doExport() |
| 409 | { |