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

📄 appsview.h

📁 symbian下读取服务的程序
💻 H
字号:
// Copyright (c) 2006 Murray Read, All rights reserved

#ifndef APPSVIEW_H
#define APPSVIEW_H

#include <SvexListView.h>

class CSvexInfo;
class CAppServiceListDialog;

class CAppsView : public CSvexListView
	{
public:
	static CAppsView* NewLC(const CSvexInfo& aInfo);
	~CAppsView();

public:	// from CSvexListView
	CEikTextListBox* NewListBoxL() const;
	TInt Count() const;
	void GetText(TInt aIndex, TBuf<KMaxListText>& aText) const;
	void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
	void OpenL();

private:
	CAppsView(const CSvexInfo& aInfo);

private:
	const CSvexInfo& iInfo;
	CAppServiceListDialog* iSubView;
	};

#endif

⌨️ 快捷键说明

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