GraphView.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:5k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // GraphView.h : interface of the CGraphView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GRAPHVIEW_H__0A8D66A9_30E0_4AAA_8E17_06B721FC0E97__INCLUDED_)
  5. #define AFX_GRAPHVIEW_H__0A8D66A9_30E0_4AAA_8E17_06B721FC0E97__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "StockGraph.h"
  10. #define WM_USER_MYRBUTTONDOWN (WM_USER+1001)
  11. /***
  12. 股票技术指标视图
  13. */
  14. class CGraphView : public CView
  15. {
  16. protected: // create from serialization only
  17. CGraphView();
  18. DECLARE_DYNCREATE(CGraphView)
  19. // Attributes
  20. friend class CMainFrame;
  21. public:
  22. inline virtual CStaticDoc* GetDocument()   { return (CStaticDoc *)m_pDocument; }
  23. CGuiTabPowerPoint m_wndReportTab;
  24. // Operations
  25. public:
  26. void ResetClientRect( );
  27. void ChangeKType( int ktype );
  28. void ChangeKFormat( int kformat );
  29. void OnToggleKType();
  30. void OnToggleKFormat( int kformat );
  31. void ChangeMaindataType( int maindatatype );
  32. void ChangeKLineMode( int klineMode );
  33. void OnTechParametersChange( );
  34. void ShowMultiStock( int nMultiStockCount );
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CGraphView)
  38. public:
  39. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  40. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  41. virtual void OnInitialUpdate();
  42. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  43. virtual BOOL PreTranslateMessage(MSG* pMsg);
  44. protected:
  45. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  46. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  48. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  49. virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. public:
  53. virtual ~CGraphView();
  54. #ifdef _DEBUG
  55. virtual void AssertValid() const;
  56. virtual void Dump(CDumpContext& dc) const;
  57. #endif
  58. protected:
  59. CStockGraph m_graph;
  60. // Generated message map functions
  61. protected:
  62. //{{AFX_MSG(CGraphView)
  63. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  64. afx_msg void OnWindowPosChanged(WINDOWPOS FAR* lpwndpos);
  65. afx_msg void OnDestroy();
  66. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  67. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  68. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  69. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  70. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  71. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  72. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  73. afx_msg void OnViewPday();
  74. afx_msg void OnViewPweek();
  75. afx_msg void OnViewPmonth();
  76. afx_msg void OnViewPmin5();
  77. afx_msg void OnViewPmin15();
  78. afx_msg void OnViewPmin30();
  79. afx_msg void OnViewPmin60();
  80. afx_msg void OnViewLeft();
  81. afx_msg void OnViewRight();
  82. afx_msg void OnViewPageleft();
  83. afx_msg void OnViewPageright();
  84. afx_msg void OnViewHome();
  85. afx_msg void OnViewEnd();
  86. afx_msg void OnViewZoomin();
  87. afx_msg void OnViewZoomout();
  88. afx_msg void OnViewPrev();
  89. afx_msg void OnViewNext();
  90. afx_msg void OnViewInsert();
  91. afx_msg void OnViewNoresumedr();
  92. afx_msg void OnViewResumedrup();
  93. afx_msg void OnViewResumedrdown();
  94. afx_msg void OnViewMaindataclose();
  95. afx_msg void OnViewMaindataopen();
  96. afx_msg void OnViewMaindataaverage();
  97. afx_msg void OnViewKlinecandle();
  98. afx_msg void OnViewKlineamerica();
  99. afx_msg void OnViewKlinetower();
  100. afx_msg void OnUpdateViewPday(CCmdUI* pCmdUI);
  101. afx_msg void OnUpdateViewPweek(CCmdUI* pCmdUI);
  102. afx_msg void OnUpdateViewPmonth(CCmdUI* pCmdUI);
  103. afx_msg void OnUpdateViewPmin5(CCmdUI* pCmdUI);
  104. afx_msg void OnUpdateViewPmin15(CCmdUI* pCmdUI);
  105. afx_msg void OnUpdateViewPmin30(CCmdUI* pCmdUI);
  106. afx_msg void OnUpdateViewPmin60(CCmdUI* pCmdUI);
  107. afx_msg void OnUpdateViewNoresumedr(CCmdUI* pCmdUI);
  108. afx_msg void OnUpdateViewResumedrup(CCmdUI* pCmdUI);
  109. afx_msg void OnUpdateViewResumedrdown(CCmdUI* pCmdUI);
  110. afx_msg void OnUpdateViewMaindataclose(CCmdUI* pCmdUI);
  111. afx_msg void OnUpdateViewMaindataopen(CCmdUI* pCmdUI);
  112. afx_msg void OnUpdateViewMaindataaverage(CCmdUI* pCmdUI);
  113. afx_msg void OnUpdateViewKlinecandle(CCmdUI* pCmdUI);
  114. afx_msg void OnUpdateViewKlineamerica(CCmdUI* pCmdUI);
  115. afx_msg void OnUpdateViewKlinetower(CCmdUI* pCmdUI);
  116. afx_msg void OnSelchangeReporttab(NMHDR* pNMHDR, LRESULT* pResult);
  117. afx_msg void OnViewHidethistech();
  118. afx_msg void OnUpdateViewHidethistech(CCmdUI* pCmdUI);
  119. afx_msg void OnViewThistechparam();
  120. afx_msg void OnUpdateViewThistechparam(CCmdUI* pCmdUI);
  121. //}}AFX_MSG
  122. afx_msg LRESULT OnGetViewTitle( WPARAM wParam, LPARAM lParam );
  123. afx_msg LRESULT OnGetViewCmdid( WPARAM wParam, LPARAM lParam );
  124. afx_msg LRESULT OnColorChange( WPARAM wParam, LPARAM lParam );
  125. afx_msg void OnViewTechRange(UINT nCmdID);
  126. afx_msg void OnUpdateViewTechRange(CCmdUI* pCmdUI);
  127. afx_msg LRESULT OnMyRButtonDown( WPARAM wParam, LPARAM lParam );
  128. afx_msg LRESULT OnStkReceiverData( WPARAM wParam, LPARAM lParam );
  129. DECLARE_MESSAGE_MAP()
  130. };
  131. /////////////////////////////////////////////////////////////////////////////
  132. //{{AFX_INSERT_LOCATION}}
  133. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  134. #endif // !defined(AFX_GRAPHVIEW_H__0A8D66A9_30E0_4AAA_8E17_06B721FC0E97__INCLUDED_)