123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- //stamp:0939443d7045d82f
- /*<------------------------------------------------------------------------------------------------->*/
- /*该文件由uiresbuilder生成,请不要手动修改*/
- /*<------------------------------------------------------------------------------------------------->*/
- #pragma once
- #include <res.mgr/snamedvalue.h>
- #define ROBJ_IN_CPP \
- namespace SOUI \
- {\
- const _R R;\
- const _UIRES UIRES;\
- }
- namespace SOUI
- {
- class _UIRES{
- public:
- class _UIDEF{
- public:
- _UIDEF(){
- XML_INIT = _T("UIDEF:XML_INIT");
- }
- const TCHAR * XML_INIT;
- }UIDEF;
- class _LAYOUT{
- public:
- _LAYOUT(){
- XML_MAINWND = _T("LAYOUT:XML_MAINWND");
- XML_LOGIN = _T("LAYOUT:XML_LOGIN");
- }
- const TCHAR * XML_MAINWND;
- const TCHAR * XML_LOGIN;
- }LAYOUT;
- class _values{
- public:
- _values(){
- string = _T("values:string");
- color = _T("values:color");
- skin = _T("values:skin");
- }
- const TCHAR * string;
- const TCHAR * color;
- const TCHAR * skin;
- }values;
- class _IMG{
- public:
- _IMG(){
- bg_login_png = _T("IMG:bg-login_png");
- bg_home_png = _T("IMG:bg-home_png");
- bg_user_png = _T("IMG:bg-user_png");
- }
- const TCHAR * bg_login_png;
- const TCHAR * bg_home_png;
- const TCHAR * bg_user_png;
- }IMG;
- class _ICON{
- public:
- _ICON(){
- ICON_LOGO = _T("ICON:ICON_LOGO");
- }
- const TCHAR * ICON_LOGO;
- }ICON;
- };
- const SNamedID::NAMEDVALUE namedXmlID[]={
- {L"_name_start",65535},
- {L"btn_close",65536} };
- class _R{
- public:
- class _name{
- public:
- _name(){
- _name_start = namedXmlID[0].strName;
- btn_close = namedXmlID[1].strName;
- }
- const wchar_t * _name_start;
- const wchar_t * btn_close;
- }name;
- class _id{
- public:
- const static int _name_start = 65535;
- const static int btn_close = 65536;
- }id;
- class _string{
- public:
- const static int title = 0;
- const static int ver = 1;
- }string;
- class _color{
- public:
- const static int blue = 0;
- const static int gray = 1;
- const static int green = 2;
- const static int red = 3;
- const static int white = 4;
- }color;
- };
- #ifdef R_IN_CPP
- extern const _R R;
- extern const _UIRES UIRES;
- #else
- extern const __declspec(selectany) _R & R = _R();
- extern const __declspec(selectany) _UIRES & UIRES = _UIRES();
- #endif//R_IN_CPP
- }
|