ExportDialog first part code
This commit is contained in:
parent
b690db4a2d
commit
a8ab6ce298
2 changed files with 14 additions and 0 deletions
|
@ -24,6 +24,7 @@ ExportDialog::ExportDialog(QWidget *parent) :
|
|||
ui(new Ui::ExportDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
success = false;
|
||||
}
|
||||
|
||||
ExportDialog::~ExportDialog()
|
||||
|
@ -31,7 +32,17 @@ ExportDialog::~ExportDialog()
|
|||
delete ui;
|
||||
}
|
||||
|
||||
bool ExportDialog::isSucceeded()
|
||||
{
|
||||
return success;
|
||||
}
|
||||
|
||||
void ExportDialog::on_cmdSnapmaticClose_clicked()
|
||||
{
|
||||
this->close();
|
||||
}
|
||||
|
||||
void ExportDialog::setupPictureExport()
|
||||
{
|
||||
ui->swExport->setCurrentWidget(ui->pageSnapmatic);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue