camerauis/cameraapp/generic/GsCamcorderPlugin/inc/GSCamcorderSettingsBaseView.h
branchRCL_3
changeset 24 bac7acad7cb3
parent 0 1ddebce53859
child 25 2c87b2808fd7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/camerauis/cameraapp/generic/GsCamcorderPlugin/inc/GSCamcorderSettingsBaseView.h	Wed Sep 01 12:30:54 2010 +0100
@@ -0,0 +1,159 @@
+/*
+* Copyright (c) 2008 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:  Base class for Photo/Video settings view
+*
+*  Copyright (c) 2008 Nokia Corporation.
+*  This material, including documentation and any related 
+*  computer programs, is protected by copyright controlled by 
+*  Nokia Corporation. All rights are reserved. Copying, 
+*  including reproducing, storing, adapting or translating, any 
+*  or all of this material requires the prior written consent of 
+*  Nokia Corporation. This material also contains confidential 
+*  information which may not be disclosed to others without the 
+*  prior written consent of Nokia Corporation.
+*
+*
+*/
+
+
+
+#ifndef GSCAMCORDERSETTINGSBASEVIEW_H
+#define GSCAMCORDERSETTINGSBASEVIEW_H
+
+// INCLUDES
+#include <aknview.h>
+#include <eiklbo.h>
+
+
+// CLASS DECLARATION
+class CGSCamcorderSettingsContainer;
+
+
+/**
+* Image settings page view class.
+* @since
+*/
+class CGSCamcorderSettingsBaseView : public CAknView,
+                                  public MEikListBoxObserver
+
+    {
+    public: // Constructors and destructor
+
+        /**
+        * Destructor.
+        */
+        virtual ~CGSCamcorderSettingsBaseView();
+
+        /**
+        * From CEikAppUi
+        * Handle skin change event.
+        * @since 3.1
+        */
+        void HandleClientRectChange();
+        
+        /**
+        * From CCoeControl
+        * Handle skin change event.
+        */
+        void HandleResourceChange( TInt aType );
+
+    public: // New functions
+        /*
+        * Check whether this view been lauched from General Settings.
+        */
+        TBool LaunchedFromGS() const;
+
+    public: // Functions from base classes
+        
+        /**
+        * From CAknView, handle commands
+        * @param aCommand command to be handled
+        */
+        void HandleCommandL( TInt aCommand );
+
+        /**
+        * From CAknView Activate this view
+        * @param aPrevViewId 
+        * @param aCustomMessageId 
+        * @param aCustomMessage 
+        */
+        void DoActivateL( const TVwsViewId& aPrevViewId,
+                          TUid aCustomMessageId,
+                          const TDesC8& aCustomMessage );                          
+
+        /**
+        * From MEikMenuObserver Dynamically customize menu items
+        * @param aResourceId Menu pane resource ID
+        * @param aMenuPane Menu pane pointer
+        */
+        void DynInitMenuPaneL( TInt aResourceId, CEikMenuPane* aMenuPane );
+
+        /**
+        * From CAknView Deactivate this view
+        */
+        void DoDeactivate();       
+       
+        /**
+        * Creates new container.
+        * @since 3.1
+        */
+        void NewContainerL();
+        
+        /**
+        * Get CameraGSPlugin's ccontainer.
+        * @since 3.1
+        */       
+        CGSCamcorderSettingsContainer* Container();
+        
+        /**
+        * Sets Navipane text
+        * @since 3.1
+        */
+        void SetNaviPaneL();
+        
+        /**
+        * Creates new container.
+        * @since 3.1
+        */   
+        void CreateContainerL();
+         
+    public: // from MEikListBoxObserver
+
+        /**
+        * Handles listbox events.
+        * @param aListBox Listbox where the event occurred.
+        * @param aEventType Event type.
+        * 
+        */
+        void HandleListBoxEventL( CEikListBox* aListBox,
+                                  TListBoxEvent aEventType );        
+
+    protected:
+        /**
+        * C++ constructor.
+        * @since 3.1
+        */
+        CGSCamcorderSettingsBaseView( CCamStaticSettingsModel& aModel,
+                                      TBool aPhotoSettings );
+
+    private: // Data
+        CCamStaticSettingsModel& iModel;
+        TBool iSecondaryCameraSettings;
+        TBool iPhotoSettings;
+        CGSCamcorderSettingsContainer* iContainer;
+    };
+
+#endif
+
+// End of File