diff -r 000000000000 -r 96612d01cf9f mediasettings/mediasettingsapp/inc/MPSettingsStreamingContainer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mediasettings/mediasettingsapp/inc/MPSettingsStreamingContainer.h Mon Jan 18 20:21:12 2010 +0200 @@ -0,0 +1,79 @@ +/* +* 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 the License "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: Container class for Streaming settings list view.* +*/ + + +// Version : %version: 2 % + + + +#ifndef MPSETTINGSSTREAMINGCONTAINER_H +#define MPSETTINGSSTREAMINGCONTAINER_H + +// INCLUDES +#include "MPSettingsBaseContainer.h" + +// FORWARD DECLARATIONS +class CEikTextListBox; +class CMPSettingsModelForROP; +// CLASS DECLARATION + +/** +* CMPSettingsStreamingContainer container control class. +* +* @lib MediaSettings.app +* @since 2.0 +*/ +class CMPSettingsStreamingContainer : public CMPSettingsBaseContainer + { + public: // Constructors and destructor + + /** + * C++ default constructor. + */ + CMPSettingsStreamingContainer(CMPSettingsModelForROP* aModel); + + /** + * Destructor. + */ + virtual ~CMPSettingsStreamingContainer(); + + public: // Functions from base classes + + /** + * From CoeControl + */ + void GetHelpContext(TCoeHelpContext& aContext) const; + void FocusChanged(TDrawNow /*aDrawNow*/); + + protected: // Functions from base classes + + /** + * From CMPSettingsBaseContainer + */ + void ConstructComponentControlsL(); + + private: // Functions from base classes + + /** + * From CMPSettingsBaseContainer + */ + TInt TitleResourceId(); + CMPSettingsModelForROP* iModel; + }; + +#endif + +// End of File