presencesettingsui/inc/psuigsplugincontainer.h
branchRCL_3
changeset 34 2669f8761a99
parent 31 2580314736af
child 35 fbd2e7cec7ef
--- a/presencesettingsui/inc/psuigsplugincontainer.h	Thu Aug 19 10:19:02 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,120 +0,0 @@
-/*
-* Copyright (c) 2006 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 for Presence Settings UI GS plugin container.
-*
-*/
-
-
-
-
-#ifndef PSUIGSPLUGINCONTAINER_H
-#define PSUIGSPLUGINCONTAINER_H
-
-// INCLUDES
-#include <eikmobs.h>
-#include <gsbasecontainer.h>
-
-// FORWARD DECLARATIONS
-class CPSUIGSPlugin;
-
-// CLASS DECLARATION
-
-/**
-* CPSUIGSPluginContainer container class
-* @since Series60_3.2
-*/
-class CPSUIGSPluginContainer : public CGSBaseContainer,
-                               public MEikMenuObserver
-    {
-    public: // Constructors and destructor
-        
-        /**
-        * Default constructor.
-        */        
-        CPSUIGSPluginContainer( CPSUIGSPlugin* aView );
-
-        /**
-        * Destructor.
-        */
-        ~CPSUIGSPluginContainer();
-    
-    private: // Functions from base classes
-        
-        /**
-        * From CGSBaseContainer
-        * See base class.        
-        */    
-        void ConstructListBoxL( TInt aResLbxId );
-
-        /**
-        * From CGSBaseContainer
-        * See base class.        
-        */    
-        TKeyResponse OfferKeyEventL( 
-            const TKeyEvent& aKeyEvent,
-            TEventCode aType );        
-
-        /**
-        * From CCoeControl
-        * See base class.        
-        */ 
-        void GetHelpContext( TCoeHelpContext& aContext ) const;
-        
-        /**
-         * From MEikMenuObserver
-         */
-        void SetEmphasis( CCoeControl* /*aMenuControl*/, TBool /*aEmphasis*/ ){};
-      
-        
-        /**
-         * From MEikMenuObserver
-         */
-        void ProcessCommandL( TInt /*aCommandId*/ ){};
-        
-    private: // New
-
-        /**
-        * Sets empty texts to listbox
-        *
-        * @param none
-        */
-        void SetEmptyTextsToListboxL();
-
-    private: // Constructor
-    
-        /**
-        * Symbian OS constructor.
-        *
-        * @param aRect Listbox's rect.
-        */
-        void ConstructL( const TRect& aRect );
-        
-    private: // Data
-    
-        // Handle to view        
-        CPSUIGSPlugin* iView; // not owned
-        
-        /**
-         * Menubar.
-         * Own.
-         */
-        CEikMenuBar* iEikMenuBar;
-        
-#ifdef _DEBUG
-    friend class UT_CPSUIGSPluginContainer;
-#endif
-    };
-
-#endif //PSUIGSPLUGINCONTAINER_H   
-// End of File