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

📄 autolockdocument.cpp

📁 Symbian S60 自动键盘锁 用户一段时间内没有任何按键事件产生
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CAutolockDocument from AutolockDocument.h
*  Part of  : Autolock
*  Created  : 05.02.2006 by ToBeReplacedByAuthor
*  Implementation notes:
*     Initial content was generated by Series 60 Application Wizard.
*  Version  :
*  Copyright: ToBeReplacedByCopyright
* ============================================================================
*/

// INCLUDE FILES
#include "AutolockDocument.h"
#include "AutolockAppui.h"

// ================= MEMBER FUNCTIONS =======================

// constructor
CAutolockDocument::CAutolockDocument(CEikApplication& aApp)
: CAknDocument(aApp)    
    {
    }

// destructor
CAutolockDocument::~CAutolockDocument()
    {
    }

// EPOC default constructor can leave.
void CAutolockDocument::ConstructL()
    {
    }

// Two-phased constructor.
CAutolockDocument* CAutolockDocument::NewL(
        CEikApplication& aApp)     // CAutolockApp reference
    {
    CAutolockDocument* self = new (ELeave) CAutolockDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop();

    return self;
    }
    
// ----------------------------------------------------
// CAutolockDocument::CreateAppUiL()
// constructs CAutolockAppUi
// ----------------------------------------------------
//
CEikAppUi* CAutolockDocument::CreateAppUiL()
    {
    return new (ELeave) CAutolockAppUi;
    }

// End of File  

⌨️ 快捷键说明

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