ui/views/listview/inc/glxlistview.h
branchRCL_3
changeset 59 8e5f6eea9c9f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ui/views/listview/inc/glxlistview.h	Tue Aug 31 15:14:51 2010 +0300
@@ -0,0 +1,71 @@
+/*
+* 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:   ?Description
+*
+*/
+
+#ifndef GLXLISTVIEW_H
+#define GLXLISTVIEW_H
+
+//User Includes
+#include "glxview.h"
+
+//Qt/Orbit forward declarations
+class HbListView;
+class HbMainWindow;
+class HbAbstractViewItem;
+class HbDocumentLoader;
+
+class GlxListView : public GlxView
+{
+    Q_OBJECT
+    
+public :
+    GlxListView(HbMainWindow *window);
+    virtual ~GlxListView();
+    void activate() ;
+    void deActivate();
+    void setModel(QAbstractItemModel *model);
+    void addToolBar( HbToolBar *toolBar );
+    void initializeView( QAbstractItemModel *model, GlxView *preView );
+    QGraphicsItem * getAnimationItem( GlxEffect transtionEffect );
+
+public slots:
+    void itemSelected(const QModelIndex &  index);
+    void populated();
+    
+private slots:
+	void indicateLongPress( HbAbstractViewItem *item, QPointF coords );
+	void setVisvalWindowIndex();
+	
+private:
+	void addViewConnection();
+	void removeViewConnection();
+	void createListView();
+	/*
+	* This loads the docml and retrives the widgets/layout information from the 
+	* docml corresponding to the present orentation 
+	*/	
+	void loadListView();
+
+private:
+	HbListView         *mListView;
+	HbView             *mView;
+	HbMainWindow       *mWindow;  //no ownership
+	QAbstractItemModel *mModel ;
+	HbDocumentLoader   *mDocLoader; //Docml loader to load the widgets from docml
+	bool               mIsLongPress;
+};
+
+#endif /* GLXLISTVIEW_H */