Mercurial > mercurial > hgweb_madnm.cgi
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/appconf.h Sat Jun 08 16:21:40 2019 +0900 @@ -0,0 +1,26 @@ +// 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 ); +}; +