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.

69 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. einfodlg.h
  5. Abstract:
  6. Author:
  7. Sivaprasad Padisetty (sivapad) 6/25/97
  8. Revision History:
  9. --*/
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CScheduleEventInfo dialog
  12. #include "globals.h"
  13. class CScheduleEventInfo : public CDialog
  14. {
  15. // Construction
  16. void InitializeFilter () ;
  17. public:
  18. DWORD dwCatagory ;
  19. struct SCHEDULE_EVENTINFO sEventInfo ;
  20. CScheduleEventInfo(CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CScheduleEventInfo)
  23. enum { IDD = IDD_SCEDULEEVENTINFO };
  24. CComboBox m_ctrlCatagory;
  25. CComboBox m_ctrlSubFilter;
  26. CComboBox m_ctrlFilter;
  27. CString m_stObjectName;
  28. CString m_stSCatagory;
  29. CString m_stSFilter;
  30. CString m_stSObjectName;
  31. CString m_stSSubFilter;
  32. CString m_stSSourceName;
  33. CString m_stSourceName;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CScheduleEventInfo)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CScheduleEventInfo)
  45. virtual void OnOK();
  46. virtual BOOL OnInitDialog();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };