paysages3d/src/interface/desktop/lighting/SmallPreviewColor.h

22 lines
399 B
C
Raw Normal View History

2013-08-18 15:13:15 +00:00
#ifndef SMALLPREVIEWCOLOR_H
#define SMALLPREVIEWCOLOR_H
#include "software_global.h"
2013-08-18 15:13:15 +00:00
#include "DrawingWidget.h"
2013-08-18 15:13:15 +00:00
class SmallPreviewColor: public DrawingWidget
{
Q_OBJECT
public:
SmallPreviewColor(QWidget* parent, Color* color = 0);
void setColor(Color* color);
protected:
virtual void doDrawing(QPainter* painter);
private:
Color* _color;
};
#endif /* SMALLPREVIEWCOLOR_H */