📄 chvapplication.cpp
字号:
/*
* HView [c]2004 Marcin Skoczylas, All rights reserved
*
* This file is under GPL license, see gpl.txt file
*
*/
#include "CHVDocument.h"
#include "CHVApplication.h"
#include "SymDefs.h"
#include "DBG_LOGF.h"
// local constants
static const TUid KUidHVApp = {0x10202B60};
CApaDocument* CHVApplication::CreateDocumentL()
{
DBG_initLogFile();
LOGF("HVIEW " __HVIEWVERSION__ "\n");
LOGF("CHVApp: CreateDocumentL please\n");
//SYS_Errorf("fatalatest: %s\n", "yep!");
// Create an HV document, and return a pointer to it
CApaDocument* document = CHVDocument::NewL(*this);
return document;
}
TUid CHVApplication::AppDllUid() const
{
// Return the UID for the HV application
return KUidHVApp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -