123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #pragma once
- #include "afxcmn.h"
- // CDlg_ActionWithAlarm 对话框
- class CDlg_ActionWithAlarm : public CDialog
- {
- DECLARE_DYNAMIC(CDlg_ActionWithAlarm)
- public:
- CDlg_ActionWithAlarm(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlg_ActionWithAlarm();
- // 对话框数据
- enum { IDD = IDD_DLG_ACTIONWITHALARM };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- virtual BOOL OnInitDialog();
- CListCtrl m_ctrlList;
- CListBox m_ctrlListBoxSrc;
- CListBox m_ctrlListBoxDest;
- afx_msg void OnBnClickedBtnSelSingle();
- afx_msg void OnBnClickedBtnSelAll();
- afx_msg void OnBnClickedBtnReverseSelSingle();
- afx_msg void OnBnClickedBtnReverseSelAll();
- afx_msg void OnNMClickList1(NMHDR *pNMHDR, LRESULT *pResult);
- afx_msg void OnBnClickedBtnAdd();
- afx_msg void OnBnClickedBtnModify();
- afx_msg void OnBnClickedBtnDel();
- afx_msg void OnBnClickedOk();
- afx_msg void OnBnClickedCancel();
- CString m_sDoSet,m_sDoStatus;
- CString m_sDoSetPlanTime;
- int m_nAlarmData,m_nResumeData;
- int m_nListSel;
- };
|