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.

69 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name :
  4. propsdlg.h
  5. Abstract:
  6. Link checker properties dialog class declaration.
  7. Author:
  8. Michael Cheuk (mcheuk)
  9. Project:
  10. Link Checker
  11. Revision History:
  12. --*/
  13. #ifndef _PROPSDLG_H_
  14. #define _PROPSDLG_H_
  15. //---------------------------------------------------------------------------
  16. // CPropertiesDialog dialog
  17. //
  18. class CPropertiesDialog : public CDialog
  19. {
  20. // Public interfaces
  21. public:
  22. // Construction
  23. CPropertiesDialog(CWnd* pParent = NULL); // standard constructor
  24. // Dialog Data
  25. //{{AFX_DATA(CPropertiesDialog)
  26. enum { IDD = IDD_PROPERTIES };
  27. CCheckListBox m_LanguageCheckList;
  28. CCheckListBox m_BrowserCheckList;
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CPropertiesDialog)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Get the number of items checked in a check listbox.
  39. int NumItemsChecked(CCheckListBox& ListBox);
  40. // Generated message map functions
  41. //{{AFX_MSG(CPropertiesDialog)
  42. virtual BOOL OnInitDialog();
  43. afx_msg void OnPropertiesOk();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. #endif // _PROPSDLG_H_