videoview.h

来自「《UIQ 3 The Complete Guide》书的源代码」· C头文件 代码 · 共 47 行

H
47
字号
//
// VideoView.h - Video playback
//
// 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 __VIDEOVIEW_H__
#define __VIDEOVIEW_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 <VideoPlayer.h>
#include "Engine.h"

/////////////////////////////////////////////////////////////////////////////////////////////
class CVideoPlaybackView : 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);

	// new methods
public:
	// new methods
	~CVideoPlaybackView();
	CVideoPlaybackView(CQikAppUi& aAppUi,CAppEngine* aEngine);
	
protected:
	CAppEngine* iEngine;
	CQikContainer* iContainer;
	};

#endif // __VIDEOVIEW_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?