chvappui.h
来自「一个关于symbian下文本编辑器的源码程序」· C头文件 代码 · 共 53 行
H
53 行
/*
* HView [c]2004 Marcin Skoczylas, All rights reserved
*
* This file is under GPL license, see gpl.txt file
*
*/
#ifndef __HV_APPUI_H__
#define __HV_APPUI_H__
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknviewappui.h>
#include <akntabgrp.h>
#include <aknnavide.h>
#include "CFileLoader.h"
#include "CHVContainer.h"
class CHVAppView;
class CHVAppUi : public CAknViewAppUi
{
public:
void ConstructL();
//This needs to be public due to the way the framework constructs the AppUi
CHVAppUi();
~CHVAppUi();
public: // from CEikAppUi
//Handle user menu selections
void HandleCommandL(TInt aCommand);
TBool ProcessCommandParametersL(TApaCommand aCommand,TFileName& aDocumentName,const TDesC8& aTail);
virtual void ProcessMessageL(TUid aUid, const TDesC8& aParams);
TFileName docFileName;
CFileLoader *fileLoader;
private:
CHVAppView* iAppView;
};
#endif // __HV_APPUI_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?