00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #ifndef GRADIENTS_H
00045 #define GRADIENTS_H
00046
00047 #include "tfglwidget.h"
00048
00049 class tfGLWidget;
00050
00051 #include "arthurwidgets.h"
00052
00053 #include <QtGui>
00054
00055 class HoverPoints;
00056
00057
00058 class ShadeWidget : public QWidget
00059 {
00060 Q_OBJECT
00061 public:
00062 enum ShadeType {
00063 RedShade,
00064 GreenShade,
00065 BlueShade,
00066 ARGBShade
00067 };
00068
00069 ShadeWidget(ShadeType type, QWidget *parent);
00070
00071 void setGradientStops(const QGradientStops &stops);
00072
00073 void paintEvent(QPaintEvent *e);
00074
00075 QSize sizeHint() const { return QSize(256, 100); }
00076 QPolygonF points() const;
00077
00078 HoverPoints *hoverPoints() const { return m_hoverPoints; }
00079
00080 uint colorAt(int x);
00081
00082 signals:
00083 void colorsChanged();
00084
00085 private:
00086 void generateShade();
00087
00088 ShadeType m_shade_type;
00089 QImage m_shade;
00090 HoverPoints *m_hoverPoints;
00091 QLinearGradient m_alpha_gradient;
00092 };
00093
00094 class GradientEditor : public QWidget
00095 {
00096 Q_OBJECT
00097 public:
00098 GradientEditor(QWidget *parent);
00099
00100 void setGradientStops(const QGradientStops &stops);
00101
00102 public slots:
00103 void pointsUpdated();
00104
00105 signals:
00106 void gradientStopsChanged(const QGradientStops &stops);
00107
00108 private:
00109 ShadeWidget *m_red_shade;
00110 ShadeWidget *m_green_shade;
00111 ShadeWidget *m_blue_shade;
00112 ShadeWidget *m_alpha_shade;
00113 };
00114
00115
00116
00117 class GradientRenderer : public QGLWidget
00118 {
00119 Q_OBJECT
00120 public:
00121 GradientRenderer(QWidget *parent);
00122
00123
00124 QSize sizeHint() const { return QSize(256, 512); }
00125
00126
00127
00128
00129
00130
00131 public slots:
00132 void setGradientStops(const QGradientStops &stops);
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144 signals:
00145
00146 void tfTextureGenerated(QImage &tf_img);
00147
00148 protected:
00149 void initializeGL();
00150 void paintGL();
00151 void resizeGL(int width, int height);
00152 void mousePressEvent(QMouseEvent *event);
00153 void mouseMoveEvent(QMouseEvent *event);
00154
00155 private:
00156 QGradientStops m_stops;
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166 };
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186 class GradientWidget : public QWidget
00187 {
00188 Q_OBJECT
00189 public:
00190 GradientWidget(QWidget *parent);
00191
00192 QSize sizeHint() const { return QSize(300, 100); }
00193
00194
00195 public slots:
00196 void setTransferFunction(QImage &tf_img);
00197
00198 void setDefault1() { setDefault(1); }
00199 void setDefault2() { setDefault(2); }
00200 void setDefault3() { setDefault(3); }
00201 void setDefault4() { setDefault(4); }
00202 void setDefault5() { setDefault(5); }
00203 void setDefault6() { setDefault(6); }
00204 void setDefault7() { setDefault(7); }
00205 void setDefault8() { setDefault(8); }
00206
00207 void rendertf(const QGradientStops &stops);
00208
00209 void setGradientStops(const QGradientStops &stops);
00210
00211 signals:
00212
00213 void tfready(QImage &tf_img);
00214 void gradientStopsChanged(const QGradientStops &stops);
00215
00216 private:
00217
00218 void setDefault(int i);
00219
00220
00221
00222
00223 GradientEditor *m_editor;
00224 tfGLWidget *tf_widget;
00225
00226 QImage m_transfer_function;
00227
00228 QGradientStops m_stops;
00229
00230 QPushButton *m_linearButton;
00231 QPushButton *m_zerosButton;
00232 QPushButton *m_rainbowButton;
00233 QPushButton *m_blackButton;
00234 QPushButton *m_redButton;
00235 QPushButton *m_greenButton;
00236 QPushButton *m_blueButton;
00237 QPushButton *m_whiteButton;
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248 };
00249
00250 #endif // GRADIENTS_H