myexam07dlg.h

来自「ARX/CAD二次开发」· C头文件 代码 · 共 82 行

H
82
字号
#if !defined(AFX_MYEXAM07DLG_H__2088EEF7_85C6_11D3_BBB7_E34A1B19B923__INCLUDED_)
#define AFX_MYEXAM07DLG_H__2088EEF7_85C6_11D3_BBB7_E34A1B19B923__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// MyExam07Dlg dialog

#include "resource.h"
#include <dbsymtb.h>
#include <dbapserv.h>
#include <adslib.h>
#include <adui.h>
#include <acui.h>


class MyExam07Dlg : public CAcUiDialog
{
// Construction
public:
	MyExam07Dlg(CWnd* pParent = NULL);   // standard constructor

	void DisplayPoint();
	bool ValidatePoint();
	void DisplayAngle();
	bool ValidateAngle();
	void DisplayBlocks();
	void DisplayRegApps();

	CString m_strAngle;
	CString m_strXPt;
	CString m_strYPt;
	CString m_strZPt;

// Dialog Data
	//{{AFX_DATA(MyExam07Dlg)
	enum { IDD = IDD_DIALOG1 };
	CAcUiSymbolComboBox m_ctrlRegAppComboBox;
	CAcUiListBox m_ctrlBlockListBox;
	CAcUiPickButton m_ctrlPickButton;
	CAcUiPickButton m_ctrlAngleButton;
	CAcUiAngleEdit m_ctrlAngleEdit;
	CAcUiNumericEdit m_ctrlXPtEdit;
	CAcUiNumericEdit m_ctrlYPtEdit;
	CAcUiNumericEdit m_ctrlZPtEdit;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(MyExam07Dlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(MyExam07Dlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnButtonAngle();
	afx_msg void OnButtonPoint();
	virtual void OnOK();
	afx_msg void OnKillfocusComboRegapps();
	afx_msg void OnKillfocusEditAngle();
	afx_msg void OnKillfocusEditXpt();
	afx_msg void OnKillfocusEditYpt();
	afx_msg void OnKillfocusEditZpt();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_MYEXAM07DLG_H__2088EEF7_85C6_11D3_BBB7_E34A1B19B923__INCLUDED_)

⌨️ 快捷键说明

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