sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __TESTCAMERAAPP_H__ sl@0: #define __TESTCAMERAAPP_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: const TUid KUidTestCameraApp={ 268450181 }; sl@0: sl@0: // class CTCamAppView sl@0: sl@0: class CTCamAppView : public CCoeControl sl@0: { sl@0: public: sl@0: CTCamAppView(); sl@0: ~CTCamAppView(); sl@0: void ConstructL(const TRect& aRect); sl@0: void DrawImage(CFbsBitmap* aImage) const; sl@0: TPoint DrawBorders(const TSize& aSize) const; sl@0: private: sl@0: // from CCoeControl sl@0: void Draw(const TRect& /*aRect*/) const; sl@0: }; sl@0: sl@0: // CTCamAppUi sl@0: sl@0: class CTCamAppUi : public CAknAppUi, public MCameraObserver sl@0: { sl@0: public: sl@0: void ConstructL(); sl@0: ~CTCamAppUi(); sl@0: private: sl@0: // From CEikAppUi sl@0: virtual void HandleCommandL(TInt aCommand); sl@0: // New functions sl@0: void ViewFinderL(); sl@0: void CaptureImageL(); sl@0: void CaptureVideoL(); sl@0: // From MCameraObserver sl@0: virtual void ReserveComplete(TInt aError); sl@0: virtual void PowerOnComplete(TInt aError); sl@0: virtual void ViewFinderFrameReady(CFbsBitmap& aFrame); sl@0: virtual void ImageReady(CFbsBitmap* aBitmap,HBufC8* aData,TInt aError); sl@0: virtual void FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError); sl@0: private: sl@0: CCamera* iCamera; sl@0: CTCamAppView* iAppView; sl@0: }; sl@0: sl@0: // CTCamDocument sl@0: sl@0: class CTCamDocument : public CAknDocument sl@0: { sl@0: public: sl@0: CTCamDocument(CEikApplication& aApp); sl@0: private: sl@0: // from CEikDocument sl@0: CEikAppUi* CreateAppUiL(); sl@0: }; sl@0: sl@0: // CTCamApp sl@0: sl@0: class CTCamApp : public CAknApplication sl@0: { sl@0: private: sl@0: // from CApaApplication sl@0: CApaDocument* CreateDocumentL(); sl@0: TUid AppDllUid() const; sl@0: }; sl@0: sl@0: #endif sl@0: