brctlsampleappdocument.h
来自「S60上实现嵌入式浏览器,可以在应用程序中嵌入浏览器,实现IE功能」· C头文件 代码 · 共 71 行
H
71 行
/*
* ============================================================================
* Name : BrCtlSampleAppDocument.h
* Part of : BrCtlSampleApp
* Interface : Browser Control API
* Description : Declares document for application.
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ============================================================================
*/
#ifndef BRCTLSAMPLEAPPDOCUMENT_H
#define BRCTLSAMPLEAPPDOCUMENT_H
// INCLUDES
#include <akndoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CBrCtlSampleAppDocument application class.
*/
class CBrCtlSampleAppDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CBrCtlSampleAppDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CBrCtlSampleAppDocument();
public: // New functions
protected: // New functions
protected: // Functions from base classes
private:
/**
* EPOC default constructor.
*/
CBrCtlSampleAppDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CBrCtlSampleAppAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?