]> git.saurik.com Git - wxWidgets.git/blob - include/wx/richtext/richtextdialogpage.h
Added full scaling to wxRTC
[wxWidgets.git] / include / wx / richtext / richtextdialogpage.h
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 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RICHTEXTDIALOGPAGE_H_
13 #define _WX_RICHTEXTDIALOGPAGE_H_
14
15 #if wxUSE_RICHTEXT
16
17 #include "wx/panel.h"
18 #include "wx/richtext/richtextuicustomization.h"
19
20 /**
21 @class wxRichTextDialogPage
22 The base class for formatting dialog pages.
23 **/
24
25 class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage: public wxPanel
26 {
27 public:
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_