MyAssistantView.h
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // MyAssistantView.h : interface of the CMyAssistantView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_)
  5. #define AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "PropertyCtrl.h"
  10. #include "MoneyDlg.h"
  11. #include "MoneyViewDlg.h"
  12. #include "MoneyChart.h"
  13. #include "AddrListDlg.h"
  14. #include "AdvButton.h"
  15. class CMyAssistantView : public CFormView
  16. {
  17. protected: // create from serialization only
  18. CMyAssistantView();
  19. DECLARE_DYNCREATE(CMyAssistantView)
  20. public:
  21. //{{AFX_DATA(CMyAssistantView)
  22. enum{ IDD = IDD_MYASSISTANT_FORM };
  23. // NOTE: the ClassWizard will add data members here
  24. //}}AFX_DATA
  25. // Attributes
  26. public:
  27. CMyAssistantDoc* GetDocument();
  28. CSheetTabCtrl m_PropertySheet;
  29. CMoneyEditDlg m_MoneyDlg;
  30. CMoneyViewDlg m_MoneyViewDlg;
  31. CMoneyChart   m_MoneyChart;
  32. CAddrListDlg  m_AddrListDlg;
  33. UINT m_Leaf;
  34. // Operations
  35. public:
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CMyAssistantView)
  39. public:
  40. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43. virtual void OnInitialUpdate(); // called first time after construct
  44. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  45. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  46. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  48. afx_msg void OnDspMoney();
  49. afx_msg void OnDspAddrList();
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. public:
  53. void InitPropertySheet(UINT flag);
  54. virtual ~CMyAssistantView();
  55. #ifdef _DEBUG
  56. virtual void AssertValid() const;
  57. virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59. protected:
  60. // Generated message map functions
  61. protected:
  62. //{{AFX_MSG(CMyAssistantView)
  63. // NOTE - the ClassWizard will add and remove member functions here.
  64. //    DO NOT EDIT what you see in these blocks of generated code !
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. #ifndef _DEBUG  // debug version in MyAssistantView.cpp
  69. inline CMyAssistantDoc* CMyAssistantView::GetDocument()
  70.    { return (CMyAssistantDoc*)m_pDocument; }
  71. #endif
  72. /////////////////////////////////////////////////////////////////////////////
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif // !defined(AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_)