ui/viewmanagement/statehandler/src/glxdetailstate.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 06 Jul 2010 14:16:16 +0300
changeset 49 f291796e213d
parent 23 74c9f037fd5d
child 50 a0f57508af73
permissions -rw-r--r--
Revision: 201025 Kit: 2010127

/*
* 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
*
*/



#include <glxdetailstate.h>

GlxDetailState::GlxDetailState(GlxState *preState) : GlxState(GLX_DETAILSVIEW_ID, preState)
{
	
}


void GlxDetailState::eventHandler(qint32 &id)
{
    Q_UNUSED(id)	
}

void GlxDetailState::setTranstionParameter(NavigationDir dir, GlxEffect &effect, GlxViewEffect &viewEffect)
{
    GlxState *preState = previousState();
    effect = NO_EFFECT ;
    viewEffect = NO_VIEW ;
    
    if ( preState == NULL ) {
        return ;        
    }
    
    if ( dir == FORWARD_DIR ){
         if ( preState->compare( GLX_FULLSCREENVIEW_ID ) ) {
             effect = FULLSCREEN_TO_DETAIL ;
             viewEffect = BOTH_VIEW ;
         }
    }    
    else if ( dir == BACKWARD_DIR ) {
        if ( preState->compare( GLX_FULLSCREENVIEW_ID ) ) {
            effect = DETAIL_TO_FULLSCREEN;
            viewEffect = BOTH_VIEW;
        }       
    }    
}