From 38507e8a758eac0252282a245b2d80b1bc5dc2a1 Mon Sep 17 00:00:00 2001 From: Yunchan Cho Date: Tue, 18 Jun 2013 21:04:50 +0900 Subject: [PATCH] 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 --- .../include/dpl/wrt-dao-ro/config_parser_data.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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; -- 2.34.1