Add specific fields to config parser struct for livebox
authorYunchan Cho <yunchan.cho@samsung.com>
Fri, 25 Jan 2013 11:14:11 +0000 (20:14 +0900)
committerYunchan Cho <yunchan.cho@samsung.com>
Tue, 29 Jan 2013 09:21:39 +0000 (18:21 +0900)
[Issue#] N/A
[Problem] There is no fields for saving parsed mouse-event of <tizen:box-content> and type of <tizen:livebox>
[Cause] N/A
[Solution] Two fields for this are added to config parser struct

Change-Id: If7188a05879d095982fd6bb866f667e4b4d3c0ed

modules/widget_dao/include/dpl/wrt-dao-ro/config_parser_data.h

index 1a227ad..eed7bd4 100755 (executable)
@@ -237,7 +237,8 @@ class ConfigParserData
         struct BoxContent
         {
             DPL::String m_boxSrc;
-            BoxSizeList m_boxSize ;
+            DPL::String m_boxMouseEvent;
+            BoxSizeList m_boxSize;
             DPL::String m_pdSrc;
             DPL::String m_pdWidth;
             DPL::String m_pdHeight;
@@ -247,6 +248,7 @@ class ConfigParserData
         DPL::String m_icon;
         DPL::String m_liveboxId;
         DPL::String m_primary;
+        DPL::String m_type;
         DPL::String m_autoLaunch;
         DPL::String m_updatePeriod;
         BoxContentInfo m_boxInfo;