📄 smallservappui.h
字号:
// SmallServAppUI.h
//
// Copyright 05/03/2001
//
#ifndef HEADER_SMALLSERVAPPUI
#define HEADER_SMALLSERVAPPUI
#include <eikappui.h>
#include "ServerConfig.h"
class CSmallServDocument;
class CSmallServView;
extern const TUid KUidSmallServApp;
//
// CSmallServAppUi
//
class CSmallServAppUi : public CEikAppUi
{
public:
void ConstructL();
~CSmallServAppUi();
private:
void HandleCommandL(TInt aCommand);
TBool ProcessCommandParametersL(TApaCommand aCommand, TFileName& aDocumentName, const TDesC& aTail);
void CmdConnectL();
void CmdCloseL();
void CmdStartL();
void CmdStopL();
void CmdHelpAboutL();
void CmdExitL();
TInt SelectToolBarID();
void LoadAppToolbarL();
CSmallServView* iAppView;
RHTTPServer iServer;
};
#define iSmallServDocument (STATIC_CAST(CSmallServDocument*, iDocument))
#endif // HEADER_SMALLSERVAPPUI
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -