mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Add vc12 project files for MFC samples. CMake - add Unicode option for MFC samples CMake - do not set MFC option globally Update description of Cmake building procedure for MFC sample Correction of cmake.md and automake.md 0024943: Port MFC sample to UNICODE for compatibility with VS2013 The formatting of developer guides about OCCT building with various build systems has been improved. automake article clean up
441 lines
15 KiB
C++
Executable File
441 lines
15 KiB
C++
Executable File
// OCC_3dBaseDoc.cpp: implementation of the OCC_3dBaseDoc class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include <stdafx.h>
|
|
|
|
#include "OCC_3dBaseDoc.h"
|
|
|
|
#include "OCC_3dView.h"
|
|
#include "OCC_App.h"
|
|
#include <res\OCC_Resource.h>
|
|
#include "ImportExport/ImportExport.h"
|
|
#include "AISDialogs.h"
|
|
#include <AIS_LocalContext.hxx>
|
|
#include <AIS_ListOfInteractive.hxx>
|
|
#include <AIS_ListIteratorOfListOfInteractive.hxx>
|
|
#include <TColStd_ListIteratorOfListOfInteger.hxx>
|
|
#include <TColStd_ListOfInteger.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
BEGIN_MESSAGE_MAP(OCC_3dBaseDoc, OCC_BaseDoc)
|
|
//{{AFX_MSG_MAP(OCC_3dBaseDoc)
|
|
ON_COMMAND(ID_FILE_IMPORT_BREP, OnFileImportBrep)
|
|
ON_COMMAND(ID_FILE_EXPORT_BREP, OnFileExportBrep)
|
|
ON_COMMAND(ID_OBJECT_ERASE, OnObjectErase)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_ERASE, OnUpdateObjectErase)
|
|
ON_COMMAND(ID_OBJECT_COLOR, OnObjectColor)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_COLOR, OnUpdateObjectColor)
|
|
ON_COMMAND(ID_OBJECT_SHADING, OnObjectShading)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_SHADING, OnUpdateObjectShading)
|
|
ON_COMMAND(ID_OBJECT_WIREFRAME, OnObjectWireframe)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_WIREFRAME, OnUpdateObjectWireframe)
|
|
ON_COMMAND(ID_OBJECT_TRANSPARENCY, OnObjectTransparency)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_TRANSPARENCY, OnUpdateObjectTransparency)
|
|
ON_COMMAND(ID_OBJECT_MATERIAL, OnObjectMaterial)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_MATERIAL, OnUpdateObjectMaterial)
|
|
ON_COMMAND(ID_OBJECT_DISPLAYALL, OnObjectDisplayall)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_DISPLAYALL, OnUpdateObjectDisplayall)
|
|
ON_COMMAND(ID_OBJECT_REMOVE, OnObjectRemove)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_REMOVE, OnUpdateObjectRemove)
|
|
ON_COMMAND(ID_OBJECT_DIM, OnObjectAddDimensions)
|
|
ON_UPDATE_COMMAND_UI(ID_OBJECT_DIM, OnUpdateObjectAddDimensions)
|
|
|
|
//}}AFX_MSG_MAP
|
|
ON_COMMAND_EX_RANGE(ID_OBJECT_MATERIAL_BRASS,ID_OBJECT_MATERIAL_DEFAULT, OnObjectMaterialRange)
|
|
ON_UPDATE_COMMAND_UI_RANGE(ID_OBJECT_MATERIAL_BRASS,ID_OBJECT_MATERIAL_DEFAULT, OnUpdateObjectMaterialRange)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
OCC_3dBaseDoc::OCC_3dBaseDoc()
|
|
:myPopupMenuNumber(0),
|
|
myDimensionDlg()
|
|
{
|
|
AfxInitRichEdit();
|
|
|
|
Handle(Graphic3d_GraphicDriver) aGraphicDriver =
|
|
((OCC_App*)AfxGetApp())->GetGraphicDriver();
|
|
|
|
myViewer = new V3d_Viewer (aGraphicDriver, Standard_ExtString("Visu3D") );
|
|
myViewer->SetDefaultLights();
|
|
myViewer->SetLightOn();
|
|
myAISContext = new AIS_InteractiveContext (myViewer);
|
|
myDimensionDlg.SetContext (myAISContext);
|
|
myDimensionDlg.Create(CDimensionDlg::IDD, NULL);
|
|
}
|
|
|
|
OCC_3dBaseDoc::~OCC_3dBaseDoc()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::DragEvent (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Standard_Integer theState,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
// TheState == -1 button down
|
|
// TheState == 0 move
|
|
// TheState == 1 button up
|
|
|
|
static Standard_Integer aStartDragX = 0;
|
|
static Standard_Integer aStartDragY = 0;
|
|
|
|
if (theState == -1)
|
|
{
|
|
// button down
|
|
aStartDragX = theMouseX;
|
|
aStartDragY = theMouseY;
|
|
}
|
|
|
|
if (theState == 1)
|
|
{
|
|
// button up
|
|
myAISContext->Select (aStartDragX, aStartDragY,
|
|
theMouseX, theMouseY,
|
|
theView);
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::InputEvent (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
myAISContext->MoveTo (theMouseX, theMouseY, theView);
|
|
myAISContext->Select();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::MoveEvent (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
myAISContext->MoveTo (theMouseX, theMouseY, theView);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::ShiftMoveEvent (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
myAISContext->MoveTo (theMouseX, theMouseY, theView);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::ShiftDragEvent (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Standard_Integer theState,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
// TheState == -1 button down
|
|
// TheState == 0 move
|
|
// TheState == 1 button up
|
|
|
|
static Standard_Integer aStartDragX = 0;
|
|
static Standard_Integer aStartDragY = 0;
|
|
|
|
if (theState == -1)
|
|
{
|
|
// button down
|
|
aStartDragX = theMouseX;
|
|
aStartDragY = theMouseY;
|
|
}
|
|
|
|
if (theState == 0)
|
|
{
|
|
// button up
|
|
myAISContext->ShiftSelect (aStartDragX, aStartDragY,
|
|
theMouseX, theMouseY,
|
|
theView);
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::ShiftInputEvent (const Standard_Integer /*theMouseX*/,
|
|
const Standard_Integer /*theMouseY*/,
|
|
const Handle(V3d_View)& /*theView*/)
|
|
{
|
|
myAISContext->ShiftSelect();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------------------
|
|
//
|
|
//-----------------------------------------------------------------------------------------
|
|
void OCC_3dBaseDoc::Popup (const Standard_Integer theMouseX,
|
|
const Standard_Integer theMouseY,
|
|
const Handle(V3d_View)& theView)
|
|
{
|
|
// Base check which context menu to call
|
|
if (!myPopupMenuNumber)
|
|
{
|
|
myAISContext->InitCurrent();
|
|
if (myAISContext->MoreCurrent())
|
|
myPopupMenuNumber=1;
|
|
}
|
|
|
|
CMenu menu;
|
|
VERIFY(menu.LoadMenu(IDR_Popup3D));
|
|
CMenu* pPopup = menu.GetSubMenu(myPopupMenuNumber);
|
|
|
|
ASSERT(pPopup != NULL);
|
|
if (myPopupMenuNumber == 1) // more than 1 object.
|
|
{
|
|
bool OneOrMoreInShading = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),1)) OneOrMoreInShading=true;
|
|
if(!OneOrMoreInShading)
|
|
pPopup->EnableMenuItem(5, MF_BYPOSITION | MF_DISABLED | MF_GRAYED);
|
|
}
|
|
|
|
POINT winCoord = { theMouseX , theMouseY };
|
|
Handle(WNT_Window) aWNTWindow=
|
|
Handle(WNT_Window)::DownCast(theView->Window());
|
|
ClientToScreen ( (HWND)(aWNTWindow->HWindow()),&winCoord);
|
|
pPopup->TrackPopupMenu (TPM_LEFTALIGN | TPM_RIGHTBUTTON,
|
|
winCoord.x,
|
|
winCoord.y,
|
|
AfxGetMainWnd());
|
|
}
|
|
|
|
void OCC_3dBaseDoc::Fit()
|
|
{
|
|
CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
|
|
CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
|
|
OCC_3dView *pView = (OCC_3dView *) pChild->GetActiveView();
|
|
pView->FitAll();
|
|
}
|
|
|
|
int OCC_3dBaseDoc::OnFileImportBrep_WithInitDir (const wchar_t* )
|
|
{
|
|
if (CImportExport::ReadBREP (myAISContext) == 1)
|
|
return 1;
|
|
Fit();
|
|
return 0;
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnFileImportBrep()
|
|
{
|
|
OnFileImportBrep_WithInitDir (NULL);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnFileExportBrep()
|
|
{ CImportExport::SaveBREP(myAISContext);}
|
|
|
|
void OCC_3dBaseDoc::OnObjectColor()
|
|
{
|
|
Handle_AIS_InteractiveObject Current ;
|
|
COLORREF MSColor ;
|
|
Quantity_Color CSFColor ;
|
|
|
|
myAISContext->InitCurrent();
|
|
Current = myAISContext->Current();
|
|
if ( Current->HasColor () ) {
|
|
CSFColor = myAISContext->Color(myAISContext->Current());
|
|
MSColor = RGB (CSFColor.Red()*255.,CSFColor.Green()*255.,CSFColor.Blue()*255.);
|
|
}
|
|
else {
|
|
MSColor = RGB (255,255,255) ;
|
|
}
|
|
|
|
CColorDialog dlgColor(MSColor);
|
|
if (dlgColor.DoModal() == IDOK)
|
|
{
|
|
MSColor = dlgColor.GetColor();
|
|
CSFColor = Quantity_Color (GetRValue(MSColor)/255.,GetGValue(MSColor)/255.,
|
|
GetBValue(MSColor)/255.,Quantity_TOC_RGB);
|
|
for (;myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
myAISContext->SetColor (myAISContext->Current(),CSFColor.Name());
|
|
}
|
|
}
|
|
void OCC_3dBaseDoc::OnUpdateObjectColor(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreIsShadingOrWireframe = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),0)
|
|
||myAISContext->IsDisplayed(myAISContext->Current(),1))
|
|
OneOrMoreIsShadingOrWireframe=true;
|
|
pCmdUI->Enable (OneOrMoreIsShadingOrWireframe);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectErase()
|
|
{
|
|
for (myAISContext->InitCurrent(); myAISContext->MoreCurrent(); myAISContext->NextCurrent())
|
|
{
|
|
myAISContext->Erase (myAISContext->Current(), Standard_True);
|
|
}
|
|
myAISContext->ClearCurrents();
|
|
}
|
|
void OCC_3dBaseDoc::OnUpdateObjectErase(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreIsDisplayed = false;
|
|
for (myAISContext->InitCurrent(); myAISContext->MoreCurrent(); myAISContext->NextCurrent())
|
|
{
|
|
if (myAISContext->IsDisplayed (myAISContext->Current()))
|
|
OneOrMoreIsDisplayed = true;
|
|
}
|
|
pCmdUI->Enable (OneOrMoreIsDisplayed);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectWireframe()
|
|
{
|
|
for(myAISContext->InitCurrent();myAISContext->MoreCurrent();myAISContext->NextCurrent())
|
|
myAISContext->SetDisplayMode(myAISContext->Current(),0);
|
|
}
|
|
void OCC_3dBaseDoc::OnUpdateObjectWireframe(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreInShading = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),1)) OneOrMoreInShading=true;
|
|
pCmdUI->Enable (OneOrMoreInShading);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectShading()
|
|
{
|
|
for(myAISContext->InitCurrent();myAISContext->MoreCurrent();myAISContext->NextCurrent())
|
|
myAISContext->SetDisplayMode(myAISContext->Current(),1);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectShading(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreInWireframe = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),0)) OneOrMoreInWireframe=true;
|
|
pCmdUI->Enable (OneOrMoreInWireframe);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectMaterial()
|
|
{
|
|
CDialogMaterial DialBox(myAISContext);
|
|
DialBox.DoModal();
|
|
//CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
|
|
//CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
|
|
//OCC_3dView *pView = (OCC_3dView *) pChild->GetActiveView();
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectMaterial(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreInShading = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),1)) OneOrMoreInShading=true;
|
|
pCmdUI->Enable (OneOrMoreInShading);
|
|
}
|
|
|
|
BOOL OCC_3dBaseDoc::OnObjectMaterialRange(UINT nID)
|
|
{
|
|
// the range ID_OBJECT_MATERIAL_BRASS to ID_OBJECT_MATERIAL_SILVER is
|
|
// continue with the same values as enumeration Type Of Material
|
|
Standard_Real aTransparency;
|
|
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ()){
|
|
aTransparency = myAISContext->Current()->Transparency();
|
|
myAISContext->SetMaterial (myAISContext->Current(),(Graphic3d_NameOfMaterial)(nID-ID_OBJECT_MATERIAL_BRASS));
|
|
myAISContext->SetTransparency (myAISContext->Current(),aTransparency);
|
|
}
|
|
return true;
|
|
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectMaterialRange(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreInShading = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),1)) OneOrMoreInShading=true;
|
|
pCmdUI->Enable (OneOrMoreInShading);
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->Current()->Material() - (pCmdUI->m_nID - ID_OBJECT_MATERIAL_BRASS) == 0)
|
|
pCmdUI->SetCheck(1);
|
|
}
|
|
|
|
|
|
void OCC_3dBaseDoc::OnObjectTransparency()
|
|
{
|
|
CDialogTransparency DialBox(myAISContext);
|
|
DialBox.DoModal();
|
|
//CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
|
|
//CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
|
|
//OCC_3dView *pView = (OCC_3dView *) pChild->GetActiveView();
|
|
// pView->Redraw();
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectTransparency(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreInShading = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current(),1)) OneOrMoreInShading=true;
|
|
pCmdUI->Enable (OneOrMoreInShading);
|
|
}
|
|
|
|
|
|
void OCC_3dBaseDoc::OnObjectDisplayall()
|
|
{
|
|
myAISContext->DisplayAll();
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectDisplayall(CCmdUI* pCmdUI)
|
|
{
|
|
|
|
AIS_ListOfInteractive aList;
|
|
myAISContext->ObjectsInside(aList,AIS_KOI_Shape);
|
|
AIS_ListIteratorOfListOfInteractive aLI;
|
|
Standard_Boolean IS_ANY_OBJECT_ERASED=FALSE;
|
|
for (aLI.Initialize(aList);aLI.More();aLI.Next()){
|
|
if(!myAISContext->IsDisplayed(aLI.Value()))
|
|
IS_ANY_OBJECT_ERASED=TRUE;
|
|
}
|
|
pCmdUI->Enable (IS_ANY_OBJECT_ERASED);
|
|
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectRemove()
|
|
{
|
|
for(myAISContext->InitCurrent();myAISContext->MoreCurrent();myAISContext->InitCurrent())
|
|
myAISContext->Remove(myAISContext->Current(),Standard_True);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectRemove(CCmdUI* pCmdUI)
|
|
{
|
|
bool OneOrMoreIsDisplayed = false;
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
if (myAISContext->IsDisplayed(myAISContext->Current())) OneOrMoreIsDisplayed=true;
|
|
pCmdUI->Enable (OneOrMoreIsDisplayed);
|
|
}
|
|
|
|
void OCC_3dBaseDoc::SetMaterial(Graphic3d_NameOfMaterial Material)
|
|
{
|
|
for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
|
|
myAISContext->SetMaterial (myAISContext->Current(),
|
|
(Graphic3d_NameOfMaterial)(Material));
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnObjectAddDimensions()
|
|
{
|
|
//Add dimentions dialog is opened here
|
|
myDimensionDlg.ShowWindow(SW_SHOW);
|
|
myDimensionDlg.UpdateStandardMode ();
|
|
}
|
|
|
|
void OCC_3dBaseDoc::OnUpdateObjectAddDimensions(CCmdUI* /*pCmdUI*/)
|
|
{
|
|
// Check if local context is opened
|
|
//pCmdUI->Enable (myAISContext->HasOpenedContext());
|
|
}
|
|
|
|
|