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

界面编程

开发平台:

Visual C++

  1. // OutputBar.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef __OUTPUTBAR_H__
  5. #define __OUTPUTBAR_H__
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // COutputBar class
  11. #include "cjlibrary.h"
  12. class COutputBar : public CCJControlBar
  13. {
  14. DECLARE_DYNAMIC(COutputBar)
  15. // Construction
  16. public:
  17. COutputBar();
  18. // Attributes
  19. public:
  20. CCJFlatTabCtrl m_FlatTabCtrl; // flat tab control
  21. CListBox m_OutputList[4];
  22. CFont m_Font;
  23. void SelectTabView(int nTab);
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(COutputBar)
  29. protected:
  30. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~COutputBar();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(COutputBar)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnSize(UINT nType, int cx, int cy);
  40. afx_msg void OnPaint();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  47. #endif // __OUTPUTBAR_H__