📄 browserlauncherexappview.h
字号:
/* ====================================================================
* File: BrowserLauncherExAppView.h
* Created: 09/07/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#ifndef __BROWSERLAUNCHEREX_APPVIEW_H__
#define __BROWSERLAUNCHEREX_APPVIEW_H__
#include <coecntrl.h>
/*!
@class CBrowserLauncherExAppView
@discussion An instance of the Application View object for the BrowserLauncherEx
example application
*/
class CBrowserLauncherExAppView : public CCoeControl
{
public:
/*!
@function NewL
@discussion Create a CBrowserLauncherExAppView object, which will draw itself to aRect
@param aRect the rectangle this view will be drawn to
@result a pointer to the created instance of CBrowserLauncherExAppView
*/
static CBrowserLauncherExAppView* NewL(const TRect& aRect);
/*!
@function NewLC
@discussion Create a CBrowserLauncherExAppView object, which will draw itself to aRect
@param aRect the rectangle this view will be drawn to
@result a pointer to the created instance of CBrowserLauncherExAppView
*/
static CBrowserLauncherExAppView* NewLC(const TRect& aRect);
/*!
@function ~CBrowserLauncherExAppView
@discussion Destroy the object and release all memory objects
*/
~CBrowserLauncherExAppView();
public: // from CCoeControl
/*!
@function Draw
@discussion Draw this CBrowserLauncherExAppView to the screen
@param aRect the rectangle of this view that needs updating
*/
void Draw(const TRect& aRect) const;
private:
/*!
@function ConstructL
@discussion Perform the second phase construction of a CBrowserLauncherExAppView object
@param aRect the rectangle this view will be drawn to
*/
void ConstructL(const TRect& aRect);
/*!
@function CBrowserLauncherExAppView
@discussion Perform the first phase of two phase construction
*/
CBrowserLauncherExAppView();
};
#endif // __BROWSERLAUNCHEREX_APPVIEW_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -