MainWnd.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #if !defined(AFX_MAINWND_H__A607E8B4_561C_4F60_BAFA_1428DDFD6626__INCLUDED_)
  2. #define AFX_MAINWND_H__A607E8B4_561C_4F60_BAFA_1428DDFD6626__INCLUDED_
  3. #include "ClientSocket.h"
  4. #include "Page1.h" // Added by ClassView
  5. #include "Page2.h" // Added by ClassView
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // MainWnd.h : header file
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainWnd
  13. class CMainWnd : public CPropertySheet
  14. {
  15. DECLARE_DYNAMIC(CMainWnd)
  16. protected:
  17. // Construction
  18. public:
  19. CMainWnd(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  20. CMainWnd(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  21. // Attributes
  22. public:
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMainWnd)
  28. public:
  29. protected:
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMainWnd();
  34. // Generated message map functions
  35. protected:
  36. BOOL QueryUserlist( const char* lpszUserName, const char* lpszPassword );
  37. HICON m_hIcon;
  38. CPage2 m_page2;
  39. CPage1 m_page1;
  40. CMenu m_menu;
  41. void InitClientSocket();
  42. void UpdateMenuState( BOOL bEnable = FALSE );
  43. //{{AFX_MSG(CMainWnd)
  44. virtual BOOL OnInitDialog();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnPaint();
  47. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  48. afx_msg void OnAbout();
  49. afx_msg void OnLogin();
  50. afx_msg void OnLogout();
  51. afx_msg void OnAdduser();
  52. afx_msg void OnDeleteuser();
  53. afx_msg void OnPreferences();
  54. afx_msg void OnExit();
  55. afx_msg void OnDestroy();
  56. afx_msg void OnMainface();
  57. afx_msg void OnDatabaseuser();
  58. afx_msg void OnRefresh();
  59. //}}AFX_MSG
  60. virtual void OnIMEInputLangChangeRequest( WPARAM wParam, LPARAM lParam );
  61. virtual void OnTurntoPage2( WPARAM wParam, LPARAM lParam );
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. /////////////////////////////////////////////////////////////////////////////
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67. #endif // !defined(AFX_MAINWND_H__A607E8B4_561C_4F60_BAFA_1428DDFD6626__INCLUDED_)