mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
32 lines
520 B
C
32 lines
520 B
C
|
#ifndef _LC_QPOVRAYDIALOG_H_
|
||
|
#define _LC_QPOVRAYDIALOG_H_
|
||
|
|
||
|
#include <QDialog>
|
||
|
struct lcPOVRayDialogOptions;
|
||
|
|
||
|
namespace Ui {
|
||
|
class lcQPOVRayDialog;
|
||
|
}
|
||
|
|
||
|
class lcQPOVRayDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit lcQPOVRayDialog(QWidget *parent, void* data);
|
||
|
~lcQPOVRayDialog();
|
||
|
|
||
|
lcPOVRayDialogOptions *options;
|
||
|
|
||
|
public slots:
|
||
|
void accept();
|
||
|
void on_outputBrowse_clicked();
|
||
|
void on_povrayBrowse_clicked();
|
||
|
void on_lgeoBrowse_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::lcQPOVRayDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // _LC_QPOVRAYDIALOG_H_
|