ComboCompletion.h
上传用户:hebinsheng
上传日期:2015-04-30
资源大小:25k
文件大小:2k
源码类别:

ICQ弱点检测代码

开发平台:

Visual C++

  1. #if !defined(AFX_ComboCompletion_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_)
  2. #define AFX_ComboCompletion_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // ComboCompletion.h : header file
  7. //
  8. // Autocompleting combo-box (like the URL edit box in netscape)
  9. //
  10. // Written by Chris Maunder (cmaunder@mail.com)
  11. // Copyright (c) 1998.
  12. //
  13. // This code may be used in compiled form in any way you desire. This
  14. // file may be redistributed unmodified by any means PROVIDING it is 
  15. // not sold for profit without the authors written consent, and 
  16. // providing that this notice and the authors name is included. If 
  17. // the source code in  this file is used in any commercial application 
  18. // then acknowledgement must be made to the author of this file 
  19. // (in whatever form you wish).
  20. //
  21. // This file is provided "as is" with no expressed or implied warranty.
  22. //
  23. // Expect bugs.
  24. // 
  25. // Please use and enjoy. Please let me know of any bugs/mods/improvements 
  26. // that you have found/implemented and I will fix/incorporate them into this
  27. // file. 
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CComboCompletion window
  32. class CComboCompletion : public CComboBox
  33. {
  34. // Construction
  35. public:
  36. CComboCompletion();
  37. // Attributes
  38. public:
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CComboCompletion)
  44. public:
  45. virtual BOOL PreTranslateMessage(MSG* pMsg);
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. virtual ~CComboCompletion();
  50. BOOL m_bAutoComplete;
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CComboCompletion)
  54. afx_msg void OnEditUpdate();
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_ComboCompletion_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_)