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

📄 orcerappview.cpp

📁 同样自己做的 还不错哦 Symbian的 上面没找到分类
💻 CPP
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */

#include "OrcerAppView.h"

COrcerAppView* COrcerAppView::NewL(const TRect& aRect)
    {
    COrcerAppView* self = NewLC(aRect);
    CleanupStack::Pop(self);
    return self;
    }

COrcerAppView* COrcerAppView::NewLC(const TRect& aRect)
    {
    COrcerAppView* self = new (ELeave) COrcerAppView;
    CleanupStack::PushL(self);
    self->ConstructL(aRect);
    return self;
    }

void COrcerAppView::ConstructL(const TRect& aRect)
    {
    CreateWindowL();

    SetRect(aRect);

    ActivateL();
    }

COrcerAppView::COrcerAppView()
    {
    // Add any construction code that can not leave here
    }


COrcerAppView::~COrcerAppView()
    {
    // Add any destruction code here
    }

void COrcerAppView::Draw(const TRect& /*aRect*/) const
    {
    // Clear the screen
    CWindowGc& gc = SystemGc();
    gc.Clear(Rect());
    }


⌨️ 快捷键说明

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