2017-09-22 19:08:02 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class lcRenderDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class lcRenderDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit lcRenderDialog(QWidget* Parent);
|
|
|
|
~lcRenderDialog();
|
|
|
|
|
|
|
|
public slots:
|
2017-11-05 02:54:12 +01:00
|
|
|
void reject();
|
2017-09-22 19:08:02 +02:00
|
|
|
void on_RenderButton_clicked();
|
2017-12-27 22:55:37 +01:00
|
|
|
void on_OutputBrowseButton_clicked();
|
2017-09-22 19:08:02 +02:00
|
|
|
void Update();
|
|
|
|
|
|
|
|
protected:
|
2018-01-15 06:45:50 +01:00
|
|
|
QString GetOutputFileName() const;
|
2017-11-05 02:54:12 +01:00
|
|
|
QString GetPOVFileName() const;
|
|
|
|
void CloseProcess();
|
|
|
|
bool PromptCancel();
|
|
|
|
|
2017-12-07 07:08:56 +01:00
|
|
|
#ifndef QT_NO_PROCESS
|
2017-09-22 19:08:02 +02:00
|
|
|
QProcess* mProcess;
|
2017-12-07 07:08:56 +01:00
|
|
|
#endif
|
2017-11-05 02:54:12 +01:00
|
|
|
QTimer mUpdateTimer;
|
2018-01-15 06:45:50 +01:00
|
|
|
QFile mOutputFile;
|
|
|
|
void* mOutputBuffer;
|
2017-12-10 01:27:56 +01:00
|
|
|
QImage mImage;
|
2017-09-22 19:08:02 +02:00
|
|
|
|
2017-11-05 02:54:12 +01:00
|
|
|
Ui::lcRenderDialog* ui;
|
2017-09-22 19:08:02 +02:00
|
|
|
};
|