drawing_appui.cpp
来自「Symbian OS C++ for Mobile Phones v3 Exam」· C++ 代码 · 共 38 行
CPP
38 行
// Drawing_AppUi.cpp
// ----------------------------
//
// Copyright (c) 2002 - 2007 Symbian Software Ltd. All rights reserved.
//
////////////////////////////////////////////////////////////////////////
//
// Source file for the implementation of the
// application UI class - CExampleAppUi
//
////////////////////////////////////////////////////////////////////////
#include "Drawing.h"
#include <qikon.hrh>
// The second phase constructor of the application UI class.
// The application UI creates and owns the one and only view.
//
void CExampleAppUi::ConstructL()
{
// BaseConstructL() completes the UI framework's
// construction of the App UI.
BaseConstructL();
// Create the single application view in which to
// draw the text "Hello World!", passing into it
// the rectangle available to it.
iAppView= CExampleAppView::NewL(*this);
AddViewL(*iAppView);
}
// The app Ui owns the view and is responsible for destroying it
//
CExampleAppUi::~CExampleAppUi()
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?