paysages3d/gui_qt/dialogrender.h
2012-01-06 16:09:03 +00:00

26 lines
442 B
C++

#ifndef _PAYSAGES_QT_DIALOGRENDER_H_
#define _PAYSAGES_QT_DIALOGRENDER_H_
#include <QDialog>
#include <QThread>
#include <QProgressBar>
class DialogRender : public QDialog
{
Q_OBJECT
public:
explicit DialogRender(QWidget *parent = 0);
QImage* pixbuf;
QWidget* area;
QProgressBar* progress;
int progress_value;
signals:
public slots:
private:
QThread* render_thread;
};
#endif // _PAYSAGES_QT_DIALOGRENDER_H_