MarkupListCtrl.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_MARKUPLISTCTRL_H__06229B33_231D_466F_A764_F8C47946C163__INCLUDED_)
  2. #define AFX_MARKUPLISTCTRL_H__06229B33_231D_466F_A764_F8C47946C163__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MarkupListCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. class CXTPMarkupUIElement;
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMarkupListCtrl window
  12. struct MARKUP_LISTITEM
  13. {
  14. public:
  15. MARKUP_LISTITEM(CXTPMarkupContext* pContext);
  16. ~MARKUP_LISTITEM();
  17. public:
  18. void Resolve(LPCTSTR lpszMarkup);
  19. CString strMarkup;
  20. CXTPMarkupUIElement* pItem;
  21. CXTPMarkupContext* pContext;
  22. };
  23. #include "ControlsXTListBox.h"
  24. class CMarkupListCtrl : public CXTListBox, public CXTPMarkupContext
  25. {
  26. // Construction
  27. public:
  28. CMarkupListCtrl();
  29. // Attributes
  30. public:
  31. // Operations
  32. public:
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CMarkupListCtrl)
  36. public:
  37. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  38. virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  39. virtual void DeleteItem(LPDELETEITEMSTRUCT lpDeleteItemStruct);
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. public:
  43. virtual ~CMarkupListCtrl();
  44. bool Init();
  45. void ItemChanged(MARKUP_LISTITEM* pItem);
  46. // Generated message map functions
  47. protected:
  48. //{{AFX_MSG(CMarkupListCtrl)
  49. afx_msg void OnSize(UINT nType, int cx, int cy);
  50. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_MARKUPLISTCTRL_H__06229B33_231D_466F_A764_F8C47946C163__INCLUDED_)