📄 guiclock8_application.cpp
字号:
//
// Copyright (c) 2000 Symbian Ltd. All rights reserved.
//
////////////////////////////////////////////////////////////////////////
//
// Source file for the implementation of the
// application class - CExampleApplication
//
////////////////////////////////////////////////////////////////////////
#include "GUIClock8.h"
const TUid KUidGUIClock = { 0X10008AD4 };
// The function is called by the UI framework to ask for the
// application's UID. The returned value is defined by the
// constant KUidGUIClocke and must match the second value
// defined in the project definition file.
//
TUid CGUIClockApplication::AppDllUid() const
{
return KUidGUIClock;
}
// This function is called by the UI framework at
// application start-up. It creates an instance of the
// document class.
//
CApaDocument* CGUIClockApplication::CreateDocumentL()
{
return (static_cast<CApaDocument*>(CGUIClockDocument::NewL(*this)));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -