OutputBar.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
- // OutputBar.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- #ifndef __OUTPUTBAR_H__
- #define __OUTPUTBAR_H__
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- /////////////////////////////////////////////////////////////////////////////
- // COutputBar class
- #include "cjlibrary.h"
- class COutputBar : public CCJControlBar
- {
- DECLARE_DYNAMIC(COutputBar)
- // Construction
- public:
- COutputBar();
- // Attributes
- public:
-
- CCJFlatTabCtrl m_FlatTabCtrl; // flat tab control
- CListBox m_OutputList[4];
- CFont m_Font;
-
- void SelectTabView(int nTab);
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(COutputBar)
- protected:
- virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~COutputBar();
- // Generated message map functions
- protected:
- //{{AFX_MSG(COutputBar)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg void OnPaint();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
- #endif // __OUTPUTBAR_H__