skins/AknSkins/wppinc/aknswallpaperplugin.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 09:14:12 +0200
changeset 0 05e9090e2422
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 2005 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:  AIW provider for set as wallpaper functionality.
*
*/

#ifndef C_CAKNSWALLPAPERPLUGIN_H
#define C_CAKNSWALLPAPERPLUGIN_H

#include <AiwServiceIfMenu.h>
#include <ConeResLoader.h>

/**
 *  CAknsWallpaperPlugin plugin implementation.
 *
 *  This plugin implements an AIW provider for setting main wallpaper for the device.
 *
 *  @since S60 v3.1
 */
class CAknsWallpaperPlugin : public CAiwServiceIfMenu 
    {
    public: 
        static CAknsWallpaperPlugin* NewL();
        virtual ~CAknsWallpaperPlugin();

    private: 
    // from base class CAiwServiceIfMenu
    
        void InitialiseL(
            MAiwNotifyCallback& aFrameworkCallback,
            const RCriteriaArray& aInterest);

        void HandleServiceCmdL(
            const TInt& aCmdId,
            const CAiwGenericParamList& aInParamList,
            CAiwGenericParamList& aOutParamList,
            TUint aCmdOptions = 0,
            const MAiwNotifyCallback* aCallback = NULL);
            
        void InitializeMenuPaneL(
            CAiwMenuPane& aMenuPane,
            TInt aIndex,
            TInt aCascadeId,
            const CAiwGenericParamList& aInParamList);

        void HandleMenuCmdL(
            TInt aMenuCmdId,
            const CAiwGenericParamList& aInParamList,
            CAiwGenericParamList& aOutParamList,
            TUint aCmdOptions = 0,
            const MAiwNotifyCallback* aCallback = NULL);

    private:
        CAknsWallpaperPlugin();
        void ConstructL();

    private: // New
        void DisplayInfoNoteL(TInt aTextResourceId);
        TBool IsMimeTypeSupportedL(const TDesC& aMimeTypeString);
        TPtrC GetAiwParamAsDescriptor(
                const CAiwGenericParamList& aParamList,
                TGenericParamId aParamType);


    private:
        RConeResourceLoader iConeResLoader;        
    };
    
#endif // C_CAKNSWALLPAPERPLUGIN_H

// End of file.