mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
33 lines
513 B
C++
33 lines
513 B
C++
#ifndef _LC_QPOVRAYDIALOG_H_
|
|
#define _LC_QPOVRAYDIALOG_H_
|
|
|
|
#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;
|
|
};
|
|
|
|
#endif // _LC_QPOVRAYDIALOG_H_
|