locationpickerservice/src/locationpickertoolbar.cpp
changeset 17 0f22fb80ebba
parent 15 13ae750350c9
child 18 9cb5557eea6b
child 20 cd10d5b85554
--- a/locationpickerservice/src/locationpickertoolbar.cpp	Fri Apr 16 14:54:12 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +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: LocationPickerToolBar implementation
-*
-*/
-
-#include "locationpickertoolbar.h"
-#include "locationpickertypes.h"
-#include "locationpickerappwindow.h"
-
-
-// --------------------------------------------------
-// LocationPickerToolBar::LocationPickerToolBar()
-// --------------------------------------------------
-LocationPickerToolBar::LocationPickerToolBar( LocationPickerAppWindow* aWindow, QGraphicsItem* aParent ):
-        HbToolBar( aParent )
-{
-    mWindow = aWindow;
-
-    // Add all tab and connect to the slot
-    mAllAction = addAction(HbIcon(KAllTab),QString(""));
-    connect(mAllAction, SIGNAL(triggered()), this, SLOT(AllTabTriggered()));
-
-    // Add collection tab and connect to the slot
-    mCollectionAction = addAction(HbIcon(KCollectionTab),QString(""));
-    connect(mCollectionAction, SIGNAL(triggered()), this, SLOT(CollectionTabTriggered()));
-
-     // Add search tab and connect to the slot
-    mSearchAction = addAction(HbIcon(KSearchTab),QString(""));
-    connect(mSearchAction, SIGNAL(triggered()), this, SLOT(SearchTabTriggered()));
-}
-
-// --------------------------------------------------
-//  LocationPickerToolBar::disableTabs()
-// --------------------------------------------------
-void LocationPickerToolBar::disableTabs()
-{
-    mAllAction->setDisabled( true );
-    mCollectionAction->setDisabled( true );
-    mSearchAction->setDisabled( true );
-}
-// --------------------------------------------------
-//  LocationPickerToolBar::AllTabTriggered()
-// --------------------------------------------------
-void LocationPickerToolBar::AllTabTriggered()
-{
-    int viewIndex = mWindow->currentViewIndex();
-    mWindow->setCurrentViewIndex(0);
-
-    if( viewIndex > KNumberOfMainViews-1 )
-    {
-        // the current view is collection view, so delete before switching to another view
-        mWindow->deleteCollectionContentView();
-    }
-}
-
-// --------------------------------------------------
-// LocationPickerToolBar::CollectionTabTriggered()
-// --------------------------------------------------
-void LocationPickerToolBar::CollectionTabTriggered()
-{
-    int viewIndex = mWindow->currentViewIndex();
-    mWindow->setCurrentViewIndex(2);
-   
-    if( viewIndex > KNumberOfMainViews-1 )
-    {
-        // the current view is collection view, so delete before switching to another view
-        mWindow->deleteCollectionContentView();
-    }
-}
-
-// --------------------------------------------------
-// LocationPickerToolBar::SearchTabTriggered()
-// --------------------------------------------------
-void LocationPickerToolBar::SearchTabTriggered()
-{
-    int viewIndex = mWindow->currentViewIndex();
-    mWindow->setCurrentViewIndex(1);
-    
-    if( viewIndex > KNumberOfMainViews-1 )
-    {
-        // the current view is collection view, so delete before switching to another view
-        mWindow->deleteCollectionContentView();
-    }
-}