audio1view.h

来自「symbian,uiq 2.0以上平台运行」· C头文件 代码 · 共 33 行

H
33
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?