1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/mfc/standard/Common/OCC_3dBaseDoc.h
2012-03-05 19:23:40 +04:00

86 lines
3.2 KiB
C++
Executable File

// OCC_3dBaseDoc.h: interface for the OCC_3dBaseDoc class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_OCC_3DBASEDOC_H__02CE7BD9_39BE_11D7_8611_0060B0EE281E__INCLUDED_)
#define AFX_OCC_3DBASEDOC_H__02CE7BD9_39BE_11D7_8611_0060B0EE281E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "OCC_BaseDoc.h"
#include <Standard_Macro.hxx>
class AFX_EXT_CLASS OCC_3dBaseDoc : public OCC_BaseDoc
{
public:
OCC_3dBaseDoc();
virtual ~OCC_3dBaseDoc();
Handle_AIS_InteractiveContext& GetAISContext(){ return myAISContext; };
Handle_V3d_Viewer GetViewer() { return myViewer; };
void SetMaterial(Graphic3d_NameOfMaterial Material);
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 MoveEvent (const Standard_Integer x ,
const Standard_Integer y ,
const Handle(V3d_View)& aView );
virtual void ShiftMoveEvent (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 );
virtual void Popup (const Standard_Integer x ,
const Standard_Integer y ,
const Handle(V3d_View)& aView );
static void Fit();
int OnFileImportBrep_WithInitDir(LPCTSTR InitialDir);
// Generated message map functions
protected:
//{{AFX_MSG(OCC_3dBaseDoc)
afx_msg void OnFileImportBrep();
afx_msg void OnFileExportBrep();
afx_msg void OnObjectErase();
afx_msg void OnUpdateObjectErase(CCmdUI* pCmdUI);
afx_msg void OnObjectColor();
afx_msg void OnUpdateObjectColor(CCmdUI* pCmdUI);
afx_msg void OnObjectShading();
afx_msg void OnUpdateObjectShading(CCmdUI* pCmdUI);
afx_msg void OnObjectWireframe();
afx_msg void OnUpdateObjectWireframe(CCmdUI* pCmdUI);
afx_msg void OnObjectTransparency();
afx_msg void OnUpdateObjectTransparency(CCmdUI* pCmdUI) ;
afx_msg void OnObjectMaterial();
afx_msg void OnUpdateObjectMaterial(CCmdUI* pCmdUI);
afx_msg BOOL OnObjectMaterialRange(UINT nID);
afx_msg void OnUpdateObjectMaterialRange(CCmdUI* pCmdUI);
afx_msg void OnObjectDisplayall();
afx_msg void OnUpdateObjectDisplayall(CCmdUI* pCmdUI);
afx_msg void OnObjectRemove();
afx_msg void OnUpdateObjectRemove(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
//Attributes
protected:
Handle_V3d_Viewer myViewer;
Handle_AIS_InteractiveContext myAISContext;
};
#endif // !defined(AFX_OCC_3dBaseDoc_H__02CE7BD9_39BE_11D7_8611_0060B0EE281E__INCLUDED_)