Cafu Engine
SavePage.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_SAVE_PAGE_HPP_INCLUDED
8 #define CAFU_FONTWIZARD_SAVE_PAGE_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 #include "wx/wizard.h"
12 
13 
14 class FontWizardT;
15 
16 
17 class SavePageT : public wxWizardPageSimple
18 {
19  public:
20 
21  SavePageT(FontWizardT* Parent);
22  ~SavePageT();
23 
24  private:
25 
26  FontWizardT* m_Parent;
27 
28  wxTextCtrl* m_FontName;
29  wxStaticText* m_FontDir;
30 
31  wxString m_BaseDir;
32 
33  void OnFontNameChange(wxCommandEvent& CE);
34  void OnWizardPageChanged(wxWizardEvent& WE);
35  void OnWizardPageChanging(wxWizardEvent& WE);
36 
37  DECLARE_EVENT_TABLE()
38 };
39 
40 #endif
Definition: FontWizard.hpp:15
Definition: SavePage.hpp:17