leftview.h

来自「一个类似VB代码编辑器.通过一个多文档模板导出」· C头文件 代码 · 共 70 行

H
70
字号
#if !defined(AFX_LEFTVIEW_H__2FED213C_6676_451D_AB4D_C4B4C689F647__INCLUDED_)
#define AFX_LEFTVIEW_H__2FED213C_6676_451D_AB4D_C4B4C689F647__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// LeftView.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// LeftView form view
#include "SCView.h"
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
#include "Resource.h"
#include "CCrystalEditView.h"
class LeftView : public CFormView
{
protected:
	LeftView();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(LeftView)
    
// Form Data
public:
	//{{AFX_DATA(LeftView)
	enum { IDD = IDD_LEFTVIEW };
	CButton	m_hide;
	CComboBox	m_function;
	CComboBox	m_action;
	//}}AFX_DATA

// Attributes
public:
    void AdjustSize();        //调整控件位置
	BOOL bOK;
// Operations
public:
    CSCView  *EditView;
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(LeftView)
	public:
	virtual void OnInitialUpdate();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~LeftView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
	//{{AFX_MSG(LeftView)
	afx_msg void OnSize(UINT nType, int cx, int cy);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LEFTVIEW_H__2FED213C_6676_451D_AB4D_C4B4C689F647__INCLUDED_)

⌨️ 快捷键说明

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