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

📄 chvappui.h

📁 在SB手机上实现了HVO软件的功能
💻 H
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -