1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextdialogpage.h
3 // Purpose: Formatting dialog page base class for wxRTC
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RICHTEXTDIALOGPAGE_H_
13 #define _WX_RICHTEXTDIALOGPAGE_H_
18 #include "wx/richtext/richtextuicustomization.h"
21 @class wxRichTextDialogPage
22 The base class for formatting dialog pages.
25 class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage
: public wxPanel
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_