CDialogBoxFind



Implements Find form as dialog box.

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

class CDialogBoxFind :public virtual IFormFind, public IDialogBoxFindProto
{
public:
    static const String ClassName; // Class name 

    String getText() override;
    bool isMatchWholeWords() override;
    bool isMatchCase() override;
    SearchDirection getSearchDirection() override;

    bool setText(const String &value) override;
    bool setMatchWholeWords(const bool value) override;
    bool setMatchCase(const bool value) override;
    bool setSearchDirection(const SearchDirection value) override;

    void ActivateFirstEnabledInput() override;

    CDialogBoxFind();
    CDialogBoxFind(IForm *parent);
    CDialogBoxFind(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/Find/DialogBoxFind.h