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.

72 lines
1.6 KiB

  1. // AspMnPg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CAppAspMainPage dialog
  5. class CAppAspMainPage : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE(CAppAspMainPage)
  8. // Construction
  9. public:
  10. CAppAspMainPage();
  11. ~CAppAspMainPage();
  12. // the target metabase path
  13. CString m_szMeta;
  14. CString m_szServer;
  15. IMSAdminBase* m_pMB;
  16. // blow away the parameters
  17. void BlowAwayParameters();
  18. // Dialog Data
  19. //{{AFX_DATA(CAppAspMainPage)
  20. enum { IDD = IDD_APP_ASPMAIN };
  21. CStatic m_cstatic_lang_title;
  22. CStatic m_cstatic_session_units;
  23. CStatic m_cstatic_session_title;
  24. CEdit m_cedit_session_timeout;
  25. DWORD m_dw_session_timeout;
  26. DWORD m_dw_script_timeout;
  27. BOOL m_bool_enable_buffering;
  28. BOOL m_bool_enable_session;
  29. BOOL m_bool_enable_parents;
  30. CString m_sz_default_language;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generate virtual function overrides
  34. //{{AFX_VIRTUAL(CAppAspMainPage)
  35. public:
  36. virtual BOOL OnSetActive();
  37. virtual BOOL OnApply();
  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(CAppAspMainPage)
  45. afx_msg void OnChkEnableBuffering();
  46. afx_msg void OnChangeEdtSessionTimeout();
  47. afx_msg void OnChkEnableSession();
  48. afx_msg void OnChkEnableParents();
  49. afx_msg void OnChkPoolOdbc();
  50. afx_msg void OnSelchangeCmboLanguages();
  51. afx_msg void OnChangeEdtLanguages();
  52. afx_msg void OnChangeEdtScriptTimeout();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. void DoHelp();
  56. // utilities
  57. void Init();
  58. void EnableItems();
  59. BOOL m_fInitialized;
  60. };