Mercurial > mercurial > hgweb_madnm.cgi
comparison include/appconf.h @ 0:2f5584f0d127
first commit.
author | pyon@macmini |
---|---|
date | Sat, 08 Jun 2019 16:21:40 +0900 |
parents | |
children | f40a65687079 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2f5584f0d127 |
---|---|
1 // Filename : appconf.h | |
2 // Last Change: 2019-06-07 ‹à 14:39:29. | |
3 // | |
4 #pragma once | |
5 | |
6 #include <wx/wx.h> | |
7 #include <wx/config.h> | |
8 #include <wx/fileconf.h> | |
9 #include <wx/filesys.h> | |
10 | |
11 class AppConf { | |
12 private: | |
13 wxFileConfig *config; | |
14 wxString conf_file; | |
15 | |
16 public: | |
17 AppConf(); | |
18 ~AppConf(); | |
19 | |
20 wxRect LoadRect( void ); | |
21 wxRect LoadMask( int i ); | |
22 void LoadCcn( wxComboBox ccn, wxComboBox sss ); | |
23 | |
24 void SaveRect( wxRect rect ); | |
25 }; | |
26 |