Content


NTL
Core
IPropertyRect

IPropertyRect



Describes single state property of type Rect.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

class IPropertyRect :public virtual IProperty
{
public:
    virtual Rect getValue() = 0; // Return value
    virtual bool hasMin() const = 0; // Whether has minimum limit
    virtual bool hasMax() const = 0; // Whether has maximum limit
    virtual bool isAllowEmpty() const = 0; // Whether empty rectangle is allowed or not
    virtual bool isAllowInvalid() const = 0; // Whether invalid rectangle is allowed or not
    virtual int getMin() const = 0; // Return minimum limit
    virtual int getMax() const = 0; // Return maximum limit

    virtual bool setValue(const Rect value) = 0; // Set value
    virtual IPropertyRect *setHasMin(const bool value) = 0; // Set whether has minimum limit
    virtual IPropertyRect *setHasMax(const bool value) = 0; // Set whether has maximum limit
    virtual IPropertyRect *setAllowEmpty(const bool value) = 0; // Set whether empty rectangle is allowed or not
    virtual IPropertyRect *setAllowInvalid(const bool value) = 0; // Set whether invalid rectangle is allowed or not
    virtual IPropertyRect *setMin(const int value) = 0; // Set minimum limit and hasMin to true
    virtual IPropertyRect *setMax(const int value) = 0; // Set maximum limit and hasMax to true
};
Namespace: nitisa
Include: Nitisa/Package/Interfaces/IPropertyRect.h