vtuis/videotelui/inc/CVtUiMainControl.h
changeset 18 d9b6a8729acd
parent 4 6dc066157ed4
child 23 c378a0498b84
child 27 dcbddbbaf8fd
--- a/vtuis/videotelui/inc/CVtUiMainControl.h	Tue Jan 26 12:01:21 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,154 +0,0 @@
-/*
-* Copyright (c) 2004, 2005 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:  Main pane control for Video Telephone application.
-*
-*/
-
-
-
-#ifndef CVTUIMAINCONTROL_H
-#define CVTUIMAINCONTROL_H
-
-//  INCLUDES
-#include    "cvtuivideocontrolbase.h"
-
-// CLASS DECLARATION
-class TVtUiStates;
-class TAknTextLineLayout;
-
-/**
-*  Main pane control for Video Telephone application.
-*
-*  @since Series 60 2.6
-*/
-class CVtUiMainControl : public CVtUiVideoControlBase
-    {
-
-    public: // Constructors and destructor
-
-        /**
-        * Constructor.
-        * @param aBitmapManager bitmap manager.
-        * @param aUiStates Ui states class.
-        */
-        static CVtUiMainControl* NewL( CVtUiBitmapManager& aBitmapManager,
-            TVtUiStates& aUiStates );
-
-        /**
-        * C++ destructor.
-        */
-        ~CVtUiMainControl();
-
-    public: // New functions.
-
-        /**
-        * Sets SQCif mode on/off.
-        * @param aIsSupported whether on/off
-        */
-        void SupportSQCif( TBool aIsSupported );
-
-         /**
-         * LayoutRemoteVideo
-         */
-        void LayoutRemoteVideo();
-
-    private: // from CVtUiVideoControlBase
-
-        /**
-        * @see CVtUiContextControl::HandleSizeChanged
-        */
-        void HandleSizeChanged();
-
-        /**
-        * @see CVtUiContextControl::DrawWaitingText
-        */
-        TBool DrawWaitingText( CWindowGc& aGc ) const;
-
-        /**
-        * @see CVtUiContextControl::StreamBlitPosition
-        */
-        TPoint StreamBlitPosition() const;
-
-        /**
-        * @see CVtUiContextControl::StreamClippingRect
-        */
-        TRect StreamClippingRect() const;
-
-        /**
-        * @see CVtUiContextControl::BlindImage
-        */
-        CFbsBitmap* BlindImage() const;
-
-        /**
-        * @see CVtUiContextControl::BlindMask
-        */
-        CFbsBitmap* BlindMask() const;
-
-        /**
-        * @see CVtUiContextControl::BlindBlitPosition
-        */
-        TPoint BlindBlitPosition() const;
-
-        /**
-        * @see CVtUiContextControl::WaitingTextLayout
-        */
-        TAknTextLineLayout WaitingTextLayout( TInt aLine );
-
-    private:
-
-        /**
-        * Private constructor.
-        */
-        CVtUiMainControl( CVtUiBitmapManager& aBitmapManager,
-            TVtUiStates& aUiStates );
-
-        /**
-        * C++ constructor.
-        * @param aBitmapManager bitmap manager.
-        */
-        CVtUiMainControl();
-
-        /**
-        * Symbian constructor.
-        */
-        void ConstructL();
-
-    private:
-
-        // Background layout.
-        TAknLayoutRect iBackgroundLayout;
-
-        // Blind icon identifier.
-        TVtUiBitmapPoolId iBlindId;
-
-        // Blind icon mask identifier.
-        TVtUiBitmapPoolId iBlindMaskId;
-
-        // Blind icon layout.
-        TAknLayoutRect iBlindLayout;
-
-        // Stream layout.
-        TAknLayoutRect iStreamLayoutRect;
-
-        // ETrue if sqcif is used in remote video.
-        TBool iSQCifRemote;
-
-        // reference to uistates
-        TVtUiStates& iUiStates;
-
-    };
-
-#endif      // CVTUIMAINCONTROL_H
-
-// End of File