svexserviceappappview.h
来自「演示如何使用的symbian v9服务器应用框架」· C头文件 代码 · 共 47 行
H
47 行
// Copyright (c) 2006 Murray Read, All rights reserved
#ifndef __SVEXSERVICEAPP_APPVIEW_H__
#define __SVEXSERVICEAPP_APPVIEW_H__
#include <SvexServiceAppListView.h>
#include <SvexRegDialog.h>
class CSvexServiceAppAppUi;
// an almost trivial implementation of the apps list
// the only action is when OpenL() asks the app UI to show the app.
class CSvexServiceAppAppView : public CSvexServiceAppListView
{
public:
static CSvexServiceAppAppView* NewL(CSvexServiceAppAppUi* aAppUi, const CSvexInfoBase& aInfo);
~CSvexServiceAppAppView();
public: // from CSvexServiceAppListView
void OpenL();
private:
CSvexServiceAppAppView(CSvexServiceAppAppUi* aAppUi, const CSvexInfoBase& aInfo);
private:
CSvexServiceAppAppUi* iAppUi;
};
// CSvexServiceDialog is a variant of CAppServiceInfoDialog
// which shows details of the registration info for the
// Service Info Service
class CSvexServiceDialog : public CAppServiceInfoDialog
{
public:
static CSvexServiceDialog* NewL(const TSvexAppServiceInfo& aReg, const CSvexInfoBase& aInfo);
~CSvexServiceDialog();
protected:
CSvexServiceDialog(const TSvexAppServiceInfo& aReg, const CSvexInfoBase& aInfo);
virtual void DialogTextL();
};
#endif // __SVEXSERVICEAPP_APPVIEW_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?