Implements Find form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormFind :public virtual IFormFind, public CForm
{
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;
CFormFind(IWindow *window, IRenderer *renderer);
~CFormFind() override;
static CFormFind *getInstance(); // Return form instance if any was created
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/Find/FormFind.h |