📄 notecontainer.h
字号:
#ifndef __NOTECONTAINER_H__
#define __NOTECONTAINER_H__
// INCLUDES
#include <aknview.h>
class CEikFormattedCellListBox;
//class COperateInfo;
class CNoteContainer : public CCoeControl
{
public: // Constructors and destructor
CNoteContainer();
virtual ~CNoteContainer();
void ConstructL(const TRect& aRect);
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
public:
void addInfotolist(const TDesC& aIcon, const TDesC& aName, const TDesC& aContent);
void delInfofromlist();
void setCurrentIndex(TInt aIndex);
void GetEditinfro();
TInt OptionGetId();
TInt ReturnIndex();
private: // Functions from base classes
void SizeChanged();
TInt CountComponentControls() const;
CCoeControl* ComponentControl( TInt aIndex ) const;
void Draw( const TRect& aRect ) const;
CEikFormattedCellListBox* m_pNoteLtbox;
CDesCArrayFlat* m_pNoteLtboxArray;
TInt nIndex;
TInt sendIndex;
// RArray<HBufC*> iNoteArray;
// COperateInfo* m_pOperateInfo;
};
#endif // __NoteCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -