⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helpcontainer.h

📁 symbian HTTP 协议的一个实例程序 本人参与制作 功能是将电话本上传到服务器 并下载更新 可用于学习 参考
💻 H
字号:
#ifndef __HELPCONTAINER_H__
#define __HELPCONTAINER_H__

// INCLUDES
#include <aknview.h>

class CRichTextEditorRichTextEditor;
class CHelpContainer : public CCoeControl
{
public: // Constructors and destructor
 	CHelpContainer();	
	void ConstructL(const TRect& aRect);
	TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );

	static CHelpContainer* NewL(const TRect& aRect);
	static CHelpContainer* NewLC(const TRect& aRect);
	
	~CHelpContainer();
private: // Functions from base classes
    void SizeChanged();
    TInt CountComponentControls() const;
    CCoeControl* ComponentControl( TInt aIndex ) const;
    void Draw( const TRect& aRect ) const;
private: // members
	void AddTextToEditorL();

private: //data
	CRichTextEditorRichTextEditor* m_pEditor;
};

#endif      // __LoginCONTAINER_H__
// End of File





















⌨️ 快捷键说明

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