EDITBAR.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // editbar.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. #include "searchbx.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CEditBar window
  15. class CEditBar : public CToolBar
  16. {
  17. // Construction
  18. public:
  19. BOOL m_bColor;
  20. CSearchBox m_SearchBox;
  21. CEditBar();
  22. BOOL Init(CWnd* pParentWnd, BOOL bColor, BOOL bToolTips);
  23. BOOL SetColor(BOOL bColor);
  24. BOOL SetHorizontal();
  25. BOOL SetVertical();
  26. // Attributes
  27. public:
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CEditBar)
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. BOOL m_bVertical;
  37. virtual ~CEditBar();
  38. //  virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  39. virtual CSize CalcDynamicLayout(int nLength, DWORD dwMode);
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CEditBar)
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////