📄 svexregdialog.h
字号:
// Copyright (c) 2006 Murray Read, All rights reserved
#ifndef SVEXREGDIALOG_H
#define SVEXREGDIALOG_H
#include <SvexInfo.h>
class CAknMessageQueryDialog;
class CCoeEnv;
class CSvexServiceServiceInfo;
// A class that shows a dialog containing registration information
// for a particular app and service registration.
// This class contains the dialog, rather than being the dialog,
// because it also needs to load resources for the dialog.
class CAppServiceInfoDialog : public CBase
{
public:
IMPORT_C static CAppServiceInfoDialog* NewL(const TSvexAppServiceInfo& aReg, const CSvexInfoBase& aInfo);
IMPORT_C ~CAppServiceInfoDialog();
IMPORT_C void ExecuteLD();
protected:
IMPORT_C CAppServiceInfoDialog(const TSvexAppServiceInfo& aReg, const CSvexInfoBase& aInfo);
IMPORT_C void AppendTextL(const TDesC& aText);
IMPORT_C void ConstructL();
protected: // for derived classes to override
// Use AppendTextL to build the dialog's text.
IMPORT_C virtual void DialogTextL();
private:
void LoadResourcesL();
void MakeBufL();
protected:
const TSvexAppServiceInfo& iReg;
const CSvexInfoBase& iInfo;
CSvexServiceServiceInfo* iServicesInfo;
private:
CAknMessageQueryDialog* iDialog;
CCoeEnv* iCoeEnv;
TInt iResourceOffset;
HBufC* iBuf;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -