cviewplain.h

来自「一个关于symbian下文本编辑器的源码程序」· C头文件 代码 · 共 44 行

H
44
字号
/*
 * HView [c]2004 Marcin Skoczylas, All rights reserved
 *
 * This file is under GPL license, see gpl.txt file
 *
 */


#ifndef __VIEWPLAIN_H__
#define __VIEWPLAIN_H__
// pllejn if slave

///enter plain code here;p

class CHVContainer;

class CViewPlain : public CBase
{
public:
	CViewPlain(CHVContainer *iContainer);
	~CViewPlain();
	void SetupArrays(TInt filePos);
	void DrawWholeBackBuffer();
	void ScrollDown(bool draw);
	void ScrollUp(bool draw);
	void ScrollPageDown();
	void ScrollPageUp();
	void ScrollRight();
	void ScrollLeft();
	TInt *filePosArray;	// file position of each line

private:
	// nic:P
	CHVContainer *iContainer;
	TInt afterLastLinePos;		// file position just after last line

};





#endif //__VIEWPLAIN_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?