audio3view.h

来自「Symbian OS C++手机开发源码」· C头文件 代码 · 共 33 行

H
33
字号
/* Copyright (c) 2004, Symbian Software Ltd. All rights reserved */

#ifndef __Audio3VIEW_H__
#define __Audio3VIEW_H__

class CEikLabel;
#include <coecntrl.h>

class CAudio3View : public CCoeControl
    {
public:
    static CAudio3View* NewL(const TRect& aRect);
    static CAudio3View* NewLC(const TRect& aRect);
    ~CAudio3View();


public:  // from CCoeControl
    void Draw(const TRect& aRect) const;
	void UpdateLabelL(const TDesC& aText);
	TInt CountComponentControls() const;
	CCoeControl* ComponentControl(TInt aIndex) const;


private:
    void ConstructL(const TRect& aRect);
    CAudio3View();

private:
	CEikLabel* iLabel;
	};

#endif // __Audio3VIEW_H__

⌨️ 快捷键说明

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