64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
#if !defined(AFX_OPSYNSPTDLG_H__85B59921_84E2_423F_AF50_C2D4D414B89D__INCLUDED_)
|
|
#define AFX_OPSYNSPTDLG_H__85B59921_84E2_423F_AF50_C2D4D414B89D__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// opsynsptdlg.h : header file
|
|
//
|
|
#include "EasySize.h"
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COpSynSptDlg dialog
|
|
class CDevice;
|
|
class COpSynSptDlg : public CDialog
|
|
{
|
|
DECLARE_EASYSIZE
|
|
// Construction
|
|
public:
|
|
COpSynSptDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(COpSynSptDlg)
|
|
enum { IDD = IDD_OP_SYN_SPT };
|
|
CListCtrl m_locSptList;
|
|
CListCtrl m_hostSptList;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(COpSynSptDlg)
|
|
public:
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(COpSynSptDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSptDownload();
|
|
afx_msg void OnSptUpload();
|
|
afx_msg void OnSptDel();
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
afx_msg void OnPaint();
|
|
|
|
static UINT DownloadScriptToGDDeviceThread(LPVOID lpParam);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
protected:
|
|
void InitULByLanguage(int iLanguage);
|
|
public:
|
|
// CString m_szDeSN;
|
|
CDevice* m_pDev;
|
|
int m_iSelSCID;//选中脚本的ID
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_OPSYNSPTDLG_H__85B59921_84E2_423F_AF50_C2D4D414B89D__INCLUDED_)
|