CustomDrawReportDlg.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // CustomDrawReportDlg.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_CUSTOMDRAWREPORTDLG_H__6518CEDC_5B8C_44DD_A813_4B4E67DBB931__INCLUDED_)
  21. #define AFX_CUSTOMDRAWREPORTDLG_H__6518CEDC_5B8C_44DD_A813_4B4E67DBB931__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "resource.h"
  26. #include "XTPCustomDrawReportPaintManager.h"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CCustomDrawReportDlg dialog
  29. class CCustomDrawReportDlg : public CXTResizeDialog
  30. {
  31. // Construction
  32. public:
  33. CCustomDrawReportDlg(CWnd* pParent = NULL); // standard constructor
  34. // Dialog Data
  35. //{{AFX_DATA(CCustomDrawReportDlg)
  36. enum { IDD = IDD_CUSTOMDRAWREPORT_DIALOG };
  37. CXTPReportControl m_wndReportCtrl;
  38. //}}AFX_DATA
  39. CImageList m_ilControls;
  40. int m_nDrawingMethod;
  41. unsigned int GetControlsNumber(CXTPReportRecordItem* pItem);
  42. unsigned int GetControlsNumber(CXTPReportRow* pRow);
  43. int GetRowHeight(CDC* /*pDC*/, CXTPReportRow* pRow);
  44. BOOL DrawItem(XTP_REPORTRECORDITEM_DRAWARGS* pDrawArgs, XTP_REPORTRECORDITEM_METRICS* pMetrics);
  45. // ClassWizard generated virtual function overrides
  46. //{{AFX_VIRTUAL(CCustomDrawReportDlg)
  47. public:
  48. virtual BOOL PreTranslateMessage(MSG* pMsg);
  49. protected:
  50. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  51. //}}AFX_VIRTUAL
  52. // Implementation
  53. protected:
  54. HICON m_hIcon;
  55. // Generated message map functions
  56. //{{AFX_MSG(CCustomDrawReportDlg)
  57. virtual BOOL OnInitDialog();
  58. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  59. afx_msg void OnPaint();
  60. afx_msg HCURSOR OnQueryDragIcon();
  61. afx_msg void OnDestroy();
  62. afx_msg void OnUseDrawframecontrol();
  63. afx_msg void OnUseDrawstate();
  64. afx_msg void OnTimer(UINT_PTR nIDEvent);
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_CUSTOMDRAWREPORTDLG_H__6518CEDC_5B8C_44DD_A813_4B4E67DBB931__INCLUDED_)