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.

56 lines
1.6 KiB

  1. #if !defined(AFX_SUMMARYDLG_H__0AFEFC3C_9E2B_4988_8FF8_618EFA4F99C3__INCLUDED_)
  2. #define AFX_SUMMARYDLG_H__0AFEFC3C_9E2B_4988_8FF8_618EFA4F99C3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SummaryDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSummaryDlg dialog
  10. class CSummaryDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CSummaryDlg(CWnd* pParent = NULL); // standard constructor
  15. void SetDomainListPtr(CStringList * pList) {pDomainList = pList;}
  16. void SetExcludeListPtr(CStringList * pList) {pExcludeList = pList;}
  17. void SetPopulatedListPtr(CStringList * pList) {pPopulatedList = pList;}
  18. // Dialog Data
  19. //{{AFX_DATA(CSummaryDlg)
  20. enum { IDD = IDD_SUMMARYDLG };
  21. CListCtrl m_listCtrl;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CSummaryDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. CStringList * pDomainList; //pointer to a list of domains in the table
  32. CStringList * pExcludeList; //pointer to a list of domains excluded
  33. CStringList * pPopulatedList; //pointer to a list of domains successfully populated
  34. // Generated message map functions
  35. //{{AFX_MSG(CSummaryDlg)
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. void AddDomainsToList(void);
  40. void CreateListCtrlColumns(void);
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_SUMMARYDLG_H__0AFEFC3C_9E2B_4988_8FF8_618EFA4F99C3__INCLUDED_)