]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/richtext/richtextdialogpage.h | |
3 | // Purpose: Formatting dialog page base class for wxRTC | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 2010-11-14 | |
7 | // Copyright: (c) Julian Smart | |
8 | // Licence: wxWindows Licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_RICHTEXTDIALOGPAGE_H_ | |
12 | #define _WX_RICHTEXTDIALOGPAGE_H_ | |
13 | ||
14 | #if wxUSE_RICHTEXT | |
15 | ||
16 | #include "wx/panel.h" | |
17 | #include "wx/richtext/richtextuicustomization.h" | |
18 | ||
19 | /** | |
20 | @class wxRichTextDialogPage | |
21 | The base class for formatting dialog pages. | |
22 | **/ | |
23 | ||
24 | class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage: public wxPanel | |
25 | { | |
26 | public: | |
27 | DECLARE_CLASS(wxRichTextDialogPage) | |
28 | wxRichTextDialogPage() {} | |
29 | wxRichTextDialogPage(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0) | |
30 | { | |
31 | Create(parent, id, pos, size, style); | |
32 | } | |
33 | ||
34 | DECLARE_BASE_CLASS_HELP_PROVISION() | |
35 | }; | |
36 | ||
37 | #endif | |
38 | // wxUSE_RICHTEXT | |
39 | ||
40 | #endif | |
41 | // _WX_RICHTEXTDIALOGPAGE_H_ |