2013-08-09 06:57:18 +02:00
|
|
|
#ifndef _LC_QPOVRAYDIALOG_H_
|
|
|
|
#define _LC_QPOVRAYDIALOG_H_
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class lcQPOVRayDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class lcQPOVRayDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-08-01 05:44:15 +02:00
|
|
|
lcQPOVRayDialog(QWidget* Parent);
|
2013-08-09 06:57:18 +02:00
|
|
|
~lcQPOVRayDialog();
|
|
|
|
|
2016-08-01 05:44:15 +02:00
|
|
|
QString mFileName;
|
|
|
|
QString mPOVRayPath;
|
|
|
|
QString mLGEOPath;
|
|
|
|
bool mRender;
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void accept();
|
|
|
|
void on_outputBrowse_clicked();
|
|
|
|
void on_povrayBrowse_clicked();
|
|
|
|
void on_lgeoBrowse_clicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::lcQPOVRayDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _LC_QPOVRAYDIALOG_H_
|