diff -r 000000000000 -r 96612d01cf9f mediasettings/mediasettingsapp/inc/MPSettingsMainView.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mediasettings/mediasettingsapp/inc/MPSettingsMainView.h Mon Jan 18 20:21:12 2010 +0200 @@ -0,0 +1,128 @@ +/* +* 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: MPSettingsMainView.h* +*/ + + +// Version : %version: 2 % + + + + +#ifndef MPSETTINGSMAINVIEW_H +#define MPSETTINGSMAINVIEW_H + +// INCLUDES +#include //MEikListBoxObserver +#include "MPSettingsBaseView.h" //CMPSettingsBaseView +#include "MPSettingsModelForROP.h" + +// CLASS DECLARATION + +/** +* CMPSettingsMainView view class. +* +* @lib MediaSettings.app +* @since 2.0 +*/ +class CMPSettingsMainView : public CMPSettingsBaseView, + public MEikListBoxObserver + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CMPSettingsMainView* NewLC(CArrayFix* aViewIds, CMPSettingsModelForROP* aModel, TBool iConstructAsGsPlugin); + + /** + * Destructor. + */ + virtual ~CMPSettingsMainView(); + + public: // Functions from base classes + + /** + * From CAknView + */ + TUid Id() const; + + /** + * From MEikMenuObserver + */ + void HandleCommandL(TInt aCommand); + + public: // New + + /** + * Returns the index of the active folder. + * @return 0: video + * 1: streaming + */ + TInt ActiveFolder(); + + /** + * Sets the index of the active folder. + * @param aCurrentItem Index of current item. + */ + void SetActiveFolder(TInt aCurrentItem); + + protected: // Functions from base classes + + /** + * From MEikListBoxObserver + */ + void HandleListBoxEventL(CEikListBox* aListBox, + TListBoxEvent aEventType); + + /** + * From CMPSettingsBaseView + */ + void DynInitContainerL(); + + /** + * From CMPSettingsBaseView + */ + CMPSettingsBaseContainer* NewContainerL(); + + private: + + /** + * C++ default constructor. + */ + CMPSettingsMainView(CArrayFix* aViewIds, CMPSettingsModelForROP* aModel, TBool iConstructAsGsPlugin); + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + + private: // New + + /** + * Handles listbox selection. + */ + virtual void HandleListBoxSelectionL(); + + private: // Data + CArrayFix* iViewIds; + + CMPSettingsModelForROP* iModel; + TBool iGsPlugin; + + }; + +#endif // MPSETTINGSMAINVIEW_H + +// End of File