]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/modules/lseditor/finddlg.h
merged 2.2 branch
[wxWidgets.git] / utils / wxPython / modules / lseditor / finddlg.h
diff --git a/utils/wxPython/modules/lseditor/finddlg.h b/utils/wxPython/modules/lseditor/finddlg.h
deleted file mode 100644 (file)
index dbceaa2..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#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