[issue#] N/A
[problem] There is no member variable for new attribute 'use-decoration' of <tizen:box-size>
[cause] N/A
[solution] LiveboxInfo struct has been expanded for this
Change-Id: I7a94e6283d7148968ff970303465ec230d4a82a1
typedef std::list<AppControlInfo> AppControlInfoList;
- typedef std::list<std::pair<DPL::String, DPL::String> > BoxSizeList;
- typedef std::list<std::pair<DPL::String, DPL::String> > BoxLabelList;
-
struct LiveboxInfo
{
LiveboxInfo() { }
+ struct BoxSize
+ {
+ DPL::String m_size;
+ DPL::String m_preview;
+ DPL::String m_useDecoration;
+ };
+ typedef BoxSize BoxSizeInfo;
+ typedef std::list<BoxSizeInfo> BoxSizeList;
+
struct BoxContent
{
DPL::String m_boxSrc;
};
typedef BoxContent BoxContentInfo;
+ typedef std::list<std::pair<DPL::String, DPL::String> > BoxLabelList;
+
BoxLabelList m_label;
DPL::String m_icon;
DPL::String m_liveboxId;