diff options
author | Christi Scarborough <christi@coraline.org> | 2006-12-11 21:25:37 +0000 |
---|---|---|
committer | Christi Scarborough <christi@coraline.org> | 2006-12-11 21:25:37 +0000 |
commit | 0957acdb80f2d1288cca53e187295a2197ac54b0 (patch) | |
tree | 626195e47bf28952a7faf2a0ef3804019f4cd833 /rbutil/rbutilApp.h | |
parent | b9258cf159815051e3b45df96e22898518b9307d (diff) |
Initial revision
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11721 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilApp.h')
-rw-r--r-- | rbutil/rbutilApp.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/rbutil/rbutilApp.h b/rbutil/rbutilApp.h new file mode 100644 index 0000000000..18b3e0c737 --- /dev/null +++ b/rbutil/rbutilApp.h @@ -0,0 +1,41 @@ +//--------------------------------------------------------------------------- +// +// Name: rbutilApp.h +// Author: Christi Scarborough +// Created: 03/12/2005 00:35:02 +// +//--------------------------------------------------------------------------- + +#include <wx/wxprec.h> +#ifdef __BORLANDC__ + #pragma hdrstop +#endif +#ifndef WX_PRECOMP + #include <wx/wx.h> +#endif + +#include <wx/msgdlg.h> +#include <wx/config.h> +#include <wx/confbase.h> +#include <wx/fileconf.h> +#include <wx/string.h> +#include <wx/wfstream.h> +#include <wx/fs_inet.h> +#include <wx/fs_zip.h> +#include <wx/stdpaths.h> + +#include "rbutilFrm.h" +#include "rbutil.h" + +class rbutilFrmApp:public wxApp +{ +public: + bool OnInit(); + int OnExit(); + bool ReadGlobalConfig(rbutilFrm* myFrame); + void ReadUserConfig(void); + void WriteUserConfig(void); + +}; + + |