CDialogBoxRect


Implements Rect form as dialog box.

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

class CDialogBoxRect :public virtual IFormRect, public IDialogBoxRectProto
{
public:
    static const String ClassName; // Class name 

    Rect getValue() override;
    bool hasMin() override;
    bool hasMax() override;
    int getMin() override;
    int getMax() override;

    bool setValue(const Rect &value) override;
    bool setHasMin(const bool value) override;
    bool setHasMax(const bool value) override;
    bool setMin(const int value) override;
    bool setMax(const int value) override;

    void ActivateFirstEnabledInput() override;

    CDialogBoxRect();
    CDialogBoxRect(IForm *parent);
    CDialogBoxRect(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/Rect/DialogBoxRect.h