📄 welcome_main.cpp
字号:
// welcome_Main.cpp
//
// Copyright (c) 1999-2007 Symbian Software Ltd. All rights reserved.
//
// $Change: 937687 $
////////////////////////////////////////////////////////////////////////
//
// Welcome
// ----------
//
//
// The example is a simple application containing a single view with
// the text "Welcome!" drawn on it.
//
// The example includes code for displaying a very simple menu.
//
// ---------------------------------------------------------------------
//
// This source file contains the single exported function required by
// all UI applications.
//
////////////////////////////////////////////////////////////////////////
// SYSTEM HEADERS
#include <eikstart.h>
// PROJECT HEADERS
#include "Welcome.h"
LOCAL_C CApaApplication* NewApplication()
{
return new CExampleApplication;
}
// The entry point for the application code. It creates
// an instance of the CApaApplication derived
// class, CExampleApplication.
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication(NewApplication);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -