Leaked source code of windows server 2003
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.

57 lines
1.3 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: daily.hxx
  7. //
  8. // Contents: Task wizard onestop daily selection property page.
  9. //
  10. // Classes: CSelectDailyPage
  11. //
  12. // History: 11-21-1998 SusiA
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __DAILY_HXX_
  16. #define __DAILY_HXX_
  17. #define MAX_DP_TIME_FORMAT 30
  18. //+--------------------------------------------------------------------------
  19. //
  20. // Class: CSelectDailyPage
  21. //
  22. // Purpose: Implement the task wizard welcome dialog
  23. //
  24. // History: 11-21-1998 SusiA
  25. //
  26. //---------------------------------------------------------------------------
  27. class CSelectDailyPage: public CWizPage
  28. {
  29. public:
  30. //
  31. // Object creation/destruction
  32. //
  33. CSelectDailyPage::CSelectDailyPage(
  34. HINSTANCE hinst,
  35. ISyncSchedule *pISyncSched,
  36. HPROPSHEETPAGE *phPSP);
  37. BOOL Initialize(HWND hDlg);
  38. VOID EnableNDaysControls(BOOL fEnable);
  39. BOOL OnCommand(HWND hwnd, WORD wID, WORD wNotifyCode);
  40. BOOL SetITrigger();
  41. private:
  42. TCHAR m_tszTimeFormat[MAX_DP_TIME_FORMAT];
  43. int m_idSelectedRadio;
  44. };
  45. #endif // __DAILY_HXX_