TabSheet.h
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:1k
源码类别:

CA认证

开发平台:

Visual C++

  1. #if !defined(AFX_TABSHEET_H__7B923B80_00CF_45FF_91AD_77D13B2B2CFD__INCLUDED_)
  2. #define AFX_TABSHEET_H__7B923B80_00CF_45FF_91AD_77D13B2B2CFD__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TabSheet.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTabSheet window
  10. #define MAXPAGE 16
  11. class CTabSheet : public CTabCtrl
  12. {
  13. // Construction
  14. public:
  15. CTabSheet();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTabSheet)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. int GetCurSel();
  27. int SetCurSel(int nItem);
  28. void Show();
  29. void SetRect();
  30. BOOL AddPage(LPCTSTR title, UINT uImgIndex, CDialog *pDialog, UINT ID);
  31. void SetPageName(UINT uPageIndex, CString strTitle);
  32. virtual ~CTabSheet();
  33. // Generated message map functions
  34. protected:
  35. CString m_Title[MAXPAGE];
  36. UINT m_IDD[MAXPAGE];
  37. UINT m_Image[MAXPAGE];
  38. CDialog* m_pPages[MAXPAGE];
  39. int m_nNumOfPages;
  40. int m_nCurrentPage;
  41. //{{AFX_MSG(CTabSheet)
  42. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_TABSHEET_H__7B923B80_00CF_45FF_91AD_77D13B2B2CFD__INCLUDED_)