locationpickerservice/inc/locationpickerlandscapeview.h
changeset 31 8db05346071b
parent 30 96df3ab41000
child 32 9bd2e0ffe298
child 35 59575560d1e6
--- a/locationpickerservice/inc/locationpickerlandscapeview.h	Wed Jun 23 18:07:15 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,130 +0,0 @@
-/*
-* Copyright (c) 2010 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: LocationPickerLandscapeView declaration
-*
-*/
-
-#ifndef LOCATIONPICKERLANDSCAPEVIEW_H_
-#define LOCATIONPICKERLANDSCAPEVIEW_H_
-
-
-
-#include <HbView>
-#include <hbdocumentloader.h>
-#include "locationpickertypes.h"
-
-//forward declarations
-class HbListView;
-class QStandardItemModel;
-class HbAction;
-class QGraphicsLinearLayout;
-class HbLabel;
-class HgWidgetDataModel;
-class HbTextItem;
-class HgMediawall;
-class QPoint;
-class HbMenu;
-
-class LocationPickerProxyModel;
-class LocationPickerCollectionContent;
-class LocatipnPickerProxyModel;
-
-
-
-/**  
- * Class defines the location picker view
- */
-class LocationPickerLandscapeView : public HbView
-{
-
-    Q_OBJECT
-public:
-    // constructor
-    LocationPickerLandscapeView( HbDocumentLoader* aLoader );
-    // destructor
-    ~LocationPickerLandscapeView();
-public:
-    //get the items from docml and connect to respective slots
-    void init( Qt::Orientation aOrientation, QStandardItemModel *aModel );
-    //Set the appropriate model on hgwidget
-    void manageHgWidget();
-    //Create collection list and sets to list view
-    void setCollectionData( quint32 aCategoryId );
-    //Set Ctegory ID
-    void setCategoryID( quint32 aCategoryId  );
-    //Get the view type
-    TViewType getViewType();
-    //set the view type
-    void setViewType( TViewType aViewType );
-    //clear collection content
-    void clearContentModel();
-private slots:
-    //slot to handle list item actions     
-    void handleActivated( const QModelIndex &aIndex );
-    //slots to handle menu action items     
-    void sortDescending();
-    void sortAscending();
-    void backButtonTriggered();
-    //slot to handle search tab
-    void searchTabTriggered();
-	//launch context menu
-    void launchPopUpMenu(const QModelIndex &aIndex, const QPointF &aPoint);
-	//handle long press
-    void handleLongPress();
-public slots:
-    //slot to handle all tab
-    void allTabTriggered();
-    //slot to handle collection tab
-    void colectionTabTriggered();
-signals:
-    void switchToSearchView();
-    void handleCollectionList();
-    void selectItem( quint32 aLm );
-    void completeService();
-    void sendCategoryID( quint32 acategoryId );
-    void collectionContentExited();
-private:
-    //document loader
-    HbDocumentLoader* mDocumentLoader;
-    //locationPickerProxyModel
-    LocationPickerProxyModel *mProxyModel;
-    QStandardItemModel *mStandardModel;
-    //actions
-    HbAction *mAllAction;
-    HbAction *mCollectionAction;
-    HbAction *mSearchAction;
-    HbAction *mAscendingAction;
-    HbAction *mDescendingAction;
-    //secondary back action
-    HbAction *mLandscapeBackAction;
-    //collection content 
-    LocationPickerCollectionContent *mCollectionContent;
-    //view type
-    TViewType mViewType ;
-    //get the collection/category id
-    quint32 mCategoryId;
-	//model for hurriganes
-    HgWidgetDataModel       *mModel;
-	//hurriganes 
-    HgMediawall                *mWidget;
-	//Linear layout
-    QGraphicsLinearLayout   *mLayout;
-	//text Item to display No Entry
-    HbTextItem*             mEmptyLabel;
-    QModelIndex mIndex;
-    //context menu
-    HbMenu* mLongPressMenu;
-};
-
-#endif /* LOCATIONPICKERLANDSCAPEVIEW_H_ */