📄 hsgtextview.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -