Michaël Lemaire
e265be6105
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@230 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
61 lines
1,020 B
C++
61 lines
1,020 B
C++
#ifndef _PAYSAGES_QT_PREVIEW_H_
|
|
#define _PAYSAGES_QT_PREVIEW_H_
|
|
|
|
#include <QMutex>
|
|
#include <QImage>
|
|
#include <QWidget>
|
|
#include <QThread>
|
|
|
|
class Preview:public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Preview(QWidget* parent);
|
|
~Preview();
|
|
|
|
static void startUpdater();
|
|
void doRender();
|
|
void redraw();
|
|
|
|
void setScaling(double scaling);
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent* event);
|
|
void paintEvent(QPaintEvent* event);
|
|
virtual QColor getColor(double x, double y);
|
|
|
|
void renderPixbuf();
|
|
void forceRender();
|
|
|
|
double conf_scroll_xmin;
|
|
double conf_scroll_xmax;
|
|
double conf_scroll_ymin;
|
|
double conf_scroll_ymax;
|
|
|
|
double conf_scale_min;
|
|
double conf_scale_max;
|
|
double conf_scale_step;
|
|
|
|
double xoffset;
|
|
double yoffset;
|
|
double scaling;
|
|
|
|
QMutex* lock;
|
|
QImage* pixbuf;
|
|
|
|
int mousex;
|
|
int mousey;
|
|
|
|
bool alive;
|
|
bool need_rerender;
|
|
bool need_render;
|
|
|
|
private:
|
|
QThread* updater;
|
|
|
|
signals:
|
|
void contentChange();
|
|
};
|
|
|
|
#endif
|