MainFrm.h
上传用户:yuxuan88
上传日期:2022-05-09
资源大小:2290k
文件大小:2k
源码类别:

行业应用

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__2AF6EEC4_2352_4394_AA7E_13B42AFD6F7D__INCLUDED_)
  5. #define AFX_MAINFRM_H__2AF6EEC4_2352_4394_AA7E_13B42AFD6F7D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //定义右边视的类型
  10. #define USERSVIEW 0
  11. #define USERINFOVIEW 1
  12. #define WRONGVIEW -1
  13. class CLeftTreeView;
  14. class CUserinfoView;
  15. class CUsersListView;
  16. class CMainFrame : public CFrameWnd
  17. {
  18. protected: // create from serialization only
  19. CMainFrame();
  20. DECLARE_DYNCREATE(CMainFrame)
  21. // Attributes
  22. public:
  23. CLeftTreeView* m_pLeftView; //树视图
  24. CUsersListView* m_pUsersView; //住户列表视图
  25. CUserinfoView* m_pUserinfoView; //住户详细信息视图
  26. void SwitchToView(int nViewType);
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMainFrame)
  32. public:
  33. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34. protected:
  35. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CMainFrame();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:  // control bar embedded members
  45. CStatusBar  m_wndStatusBar;
  46. CToolBar    m_wndToolBar;
  47. CSplitterWnd m_wndSplitter;
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CMainFrame)
  51. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52. afx_msg void OnOperateAdduser();
  53. afx_msg void OnOperateQuery();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. /////////////////////////////////////////////////////////////////////////////
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_MAINFRM_H__2AF6EEC4_2352_4394_AA7E_13B42AFD6F7D__INCLUDED_)