home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / docktool / searchbx.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  49 lines

  1. // searchbx.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSearchBox window
  15.  
  16. class CSearchBox : public CComboBox
  17. {
  18. // Construction
  19. public:
  20.     CSearchBox();
  21.  
  22. // Attributes
  23. public:
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CSearchBox)
  31.     public:
  32.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CSearchBox();
  38.  
  39.     // Generated message map functions
  40. protected:
  41.     //{{AFX_MSG(CSearchBox)
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.     //}}AFX_MSG
  44.  
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.