37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#pragma once
|
|
|
|
|
|
// TestTesaStarEDialog dialog
|
|
|
|
class TestTesaStarEDialog : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(TestTesaStarEDialog)
|
|
|
|
public:
|
|
TestTesaStarEDialog(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~TestTesaStarEDialog();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_DIALOG_TESA_STAR_E };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual BOOL OnInitDialog();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
CEdit m_edMSG;
|
|
CString m_OutMessage;
|
|
CStatusBarCtrl m_StatusBar;
|
|
public:
|
|
void OutputWithScroll(const CString &strNewText,CEdit &edtOutput);
|
|
afx_msg void OnBnClickedCancel();
|
|
afx_msg void OnEnKillfocusEditMoveT_Deg();
|
|
afx_msg void OnBnClickedButtonidcButtonTesaStarMoveto();
|
|
afx_msg void OnBnClickedButtonTesaStarStartMachine();
|
|
afx_msg void OnBnClickedButtonTesaStarStopMachine();
|
|
afx_msg void OnBnClickedButtonTesaStarSendmsg();
|
|
afx_msg void OnBnClickedButtonTesaStarClearLog();
|
|
afx_msg void OnBnClickedButtonidcButtonTesaStarReadPos();
|
|
afx_msg void OnEnKillfocusEditMovetoDega();
|
|
};
|