12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2015 Autodesk, Inc. All rights reserved.
- //
- // Use of this software is subject to the terms of the Autodesk license
- // agreement provided at the time of installation or download, or which
- // otherwise accompanies this software in either electronic or hard copy form.
- //
- //////////////////////////////////////////////////////////////////////////////
- #ifndef ACUIDLGWORKSHEET_H
- #define ACUIDLGWORKSHEET_H
- #include "aduiDIalogWorksheet.h"
- // CAcUiDialogWorksheet.h : header file
- //
- ///////////////////////////////////////////////////////////////////////////////
- //
- // Introduction:
- //
- // Basics:
- //
- //
- // Include File:
- // CAcUiDialogWorksheet.h
- //
- ///////////////////////////////////////////////////////////////////////////////
- class ACUI_PORT CAcUiDialogWorksheet : public CAdUiDialogWorksheet
- {
- DECLARE_DYNAMIC(CAcUiDialogWorksheet);
-
- // Construction
- public:
- CAcUiDialogWorksheet(UINT ID, CWnd* pParent = NULL, HINSTANCE hResInst=NULL); // standard constructor
- ~CAcUiDialogWorksheet();
- // Dialog Data
- //{{AFX_DATA(CAcUiDialogWorksheet)
- enum { IDD = 0 };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAcUiDialogWorksheet)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CAcUiDialogWorksheet)
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg void OnNcPaint();
- afx_msg BOOL OnNcActivate(BOOL bActive);
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnSize(UINT nType, int cx, int cy);
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg BOOL OnEraseBkgnd(CDC *pDC);
- afx_msg void OnNcLButtonDown( UINT nHitTest, CPoint point );
- afx_msg void OnNcLButtonUp( UINT nHitTest, CPoint point );
- afx_msg void OnNcMouseMove(UINT nHitTest,CPoint point);
- afx_msg void OnMouseMove(UINT nHitTest,CPoint point);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- #if _MSC_VER<1400
- afx_msg UINT OnNcHitTest(CPoint point);
- #else
- afx_msg LRESULT OnNcHitTest(CPoint point);
- #endif
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
- afx_msg void OnSysColorChange();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif /* ACUIDLGWORKSHEET_H */
|