DlgSetIni.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #pragma once
  2. // CDlgSetIni 对话框
  3. class CDlgSetIni : public CDialog
  4. {
  5. DECLARE_DYNAMIC(CDlgSetIni)
  6. public:
  7. CDlgSetIni(CWnd* pParent = NULL); // 标准构造函数
  8. virtual ~CDlgSetIni();
  9. // 对话框数据
  10. enum { IDD = IDD_DLGSETINI };
  11. protected:
  12. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  13. DECLARE_MESSAGE_MAP()
  14. public:
  15. // 局域共享账号
  16. CString m_strShareAccount;
  17. // 局域网共享密码
  18. CString m_strSharePasswd;
  19. CString m_strN8ViewSvrIP;
  20. CString m_strN8ViewUserDir;
  21. CString m_strN8ViewStsDir;
  22. CString m_strN8ViewProductDir;
  23. CString m_strN8ViewShareName;
  24. CString m_strN8ViewShareDir;
  25. public:
  26. virtual BOOL OnInitDialog();
  27. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  28. afx_msg void OnBnClickedOk();
  29. afx_msg void OnBnClickedCancel();
  30. afx_msg void OnBnClickedGetproductdir();
  31. afx_msg void OnBnClickedGetuserdir();
  32. afx_msg void OnBnClickedGetdatadir();
  33. afx_msg void OnBnClickedImportproduct();
  34. afx_msg void OnBnClickedImportstaff();
  35. afx_msg void OnBnClickedGetn8sharedir();
  36. afx_msg void OnBnClickedDispalyshare();
  37. virtual BOOL PreTranslateMessage(MSG* pMsg);
  38. };