1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/samples/mfc/standard/Common/OCC_2dDoc.cpp
kgv 7ff18fb9cc 0031521: Samples - update MFC ImportExport sample to use AIS_ViewController
The following MFC samples have been updated to use AIS_ViewController:
Geometry, HLR, ImportExport, Modeling, OCAF, Triangulation, Viewer2D.
2020-04-29 20:44:15 +03:00

74 lines
2.0 KiB
C++
Executable File

// OCC_2dDoc.cpp: implementation of the OCC_2dDoc class.
//
//////////////////////////////////////////////////////////////////////
#include <stdafx.h>
#include "OCC_2dDoc.h"
#include "OCC_App.h"
#include "OCC_2dView.h"
IMPLEMENT_DYNCREATE(OCC_2dDoc, CDocument)
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
OCC_2dDoc::OCC_2dDoc() : OCC_BaseDoc()
{
// Get the Graphic Driver from the application
Handle(Graphic3d_GraphicDriver) aGraphicDriver = ((OCC_App*)AfxGetApp())->GetGraphicDriver();
// create the Viewer
myViewer = new V3d_Viewer (aGraphicDriver);
myViewer->SetDefaultLights();
myViewer->SetLightOn();
myViewer->SetDefaultViewProj (V3d_Zpos);
// set default values for grids
myViewer->SetCircularGridValues (0, 0, 10, 8, 0);
myViewer->SetRectangularGridValues (0, 0, 10, 10, 0);
myAISContext = new AIS_InteractiveContext (myViewer);
AfxInitRichEdit();
}
OCC_2dDoc::~OCC_2dDoc()
{
}
void OCC_2dDoc::FitAll2DViews(Standard_Boolean theUpdateViewer)
{
if (theUpdateViewer)
{
myViewer->Update();
}
POSITION aPosition = GetFirstViewPosition();
while (aPosition != (POSITION)NULL)
{
OCC_2dView* aCurrentView = (OCC_2dView*)GetNextView (aPosition);
ASSERT_VALID (aCurrentView);
aCurrentView->GetView()->FitAll();
}
}
void OCC_2dDoc::Popup (const Standard_Integer theMouseX,
const Standard_Integer theMouseY,
const Handle(V3d_View)& theView)
{
// load the 'normal' popup
CMenu aMenu;
VERIFY(aMenu.LoadMenu(IDR_Popup2D));
// activate the sub menu '0'
CMenu* aPopup = aMenu.GetSubMenu(0);
ASSERT(aPopup != NULL);
// display the popup
POINT aWinCoord = { theMouseX, theMouseY };
ClientToScreen ((HWND )theView->Window()->NativeHandle(), &aWinCoord);
aPopup->TrackPopupMenu (TPM_LEFTALIGN | TPM_RIGHTBUTTON, aWinCoord.x, aWinCoord.y, AfxGetMainWnd());
}