📄 maincontainer.h
字号:
#ifndef __MAINCONTAINER_H__
#define __MAINCONTAINER_H__
// INCLUDES
#include <aknview.h>
#include <eiklbo.h> // MEikListBoxObserver
#include "Common.h"
class CAknColumnListBox;
class CMainContainer : public CCoeControl,
public MEikListBoxObserver
{
public: // Constructors and destructor
CMainContainer();
virtual ~CMainContainer();
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: // from MEikListBoxObserver
void HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aListBoxEvent);
public:
void AddInfotolist(const TDesC& aIcon, const TDesC& aName);
void HandleMarkCommandL(TInt aCommand);
void GetSelectedL();
// void LoadSavedGamesL(CDesCArray& aSavedGamesArray);
private:
CAknColumnListBox* m_pListBox;
CDesCArrayFlat* m_pListBoxArray;
public:
RArray<TInt> m_sIndicesArray;
};
#endif // __LoginCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -