motionparam.h

来自「机械手IPC控制器伺服运动程序」· C头文件 代码 · 共 65 行

H
65
字号
#if !defined(AFX_MOTIONPARAM_H__F6AB50B7_3522_43AE_B6BE_98BBC632BABB__INCLUDED_)
#define AFX_MOTIONPARAM_H__F6AB50B7_3522_43AE_B6BE_98BBC632BABB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MotionParam.h : header file
//
#include "public.h"
#include "MyEditFull.h"
/////////////////////////////////////////////////////////////////////////////
// CMotionParam dialog

class CMotionParam : public CDialog
{
// Construction
public:
	void SaveRecords();
	void LoadRecords();
	BOOL CanSerialize();
	CMotionParam(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CMotionParam)
	enum { IDD = IDD_MOTIONPARAM };
	CMyEditFull	m_edt3;
	CMyEditFull	m_edt2;
	CMyEditFull	m_edt1;
	float	m_acctime;
	float	m_dectime;
	int		m_unit;
	int		m_coordtype;
	int		m_acctype;
	int		m_dectype;
	double	m_speed;
	//}}AFX_DATA
    Cpublic m_public;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMotionParam)
	public:
	virtual void Serialize(CArchive& ar);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CMotionParam)
	afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
	afx_msg void OnButton2();
	afx_msg void OnButton1();
	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_MOTIONPARAM_H__F6AB50B7_3522_43AE_B6BE_98BBC632BABB__INCLUDED_)

⌨️ 快捷键说明

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