ndcalendarappview.cpp
来自「symbian 二版本的自定义控件」· C++ 代码 · 共 48 行
CPP
48 行
/* Copyright (c) 2008, Nokia. All rights reserved */
#include "NDCalendarAppView.h"
CNDCalendarAppView* CNDCalendarAppView::NewL(const TRect& aRect)
{
CNDCalendarAppView* self = NewLC(aRect);
CleanupStack::Pop(self);
return self;
}
CNDCalendarAppView* CNDCalendarAppView::NewLC(const TRect& aRect)
{
CNDCalendarAppView* self = new (ELeave) CNDCalendarAppView;
CleanupStack::PushL(self);
self->ConstructL(aRect);
return self;
}
void CNDCalendarAppView::ConstructL(const TRect& aRect)
{
CreateWindowL();
SetRect(aRect);
ActivateL();
}
CNDCalendarAppView::CNDCalendarAppView()
{
// Add any construction code that can not leave here
}
CNDCalendarAppView::~CNDCalendarAppView()
{
// Add any destruction code here
}
void CNDCalendarAppView::Draw(const TRect& /*aRect*/) const
{
// Clear the screen
CWindowGc& gc = SystemGc();
gc.Clear(Rect());
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?