iVS3D v2.0.0
Loading...
Searching...
No Matches
reconstructdialog.h
1#ifndef RECONSTRUCTDIALOG_H
2#define RECONSTRUCTDIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
8}
9
21class ReconstructDialog : public QDialog
22{
23 Q_OBJECT
24
25public:
30 explicit ReconstructDialog(QWidget *parent = 0);
32
39 ReconstructDialog(QWidget *parent, QStringList exportnameList, QStringList reconstructtoolList);
40
45 QString getExportName();
50 QString getReconstructtool();
55 QString getStartArguments();
60 bool getCreateProject();
61
62signals:
66 void sig_cancel();
79private slots:
80 void on_cancelbutton_clicked();
81 void on_reconstructButton_clicked();
82
83private:
84 Ui::ReconstructDialog *ui;
85};
86
87#endif // RECONSTRUCTDIALOG_H
The ReconstructDialog class handles the dialog for selecting the startup of a reconstruction software...
Definition reconstructdialog.h:22
QString getReconstructtool()
getReconstructtool getter for the selected reconstruct software
Definition reconstructdialog.cpp:31
void sig_exportChange()
sig_exportChange signals when the selected export has changed
void sig_cancel()
sig_cancel signals click on the abort button
QString getExportName()
getExportName getter for the selected export
Definition reconstructdialog.cpp:26
QString getStartArguments()
getStartArguments getter for the written start parameters for the reconstruct software
Definition reconstructdialog.cpp:36
void sig_reconstruct()
sig_reconstruct signals click on reconstruct button
bool getCreateProject()
getCreateProject getter for the checkbox on whether to create a project file (for colmap) aswell or n...
Definition reconstructdialog.cpp:41
void sig_reconstructtoolChange()
sig_reconstructtoolChange signals when the selected reconstruct software has changed