CDialogBoxPoint


Implements Point form as dialog box.

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

class CDialogBoxPoint :public virtual IFormPoint, public IDialogBoxPointProto
{
public:
    static const String ClassName; // Class name 

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

    bool setValue(const Point &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;

    CDialogBoxPoint();
    CDialogBoxPoint(IForm *parent);
    CDialogBoxPoint(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/Point/DialogBoxPoint.h