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