CDialogBoxRectL


Implements RectL form as dialog box.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CDialogBoxRectL :public virtual IFormRectL, public IDialogBoxRectLProto
{
public:
    static const String ClassName; // Class name 

    RectL getValue() override;
    bool hasMin() override;
    bool hasMax() override;
    long long getMin() override;
    long long getMax() override;

    bool setValue(const RectL &value) override;
    bool setHasMin(const bool value) override;
    bool setHasMax(const bool value) override;
    bool setMin(const long long value) override;
    bool setMax(const long long value) override;

    void ActivateFirstEnabledInput() override;

    CDialogBoxRectL();
    CDialogBoxRectL(IForm *parent);
    CDialogBoxRectL(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/RectL/DialogBoxRectL.h