mirror of
https://github.com/leozide/leocad
synced 2025-01-13 08:01:38 +01:00
31 lines
437 B
C++
31 lines
437 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class lcQPOVRayDialog;
|
|
}
|
|
|
|
class lcQPOVRayDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcQPOVRayDialog(QWidget* Parent);
|
|
~lcQPOVRayDialog();
|
|
|
|
QString mFileName;
|
|
QString mPOVRayPath;
|
|
QString mLGEOPath;
|
|
bool mRender;
|
|
|
|
public slots:
|
|
void accept();
|
|
void on_outputBrowse_clicked();
|
|
void on_povrayBrowse_clicked();
|
|
void on_lgeoBrowse_clicked();
|
|
|
|
private:
|
|
Ui::lcQPOVRayDialog *ui;
|
|
};
|
|
|