richtextdialogpage.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. #ifndef _WX_RICHTEXTDIALOGPAGE_H_
  11. #define _WX_RICHTEXTDIALOGPAGE_H_
  12. #if wxUSE_RICHTEXT
  13. #include "wx/panel.h"
  14. #include "wx/richtext/richtextuicustomization.h"
  15. /**
  16. @class wxRichTextDialogPage
  17. The base class for formatting dialog pages.
  18. **/
  19. class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage: public wxPanel
  20. {
  21. public:
  22. DECLARE_CLASS(wxRichTextDialogPage)
  23. wxRichTextDialogPage() {}
  24. wxRichTextDialogPage(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0)
  25. {
  26. Create(parent, id, pos, size, style);
  27. }
  28. DECLARE_BASE_CLASS_HELP_PROVISION()
  29. };
  30. #endif
  31. // wxUSE_RICHTEXT
  32. #endif
  33. // _WX_RICHTEXTDIALOGPAGE_H_