1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextdialogpage.h
3 // Purpose: Formatting dialog page base class for wxRTC
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_RICHTEXTDIALOGPAGE_H_
12 #define _WX_RICHTEXTDIALOGPAGE_H_
17 #include "wx/richtext/richtextuicustomization.h"
20 @class wxRichTextDialogPage
21 The base class for formatting dialog pages.
24 class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage
: public wxPanel
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)
31 Create(parent
, id
, pos
, size
, style
);
34 DECLARE_BASE_CLASS_HELP_PROVISION()
41 // _WX_RICHTEXTDIALOGPAGE_H_