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.

27 lines
581 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. #ifndef __CHECKLISTHANDLER__
  3. #define __CHECKLISTHANDLER__
  4. #pragma once
  5. #include "ChkList.h"
  6. // knows how to do security stuff with the 'generic' chklist.
  7. class CCheckListHandler
  8. {
  9. public:
  10. CCheckListHandler();
  11. ~CCheckListHandler();
  12. void Attach(HWND hDlg, int chklistID);
  13. void Reset(void);
  14. void Empty(void);
  15. // handles the complex relationship between allow and deny
  16. // checkboxes.
  17. void HandleListClick(PNM_CHECKLIST pnmc);
  18. private:
  19. HWND m_hDlg, m_hwndList;
  20. };
  21. #endif __CHECKLISTHANDLER__