📄 cameraview.h
字号:
//
// CameraView.h - Camera handling
//
// Copyright (C) UIQ Technology AB, 2007
//
// This material is provided "as is" without any warranty to its performance or functionality.
// In no event shall UIQ Technology be liable for any damages whatsoever arising out of the
// use or inabilty to use this material.
//
#ifndef __CAMERAVIEW_H__
#define __CAMERAVIEW_H__
// these pragmas stop the compiler complaining that params to functions not being used in body
#ifdef __CW32__
#pragma warn_unusedarg off
#endif // __CW32__
#pragma warning(disable : 4100)
#include <QikViewBase.h>
#include "Engine.h"
/////////////////////////////////////////////////////////////////////////////////////////////
class CCameraView : public CQikViewBase
{
protected:
// from CQikViewBase
TVwsViewId ViewId() const;
void HandleCommandL(CQikCommand& aCommand);
void ViewConstructL();
void ViewDeactivated();
void ViewActivatedL(const TVwsViewId& aPrevViewId,const TUid aCustomMessageId,const TDesC8& aCustomMessage);
TKeyResponse OfferKeyEventL(const TKeyEvent &aKeyEvent,TEventCode aType);
// new methods
public:
// new methods
~CCameraView();
CCameraView(CQikAppUi& aAppUi,CAppEngine* aEngine);
protected:
CAppEngine* iEngine;
CQikContainer* iContainer;
};
#endif // __CAMERAVIEW_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -