CDialogBoxRectF


Implements RectF form as dialog box.

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

class CDialogBoxRectF :public virtual IFormRectF, public IDialogBoxRectFProto
{
public:
    static const String ClassName; // Class name 

    RectF getValue() override;
    bool hasMin() override;
    bool hasMax() override;
    float getMin() override;
    float getMax() override;

    bool setValue(const RectF &value) override;
    bool setHasMin(const bool value) override;
    bool setHasMax(const bool value) override;
    bool setMin(const float value) override;
    bool setMax(const float value) override;

    void ActivateFirstEnabledInput() override;

    CDialogBoxRectF();
    CDialogBoxRectF(IForm *parent);
    CDialogBoxRectF(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/RectF/DialogBoxRectF.h