?? chvappui.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__
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -