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
2.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998-2001.
  5. //
  6. // File: options.h
  7. //
  8. // Contents: CViewOptionsDlg - snapin-wide view options
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined(AFX_OPTIONS_H__191D8831_D3A8_11D1_955E_0000F803A951__INCLUDED_)
  12. #define AFX_OPTIONS_H__191D8831_D3A8_11D1_955E_0000F803A951__INCLUDED_
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. // options.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CViewOptionsDlg dialog
  20. class CCertMgrComponentData; // forward declaration
  21. class CViewOptionsDlg : public CHelpDialog
  22. {
  23. // Construction
  24. public:
  25. CViewOptionsDlg(CWnd* pParent, CCertMgrComponentData* pCompData); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CViewOptionsDlg)
  28. enum { IDD = IDD_VIEW_OPTIONS };
  29. CButton m_showPhysicalButton;
  30. CButton m_viewByStoreBtn;
  31. CButton m_viewByPurposeBtn;
  32. BOOL m_bShowPhysicalStores;
  33. BOOL m_bShowArchivedCerts;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CViewOptionsDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. void DoContextHelp (HWND hWndControl);
  44. // Generated message map functions
  45. //{{AFX_MSG(CViewOptionsDlg)
  46. virtual BOOL OnInitDialog();
  47. virtual void OnOK();
  48. afx_msg void OnViewByPurpose();
  49. afx_msg void OnViewByStore();
  50. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. private:
  54. CCertMgrComponentData* m_pCompData;
  55. };
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_OPTIONS_H__191D8831_D3A8_11D1_955E_0000F803A951__INCLUDED_)