Go to the documentation of this file.00001 #ifndef GRADIENTVIEW_H
00002 #define GRADIENTVIEW_H
00003
00004 #include <QWidget>
00005
00006 #include <renderingview.h>
00007
00011 class GradientView : public QWidget
00012 {
00013 Q_OBJECT
00014 public:
00021 explicit GradientView(RenderingView *renderingView, QWidget *parent = 0);
00022
00028 void paintEvent(QPaintEvent *e);
00029
00030 QSize minimumSizeHint() const;
00031 QSize sizeHint() const;
00032
00033 signals:
00034
00035 public slots:
00036
00037 private:
00038 RenderingView *renderingView;
00039
00040 };
00041
00042 #endif // GRADIENTVIEW_H