📄 svexserviceapplistview.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 + -