pdfckonappui.h
来自「Symbian界面设计的C++源代码例子:Designing and build」· C头文件 代码 · 共 30 行
H
30 行
//
// PdfCKONAppUi.h
//
#ifndef PDFCKONAPPUI_H
#define PDFCKONAPPUI_H
#ifndef __EIKAPPUI__
#include <eikappui.h>
#endif
// UI
class CPdfController;
class CPdfCKONAppView;
class CPdfCKONAppUi: public CEikAppUi
{
public:
void ConstructL();
public:
void HandleCommandL(TInt aCommandId);
private:
void CmdFileOpenL();
// etc.
private:
CPdfController* iController;
CPdfCKONAppView* iAppView;
};
#endif // AVKONPDFAPPUI_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?