StatusBar.h
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1997 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. /*****************************************************************************
  11.   Purpose: 
  12.    Interface for CDlgToolBar, a special type of CToolBar which does not
  13.    expect a parent frame window to be available, and CDlgStatusBar, which
  14.    does the same for CStatusBars.  This allows the control bars
  15.    to be used in applications where the main window is a dialog bar.
  16.   Functions:
  17.     CDlgStatusBar::CDlgStatusBar()      -- constructor
  18.     CDlgStatusBar::~CDlgStatusBar()     -- destructor
  19.     CDlgStatusBar::OnIdleUpdateCmdUI() -- WM_IDLEUPDATECMDUI handler
  20.   Development Team:
  21. Mary Kirtland
  22.   Ported to 32-bit by:
  23.     Mike Hedley
  24.   Created by Microsoft Product Support Services, Premier ISV Support
  25.   Copyright (c) 1997 Microsoft Corporation. All rights reserved.
  26. ****************************************************************************/
  27. class CDlgStatusBar : public CStatusBar 
  28. {   
  29. // Construction
  30. public:
  31. CDlgStatusBar();
  32.    
  33. // Implementation
  34. public:   
  35. virtual ~CDlgStatusBar();
  36. protected:                
  37. // Generated message map functions
  38. //{{AFX_MSG(CDlgStatusBar)
  39. afx_msg LRESULT OnIdleUpdateCmdUI(WPARAM wParam, LPARAM);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };