tilde~
Puredata Qt-based GUI
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hue_slider.hpp
Go to the documentation of this file.
1 
23 #ifndef HUE_SLIDER_HPP
24 #define HUE_SLIDER_HPP
25 
26 #include "gradient_slider.hpp"
27 
32 {
33  Q_OBJECT
34  Q_PROPERTY(qreal colorSaturation READ colorSaturation WRITE setColorSaturation)
35  Q_PROPERTY(qreal colorValue READ colorValue WRITE setColorValue)
36 
37 public:
38  explicit Hue_Slider(QWidget *parent = 0);
39  explicit Hue_Slider(Qt::Orientation orientation, QWidget *parent = 0);
40  ~Hue_Slider();
41 
42  qreal colorSaturation() const;
43  void setColorSaturation(qreal value);
44 
45  qreal colorValue() const;
46  void setColorValue(qreal value);
47 
48 private:
49  class Private;
50  Private * const p;
51 };
52 
53 #endif // HUE_SLIDER_HPP
54 
Definition: hue_slider.cpp:26
A slider that mover on top of a gradient.
Definition: gradient_slider.hpp:35
#define QCP_EXPORT
Definition: colorpicker_global.hpp:9
A slider for selecting a hue value.
Definition: hue_slider.hpp:31