⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 audio3view.h

📁 使用SymbianC++语言开发
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -