hsgtextview.h
来自「Symbian工程 九宫格界面」· C头文件 代码 · 共 42 行
H
42 行
/* Copyright (c) 2007, Nokia. All rights reserved */
#ifndef __HsgTextVIEW_H__
#define __HsgTextVIEW_H__
#include <aknview.h>
/*!
@class CHsgTextView
@discussion An instance of this class is the Application View object
for the FreeSMS example application
*/
class CHsgTextContainer;
class CHsgTextView : public CAknView
{
public:
//new info
void LxdSetIndex(TInt &aIndex);
void LxdGetIndex(TInt &aIndex);
static CHsgTextView* NewL();
static CHsgTextView* NewLC();
~CHsgTextView();
/* CCJGProjectAppUi& GetAppUi();*/
// from CCoeControl
TUid Id() const;
void HandleCommandL(TInt aCommand);
void HandleClientRectChange();
private:
CHsgTextView();
void ConstructL();
void DoActivateL(const TVwsViewId&,TUid,const TDesC8&);
void DoDeactivate();
private:
CHsgTextContainer* iContainer;
TInt mLxdIndex;
};
#endif // __FREESMS_HsgTextView_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?