--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mediasettings/mediasettingsapp/inc/MPSettingsProxyContainer.h Mon Jan 18 20:21:12 2010 +0200
@@ -0,0 +1,94 @@
+/*
+* 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: Declares container control for application.*
+*/
+
+
+// Version : %version: 2 %
+
+
+
+#ifndef MPSETTINGSPROXYCONTAINER_H
+#define MPSETTINGSPROXYCONTAINER_H
+
+// INCLUDES
+#include "MPSettingsBaseContainer.h"
+
+// FORWARD DECLARATIONS
+class CMPSettingsProxySettingItemList;
+class CMPSettingsModelForROP;
+
+
+// CLASS DECLARATION
+
+/**
+* CMPSettingsProxyContainer container control class.
+*
+* @lib MediaSettings.app
+* @since 2.0
+*/
+class CMPSettingsProxyContainer : public CMPSettingsBaseContainer
+ {
+ public: // Constructors and destructor
+
+ /**
+ * C++ default constructor.
+ */
+ CMPSettingsProxyContainer(CMPSettingsModelForROP* aModel);
+
+ /**
+ * Destructor.
+ */
+ virtual ~CMPSettingsProxyContainer();
+
+ public: // New
+
+ /**
+ * Edits current setting item.
+ * @since 2.0
+ */
+ void EditCurrentItemFromMenuL(TBool iMenuOption);
+
+ public: // Functions from base classes
+
+ /**
+ * From CoeControl
+ */
+ void GetHelpContext(TCoeHelpContext& aContext) const;
+ void FocusChanged(TDrawNow /*aDrawNow*/);
+ void SizeChanged();
+ void HandleResourceChange(TInt aType);
+
+ protected: // Functions from base classes
+
+ /**
+ * From CMPSettingsBaseContainer
+ */
+ void ConstructComponentControlsL();
+
+ private: // Functions from base classes
+
+ /**
+ * From CMPSettingsBaseContainer
+ */
+ TInt TitleResourceId();
+
+ private:
+ CMPSettingsProxySettingItemList* iSettingList;
+ CMPSettingsModelForROP* iModel;
+ };
+
+#endif // MPSETTINGSPROXYCONTAINER_H
+
+// End of File