outputwindow.h

来自「界面开发」· C头文件 代码 · 共 72 行

H
72
字号
// OutputWindow.h: interface for the COutputWindow class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_)
#define AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "GuiControlBar.h"
#include "GuiWorktab.h"

class COutputList : public CListBox
{
// Construction
public:
	COutputList();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(COutputList)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~COutputList();

	// Generated message map functions
protected:
	//{{AFX_MSG(COutputList)
	afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

class COutputWindow : public CGuiControlBar  
{
public:
	COutputWindow();
	virtual ~COutputWindow();
	CGuiWorkTab	m_wndWorkTab;
		COutputList m_wndEdit;
	COutputList m_wndDebug;
	COutputList m_wndFind1;
	COutputList m_wndFind2;
	COutputList m_wndResult;
	COutputList m_wndSqlDebug;
	virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP)
	{
		m_StyleDisplay=dwDsp;
		m_wndWorkTab.StyleDispl(dwDsp);
		CGuiControlBar::StyleDispl(dwDsp);
	}
protected:
	//{{AFX_MSG(CMyBar)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
		afx_msg void OnSize(UINT nType, int cx, int cy);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

#endif // !defined(AFX_OUTPUTWINDOW_H__35C1CE94_D79B_11D4_B90C_000000000000__INCLUDED_)

⌨️ 快捷键说明

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