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

📄 svexserviceapplistview.h

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

#ifndef SVEXSERVICEAPPLISTVIEW_H
#define SVEXSERVICEAPPLISTVIEW_H

#include <SvexListView.h>

class CSvexInfoBase;
class CSvexServiceInfo;

// A list view showing the apps that offer a particular service type
class CSvexServiceAppListView : public CSvexListView
	{
public:
	IMPORT_C static CSvexServiceAppListView* NewLC(TUid aServiceUid, const CSvexInfoBase& aInfo);
	IMPORT_C ~CSvexServiceAppListView();
	
public:	// from CSvexListView
	IMPORT_C CEikTextListBox* NewListBoxL() const;
	IMPORT_C TInt Count() const;
	IMPORT_C void GetText(TInt aIndex, TBuf<KMaxListText>& aText) const;

protected:
	IMPORT_C CSvexServiceAppListView(TUid aServiceUid, const CSvexInfoBase& aInfo);
	IMPORT_C void ConstructMainPaneL();
	
protected:
	TUid iServiceUid;
	const CSvexInfoBase& iInfo;
	CSvexServiceInfo* iService;
	};

#endif

⌨️ 快捷键说明

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