30#ifndef FINDREPLACEDIALOG_H
31#define FINDREPLACEDIALOG_H
36#include <wx/radiobut.h>
45 const wxString &title,
47 int style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
54 bool GetRegexSearch()
const {
return m_contents->GetRegexSearch();}
65 void OnKeyDown(wxKeyEvent &WXUNUSED(event));
77 bool m_activateDuringConstruction;
82 static wxSize m_windowSize;
91 static wxPoint m_windowPos;
This file defines the class FindReplacePane.
The find+replace dialog.
Definition: FindReplaceDialog.h:42
wxFindReplaceData * GetData()
Returns the standard wxFindReplaceData data structure.
Definition: FindReplaceDialog.h:51
FindReplacePane * m_contents
The contents of the dialog.
Definition: FindReplaceDialog.h:72
void OnKeyDown(wxKeyEvent &WXUNUSED(event))
We catch a few hot keys here as we don't provide a menu that could declare them.
Definition: FindReplaceDialog.cpp:66
void SetFindString(const wxString &strng)
Set the string we are currently searching for.
Definition: FindReplaceDialog.h:57
void OnActivateEvent(wxActivateEvent &WXUNUSED(event))
Is called if this element looses or gets the focus.
Definition: FindReplaceDialog.cpp:73
Definition: FindReplacePane.h:48
The find+replace pane.
Definition: FindReplacePane.h:44