comparison include/main.h @ 2:7fe3417cefc8

GUI.
author pyon@macmini
date Tue, 02 Oct 2018 21:20:05 +0900
parents eaa27e4ed5be
children db4813125eb8
comparison
equal deleted inserted replaced
1:eaa27e4ed5be 2:7fe3417cefc8
1 // Filename : main.h 1 // Filename : main.h
2 // Last Change: 2018-10-01 Mon 23:13:17. 2 // Last Change: 2018-10-02 Tue 21:17:28.
3 // 3 //
4 #include <wx/wx.h> 4 #include <wx/wx.h>
5 #include <wx/config.h> 5 #include <wx/config.h>
6 #include <wx/fileconf.h> 6 #include <wx/fileconf.h>
7 7
15 { 15 {
16 DECLARE_CLASS( MyApp ) 16 DECLARE_CLASS( MyApp )
17 private: 17 private:
18 wxFileConfig *config; 18 wxFileConfig *config;
19 wxString conf_file; 19 wxString conf_file;
20 wxString m_server;
20 bool develop; 21 bool develop;
21 22
22 public: 23 public:
23 wxRect rect; 24 wxRect rect;
24 25
29 virtual int OnExit(); 30 virtual int OnExit();
30 31
31 void InitSetting(); 32 void InitSetting();
32 void SaveSetting(); 33 void SaveSetting();
33 void GetData(); 34 void GetData();
34 void DeleteData();
35 }; 35 };
36 36
37 DECLARE_APP(MyApp) 37 DECLARE_APP( MyApp )
38 38