messagingappbase/mcesettings/inc/MceSettingsTitlePaneHandlerDialog.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 16:10:04 +0300
branchRCL_3
changeset 28 fbb813aef148
parent 0 72b543305e3a
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2002 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:  
*     Handles title pane in mce's settings dialog
*
*/



#ifndef __MCESETTINGSTITLEPANEHANDLERDIALOG_H__
#define __MCESETTINGSTITLEPANEHANDLERDIALOG_H__

//  INCLUDES

#include <AknDialog.h>
#include <eiklbo.h>

// CLASS DECLARATION

/**
*/
class CMceSettingsTitlePaneHandlerDialog :
    public CAknDialog,
    public MEikListBoxObserver
    {
    public:

        /**
        * Constructor.
        */
        CMceSettingsTitlePaneHandlerDialog();

        /**
        * Destructor.
        */
        virtual ~CMceSettingsTitlePaneHandlerDialog();

    protected:

        /**
         * Stores current title pane text and replaces it with new one
         * @param aTitleText new title pane text
         */
        void StoreTitleTextAndSetNewL( TInt aResourceId );

        /**
         * Stores current title pane text and replaces it with new one
         * @param aTitleText new title pane text
         */
        void StoreTitleTextAndSetNewL( const TDesC& aTitleText );

        /**
         * Restores title pane text with the text stored in
         * StoreTitleTextAndSetNewL.
         */
        void RestoreTitleTextL();

    private:
        HBufC*      iOldTitleText;
    };

#endif // __MCESETTINGSTITLEPANEHANDLERDIALOG_H__