ultimatepp/uppdev/stdapp/stdappCfg.hpp
cxl 351994a6cc Adding uppdev....
git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-08-15 08:36:24 +00:00

36 lines
1 KiB
C++

#ifndef STDAPP_CFG_HPP
#define STDAPP_CFG_HPP
#include <stdapp/stdappDef.hpp>
class Cfg
{
public:
bool restore_cfg;
bool show_splash;
bool maximized;
bool minimized;
int main_window_left;
int main_window_top;
int main_window_width;
int main_window_height;
int language;
Cfg(
const int init_language = default_language,
const bool init_restore_cfg = default_restore_cfg,
const bool init_show_splash = default_show_splash,
const bool init_maximized = default_maximized,
const bool init_minimized = default_minimized,
const int init_main_window_left = default_main_window_left,
const int init_main_window_top = default_main_window_top,
const int init_main_window_width = default_main_window_width,
const int init_main_window_height = default_main_window_height
);
/* text configuration file selected
void Serialize(Stream& stream);
text configuration file selected */
};
#endif