diff -r 8bda91a87a00 -r 8ee96d21d9bf gssettingsuis/Gs/GSConPlugin/inc/GSConPlugin.h --- a/gssettingsuis/Gs/GSConPlugin/inc/GSConPlugin.h Thu Aug 19 10:12:30 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,138 +0,0 @@ -/* -* 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: Header file for GSConPlugin. -* -*/ - -#ifndef GSCONPLUGIN_H -#define GSCONPLUGIN_H - -// Includes -#include -#include -#include -#include -#include - -// Classes referenced -class CAknViewAppUi; -class RConeResourceLoader; -class CGulIcon; -class CGSTabHelper; - -// Constants -_LIT( KGSConPluginResourceFileName, "z:GSConPluginRsc.rsc" ); -_LIT( KGSConPluginIconDirAndName, "z:GSConPlugin.mbm"); // Use KDC_BITMAP_DIR - -// CLASS DECLARATION - - -/** -* CGSConPlugin. -* -* @since Series60_3.1 -*/ -class CGSConPlugin : public CGSParentPlugin - { - - public: // Constructors and destructor - - /** - * Symbian OS two-phased constructor - * @return - */ - static CGSConPlugin* NewL( TAny* aInitParams ); - - /** - * Destructor. - */ - ~CGSConPlugin(); - - public: // From CAknView - - /** - * See base class. - */ - TUid Id() const; - - /** - * See base class. - */ - void DoActivateL( const TVwsViewId& aPrevViewId, - TUid aCustomMessageId, - const TDesC8& aCustomMessage ); - /** - * See base class. - */ - void DoDeactivate(); - - public: // From CGSParentPlugin - - /** - * See base class. - */ - TUid UpperLevelViewUid(); - - /** - * See base class. - */ - TGSListboxTypes ListBoxType(); - - /** - * See base class. - */ - void GetHelpContext( TCoeHelpContext& aContext ); - - public: // From CGSPluginInterface - - /** - * See base class. - */ - void GetCaptionL( TDes& aCaption ) const; - - /** - * See base class. - */ - CGulIcon* CreateIconL( const TUid aIconType ); - - /** - * See base class. - */ - TInt PluginProviderCategory() const; - - - protected: // New - - /** - * C++ default constructor. - */ - CGSConPlugin(); - - /** - * Symbian OS default constructor. - */ - void ConstructL(); - - private: // Data - - // Resource loader. - RConeResourceLoader iResources; - - // Tab helper. - CGSTabHelper* iTabHelper; - }; - - -#endif // GSCONPLUGIN_H -// End of File