CategoryCombobox.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_CATEGORYCOMBOBOX_H__DBE141BA_037B_4302_8372_AD3B8F820949__INCLUDED_)
  2. #define AFX_CATEGORYCOMBOBOX_H__DBE141BA_037B_4302_8372_AD3B8F820949__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CategoryCombobox.h : header file
  7. //
  8. #define ICONWIDTH 15
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CCategoryCombobox window
  11. typedef struct SFolder
  12. {
  13. int m_iImageIndex; // Index of picture in image list
  14. int m_iIndent; // Indentation index
  15. // CString m_sFolderName; // Descriptive name of folder
  16. // CString m_sPathName; // Actual full pathname of folder or folders
  17. HTREEITEM m_hItem;
  18. } SFOLDER, *LPSFOLDER;
  19. class CCategoryCombobox : public CComboBox
  20. {
  21. // Construction
  22. public:
  23. CCategoryCombobox();
  24. // Attributes
  25. // CImageList m_imgFolders;
  26. // CImageList m_imgDisabledFolders;
  27. CImageList* m_pimgList;
  28. public:
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CCategoryCombobox)
  34. //}}AFX_VIRTUAL
  35. void DrawItem( LPDRAWITEMSTRUCT pDIStruct );
  36. // Implementation
  37. public:
  38. void DeleteAllItems();
  39. virtual ~CCategoryCombobox();
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CCategoryCombobox)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //}}AFX_MSG
  45. void OnDestroy();
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_CATEGORYCOMBOBOX_H__DBE141BA_037B_4302_8372_AD3B8F820949__INCLUDED_)