os/mm/imagingandcamerafws/camerafw/testapps/testcameraapps60/TestCameraApp.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <eikenv.h>
    17 #include <TestCameraApp.rsg>
    18 #include "TestCameraApp.h"
    19 #include "TestCameraApp.hrh"
    20 
    21 const TInt KMaxErrLength=50;
    22 _LIT(KErrorFormat,"Error - %d (%S)");
    23 
    24 //
    25 //  CTCamAppUi
    26 //
    27 
    28 void CTCamAppUi::ConstructL()
    29 	{
    30     BaseConstructL();
    31 	iAppView = new(ELeave) CTCamAppView;
    32 	iAppView->ConstructL(ClientRect());
    33 	AddToStackL(iAppView);
    34 
    35 	iCamera = CCamera::NewL(*this,0);
    36 	iCamera->Reserve();
    37 	}
    38 
    39 CTCamAppUi::~CTCamAppUi()
    40 	{
    41 	iCamera->Release();
    42 	delete iCamera;
    43 	if (iAppView)
    44 		{
    45 		RemoveFromStack(iAppView);
    46 		delete iAppView;
    47 		}
    48 	}
    49 
    50 void CTCamAppUi::HandleCommandL(TInt aCommand)
    51 	{
    52 	switch (aCommand)
    53 		{
    54 	case ETCamCmdPowerOn:
    55 		iCamera->PowerOn();
    56 		break;
    57 	case ETCamCmdPowerOff:
    58 		iCamera->PowerOff();
    59 		break;
    60 	case ETCamCmdViewFinder:
    61 		ViewFinderL();
    62 		break;
    63 	case ETCamCmdCaptureImage:
    64 		CaptureImageL();
    65 		break;
    66 	case ETCamCmdCaptureVideo:
    67 		CaptureVideoL();
    68 		break;
    69 	case ETCamCmdIncBrightness:
    70 		iCamera->SetBrightnessL(iCamera->Brightness() + 10);
    71 		break;
    72 	case ETCamCmdIncContrast:
    73 		iCamera->SetContrastL(iCamera->Contrast() + 10);
    74 		break;
    75 	case ETCamCmdDecBrightness:
    76 		iCamera->SetBrightnessL(iCamera->Brightness() - 10);
    77 		break;
    78 	case ETCamCmdDecContrast:
    79 		iCamera->SetContrastL(iCamera->Contrast() - 10);
    80 		break;
    81 	case ETCamCmdResetBrightness:
    82 		iCamera->SetBrightnessL(0);
    83 		break;
    84 	case ETCamCmdResetContrast:
    85 		iCamera->SetContrastL(0);
    86 		break;
    87 	case EAknSoftkeyBack:
    88 		Exit();
    89 		break;
    90 		}
    91 	}
    92 
    93 void CTCamAppUi::ViewFinderL()
    94 	{
    95 	TSize imageSize;
    96 	iCamera->EnumerateCaptureSizes(imageSize,1,CCamera::EFormatFbsBitmapColor16M);
    97 	const TPoint pos = iAppView->DrawBorders(imageSize);
    98 	TRect screenRect(pos,imageSize);
    99 	TRect clipRect;
   100 
   101 	if (!iCamera->ViewFinderActive())
   102 		iCamera->StartViewFinderDirectL(iCoeEnv->WsSession(),*iCoeEnv->ScreenDevice(),*iAppView->DrawableWindow(),screenRect,clipRect);
   103 	else
   104 		iCamera->StopViewFinder();
   105 	}
   106 
   107 void CTCamAppUi::CaptureImageL()
   108 	{
   109 	TSize size;
   110 	iCamera->EnumerateCaptureSizes(size,1,CCamera::EFormatFbsBitmapColor16M);
   111 	iCamera->PrepareImageCaptureL(CCamera::EFormatFbsBitmapColor16M,1);
   112 	iCamera->CaptureImage();
   113 	}
   114 
   115 void CTCamAppUi::CaptureVideoL()
   116 	{
   117 	if (!iCamera->VideoCaptureActive())
   118 		{
   119 		TSize size;
   120 		TReal32 rate = 0;
   121 		iCamera->EnumerateVideoFrameSizes(size,0,CCamera::EFormatFbsBitmapColor16M);
   122 		iCamera->EnumerateVideoFrameRates(rate,0,CCamera::EFormatFbsBitmapColor16M,0);
   123 		iCamera->PrepareVideoCaptureL(CCamera::EFormatFbsBitmapColor16M,0,0,2,1);
   124 		iCamera->StartVideoCapture();
   125 		}
   126 	else
   127 		iCamera->StopVideoCapture();
   128 	}
   129 
   130 void CTCamAppUi::ReserveComplete(TInt /*aError*/)
   131 	{
   132 	}
   133 
   134 void CTCamAppUi::PowerOnComplete(TInt /*aError*/)
   135 	{
   136 	}
   137 
   138 void CTCamAppUi::ViewFinderFrameReady(CFbsBitmap& /*aFrame*/)
   139 	{
   140 	}
   141 
   142 void CTCamAppUi::ImageReady(CFbsBitmap* aBitmap,HBufC8* /*aData*/,TInt aError)
   143 	{
   144 	TBuf<KMaxErrLength> msgBuffer;
   145 	_LIT(KErrMessage,"CTCamAppUi::ImageReady");
   146 	if (aBitmap)
   147 		{
   148 		iAppView->DrawImage(aBitmap);
   149 		delete aBitmap;
   150 		}
   151 	if (aError)
   152 		{
   153 		msgBuffer.Format(KErrorFormat,aError,&KErrMessage);
   154 		iEikonEnv->InfoMsg(msgBuffer);
   155 		}
   156 	}
   157 
   158 void CTCamAppUi::FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError)
   159 	{
   160 	TBuf<KMaxErrLength> msgBuffer;
   161 	_LIT(KErrMessage,"CTCamAppUi::FrameBufferReady");
   162 	if (aError)
   163 		{
   164 		msgBuffer.Format(KErrorFormat,aError,&KErrMessage);
   165 		iEikonEnv->InfoMsg(msgBuffer);
   166 		return;
   167 		}
   168 	TRAPD(error,iAppView->DrawImage(aFrameBuffer->FrameL(0)));
   169 	aFrameBuffer->Release();
   170 	if (error)
   171 		{
   172 		msgBuffer.Format(KErrorFormat,error,&KErrMessage);
   173 		iEikonEnv->InfoMsg(msgBuffer);
   174 		}
   175 	}
   176 
   177 _LIT(KContrastDialogTitle,"Contrast");
   178 _LIT(KBrightnessDialogTitle,"Brightness");
   179 
   180 //
   181 // CTCamAppView
   182 //
   183 
   184 CTCamAppView::CTCamAppView():
   185 	CCoeControl()
   186 	{}
   187 
   188 void CTCamAppView::ConstructL(const TRect& aRect)
   189 	{
   190 	CreateWindowL();
   191     SetRect(aRect);
   192 	EnableDragEvents();
   193 	ActivateL();
   194 	}
   195 
   196 CTCamAppView::~CTCamAppView()
   197 	{}
   198 
   199 void CTCamAppView::DrawImage(CFbsBitmap* aImage) const
   200 	{
   201 	CWindowGc& gc = SystemGc();
   202 	gc.Activate(Window());
   203 	TRect drawRect(Rect());
   204 	TPoint pos;
   205 	pos.iX = (drawRect.iBr.iX - aImage->SizeInPixels().iWidth) / 2;
   206 	pos.iY = (drawRect.iBr.iY - aImage->SizeInPixels().iHeight) / 2;
   207 	gc.BitBlt(pos,aImage);
   208 	gc.Deactivate();
   209 	iCoeEnv->WsSession().Flush();
   210 	}
   211 
   212 void CTCamAppView::Draw(const TRect& /*aRect*/) const
   213 	{
   214 	CWindowGc& gc = SystemGc();
   215 	TRect drawRect(Rect());
   216 	drawRect.Shrink(1,1);
   217 	gc.DrawRect(drawRect);
   218 	gc.Clear();
   219 	}
   220 
   221 TPoint CTCamAppView::DrawBorders(const TSize& aSize) const
   222 	{
   223 	CWindowGc& gc = SystemGc();
   224 	gc.Activate(Window());
   225 	TRect drawRect(Rect());
   226 	TPoint pos;
   227 	pos.iX = (drawRect.iBr.iX - aSize.iWidth) / 2;
   228 	pos.iY = (drawRect.iBr.iY - aSize.iHeight) / 2;
   229 	TRect border(pos,aSize);
   230 	border.Grow(1,1);
   231 	gc.SetPenColor(KRgbBlack);
   232 	gc.DrawRect(border);
   233 	gc.Deactivate();
   234 	iCoeEnv->WsSession().Flush();
   235 	return pos;
   236 	}
   237 
   238 //
   239 // CTCamDocument
   240 //
   241 
   242 CTCamDocument::CTCamDocument(CEikApplication& aApp)
   243 		: CAknDocument(aApp)
   244 	{
   245 	}
   246 
   247 CEikAppUi* CTCamDocument::CreateAppUiL()
   248 	{
   249     return new(ELeave) CTCamAppUi;
   250 	}
   251 
   252 //
   253 // CTCamApp
   254 //
   255 
   256 TUid CTCamApp::AppDllUid() const
   257 	{
   258 	return KUidTestCameraApp;
   259 	}
   260 
   261 CApaDocument* CTCamApp::CreateDocumentL()
   262 	{
   263 	return new(ELeave) CTCamDocument(*this);
   264 	}
   265 
   266 
   267 //
   268 // Base factory function
   269 //
   270 
   271 #include <eikstart.h>
   272 LOCAL_C CApaApplication* NewApplication()
   273 	{
   274 	return new CTCamApp;
   275 	}
   276 
   277 //
   278 // EXE Entry point
   279 //
   280 
   281 GLDEF_C TInt E32Main()
   282 	{
   283 	return EikStart::RunApplication(NewApplication);
   284 	}
   285 
   286 
   287 
   288 
   289