📄 svexserviceappappview.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -