⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mixfiguredlg.h

📁 另一个VC与Matlab混合编程的例子
💻 H
字号:
// MixFigureDlg.h : header file
//

#if !defined(AFX_MIXFIGUREDLG_H__CA39EB66_8E0A_45B1_99A7_88BFEB610A4C__INCLUDED_)
#define AFX_MIXFIGUREDLG_H__CA39EB66_8E0A_45B1_99A7_88BFEB610A4C__INCLUDED_

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

#include "matlab.hpp"
#include "libmwsglm.hpp"

/////////////////////////////////////////////////////////////////////////////
// CMixFigureDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CMixFigureDlg)
	enum { IDD = IDD_MIXFIGURE_DIALOG };
	float	m_A;
	float	m_Omega;
	float	m_Theta;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMixFigureDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	virtual void OnOK();
	virtual void OnCancel();
	afx_msg void OnClose();
	afx_msg void OnDeltaposSpinA(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDeltaposSpinOmega(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDeltaposSpinTheta(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDestroy();
	afx_msg void OnDrawline();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	void SetVisible(mwArray h_a, mwArray strVisible);
	void PlotSin(mwArray h_a, mwArray A, mwArray Omega, mwArray Theta);
	mwArray GenAxis(mwArray strFigName, mwArray BKColor, mwArray strVisible);
	void DrawLine();
	mwArray h_a;
};

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

#endif // !defined(AFX_MIXFIGUREDLG_H__CA39EB66_8E0A_45B1_99A7_88BFEB610A4C__INCLUDED_)

⌨️ 快捷键说明

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