⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pdfckonappui.h

📁 Symbian界面设计的C++源代码例子:Designing and building portable UIs for Symbian OS: Using a controller as a por
💻 H
字号:
//
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -