// Viewer3dDoc.h : interface of the CViewer3dDoc class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_VIEWERDOC_H__4EF39FBA_4EBB_11D1_8D67_0800369C8A03__INCLUDED_) #define AFX_VIEWERDOC_H__4EF39FBA_4EBB_11D1_8D67_0800369C8A03__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 #include "OffsetDlg.h" #include #include "ResultDialog.h" #include "User_Cylinder.hxx" #include class COffsetDlg; class CViewer3dDoc : public OCC_3dDoc { DECLARE_DYNCREATE(CViewer3dDoc) protected: // create from serialization only CViewer3dDoc(); public: void SetMyStaticTrihedronAxisIsDisplayed(BOOL IsDisplayed); Handle_AIS_Shape GetBox(); Handle_AIS_Shape GetSphere(); Handle_User_Cylinder GetCylinder(); Handle_AIS_Shape GetOverlappedBox(); Handle_AIS_Shape GetOverlappedSphere(); Handle_AIS_Shape GetOverlappedCylinder(); virtual ~CViewer3dDoc(); void UpdateResultMessageDlg(CString Title, TCollection_AsciiString aMessage); virtual void DragEvent (const Standard_Integer x , const Standard_Integer y , const Standard_Integer TheState, const Handle(V3d_View)& aView ); virtual void InputEvent (const Standard_Integer x , const Standard_Integer y , const Handle(V3d_View)& aView ); virtual void ShiftDragEvent (const Standard_Integer x , const Standard_Integer y , const Standard_Integer TheState, const Handle(V3d_View)& aView ); virtual void ShiftInputEvent(const Standard_Integer x , const Standard_Integer y , const Handle(V3d_View)& aView ); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif // Generated message map functions protected: BOOL myStaticTrihedronAxisIsDisplayed; //{{AFX_MSG(CViewer3dDoc) afx_msg void OnBox(); afx_msg void OnCylinder(); afx_msg void OnSphere(); afx_msg void OnRemoveAll(); afx_msg void OnOverlappedBox(); afx_msg void OnOverlappedCylinder(); afx_msg void OnOverlappedSphere(); afx_msg void OnPolygonOffsets(); afx_msg void OnUpdatePolygonOffsets(CCmdUI* pCmdUI); afx_msg void OnUpdateCylinder(CCmdUI* pCmdUI); afx_msg void OnUpdateSphere(CCmdUI* pCmdUI); afx_msg void OnUpdateBox(CCmdUI* pCmdUI); afx_msg void OnUpdateOverlappedCylinder(CCmdUI* pCmdUI); afx_msg void OnUpdateOverlappedSphere(CCmdUI* pCmdUI); afx_msg void OnUpdateOverlappedBox(CCmdUI* pCmdUI); afx_msg void OnObjectRemove(); afx_msg void OnObjectErase(); afx_msg void OnObjectDisplayall(); afx_msg void OnObjectColoredMesh(); afx_msg void OnUpdateObjectColoredMesh(CCmdUI* pCmdUI); afx_msg void OnUpdateObjectShading(CCmdUI* pCmdUI); afx_msg void OnUpdateObjectWireframe(CCmdUI* pCmdUI); afx_msg void OnOptionsTrihedronDynamicTrihedron(); afx_msg void OnUpdateOptionsTrihedronDynamicTrihedron(CCmdUI* pCmdUI); afx_msg void OnUpdateOptionsTrihedronStaticTrihedron(CCmdUI* pCmdUI); //}}AFX_MSG DECLARE_MESSAGE_MAP() private: COffsetDlg* myOffsetDlg; Handle_User_Cylinder myCylinder; Handle_AIS_Shape mySphere; Handle_AIS_Shape myBox; Handle_AIS_Shape myOverlappedCylinder; Handle_AIS_Shape myOverlappedSphere; Handle_AIS_Shape myOverlappedBox; Handle_AIS_Trihedron myTrihedron; }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Developer Studio will insert additional declarations immediately before the previous line. #endif // !defined(AFX_VIEWERDOC_H__4EF39FBA_4EBB_11D1_8D67_0800369C8A03__INCLUDED_)