⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainpage.dox

📁 用来学习 焦点 的 的例子,可以 好好看看焦点在 symbian中很重要,
💻 DOX
字号:
/*! \mainpage Focus Event Example
 *
 * \ref Intro_sec
 * \n\ref UI_sec
 * \n\ref Design_sec
 *
 * <HR>
 *
 * \section Intro_sec 1. About this Example
 *
 * Often an application needs to know when it has lost focus. This would, for
 * example, allow a game to automatically enter pause mode when another
 * application is launched. Situations where the current application might lose
 * focus include:
 *
 * - Starting another application.
 * - A system dialog appears, such as the "Recharging" dialog.
 * - The user switches back to the desktop.
 * - An incoming phone call is received.
 *
 * This example demonstrates how an application can be informed when these
 * events occur, and also when the application regains focus again.
 *
 * \subsection Sub11 1.1 Prerequisites
 *
 * This example exists as a complete application, and has the standard Symbian
 * OS application architecture, employing the Application, Document, UI, and
 * View classes. The reader should be aware of this architecture before
 * continuing.
 *
 * <HR>
 *
 * \section UI_sec 2. User Interface
 *
 * When invoked, the application displays the following screen. The message
 * 'Gained focus' will appear on the application window. On the debug version of
 * the PC emulator only, the message 'Gained focus' will also be displayed for a
 * few seconds.
 *
 * \image html gainedfocus.jpg
 *
 * - Select \b Exit to exit from the application.
 *
 * To show the effect of losing focus, keep the \b Applications button pressed
 * for approximately three seconds:
 *
 * \image html appbutton.jpg
 *
 * The set of currently running applications will be displayed, and the message
 * 'Lost focus' will appear on the application window. On the PC emulator only,
 * the message 'Lost focus' will appear for a short time.
 *
 * \image html lostfocus.jpg
 *
 *
 * \section Design_sec 3. Design and Implementation
 *
 * The implementation for this example is very simple, and only requires one
 * function in the application user interface:
 *
 * - CFocusEventAppUi::HandleForegroundEventL
 *
 * This function is declared as virtual in the base class, as it is called by
 * the framework every time that focus is lost or gained. In this
 * implementation, this function causes a message to be displayed informing the
 * user that they have lost or gained focus.
 *
 *
 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -