MainFrm.h
上传用户:dtengfei
上传日期:2013-01-16
资源大小:393k
文件大小:3k
源码类别:

医药行业

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__54859F6B_B18C_11D7_BB61_8DF5A4194E44__INCLUDED_)
  5. #define AFX_MAINFRM_H__54859F6B_B18C_11D7_BB61_8DF5A4194E44__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Jiqi1.h"
  10. #include "Control.h"
  11. class CMainFrame : public CFrameWnd
  12. {
  13. protected: // create from serialization only
  14. CMainFrame();
  15. DECLARE_DYNCREATE(CMainFrame)
  16. // Attributes
  17. public:
  18. CRect m_rtButtExit; //关闭按钮位置
  19. CRect m_rtButtMax; //最大化按钮位置
  20. CRect m_rtButtMin; //最小化按钮位置
  21. CRect m_rtButtHelp; //帮助按钮位置
  22. CRect m_rtIcon; //图标位置
  23. CJiqi *m_pJiqiThread;
  24. UINT m_JiqiThreadID;
  25. UINT m_MainThreadID;
  26. struct ThreadPoint{
  27. double data[100000];
  28. double data1[10000];
  29. int PointNumber;
  30. BOOL runing;
  31. int WholeNumber;
  32. }TP;
  33. // Operations
  34. public:
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CMainFrame)
  38. public:
  39. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  40. virtual BOOL PreTranslateMessage(MSG* pMsg);
  41. protected:
  42. virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. public:
  46. void DrawTitleBar(CDC *pDC);
  47. virtual ~CMainFrame();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. protected:  // control bar embedded members
  53. CStatusBar  m_wndStatusBar;
  54. CToolBar    m_wndToolBar;
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CMainFrame)
  58. afx_msg void OnRefresh(int Point);
  59. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  60. afx_msg void OnDestroy();
  61. afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
  62. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  63. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  64. afx_msg void OnNcLButtonDblClk(UINT nHitTest, CPoint point);
  65. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  66. afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
  67. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. };
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_MAINFRM_H__54859F6B_B18C_11D7_BB61_8DF5A4194E44__INCLUDED_)