JobView.h
上传用户:tianjwyx
上传日期:2007-01-13
资源大小:813k
文件大小:2k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. #if !defined(AFX_JOBVIEW_H__F3AF526C_03E2_4BB6_8C6A_52557062AB64__INCLUDED_)
  2. #define AFX_JOBVIEW_H__F3AF526C_03E2_4BB6_8C6A_52557062AB64__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // JobView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CJobView dialog
  10. class CJobView : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void CalcRunTime();
  15. float AveTime;
  16. int SumTime;
  17. void DrawDotRect(int x, int y, int len,COLORREF crColor);
  18. bool bPaint;
  19. void DrawRect(int x,int y,int Len,COLORREF crColor,CString crText);
  20. void DrawText(int x,int y,CString Text);
  21. bool InitGrah();
  22. CJobView(CWnd* pParent = NULL);   // standard constructor
  23.     struct RECT
  24. {
  25. int x;
  26. int y;
  27. int Len;
  28. COLORREF crColor;
  29. CString crText;
  30. bool flag;
  31. };
  32. CArray<RECT,RECT>MyRect;
  33. // Dialog Data
  34. //{{AFX_DATA(CJobView)
  35. enum { IDD = IDD_TAB_JOB };
  36. CStatic m_JobView;
  37. //}}AFX_DATA
  38.      
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CJobView)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CJobView)
  49.  afx_msg void OnPaint();
  50. virtual BOOL OnInitDialog();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_JOBVIEW_H__F3AF526C_03E2_4BB6_8C6A_52557062AB64__INCLUDED_)