homescreenapp/hsdomainmodel/inc/hsdomainmodeldatastructures.h
changeset 36 cdae8c6c3876
child 39 4e8ebe173323
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/homescreenapp/hsdomainmodel/inc/hsdomainmodeldatastructures.h	Fri Apr 16 14:54:01 2010 +0300
@@ -0,0 +1,104 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#ifndef HSDOMAINMODELDATASTRUCTURES_H
+#define HSDOMAINMODELDATASTRUCTURES_H
+
+#include <QRectF>
+#include "hsdomainmodel_global.h"
+
+class HSDOMAINMODEL_EXPORT HsSceneData
+{
+public:
+    HsSceneData() 
+      : id(-1), defaultPageId(-1), maximumPageCount(-1)
+    {}
+    
+    int     id;
+    QString portraitWallpaper;
+    QString landscapeWallpaper;
+    int     defaultPageId;
+    int     maximumPageCount;
+};
+
+class HSDOMAINMODEL_EXPORT HsPageData
+{
+public:
+    HsPageData() 
+      : id(-1), indexPosition(-1)
+    {}
+    
+    int id;    
+    int indexPosition;
+};
+
+class HSDOMAINMODEL_EXPORT HsWidgetData
+{
+public:
+    HsWidgetData()
+      : id(-1), 
+        pageId(-1)
+    {}
+
+    int     id;
+    QString uri;
+    int     pageId;
+};
+
+class HSDOMAINMODEL_EXPORT HsWidgetPresentationData
+{
+public:
+    HsWidgetPresentationData()
+        : x(0), y(0), width(0), height(0), zValue(0), 
+          widgetId(-1)
+    {}
+
+    QRectF geometry() const
+    {
+        return QRectF(x, y, width, height);
+    }
+
+    void setGeometry(const QRectF &geometry)
+    {
+        x      = geometry.x();
+        y      = geometry.y();
+        width  = geometry.width();
+        height = geometry.height();
+    }
+
+    void setPos(const QPointF &pos)
+    {
+        x = pos.x();
+        y = pos.y();
+    }
+
+    void setSize(const QSizeF &size)
+    {
+        width  = size.width();
+        height = size.height();
+    }
+
+    QString key;
+    qreal   x;
+    qreal   y;
+    qreal   width;
+    qreal   height;
+    qreal   zValue;
+    int     widgetId;
+};
+
+#endif // HSDOMAINMODELDATASTRUCTURES_H