📄 assistantappview.h
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */
#ifndef __ASSISTANT_APPVIEW_H__
#define __ASSISTANT_APPVIEW_H__
#include <coecntrl.h>
/*!
@class CASSISTANTAppView
@discussion An instance of this class is the Application View object
for the ASSISTANT example application
*/
//class CASSISTANTAppView : public CCoeControl
{
public:
/*!
@function NewL
@discussion Create a CASSISTANTAppView 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 CASSISTANTAppView
*/
static CASSISTANTAppView* NewL(const TRect& aRect);
/*!
@function NewLC
@discussion Create a CASSISTANTAppView 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 CASSISTANTAppView
*/
static CASSISTANTAppView* NewLC(const TRect& aRect);
/*!
@function ~CASSISTANTAppView
@discussion Destroy the object
*/
~CASSISTANTAppView();
public: // from CCoeControl
/*!
@function Draw
@discussion Draw this CASSISTANTAppView 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 CASSISTANTAppView object
@param aRect The rectangle this view will be drawn to
*/
void ConstructL(const TRect& aRect);
/*!
@function CASSISTANTAppView
@discussion Perform the first phase of two phase construction
*/
CASSISTANTAppView();
};
#endif // __ASSISTANT_APPVIEW_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -