📄 smseditcontainer.h
字号:
#ifndef __ASSISTANT_MESSAGECONTAINER_H__
#define __ASSISTANT_MESSAGECONTAINER_H__
class CEikLabel;
class CEikEdwin;
// INCLUDES
#include <aknview.h>
#include <AknSettingItemList.h> //for CAknSettingItemList
#include <aplistitemlist.h>
#include "common.h"
class CSMSEditView;
class CSMSEditContainer : public CCoeControl
{
public: // Constructors and destructor
CSMSEditContainer();
virtual ~CSMSEditContainer();
void ConstructL(const TRect& aRect,CSMSEditView* aView);
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
void SetReadOnly(TInt aStatus);
void SetData(const TDesC& aMobile, const TDesC& aContent);
void GetData(TDes& aMobile, TDes& aContent);
void ChangeLabel();
private:
//
// Functions from base classes
void SizeChanged();
TInt CountComponentControls() const;
CCoeControl* ComponentControl( TInt aIndex ) const;
void Draw( const TRect& aRect ) const;
private:
CEikLabel* m_pLabelMobile;
CEikLabel* m_pLabelContent;
CEikEdwin* m_pEditMobile;
CEikEdwin* m_pEditContent;
CSMSEditView* m_pMessagView;
};
#endif // __ASSISTANT_MESSAGECONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -