Contents Up Previous Next

wxFindReplaceData

wxFindReplaceData holds the data for wxFindReplaceDialog. It is used to initialize the dialog with the default values and will keep the last values from the dialog when it is closed. It is also updated each time a wxFindDialogEvent is generated so instead of using the wxFindDialogEvent methods you can also directly query this object.

Note that all SetXXX() methods may only be called before showing the dialog and calling them has no effect later.

Include files

#include <wx/fdrepdlg.h>
Derived from

wxObject

Data structures

Flags used by wxFindReplaceData::GetFlags() and wxFindDialogEvent::GetFlags():

enum wxFindReplaceFlags
{
    // downward search/replace selected (otherwise - upwards)
    wxFR_DOWN       = 1,

    // whole word search/replace selected
    wxFR_WHOLEWORD  = 2,

    // case sensitive search/replace selected (otherwise - case insensitive)
    wxFR_MATCHCASE  = 4
}
These flags can be specified in wxFindReplaceDialog ctor or Create():

enum wxFindReplaceDialogStyles
{
    // replace dialog (otherwise find dialog)
    wxFR_REPLACEDIALOG = 1,

    // don't allow changing the search direction
    wxFR_NOUPDOWN      = 2,

    // don't allow case sensitive searching
    wxFR_NOMATCHCASE   = 4,

    // don't allow whole word searching
    wxFR_NOWHOLEWORD   = 8
}
Members

wxFindReplaceData::wxFindReplaceData
wxFindReplaceData::GetFindString
wxFindReplaceData::GetReplaceString
wxFindReplaceData::GetFlags
wxFindReplaceData::SetFlags
wxFindReplaceData::SetFindString
wxFindReplaceData::SetReplaceString


wxFindReplaceData::wxFindReplaceData

wxFindReplaceData(wxUint32 flags = 0)

Constuctor initializes the flags to default value (0).


wxFindReplaceData::GetFindString

const wxString& GetFindString()

Get the string to find.


wxFindReplaceData::GetReplaceString

const wxString& GetReplaceString()

Get the replacement string.


wxFindReplaceData::GetFlags

int GetFlags() const

Get the combination of wxFindReplaceFlags values.


wxFindReplaceData::SetFlags

void SetFlags(wxUint32 flags)

Set the flags to use to initialize the controls of the dialog.


wxFindReplaceData::SetFindString

void SetFindString(const wxString& str)

Set the string to find (used as initial value by the dialog).


wxFindReplaceData::SetReplaceString

void SetReplaceString(const wxString& str)

Set the replacement string (used as initial value by the dialog).