TLabelList.h
上传用户:cnjubao
上传日期:2007-01-02
资源大小:34k
文件大小:1k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. /************************************
  2.   REVISION LOG ENTRY
  3.   Revision By: Mihai Filimon
  4.   Revised on 8/23/98 19:33:40
  5.   Comments: TLabelComboBox.h: interface for the CTLabelList class.
  6.  ************************************/
  7. #if !defined(AFX_TLABELCOMBOBOX_H__D6C397A2_ECEA_11D1_8540_9B1C6856D236__INCLUDED_)
  8. #define AFX_TLABELCOMBOBOX_H__D6C397A2_ECEA_11D1_8540_9B1C6856D236__INCLUDED_
  9. #if _MSC_VER >= 1000
  10. #pragma once
  11. #endif // _MSC_VER >= 1000
  12. #include "TLabelEdit.h"
  13. class CTLabelList : public CTLabelEdit  
  14. {
  15. public:
  16. // Overidable
  17. virtual CWnd* GetEditControl() = NULL;
  18. // Others..
  19. virtual BOOL IsEditDestroyable();
  20. virtual void ShowEdit();
  21. virtual void Attach(HWND hwnd);
  22. void Attach(CWnd* pWnd);
  23. virtual CWnd* GetWindowControl();
  24. CTLabelList();
  25. virtual ~CTLabelList();
  26. private:
  27. CString m_sSeparator;
  28. HWND m_hWndList;
  29. };
  30. #endif // !defined(AFX_TLABELCOMBOBOX_H__D6C397A2_ECEA_11D1_8540_9B1C6856D236__INCLUDED_)