?? 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 + -