diff -r 1ee2af37811f -r 6481344a6d67 tvout/tvoutengine/inc/glxhdmicontroller.h --- a/tvout/tvoutengine/inc/glxhdmicontroller.h Thu May 27 12:51:42 2010 +0300 +++ b/tvout/tvoutengine/inc/glxhdmicontroller.h Fri Jun 11 13:38:23 2010 +0300 @@ -33,7 +33,7 @@ * NewLC * @param1 - Image file path default to NULL */ - IMPORT_C static CGlxHdmiController* NewL(); + IMPORT_C static CGlxHdmiController* NewL(TBool aEfectsOn = EFalse); /* * Destructor @@ -71,11 +71,18 @@ */ IMPORT_C void ShiftToPostingMode(); + /* + * Fadeing of the Surface + * @param1 ETrue - FadeIn ( as in gaining brightness ) + * EFalse - FadeOut ( as in loosing brightness ) + */ + IMPORT_C void FadeSurface(TBool aFadeInOut); + private: /* * Constructor */ - CGlxHdmiController(); + CGlxHdmiController(TBool aEfectsOn); /* * ConstructL @@ -116,6 +123,7 @@ CGlxHdmiContainer* iHdmiContainer; CGlxHdmiSurfaceUpdater* iSurfaceUpdater; TBool iIsImageSupported; // Flag to see if Image is supported + TBool iEffectsOn; }; #endif /* GLXHDMICONTROLLER_H_ */