Cafu Engine
PreviewPage.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_FONTWIZARD_PREVIEW_PAGE_HPP_INCLUDED
8 #define CAFU_FONTWIZARD_PREVIEW_PAGE_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 #include "wx/wizard.h"
12 
13 
14 class FontWizardT;
15 
16 
17 class PreviewPageT : public wxWizardPageSimple
18 {
19  public:
20 
21  PreviewPageT(FontWizardT* Parent);
22  ~PreviewPageT();
23 
24  private:
25 
26  FontWizardT* m_Parent;
27 
28  wxButton* m_PreviewButton;
29  wxStaticBitmap* m_PreviewBitmap;
30 
31  void OnPreviewButton(wxCommandEvent& CE);
32  void OnWizardPageChanged(wxWizardEvent& WE);
33 
34  DECLARE_EVENT_TABLE()
35 };
36 
37 #endif
Definition: PreviewPage.hpp:17
Definition: FontWizard.hpp:15