?? stusymappview.cpp
字號:
/* Copyright (c) 2007, Nokia. All rights reserved */
#include "StuSymAppView.h"
CStuSymAppView* CStuSymAppView::NewL(const TRect& aRect)
{
CStuSymAppView* self = NewLC(aRect);
CleanupStack::Pop(self);
return self;
}
CStuSymAppView* CStuSymAppView::NewLC(const TRect& aRect)
{
CStuSymAppView* self = new (ELeave) CStuSymAppView;
CleanupStack::PushL(self);
self->ConstructL(aRect);
return self;
}
void CStuSymAppView::ConstructL(const TRect& aRect)
{
CreateWindowL();
SetRect(aRect);
ActivateL();
}
CStuSymAppView::CStuSymAppView()
{
// Add any construction code that can not leave here
}
CStuSymAppView::~CStuSymAppView()
{
// Add any destruction code here
}
void CStuSymAppView::Draw(const TRect& /*aRect*/) const
{
// Clear the screen
CWindowGc& gc = SystemGc( );
gc.Clear(Rect());
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -