IFormRectL


Describes minimum required functionality from RectL form.

You can find more information in comments below.

class IFormRectL
{
public:
    virtual RectL getValue() = 0; // Return value 
    // Whether there are limits 
    virtual bool hasMin() = 0;
    virtual bool hasMax() = 0;
    // Return limits 
    virtual long long getMin() = 0;
    virtual long long getMax() = 0;

    virtual bool setValue(const RectL &value) = 0; // Set value 
    // Set whether there are limits 
    virtual bool setHasMin(const bool value) = 0;
    virtual bool setHasMax(const bool value) = 0;
    // Set limits 
    virtual bool setMin(const long long value) = 0;
    virtual bool setMax(const long long value) = 0;

    virtual void ActivateFirstEnabledInput() = 0;
};
Namespace: nitisa::standard
Include: Standard/Forms/IFormRectL.h