#ifndef SECTSINFOMATION_H #define SECTSINFOMATION_H #include "XWidget.h" #include "XImage.h" #include "XStatic.h" #include <vector> class CXButton; class CSectsInfomation : public CXWidget { public: CSectsInfomation(void); ~CSectsInfomation(void); public: enum CSectsInfomationId { _IDD_CSectsInfomation = 121, _IDC_BtnExit = 1001, }; public: bool init(); void btnMsgCallback(CCObject* pSender); void btnMsgSrollCallback(CCObject* pSender); void SectsNotVisible(); private: CXButton* m_pBtnExit; CXImage* m_pImg; deque<CXWindow*> m_vecImage; int m_PageNum;//当前页码 int m_PageTotal;//总共的页数 CXStatic* m_pSta;//显示页码 CCLabelTTF *pLabel ; char acPage[10]; }; #endif