⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outpbar.h

📁 用bcg库编写的java IDE 源码
💻 H
字号:

#ifndef __OUTPBAR_H__INCLUDED__
#define __OUTPBAR_H__INCLUDED__

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#include "MainDockBar.h"
#include "SheetWnd.h"
#include "MsgOutPut.h"
/////////////////////////////////////////////////////////////////////////////
// COutputBar window
#include "OutPutDlg.h"

#define CBaseDockBar CMainDockBar

#pragma warning ( disable : 4512 )
class COutputBar : public CBaseDockBar
{
    // Construction
public :
    COutputBar ();
    COutPutDlg   m_wndOutPutDlg;
    BOOL m_bShow;

    // Attributes
public :

protected :

    // Overridables
public :

    // Operations
public :

    // Overrides
    // ClassWizard generated virtual function overrides
    //{{AFX_VIRTUAL(COutputBar)
    //}}AFX_VIRTUAL
    virtual CString GetName ();

    // Implementation
public :
    virtual ~COutputBar ();

    // Generated message map functions
protected :
    //{{AFX_MSG(COutputBar)

    //}}AFX_MSG
    afx_msg int OnCreate (LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);

    DECLARE_MESSAGE_MAP ()
  };
#pragma warning ( default : 4512 )

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // __OUTPBAR_H__INCLUDED__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -