editoroptionpage.h

来自「用bcg库编写的java IDE 源码」· C头文件 代码 · 共 66 行

H
66
字号
#if !defined(AFX_EDITOROPTIONPAGE_H__ED53E7F2_423A_489B_AE74_36367833EC02__INCLUDED_)
#define AFX_EDITOROPTIONPAGE_H__ED53E7F2_423A_489B_AE74_36367833EC02__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CEditorOptionPage dialog
#include "SAPrefsSubDlg.h"

class CEditorOptionPage : public CSAPrefsSubDlg//CPropertyPage
{
	DECLARE_DYNCREATE(CEditorOptionPage)

// Construction
public:
	void SaveSettings();
	void LoadSettings();
	CEditorOptionPage();
	~CEditorOptionPage();

// Dialog Data
	//{{AFX_DATA(CEditorOptionPage)
	enum { IDD = IDD_OPTIONS_EDITOR };
	BOOL	m_bAutoTypeInfo;
	BOOL	m_bAutoListMembers;
	BOOL	m_bAutoParamInfo;
	BOOL	m_bAutoReloadExtModFiles;
	BOOL	m_bAutoWinRecycling;
	BOOL	m_bCodeComments;
	BOOL	m_bDragDrop;
	BOOL	m_bHorizScrllBar;
	BOOL	m_bPrmtB4SavingFiles;
	BOOL	m_bSaveB4RunningTools;
	BOOL	m_bSelectionMargin;
	BOOL	m_bVertScrllBar;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CEditorOptionPage)
	public:
	virtual void OnOK();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CEditorOptionPage)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

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

#endif // !defined(AFX_EDITOROPTIONPAGE_H__ED53E7F2_423A_489B_AE74_36367833EC02__INCLUDED_)

⌨️ 快捷键说明

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