You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
699 B
C++
39 lines
699 B
C++
#ifndef IMPORTSCENEDATADIALOG_H
|
|
#define IMPORTSCENEDATADIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ImportSceneDataDialog;
|
|
}
|
|
|
|
class ImportSceneDataDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ImportSceneDataDialog(QWidget *parent = nullptr);
|
|
~ImportSceneDataDialog();
|
|
|
|
signals:
|
|
void sendSceneDataPath(QStringList imagePathList,QStringList terrianPathList);
|
|
|
|
private slots:
|
|
void on_selectImageBtn_clicked();
|
|
|
|
void on_selectTerrainBtn_clicked();
|
|
|
|
void on_cancelBtn_clicked();
|
|
|
|
void on_importBtn_clicked();
|
|
|
|
|
|
private:
|
|
Ui::ImportSceneDataDialog *ui;
|
|
|
|
QStringList imagePathList;
|
|
QStringList terrianPathList;
|
|
};
|
|
|
|
#endif // IMPORTSCENEDATADIALOG_H
|