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.

81 lines
2.0 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1997 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // RegKey.h
  7. //
  8. // Abstract:
  9. // Definition of the CEditRegKeyDlg class, which implements a dialog
  10. // allowing the user to enter or modify a registry key.
  11. //
  12. // Implementation File:
  13. // RegKey.cpp
  14. //
  15. // Author:
  16. // David Potter (davidp) February 23, 1997
  17. //
  18. // Revision History:
  19. //
  20. // Notes:
  21. //
  22. /////////////////////////////////////////////////////////////////////////////
  23. #ifndef _REGKEY_H_
  24. #define _REGKEY_H_
  25. /////////////////////////////////////////////////////////////////////////////
  26. // Include Files
  27. /////////////////////////////////////////////////////////////////////////////
  28. #ifndef _BASEDLG_H_
  29. #include "BaseDlg.h" // for CBaseDialog
  30. #endif
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Forward Class Declarations
  33. /////////////////////////////////////////////////////////////////////////////
  34. class CEditRegKeyDlg;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CEditRegKeyDlg dialog
  37. /////////////////////////////////////////////////////////////////////////////
  38. class CEditRegKeyDlg : public CBaseDialog
  39. {
  40. // Construction
  41. public:
  42. CEditRegKeyDlg(CWnd * pParent = NULL); // standard constructor
  43. // Dialog Data
  44. //{{AFX_DATA(CEditRegKeyDlg)
  45. enum { IDD = IDD_EDIT_REGKEY };
  46. CButton m_pbOK;
  47. CEdit m_editRegKey;
  48. CString m_strRegKey;
  49. //}}AFX_DATA
  50. // Overrides
  51. // ClassWizard generated virtual function overrides
  52. //{{AFX_VIRTUAL(CEditRegKeyDlg)
  53. protected:
  54. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  55. //}}AFX_VIRTUAL
  56. // Implementation
  57. protected:
  58. // Generated message map functions
  59. //{{AFX_MSG(CEditRegKeyDlg)
  60. afx_msg void OnChangeRegKey();
  61. virtual BOOL OnInitDialog();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. }; //*** class CEditRegKeyDlg
  65. /////////////////////////////////////////////////////////////////////////////
  66. #endif // _REGKEY_H_