ConfigurationPage.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #if !defined(AFX_SETTINGSPAGE_H__4A3EEDBC_1D9F_407C_8A55_8449F2B2D0F6__INCLUDED_)
  2. #define AFX_SETTINGSPAGE_H__4A3EEDBC_1D9F_407C_8A55_8449F2B2D0F6__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. #include "DialogResize.h"
  7. class CConfigurationPage : public CDialogResize
  8. {
  9. // Construction
  10. public:
  11. CConfigurationPage();
  12. ~CConfigurationPage();
  13. // Dialog Data
  14. //{{AFX_DATA(CConfigurationPage)
  15. enum { IDD = IDD_PROPPAGE_CONFIGURATION };
  16. int m_nPort;
  17. int m_nMaxUsers;
  18. CString m_strGoodbyeMessage;
  19. BOOL m_bStartInTray;
  20. int m_nTimeout;
  21. CString m_strWelcomeMessage;
  22. BOOL m_bLaunchOnStartup;
  23. BOOL m_bAutoActivate;
  24. int m_nLogLevel;
  25. CString m_strApplicationName;
  26. //}}AFX_DATA
  27. // Overrides
  28. // ClassWizard generate virtual function overrides
  29. //{{AFX_VIRTUAL(CConfigurationPage)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. BOOL m_bModified;
  36. // Generated message map functions
  37. //{{AFX_MSG(CConfigurationPage)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnDestroy();
  40. afx_msg void OnLaunchOnStartup();
  41. afx_msg void OnView();
  42. afx_msg void OnClear();
  43. afx_msg void OnUpdateApply(CCmdUI* pCmdUI);
  44. afx_msg void OnSomethingChanged();
  45. afx_msg void OnApply();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. DECLARE_DLGRESIZE_MAP;
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_SETTINGSPAGE_H__4A3EEDBC_1D9F_407C_8A55_8449F2B2D0F6__INCLUDED_)