AddCmdImpl.h 900 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #pragma once
  2. #include "afxcmn.h"
  3. #include "afxwin.h"
  4. // CAddCmdImpl 对话框
  5. class CAddCmdImpl : public CDialog
  6. {
  7. DECLARE_DYNAMIC(CAddCmdImpl)
  8. public:
  9. CAddCmdImpl(CWnd* pParent = NULL); // 标准构造函数
  10. virtual ~CAddCmdImpl();
  11. // 对话框数据
  12. enum { IDD = Dlg_AddCmdImpl };
  13. CString m_strDepotPath;
  14. CString m_strRutDepotPath;
  15. CString m_strOldDeviceName;
  16. protected:
  17. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  18. DECLARE_MESSAGE_MAP()
  19. public:
  20. virtual BOOL OnInitDialog();
  21. afx_msg void OnBnClickedClose();
  22. afx_msg void OnBnClickedOk();
  23. protected:
  24. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  25. public:
  26. HTREEITEM hRootItem;
  27. CTreeCtrl m_CtrlTree;
  28. CImageList m_imgList;
  29. CPoint m_mousePoint;
  30. afx_msg void OnBnClickedAdd();
  31. CComboBox m_cobStore;
  32. CString m_strMark;
  33. CString m_strTip;
  34. BOOL m_bHasAdd;
  35. afx_msg void OnAddcmdimteimpl();
  36. };