From: Yunchan Cho Date: Tue, 18 Jun 2013 12:04:50 +0000 (+0900) Subject: Expand structure of LiveboxInfo for support of 'use-decoration' X-Git-Tag: submit/tizen_2.2/20130927.091100^2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38507e8a758eac0252282a245b2d80b1bc5dc2a1;p=platform%2Fframework%2Fweb%2Fwrt-commons.git Expand structure of LiveboxInfo for support of 'use-decoration' [issue#] N/A [problem] There is no member variable for new attribute 'use-decoration' of [cause] N/A [solution] LiveboxInfo struct has been expanded for this Change-Id: I7a94e6283d7148968ff970303465ec230d4a82a1 --- diff --git a/modules/widget_dao/include/dpl/wrt-dao-ro/config_parser_data.h b/modules/widget_dao/include/dpl/wrt-dao-ro/config_parser_data.h index a21f2f4..eceaaec 100644 --- a/modules/widget_dao/include/dpl/wrt-dao-ro/config_parser_data.h +++ b/modules/widget_dao/include/dpl/wrt-dao-ro/config_parser_data.h @@ -180,13 +180,19 @@ class ConfigParserData typedef std::list AppControlInfoList; - typedef std::list > BoxSizeList; - typedef std::list > BoxLabelList; - struct LiveboxInfo { LiveboxInfo() { } + struct BoxSize + { + DPL::String m_size; + DPL::String m_preview; + DPL::String m_useDecoration; + }; + typedef BoxSize BoxSizeInfo; + typedef std::list BoxSizeList; + struct BoxContent { DPL::String m_boxSrc; @@ -200,6 +206,8 @@ class ConfigParserData }; typedef BoxContent BoxContentInfo; + typedef std::list > BoxLabelList; + BoxLabelList m_label; DPL::String m_icon; DPL::String m_liveboxId;