Describes multiple state property of type PointF.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPropertyPointFState :public virtual IPropertyState
{
public:
virtual PointF getValue(const String &state) = 0; // Return value depending on state
virtual bool hasMin() const = 0; // Whether has minimum limit
virtual bool hasMax() const = 0; // Whether has maximum limit
virtual float getMin() const = 0; // Return minimum limit
virtual float getMax() const = 0; // Return maximum limit
virtual bool setValue(const String &state, const PointF value) = 0; // Set value of state
virtual IPropertyPointFState *setHasMin(const bool value) = 0; // Set whether has minimum limit
virtual IPropertyPointFState *setHasMax(const bool value) = 0; // Set whether has maximum limit
virtual IPropertyPointFState *setMin(const float value) = 0; // Set minimum limit and hasMin to true
virtual IPropertyPointFState *setMax(const float value) = 0; // Set maximum limit and hasMax to true
};
Namespace: | nitisa |
Include: | Nitisa/Package/Interfaces/IPropertyPointFState.h |