ComboInListView.h
上传用户:meggie0806
上传日期:2007-01-02
资源大小:87k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_COMBOINLISTVIEW_H__60972C62_A33C_11D1_9798_002018026B76__INCLUDED_)
  2. #define AFX_COMBOINLISTVIEW_H__60972C62_A33C_11D1_9798_002018026B76__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // ComboInListView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CComboInListView window
  10. class CComboInListView : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CComboInListView(int iItem, int iSubItem, CStringList *plstItems);
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CComboInListView)
  22. public:
  23. virtual BOOL PreTranslateMessage(MSG* pMsg);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CComboInListView();
  28. private:
  29. int  m_iItem;
  30. int  m_iSubItem;
  31. CStringList m_lstItems;
  32. BOOL m_bVK_ESCAPE;
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CComboInListView)
  36. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  37. afx_msg void OnKillFocus(CWnd* pNewWnd);
  38. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  39. afx_msg void OnNcDestroy();
  40. afx_msg void OnCloseup();
  41. afx_msg void OnSize(UINT nType, int cx, int cy);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_COMBOINLISTVIEW_H__60972C62_A33C_11D1_9798_002018026B76__INCLUDED_)