Describes minimum required functionality from HSVBar control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IHSVBar :public virtual IControl
{
public:
virtual int getHue() = 0; // Return hue(0..360)
virtual IHSVPlane *getHSVPlane() = 0; // Return assigned HSVPlane widget
virtual bool setHue(const int value) = 0; // Set hue
virtual bool setHSVPlane(IHSVPlane *value) = 0; // Assign HSVPlane widget
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IHSVBar.h |