os/mm/imagingandcamerafws/camerafw/testapps/testcameraapp/TestCameraApp.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef __TESTCAMERAAPP_H__
sl@0
    17
#define __TESTCAMERAAPP_H__
sl@0
    18
sl@0
    19
#include <coecntrl.h>
sl@0
    20
#include <eikappui.h>
sl@0
    21
#include <eikapp.h>
sl@0
    22
#include <eikdoc.h>
sl@0
    23
sl@0
    24
#include <ecam.h>
sl@0
    25
#include <ecamadvsettings.h>
sl@0
    26
#include <ecam/camerasnapshot.h>
sl@0
    27
sl@0
    28
const TUid KUidTestCameraApp={ 0x101F7D31 };
sl@0
    29
sl@0
    30
// class CTCamAppView
sl@0
    31
sl@0
    32
class CTCamAppView : public CCoeControl
sl@0
    33
    {
sl@0
    34
public:
sl@0
    35
	CTCamAppView();
sl@0
    36
	~CTCamAppView();
sl@0
    37
    void ConstructL(const TRect& aRect);
sl@0
    38
	void DrawImage(CFbsBitmap* aImage) const;
sl@0
    39
	TPoint DrawBorders(const TSize& aSize) const;
sl@0
    40
private:
sl@0
    41
	// from CCoeControl
sl@0
    42
	void Draw(const TRect& /*aRect*/) const;
sl@0
    43
    };
sl@0
    44
sl@0
    45
// CTCamAppUi
sl@0
    46
sl@0
    47
class CTCamAppUi : public CEikAppUi, public MCameraObserver, public MCameraObserver2
sl@0
    48
    {
sl@0
    49
public:
sl@0
    50
    void ConstructL();
sl@0
    51
	~CTCamAppUi();
sl@0
    52
private:
sl@0
    53
	// From CEikAppUi
sl@0
    54
	virtual void HandleCommandL(TInt aCommand);
sl@0
    55
	// New functions
sl@0
    56
	void ViewFinderL();
sl@0
    57
	void BurstModeL();
sl@0
    58
	void SingleShotL();
sl@0
    59
	void CaptureImageL();
sl@0
    60
	void CaptureVideoL();
sl@0
    61
	void IncImgProcAdjustmentL(TUid aTransformation);
sl@0
    62
	void DecImgProcAdjustmentL(TUid aTransformation);
sl@0
    63
	void EnableSnapshotL();
sl@0
    64
	void DisableSnapshot();
sl@0
    65
	// From MCameraObserver
sl@0
    66
	virtual void ReserveComplete(TInt aError);
sl@0
    67
	virtual void PowerOnComplete(TInt aError);
sl@0
    68
	virtual void ViewFinderFrameReady(CFbsBitmap& aFrame);
sl@0
    69
	virtual void ImageReady(CFbsBitmap* aBitmap,HBufC8* aData,TInt aError);
sl@0
    70
	virtual void FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError);
sl@0
    71
	//From MCameraObserver2
sl@0
    72
	virtual void HandleEvent(const TECAMEvent& aEvent);
sl@0
    73
	virtual void ViewFinderReady(MCameraBuffer& aCameraBuffer,TInt aError);
sl@0
    74
	virtual void ImageBufferReady(MCameraBuffer& aCameraBuffer,TInt aError);
sl@0
    75
	virtual void VideoBufferReady(MCameraBuffer& aCameraBuffer,TInt aError);
sl@0
    76
	
sl@0
    77
    void CreateDependencyFileL();
sl@0
    78
    void RemoveDependencyFile();
sl@0
    79
    
sl@0
    80
    void SnapshotDataDisplayL();
sl@0
    81
    
sl@0
    82
    void HandleEvent1(const TECAMEvent& aEvent);
sl@0
    83
    void HandleEvent2(const TECAMEvent2& aEvent2);
sl@0
    84
    
sl@0
    85
private:
sl@0
    86
	CCamera* iCamera;
sl@0
    87
	CCamera::CCameraAdvancedSettings* iCameraAdvSet;
sl@0
    88
	CCamera::CCameraPresets* iCameraPresets;
sl@0
    89
	CCamera::CCameraSnapshot* iCameraSnapshot;
sl@0
    90
	CCamera::CCameraImageProcessing* iCameraImgProc;
sl@0
    91
    CTCamAppView* iAppView;
sl@0
    92
    RFs ifsSession;
sl@0
    93
    };
sl@0
    94
sl@0
    95
// CTCamDocument
sl@0
    96
sl@0
    97
class CTCamDocument : public CEikDocument
sl@0
    98
	{
sl@0
    99
public:
sl@0
   100
	CTCamDocument(CEikApplication& aApp);
sl@0
   101
private:
sl@0
   102
	 // from CEikDocument
sl@0
   103
	CEikAppUi* CreateAppUiL();
sl@0
   104
	};
sl@0
   105
sl@0
   106
// CTCamApp
sl@0
   107
sl@0
   108
class CTCamApp : public CEikApplication
sl@0
   109
	{
sl@0
   110
private:
sl@0
   111
	// from CApaApplication
sl@0
   112
	CApaDocument* CreateDocumentL();
sl@0
   113
	TUid AppDllUid() const;
sl@0
   114
	};
sl@0
   115
sl@0
   116
#endif
sl@0
   117