www.pudn.com > SCIDE.rar > OutputBar.h
// OutputBar.h : header file
//
/////////////////////////////////////////////////////////////////////////////
#ifndef __OUTPUTBAR_H__
#define __OUTPUTBAR_H__
#include "sizecbar.h"
#ifndef baseCMyBar
#define baseCMyBar CSizingControlBar
#endif
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/////////////////////////////////////////////////////////////////////////////
// COutputBar class
class COutputBar : public baseCMyBar
{
DECLARE_DYNAMIC(COutputBar)
// Construction
public:
COutputBar();
// Attributes
public:
CListBox m_InfoList;
CFont m_font;
// Operations
public:
virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);//ÖØÔØ¸Ãº¯Êý
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(COutputBar)
protected:
//}}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
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // __OUTPUTBAR_H__