?? drawing_appui.cpp
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -