Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*******************************************************************************
  3. *
  4. * basedrpl.h
  5. *
  6. * interface of CBaseDropListBox class
  7. * The CBaseDropListBox class does things the way we like, overriding the base
  8. * CComboBox (no edit field) class.
  9. *
  10. * copyright notice: Copyright 1995, Citrix Systems Inc.
  11. *
  12. * $Author: butchd $ Butch Davis
  13. *
  14. * $Log: N:\NT\PRIVATE\UTILS\CITRIX\WINUTILS\COMMON\VCS\BASEDRPL.H $
  15. *
  16. * Rev 1.1 29 Dec 1995 17:19:30 butchd
  17. * update
  18. *
  19. *******************************************************************************/
  20. #ifndef BASEDRPL_INCLUDED
  21. ////////////////////////////////////////////////////////////////////////////////
  22. // CBaseDropListBox class
  23. //
  24. class CBaseDropListBox : public CComboBox
  25. {
  26. /*
  27. * Member variables.
  28. */
  29. public:
  30. private:
  31. /*
  32. * Operations.
  33. */
  34. public:
  35. BOOL Subclass(CComboBox* pWnd);
  36. /*
  37. * Message map / commands.
  38. */
  39. protected:
  40. //{{AFX_MSG(CBaseDropListBox)
  41. afx_msg UINT OnGetDlgCode();
  42. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. }; // end CBaseDropListBox class interface
  46. ////////////////////////////////////////////////////////////////////////////////
  47. #define BASEDRPL_INCLUDED
  48. #endif