mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The following MFC samples have been updated to use AIS_ViewController: Geometry, HLR, ImportExport, Modeling, OCAF, Triangulation, Viewer2D.
83 lines
2.3 KiB
C++
Executable File
83 lines
2.3 KiB
C++
Executable File
// OCC_3dView.h: interface for the OCC_3dView class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OCC_3DVIEW_H__1F4065AE_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|
|
#define AFX_OCC_3DVIEW_H__1F4065AE_39C4_11D7_8611_0060B0EE281E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OCC_BaseView.h"
|
|
#include "OCC_3dDoc.h"
|
|
#include "OCC_StereoConfigDlg.h"
|
|
#include <Standard_Macro.hxx>
|
|
|
|
class Standard_EXPORT OCC_3dView : public OCC_BaseView
|
|
{
|
|
DECLARE_DYNCREATE(OCC_3dView)
|
|
public:
|
|
OCC_3dView();
|
|
virtual ~OCC_3dView();
|
|
|
|
OCC_3dDoc* GetDocument();
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(OCC_3dView)
|
|
public:
|
|
virtual void OnInitialUpdate();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(OCC_3dView)
|
|
afx_msg void OnBUTTONAxo();
|
|
afx_msg void OnBUTTONBack();
|
|
afx_msg void OnBUTTONBottom();
|
|
afx_msg void OnBUTTONFront();
|
|
afx_msg void OnBUTTONHlrOff();
|
|
afx_msg void OnBUTTONHlrOn();
|
|
afx_msg void OnBUTTONLeft();
|
|
afx_msg void OnBUTTONPan();
|
|
afx_msg void OnBUTTONPanGlo();
|
|
afx_msg void OnBUTTONReset();
|
|
afx_msg void OnBUTTONRight();
|
|
afx_msg void OnBUTTONRot();
|
|
afx_msg void OnBUTTONTop();
|
|
afx_msg void OnBUTTONZoomAll();
|
|
afx_msg void OnFileExportImage();
|
|
afx_msg void OnBUTTONZoomProg();
|
|
afx_msg void OnBUTTONZoomWin();
|
|
afx_msg void OnUpdateBUTTONHlrOff(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONHlrOn(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONPanGlo(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONPan(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONZoomProg(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONZoomWin(CCmdUI* pCmdUI);
|
|
afx_msg void OnUpdateBUTTONRot(CCmdUI* pCmdUI);
|
|
afx_msg void OnModifyChangeBackground();
|
|
afx_msg void OnStereoConfigButton();
|
|
afx_msg void OnUpdateStereoConfigButton (CCmdUI* theCmdUI);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
private:
|
|
|
|
//! Persistent non blocking stereo configuration dialog
|
|
OCC_StereoConfigDlg* m_pStereoDlg;
|
|
};
|
|
|
|
#ifndef _DEBUG // debug version in OCC_3dView.cpp
|
|
inline OCC_3dDoc* OCC_3dView::GetDocument()
|
|
{ return (OCC_3dDoc*)m_pDocument; }
|
|
#endif
|
|
|
|
#endif // !defined(AFX_OCC_3DVIEW_H__1F4065AE_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|