NavigateView.h
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. #if !defined(AFX_NAVIGATEVIEW_H__11F622AE_D0B1_4C99_9D55_95DF7A8A3757__INCLUDED_)
  2. #define AFX_NAVIGATEVIEW_H__11F622AE_D0B1_4C99_9D55_95DF7A8A3757__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // NavigateView.h : header file
  7. //
  8. #include "DialogNavigate.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CNavigateView view
  11. class CHomeFinanceManagerDoc;
  12. class CNavigateView : public CView
  13. {
  14. protected:
  15. CNavigateView();           // protected constructor used by dynamic creation
  16. DECLARE_DYNCREATE(CNavigateView)
  17. // Attributes
  18. public:
  19. // Operations
  20. CHomeFinanceManagerDoc* GetDocument();
  21. //切换到登录窗口
  22. void Login(void);
  23. //切换到账目现状窗口
  24. void Balance(void);
  25. //切换到收入窗口
  26. void FinanceIn(void);
  27. //切换到支出窗口
  28. void FinanceOut(void);
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CNavigateView)
  33. protected:
  34. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  35. virtual void OnUpdate( CView* pSender, LPARAM lHint, CObject* pHint );
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. virtual ~CNavigateView();
  40. CSplitterWnd m_wndSplitter;
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CNavigateView)
  48. afx_msg void OnSize(UINT nType, int cx, int cy);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. private:
  52. CDialogNavigate m_DialogNavigate;
  53. void DisplayNavigate(void);
  54. };
  55. #if 0//ndef _DEBUG  // debug version in HomeFinanceManagerView.cpp
  56. inline CHomeFinanceManagerDoc* CHomeFinanceManagerView::GetDocument()
  57. { return (CHomeFinanceManagerDoc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_NAVIGATEVIEW_H__11F622AE_D0B1_4C99_9D55_95DF7A8A3757__INCLUDED_)