Implements Replace form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormReplace :public virtual IFormReplace, public CForm
{
public:
    static const String ClassName; // Class name 
    String getText() override;
    String getReplace() override;
    bool isMatchWholeWords() override;
    bool isMatchCase() override;
    SearchDirection getSearchDirection() override;
    bool setText(const String &value) override;
    bool setReplace(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;
    CFormReplace(IWindow *window, IRenderer *renderer);
    ~CFormReplace() override;
    static CFormReplace *getInstance(); // Return form instance if any was created 
};
| Namespace: | nitisa::standard | 
| Include: | Standard/Forms/Replace/FormReplace.h |