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

📄 chsgedittextcontainer.h

📁 Symbian工程 九宫格界面
💻 H
字号:
#ifndef __CHSGEDITTEXTCONTAINER_H__
#define __CHSGEDITTEXTCONTAINER_H__

// INCLUDES
#include <aknview.h>

class				CEikLabel;
class               CEikEdwin;
class CNewsRollText;
class CLxdMessageManagement;
class CHsgEditTextContainer : public CCoeControl
{
public: // Constructors and destructor

    void HsgSetEditTitle(const TDesC& aTitle);
	void HsgSetEditContent(const TDesC& aContent);

	void HsgGetEditTitle(TDes& aTitle);
	void HsgGetEditContent(TDes& aContent);

 	CHsgEditTextContainer();	
	virtual ~CHsgEditTextContainer();
	void ConstructL(const TRect& aRect);
	TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
private: // Functions from base classes
    void SizeChanged();
    TInt CountComponentControls() const;
    CCoeControl* ComponentControl( TInt aIndex ) const;
    void Draw( const TRect& aRect ) const;

private:
	CEikLabel* iHsgLableEditTitle;
	CEikLabel* iHsgLableEditContent;

	CEikEdwin* iHsgEditorEditTitle;
	CEikEdwin* iHsgEditorEditContent;
private:
		CNewsRollText*	iEditMesLabel;	
		CLxdMessageManagement* iLxdEditPointer;

};

#endif      // __MainPageCONTAINER_H__
// End of File





















⌨️ 快捷键说明

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