]>
Commit | Line | Data |
---|---|---|
8db37e06 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/fdrepdlg.h | |
3 | // Purpose: wxFindReplaceDialog class | |
4 | // Author: Markus Greither | |
77ffb593 | 5 | // Modified by: 31.07.01: VZ: integrated into wxWidgets |
8db37e06 VZ |
6 | // Created: 23/03/2001 |
7 | // RCS-ID: | |
8 | // Copyright: (c) Markus Greither | |
65571936 | 9 | // Licence: wxWindows licence |
8db37e06 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
20ceebaa MW |
12 | #ifndef _WX_MSW_FDREPDLG_H_ |
13 | #define _WX_MSW_FDREPDLG_H_ | |
14 | ||
8db37e06 VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // wxFindReplaceDialog: dialog for searching / replacing text | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxFindReplaceDialog : public wxFindReplaceDialogBase | |
20 | { | |
21 | public: | |
22 | // ctors and such | |
23 | wxFindReplaceDialog() { Init(); } | |
24 | wxFindReplaceDialog(wxWindow *parent, | |
25 | wxFindReplaceData *data, | |
26 | const wxString &title, | |
27 | int style = 0); | |
28 | ||
29 | bool Create(wxWindow *parent, | |
30 | wxFindReplaceData *data, | |
31 | const wxString &title, | |
32 | int style = 0); | |
33 | ||
34 | virtual ~wxFindReplaceDialog(); | |
35 | ||
36 | // implementation only from now on | |
37 | ||
38 | wxFindReplaceDialogImpl *GetImpl() const { return m_impl; } | |
39 | ||
40 | // override some base class virtuals | |
cbe874bd | 41 | virtual bool Show(bool show = true); |
8db37e06 VZ |
42 | virtual void SetTitle( const wxString& title); |
43 | virtual wxString GetTitle() const; | |
44 | ||
45 | protected: | |
46 | virtual void DoGetSize(int *width, int *height) const; | |
47 | virtual void DoGetClientSize(int *width, int *height) const; | |
48 | virtual void DoSetSize(int x, int y, | |
49 | int width, int height, | |
50 | int sizeFlags = wxSIZE_AUTO); | |
51 | ||
52 | void Init(); | |
53 | ||
54 | wxString m_title; | |
55 | ||
56 | wxFindReplaceDialogImpl *m_impl; | |
57 | ||
58 | DECLARE_DYNAMIC_CLASS(wxFindReplaceDialog) | |
22f3361e | 59 | DECLARE_NO_COPY_CLASS(wxFindReplaceDialog) |
8db37e06 VZ |
60 | }; |
61 | ||
20ceebaa | 62 | #endif // _WX_MSW_FDREPDLG_H_ |