Implements PointL form as dialog box.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CDialogBoxPointL :public virtual IFormPointL, public IDialogBoxPointLProto
{
public:
static const String ClassName; // Class name
PointL getValue() override;
bool hasMin() override;
bool hasMax() override;
long long getMin() override;
long long getMax() override;
bool setValue(const PointL &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;
CDialogBoxPointL();
CDialogBoxPointL(IForm *parent);
CDialogBoxPointL(IControl *parent);
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/PointL/DialogBoxPointL.h |