homescreenapp/hsdomainmodel/inc/hspage.h
changeset 36 cdae8c6c3876
parent 35 f9ce957a272c
child 39 4e8ebe173323
--- a/homescreenapp/hsdomainmodel/inc/hspage.h	Fri Mar 19 09:27:44 2010 +0200
+++ b/homescreenapp/hsdomainmodel/inc/hspage.h	Fri Apr 16 14:54:01 2010 +0300
@@ -48,7 +48,6 @@
     bool addNewWidget(HsWidgetHost *widgetHost);
     void layoutNewWidgets();
     void resetNewWidgets();    
-
     bool deleteFromDatabase();
 
     QList<HsWidgetHost *> widgets() const;
@@ -57,11 +56,14 @@
     void setRemovable(bool removable);
 
     bool updateZValues();
-    
-    void setOnline(bool online = true);
 
     static HsPage *createInstance(const HsPageData &pageData);
 
+public slots:
+    void showWidgets();
+    void hideWidgets();
+    void setOnline(bool online = true);
+
 private:
     void connectWidget(HsWidgetHost *widget);
     void disconnectWidget(HsWidgetHost *widget);
@@ -73,8 +75,9 @@
     int mDatabaseId;    
     bool mRemovable;
     QList<HsWidgetHost*> mWidgets;
-    QList<HsWidgetHost *> mNewWidgets;
-
+    QList<HsWidgetHost*> mNewWidgets;
+    QMap<QString, QPointF> mStartPoint; 
+    
     HOMESCREEN_TEST_FRIEND_CLASS(TestRuntimeServices)
 };