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.

52 lines
1.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: editschd.hxx
  7. //
  8. // Contents: Task schedule property page.
  9. //
  10. // Classes: CEditSchedPage
  11. //
  12. // History: 11-21-1997 SusiA
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __EDITSCHD_HXX_
  16. #define __EDITSCHD_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CEditSchedPage
  20. //
  21. // Purpose: Implement the task wizard welcome dialog
  22. //
  23. // History: 11-21-1997 SusiA
  24. //
  25. //---------------------------------------------------------------------------
  26. class CEditSchedPage: public CWizPage
  27. {
  28. public:
  29. //
  30. // Object creation/destruction
  31. //
  32. CEditSchedPage(
  33. HINSTANCE hinst,
  34. ISyncSchedule *pISyncSched,
  35. HPROPSHEETPAGE *phPSP);
  36. BOOL ShowSchedName();
  37. void SetSchedNameDirty();
  38. BOOL SetSchedName();
  39. BOOL Initialize(HWND hwnd);
  40. private:
  41. HWND m_hwnd;
  42. BOOL m_fSchedNameChanged;
  43. };
  44. #endif // __EDITSCHD_HXX_