lots'o' wxpython modules files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
38
utils/wxPython/modules/lseditor/finddlg.h
Normal file
38
utils/wxPython/modules/lseditor/finddlg.h
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef __FINDDLG_G__
|
||||
#define __FINDDLG_G__
|
||||
|
||||
#include "wx/dialog.h"
|
||||
#include "wx/checkbox.h"
|
||||
#include "wx/combobox.h"
|
||||
|
||||
#include "wxstldefs.h"
|
||||
|
||||
class wxFindTextDialog : public wxDialog
|
||||
{
|
||||
public:
|
||||
static wxString mLastExpr;
|
||||
static bool mMatchCase;
|
||||
static bool mMatchWord;
|
||||
static StrListT mExprList;
|
||||
|
||||
wxCheckBox* mpCaseCheck;
|
||||
wxCheckBox* mpWordCheck;
|
||||
|
||||
public:
|
||||
wxFindTextDialog( wxWindow* parent, const string& expr = "" );
|
||||
|
||||
bool MatchWordOn() { return mMatchWord; }
|
||||
bool MatchCaseOn() { return mMatchCase; }
|
||||
wxString GetExpr() { return mLastExpr; }
|
||||
void SetExpr( const wxString& expr );
|
||||
|
||||
wxComboBox* GetCombo();
|
||||
|
||||
virtual bool TransferDataFromWindow();
|
||||
|
||||
void OnKeyHook( wxKeyEvent& event );
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user