debugoutinfodlg.h

来自「一个PLX教学编译器IDE」· C头文件 代码 · 共 64 行

H
64
字号
/////////////////////////////////////////////////////////////////////////////////////////////////
//                             Author : tuwei                                                  //
//                               ECNU.CS.03                                                    //
//                             2006.9 ~ 2006.11                                                //
//                           Copyright (C) reserved                                            //
//                                                                                             //
//                                                                                             //
//   Function:                                                                                 //                          
//           Debug information view.                                                           //
//                                                                                             //
//   Credit:                                                                                   // 
//           If you use this control in your application please keep the file header in        //
//           your source or put author's name in your product.                                 //
//                                                                                             //
//                                                                                             //
/////////////////////////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_DEBUGOUTINFODLG_H__1FE86720_267C_40C4_BBDA_2495FDAD181B__INCLUDED_)
#define AFX_DEBUGOUTINFODLG_H__1FE86720_267C_40C4_BBDA_2495FDAD181B__INCLUDED_

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

#include "AdvEditCtrl.h"
#include "DebugOutInfoView.h"
#include "AdvResultView.h"
#include "AdvVariableList.h"

class CDebugOutinfoDlg : public CDialog
{
public:
	CDebugOutinfoDlg(CWnd* pParent = NULL); 
	
protected:
	CFont   m_strFont;

public:
	//{{AFX_DATA(CDebugOutinfoDlg)
	enum { IDD = IDD_DEBUGOUTINFRODIALOG };
	CStatic	            m_variableStatic;
	CStatic	            m_codeState;
	CStatic	            m_resultStatic;
	CAdvVariableList	m_variableList;
	CAdvResultView	    m_resultView;
	CDebugOutInfoView	m_codeView;
	//}}AFX_DATA

	//{{AFX_VIRTUAL(CDebugOutinfoDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);   
	//}}AFX_VIRTUAL

protected:
	//{{AFX_MSG(CDebugOutinfoDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnClose();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};
//{{AFX_INSERT_LOCATION}}
#endif // !defined(AFX_DEBUGOUTINFODLG_H__1FE86720_267C_40C4_BBDA_2495FDAD181B__INCLUDED_)

⌨️ 快捷键说明

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