Mercurial > mercurial > hgweb_madnm.cgi
view include/appconf.h @ 0:2f5584f0d127
first commit.
author | pyon@macmini |
---|---|
date | Sat, 08 Jun 2019 16:21:40 +0900 |
parents | |
children | f40a65687079 |
line wrap: on
line source
// Filename : appconf.h // Last Change: 2019-06-07 ‹à 14:39:29. // #pragma once #include <wx/wx.h> #include <wx/config.h> #include <wx/fileconf.h> #include <wx/filesys.h> class AppConf { private: wxFileConfig *config; wxString conf_file; public: AppConf(); ~AppConf(); wxRect LoadRect( void ); wxRect LoadMask( int i ); void LoadCcn( wxComboBox ccn, wxComboBox sss ); void SaveRect( wxRect rect ); };