idlehomescreen/xmluirendering/uiengine/inc/xnwallpaperview.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 00:04:13 +0200
changeset 5 c743ef5928ba
parent 0 f72a12da539e
child 12 9674c1a575e9
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2008 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:  Wallpaper view. View is used to get skin background
*               to image selection grid.
*
*/



#ifndef CXNWALLPAPERVIEW_H
#define CXNWALLPAPERVIEW_H

//  INCLUDES
#include <aknview.h>

class CXnWallpaperContainer;
class CXnUiEngine;
class TVwsViewId;
class CPeriodic;

// CONSTANTS
const TUid KWallpaperViewUid = { 0x200286DB };

/**
*  Data structure to be used with timer callback.
*
*  @since S60 v5.0
*/
NONSHARABLE_STRUCT( TXnWallpaperViewData )
    {
    TBool iMultiple;
    TUid iAppUid;
    TUid iViewUid;
    CPeriodic* iTimer; // Not own.
    };

// CLASS DECLARATION

/**
*  Wallpaper view.
*  Possible to define current Idle background image.
*
*  @since S60 v5.0
*/
NONSHARABLE_CLASS( CXnWallpaperView ) : public CAknView 
    {
public:

    /**
     * Two-phased constructor.
     * @return new instance of CXnWallpaperView.
     */
    static CXnWallpaperView* NewL( CXnUiEngine& aEngine );

    /**
     * Destructor.
     */
    ~CXnWallpaperView();

    /**
     * From CAknView.
     * Returns view id.
     * @return An unsigned integer (view id).
     */
    TUid Id() const;

private:

    /* From CAknView. */
    void DoActivateL(
        const TVwsViewId& aPrevViewId,
        TUid aCustomMessageId,
        const TDesC8& aCustomMessage );
    
    /* From CAknView. */
    void DoDeactivate();
    
    /**
     * C++ default constructor.
     */
    CXnWallpaperView( CXnUiEngine& aEngine );

    /**
     * By default Symbian 2nd phase constructor is private.
     */
    void ConstructL();

    /**
     * Callback function to be used with CPeriodic.
     */
    static TInt TimerCallbackL( TAny *aPtr );

private: // data

    /**
     * Wallpaper container.
     * Own.
     */
    CXnWallpaperContainer* iContainer;
    
    /**
     * Reference to uiengine.
     */
    CXnUiEngine& iEngine;
    
    /**
     * Data structure, that is transferred to TimerCallback.
     */
    TXnWallpaperViewData iData;
    
    /**
     * Periodic timer.
     * Own.
     */
    CPeriodic* iTimer;

    };

#endif      // CXNWALLPAPERVIEW_H

// End of File