tvout/inc/glxhdmicontroller.h
changeset 26 c499df2dbb33
parent 24 99ad1390cd33
child 27 0d818da5a659
child 29 2c833fc9e98f
child 40 112f0ac2d1f0
--- a/tvout/inc/glxhdmicontroller.h	Fri Apr 16 14:58:46 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,132 +0,0 @@
-/*
-* Copyright (c) 2008-2009 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:    Handles & propogates UI state change notifications.
-*
-*/
-
-#ifndef GLXHDMICONTROLLER_H_
-#define GLXHDMICONTROLLER_H_
-
-// Internal includes
-#include <mglxtvobserver.h>     // for inteface MGlxTvObserver
-
-class CGlxHdmiContainer;
-class CGlxHdmiSurfaceUpdater;
-class CGlxTv;
-
-/*
- * This class will be called from FS and Slideshow for its requirements 
- */
-class CGlxHdmiController : public CBase,
-                            public MGlxTvObserver              // for TV Out
-    {
-public:
-    /*
-     * NewLC 
-     * @param1 - Image file path default to NULL
-     */
-    IMPORT_C static CGlxHdmiController* NewL();
-
-    /*
-     * Destructor
-     */
-    IMPORT_C ~CGlxHdmiController();
-    
-    /*
-     * Update Image
-     * @param1 - Image file path
-     */
-    IMPORT_C void SetImageL(const TDesC& aImageFile, TBool aStore = ETrue);
-
-    /*
-     * To intimate that the item is not supported.  
-     */
-    IMPORT_C void ItemNotSupported();
-    
-    /*
-     * Activating zoom in posting mode 
-     */
-    IMPORT_C void ActivateZoom(TBool aAutoZoomOut);
-    /*
-     * Deactivating zoom in posting mode 
-     */
-    IMPORT_C void DeactivateZoom();
-    
-    /*
-     * ShiftToCloningMode
-     */
-    IMPORT_C void ShiftToCloningMode();
-    
-    /*
-     * ShiftToPostingMode
-     */
-    IMPORT_C void ShiftToPostingMode();
-
-    /*
-     * Tells if HDMi is Connected.
-     */
-    IMPORT_C TBool IsHDMIConnected();
-
-private:// From MGlxTvObserver
-    virtual void HandleTvStatusChangedL ( TTvChangeType aChangeType );
-
-private:
-    /*
-     * Constructor
-     */
-    CGlxHdmiController();
-    
-    /*
-     * ConstructL 
-     */
-    void ConstructL();
-    
-    /*
-     * Create the Hdmi Container 
-     */
-    void CreateHdmiContainerL();
-    
-    /*
-     * Create surface updater and update background surface 
-     * @param1 - Image file     
-     */
-    void CreateSurfaceUpdaterL(const TDesC& aImageFile);
-    
-    /*
-     * To Destroy the surface updater if present
-     */
-    void DestroySurfaceUpdater();
-    
-    /*
-     * Detroy the container 
-     */
-    void DestroyContainer();
-
-    /*
-     * Stores the Image File name
-     * @param1 - Image file
-     */
-    void StoreImageInfoL(const TDesC& aImageFile);
-
-private:
-    HBufC*  iStoredImagePath;
-    
-    CGlxHdmiContainer*      iHdmiContainer;
-    CGlxHdmiSurfaceUpdater* iSurfaceUpdater;
-    CGlxTv*  iGlxTvOut;
-    TBool iIsImageSupported;
-	TBool iIsPostingMode;
-    };
-
-#endif /* GLXHDMICONTROLLER_H_ */