Cafu Engine
LastPage.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_LAST_PAGE_HPP_INCLUDED
8 #define CAFU_FONTWIZARD_LAST_PAGE_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 #include "wx/wizard.h"
12 
13 
14 class FontWizardT;
15 
16 
17 class LastPageT : public wxWizardPageSimple
18 {
19  public:
20 
21  LastPageT(FontWizardT* Parent);
22 
23 
24  private:
25 
26  FontWizardT* m_Parent;
27 
28  wxStaticText* m_FontName;
29 
30  void OnWizardPageChanged(wxWizardEvent& WE);
31  void OnWizardPageChanging(wxWizardEvent& WE);
32 
33  DECLARE_EVENT_TABLE()
34 };
35 
36 #endif
Definition: FontWizard.hpp:15
Definition: LastPage.hpp:17