Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.3 KiB

  1. #if !defined(AFX_MANAGEDIALOG_H__AEF13AD1_98C6_4DDF_80F8_F74873918D25__INCLUDED_)
  2. #define AFX_MANAGEDIALOG_H__AEF13AD1_98C6_4DDF_80F8_F74873918D25__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ManageDialog.h : header file
  7. //
  8. #include "watcher.h"
  9. #include "ParameterDialog.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // ManageDialog dialog
  12. class ManageDialog : public CDialog
  13. {
  14. // Construction
  15. public:
  16. void SetApplicationPtr(CWatcherApp *watcher);
  17. ManageDialog(CWnd* pParent = NULL); // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(ManageDialog)
  20. enum { IDD = Manage };
  21. // NOTE: the ClassWizard will add data members here
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(ManageDialog)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. CWatcherApp *m_watcher;
  32. int m_Index;
  33. UINT Port;
  34. int lang;
  35. int tc;
  36. int hist;
  37. CString Session;
  38. CString LoginPasswd;
  39. CString LoginName;
  40. CString language;
  41. CString tcclnt;
  42. CString Command;
  43. CString Machine;
  44. CString history;
  45. void GetSetParameters(ParameterDialog &pd);
  46. int SetParameters(CString &mac,
  47. CString &com,
  48. CString &lgnName,
  49. CString &lgnPasswd,
  50. UINT port,
  51. int lang,
  52. int tc,
  53. int hist,
  54. HKEY &child
  55. );
  56. // Generated message map functions
  57. //{{AFX_MSG(ManageDialog)
  58. afx_msg void OnEditButton();
  59. afx_msg void OnDeleteButton();
  60. afx_msg void OnNewButton();
  61. afx_msg void OnNextButton();
  62. afx_msg void OnPrevButton();
  63. virtual void OnOK();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69. #endif // !defined(AFX_MANAGEDIALOG_H__AEF13AD1_98C6_4DDF_80F8_F74873918D25__INCLUDED_)