MyStatusBar.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_)
  2. #define AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyStatusBar.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyStatusBar window
  10. class CMyStatusBar : public CStatusBar
  11. {
  12. // Construction
  13. public:
  14. CMyStatusBar();
  15. //在自定义工具条中添加的AVI播放控件
  16. CAnimateCtrl m_AnimateCtrl;
  17. CComboBox m_ComboBox;
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMyStatusBar)
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. //虚拟击键操作函数
  29. void SimulateHitKey(int nVirtualKey);
  30. //对组合列表框控件选择内容发生变化时的响应函数
  31. void OnSelchangeCombo();
  32. virtual ~CMyStatusBar();
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CMyStatusBar)
  36. //对工具条上的鼠标左、右击信息进行响应
  37. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  38. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg void OnSize(UINT nType, int cx, int cy);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_BITMAPSTATUSBAR_H__9320E697_4641_4916_B100_451BD78A7F5F__INCLUDED_)