chxavcontrol.h
来自「symbian 下的helix player源代码」· C头文件 代码 · 共 33 行
H
33 行
/************************************************************************
* chxavcontrol.h
* --------------
*
* Synopsis:
* Base class for custom controls used herein.
*
* Target:
* Symbian OS
*
*
* (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
*
************************************************************************/
#ifndef _chxavcontrol_h_
#define _chxavcontrol_h_
// class CHXAvControl...
class CHXAvControl
: public CCoeControl
{
public:
explicit CHXAvControl(TInt id = -1) : m_id(id) {}
void SetID(TInt id) { m_id = id; }
TInt GetID() const { return m_id; }
private:
TInt m_id;
};
#endif // _chxavcontrol_h_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?