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

📄 audio1view.h

📁 symbian,uiq 2.0以上平台运行
💻 H
字号:
/* Copyright (c) 2004, Symbian Software Ltd. All rights reserved */

#ifndef __Audio1VIEW_H__
#define __Audio1VIEW_H__

class CEikLabel;
#include <coecntrl.h>

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


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);
    CAudio1View();

private:
	CEikLabel* iLabel;
	};

#endif // __Audio1VIEW_H__

⌨️ 快捷键说明

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