acuiDialogWorksheet.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2015 Autodesk, Inc. All rights reserved.
  4. //
  5. // Use of this software is subject to the terms of the Autodesk license
  6. // agreement provided at the time of installation or download, or which
  7. // otherwise accompanies this software in either electronic or hard copy form.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef ACUIDLGWORKSHEET_H
  11. #define ACUIDLGWORKSHEET_H
  12. #include "aduiDIalogWorksheet.h"
  13. // CAcUiDialogWorksheet.h : header file
  14. //
  15. ///////////////////////////////////////////////////////////////////////////////
  16. //
  17. // Introduction:
  18. //
  19. // Basics:
  20. //
  21. //
  22. // Include File:
  23. // CAcUiDialogWorksheet.h
  24. //
  25. ///////////////////////////////////////////////////////////////////////////////
  26. class ACUI_PORT CAcUiDialogWorksheet : public CAdUiDialogWorksheet
  27. {
  28. DECLARE_DYNAMIC(CAcUiDialogWorksheet);
  29. // Construction
  30. public:
  31. CAcUiDialogWorksheet(UINT ID, CWnd* pParent = NULL, HINSTANCE hResInst=NULL); // standard constructor
  32. ~CAcUiDialogWorksheet();
  33. // Dialog Data
  34. //{{AFX_DATA(CAcUiDialogWorksheet)
  35. enum { IDD = 0 };
  36. // NOTE: the ClassWizard will add data members here
  37. //}}AFX_DATA
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CAcUiDialogWorksheet)
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. // Generated message map functions
  47. //{{AFX_MSG(CAcUiDialogWorksheet)
  48. virtual BOOL OnInitDialog();
  49. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  50. afx_msg void OnPaint();
  51. afx_msg void OnNcPaint();
  52. afx_msg BOOL OnNcActivate(BOOL bActive);
  53. afx_msg HCURSOR OnQueryDragIcon();
  54. afx_msg void OnSize(UINT nType, int cx, int cy);
  55. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  56. afx_msg BOOL OnEraseBkgnd(CDC *pDC);
  57. afx_msg void OnNcLButtonDown( UINT nHitTest, CPoint point );
  58. afx_msg void OnNcLButtonUp( UINT nHitTest, CPoint point );
  59. afx_msg void OnNcMouseMove(UINT nHitTest,CPoint point);
  60. afx_msg void OnMouseMove(UINT nHitTest,CPoint point);
  61. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  62. #if _MSC_VER<1400
  63. afx_msg UINT OnNcHitTest(CPoint point);
  64. #else
  65. afx_msg LRESULT OnNcHitTest(CPoint point);
  66. #endif
  67. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  68. afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
  69. afx_msg void OnSysColorChange();
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif /* ACUIDLGWORKSHEET_H */