123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #if !defined(AFX_SETTINGSPAGE_H__4A3EEDBC_1D9F_407C_8A55_8449F2B2D0F6__INCLUDED_)
- #define AFX_SETTINGSPAGE_H__4A3EEDBC_1D9F_407C_8A55_8449F2B2D0F6__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include "DialogResize.h"
- class CConfigurationPage : public CDialogResize
- {
- public:
- CConfigurationPage();
- ~CConfigurationPage();
-
- enum { IDD = IDD_PROPPAGE_CONFIGURATION };
- int m_nPort;
- int m_nMaxUsers;
- CString m_strGoodbyeMessage;
- BOOL m_bStartInTray;
- int m_nTimeout;
- CString m_strWelcomeMessage;
- BOOL m_bLaunchOnStartup;
- BOOL m_bAutoActivate;
- int m_nLogLevel;
- CString m_strApplicationName;
-
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
- BOOL m_bModified;
-
-
- virtual BOOL OnInitDialog();
- afx_msg void OnDestroy();
- afx_msg void OnLaunchOnStartup();
- afx_msg void OnView();
- afx_msg void OnClear();
- afx_msg void OnUpdateApply(CCmdUI* pCmdUI);
- afx_msg void OnSomethingChanged();
- afx_msg void OnApply();
-
- DECLARE_MESSAGE_MAP()
- DECLARE_DLGRESIZE_MAP;
- };
- #endif
|