MyAssistantView.h
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:3k
- // MyAssistantView.h : interface of the CMyAssistantView class
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_)
- #define AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "PropertyCtrl.h"
- #include "MoneyDlg.h"
- #include "MoneyViewDlg.h"
- #include "MoneyChart.h"
- #include "AddrListDlg.h"
- #include "AdvButton.h"
- class CMyAssistantView : public CFormView
- {
- protected: // create from serialization only
- CMyAssistantView();
- DECLARE_DYNCREATE(CMyAssistantView)
- public:
- //{{AFX_DATA(CMyAssistantView)
- enum{ IDD = IDD_MYASSISTANT_FORM };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- // Attributes
- public:
- CMyAssistantDoc* GetDocument();
- CSheetTabCtrl m_PropertySheet;
- CMoneyEditDlg m_MoneyDlg;
- CMoneyViewDlg m_MoneyViewDlg;
- CMoneyChart m_MoneyChart;
- CAddrListDlg m_AddrListDlg;
- UINT m_Leaf;
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMyAssistantView)
- public:
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual void OnInitialUpdate(); // called first time after construct
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
- afx_msg void OnDspMoney();
- afx_msg void OnDspAddrList();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void InitPropertySheet(UINT flag);
- virtual ~CMyAssistantView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMyAssistantView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #ifndef _DEBUG // debug version in MyAssistantView.cpp
- inline CMyAssistantDoc* CMyAssistantView::GetDocument()
- { return (CMyAssistantDoc*)m_pDocument; }
- #endif
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MYASSISTANTVIEW_H__E39DAD58_D733_40DD_881B_9C2601386C3F__INCLUDED_)