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

📄 exelauncher_appview.h

📁 symbian控制台程序
💻 H
字号:
// ExeLauncher_AppView.h
//
// Copyright (c) 2002 Symbian Ltd.  All rights reserved.
//

#ifndef __EXELAUNCHER_APPVIEW_H
#define __EXELAUNCHER_APPVIEW_H

#include "ExeLauncher.h"
#include <eiktxlbx.h>
#include <eiktxlbm.h>

class CExeLauncherAppView : public CCoeControl
	{
public:
	static CExeLauncherAppView* NewL(const TRect& aRect);
	~CExeLauncherAppView();
	void ConstructL(const TRect& aRect);
	void AppendItemsAndActivateL(const CDir* aFileList);
	TInt GetCurrentItem();
private:
	void Draw(const TRect& /* aRect */) const;
	CCoeControl* ComponentControl(TInt aIndex) const;
	TInt CountComponentControls() const;
private:
	// Text list box to display the file names
	CEikTextListBox* iTextListBox;
	// Array owned by the text list box
	CDesCArray* iNamesArray;
	};

#endif

⌨️ 快捷键说明

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