diff --git a/CMakeLists.txt b/CMakeLists.txt
index d98acc0ff9..208a5ab255 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1124,14 +1124,8 @@ if (BUILD_SAMPLES_MFC)
add_subdirectory(samples/mfc/standard/mfcsample)
add_subdirectory(samples/mfc/standard/01_Geometry)
add_subdirectory(samples/mfc/standard/02_Modeling)
- add_subdirectory(samples/mfc/standard/03_Viewer2d)
- add_subdirectory(samples/mfc/standard/04_Viewer3d)
- add_subdirectory(samples/mfc/standard/05_ImportExport)
- add_subdirectory(samples/mfc/standard/06_Ocaf)
- add_subdirectory(samples/mfc/standard/07_Triangulation)
- add_subdirectory(samples/mfc/standard/08_HLR)
- add_subdirectory(samples/mfc/standard/09_Animation)
- add_subdirectory(samples/mfc/standard/10_Convert)
+ add_subdirectory(samples/mfc/standard/03_ImportExport)
+ add_subdirectory(samples/mfc/standard/04_HLR)
message (STATUS "Info: \(${CURRENT_TIME}\) MFC Sample projects added")
endif()
diff --git a/samples/mfc/standard/05_ImportExport/CMakeLists.txt b/samples/mfc/standard/03_ImportExport/CMakeLists.txt
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/CMakeLists.txt
rename to samples/mfc/standard/03_ImportExport/CMakeLists.txt
diff --git a/samples/mfc/standard/05_ImportExport/adm/win/vc10/ImportExport.vcxproj b/samples/mfc/standard/03_ImportExport/adm/win/vc10/ImportExport.vcxproj
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/adm/win/vc10/ImportExport.vcxproj
rename to samples/mfc/standard/03_ImportExport/adm/win/vc10/ImportExport.vcxproj
diff --git a/samples/mfc/standard/05_ImportExport/adm/win/vc10/ImportExport.vcxproj.filters b/samples/mfc/standard/03_ImportExport/adm/win/vc10/ImportExport.vcxproj.filters
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/adm/win/vc10/ImportExport.vcxproj.filters
rename to samples/mfc/standard/03_ImportExport/adm/win/vc10/ImportExport.vcxproj.filters
diff --git a/samples/mfc/standard/05_ImportExport/res/ImportExport.rc b/samples/mfc/standard/03_ImportExport/res/ImportExport.rc
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/res/ImportExport.rc
rename to samples/mfc/standard/03_ImportExport/res/ImportExport.rc
diff --git a/samples/mfc/standard/05_ImportExport/res/Toolbar.bmp b/samples/mfc/standard/03_ImportExport/res/Toolbar.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/res/Toolbar.bmp
rename to samples/mfc/standard/03_ImportExport/res/Toolbar.bmp
diff --git a/samples/mfc/standard/05_ImportExport/res/resource.h b/samples/mfc/standard/03_ImportExport/res/resource.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/res/resource.h
rename to samples/mfc/standard/03_ImportExport/res/resource.h
diff --git a/samples/mfc/standard/05_ImportExport/src/ColoredShapes.cpp b/samples/mfc/standard/03_ImportExport/src/ColoredShapes.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ColoredShapes.cpp
rename to samples/mfc/standard/03_ImportExport/src/ColoredShapes.cpp
diff --git a/samples/mfc/standard/05_ImportExport/src/ColoredShapes.h b/samples/mfc/standard/03_ImportExport/src/ColoredShapes.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ColoredShapes.h
rename to samples/mfc/standard/03_ImportExport/src/ColoredShapes.h
diff --git a/samples/mfc/standard/05_ImportExport/src/ImportExportApp.cpp b/samples/mfc/standard/03_ImportExport/src/ImportExportApp.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ImportExportApp.cpp
rename to samples/mfc/standard/03_ImportExport/src/ImportExportApp.cpp
diff --git a/samples/mfc/standard/05_ImportExport/src/ImportExportApp.h b/samples/mfc/standard/03_ImportExport/src/ImportExportApp.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ImportExportApp.h
rename to samples/mfc/standard/03_ImportExport/src/ImportExportApp.h
diff --git a/samples/mfc/standard/05_ImportExport/src/ImportExportDoc.cpp b/samples/mfc/standard/03_ImportExport/src/ImportExportDoc.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ImportExportDoc.cpp
rename to samples/mfc/standard/03_ImportExport/src/ImportExportDoc.cpp
diff --git a/samples/mfc/standard/05_ImportExport/src/ImportExportDoc.h b/samples/mfc/standard/03_ImportExport/src/ImportExportDoc.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/ImportExportDoc.h
rename to samples/mfc/standard/03_ImportExport/src/ImportExportDoc.h
diff --git a/samples/mfc/standard/05_ImportExport/src/StdAfx.cpp b/samples/mfc/standard/03_ImportExport/src/StdAfx.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/StdAfx.cpp
rename to samples/mfc/standard/03_ImportExport/src/StdAfx.cpp
diff --git a/samples/mfc/standard/05_ImportExport/src/StdAfx.h b/samples/mfc/standard/03_ImportExport/src/StdAfx.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/05_ImportExport/src/StdAfx.h
rename to samples/mfc/standard/03_ImportExport/src/StdAfx.h
diff --git a/samples/mfc/standard/03_Viewer2d/CMakeLists.txt b/samples/mfc/standard/03_Viewer2d/CMakeLists.txt
deleted file mode 100644
index 45ea6c8a22..0000000000
--- a/samples/mfc/standard/03_Viewer2d/CMakeLists.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-cmake_minimum_required (VERSION 2.6)
-
-project (Viewer2d)
-
-add_definitions (-DWINVER=0x0501 -DUNICODE -D_UNICODE)
-set (CMAKE_MFC_FLAG 2)
-
-set (Viewer2d_SOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/03_Viewer2d/src)
-set (Viewer2d_HEADER_FILES ${Viewer2d_SOURCE_DIR}/Viewer2dApp.h
- ${Viewer2d_SOURCE_DIR}/Viewer2dDoc.h
- ${Viewer2d_SOURCE_DIR}/StdAfx.h )
-set (Viewer2d_SOURCE_FILES ${Viewer2d_SOURCE_DIR}/Viewer2dApp.cpp
- ${Viewer2d_SOURCE_DIR}/Viewer2dDoc.cpp
- ${Viewer2d_SOURCE_DIR}/StdAfx.cpp )
-
-set (Viewer2d_RESOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/03_Viewer2d/res)
-set (Viewer2d_RESOURCE_HEADER ${Viewer2d_RESOURCE_DIR}/resource.h)
-set (Viewer2d_RESOURCE_FILES ${Viewer2d_RESOURCE_DIR}/Toolbar.bmp
- ${Viewer2d_RESOURCE_DIR}/Viewer2d.rc)
-
-# groups in the VS solution
-source_group ("Source Files" FILES ${Viewer2d_SOURCE_FILES}
- ${COMMON_WINMAIN_FILE})
-
-source_group ("Header Files" FILES ${Viewer2d_HEADER_FILES}
- ${Viewer2d_RESOURCE_HEADER})
-
-source_group ("Resource Files" FILES ${Viewer2d_RESOURCE_FILES})
-
-add_executable (Viewer2d WIN32 ${Viewer2d_SOURCE_FILES}
- ${Viewer2d_HEADER_FILES}
- ${COMMON_WINMAIN_FILE}
- ${Viewer2d_RESOURCE_HEADER}
- ${Viewer2d_RESOURCE_FILES})
-
-set_property (TARGET Viewer2d PROPERTY FOLDER "Samples/mfc")
-
-if (SINGLE_GENERATOR)
- install (TARGETS Viewer2d DESTINATION "${INSTALL_DIR_BIN}")
-else()
- install (TARGETS Viewer2d
- CONFIGURATIONS Release RelWithDebInfo
- DESTINATION "${INSTALL_DIR_BIN}")
- install (TARGETS Viewer2d
- CONFIGURATIONS Debug
- DESTINATION "${INSTALL_DIR_BIN}d")
-endif()
-
-include_directories (${CMAKE_BINARY_DIR}/inc
- ${MFC_STANDARD_SAMPLES_DIR}/03_Viewer2d
- ${Viewer2d_SOURCE_DIR}
- ${MFC_STANDARD_SAMPLES_DIR}/Common)
-
-target_link_libraries (Viewer2d mfcsample)
\ No newline at end of file
diff --git a/samples/mfc/standard/03_Viewer2d/README.txt b/samples/mfc/standard/03_Viewer2d/README.txt
deleted file mode 100644
index fa8efd0a1f..0000000000
--- a/samples/mfc/standard/03_Viewer2d/README.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Viewer2d sample demonstrates how the functionality of TKV3d package can be
-used for 2D visualization. It provides samples of 2D objects visualization,
-dynamic selection and highlighting.
-It illustrates how to:
-1) implement 2D view behavior with V3d_View class, with interactive zooming
-and panning of the 2D scene;
-2) draw 2D primitives like rectangles, lines, curves;
-3) draw different types of markers;
-4) draw text defined by its font, height, style, angle;
-5) display 2D curves of a face' edges and group them using orientation
-criterion;
-6) display zoomable images;
-6) display circular and rectangular grids .
-
-Viewer2d support zooming ,panning of displayed objects and
-circular and rectangular grids.
\ No newline at end of file
diff --git a/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj b/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj
deleted file mode 100644
index cbf9eef460..0000000000
--- a/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj
+++ /dev/null
@@ -1,354 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {6B905DC2-4E72-4EDA-99C2-7473634690FE}
- Viewer2d
- MFCProj
-
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>10.0.30319.1
- ../../../../win32\$(VCFMT)\bin\
- .\win32\obj\
- false
- ../../../../win64\$(VCFMT)\bin\
- .\win64\obj\
- false
- ../../../../win32\$(VCFMT)\bind\
- .\win32\objd\
- true
- ../../../../win64\$(VCFMT)\bind\
- .\win64\objd\
- true
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\obj/Viewer2d.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\src\Properties;.;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win32\obj/Viewer2d.pch
- .\win32\obj/
- .\win32\obj/
- .\win32\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bin/Viewer2d.exe
- true
- ..\..\..\..\win32\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win32\$(VCFMT)\bin/Viewer2d.pdb
- Windows
- MachineX86
-
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\obj/Viewer2d.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\src\Properties;.;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win64\obj/Viewer2d.pch
- .\win64\obj/
- .\win64\obj/
- .\win64\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bin/Viewer2d.exe
- true
- ..\..\..\..\win64\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win64\$(VCFMT)\bin/Viewer2d.pdb
- Windows
- MachineX64
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\objd/Viewer2d.tlb
-
-
-
-
- Disabled
- ..\..\..\src\Properties;.;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win32\objd/Viewer2d.pch
- .\win32\objd/
- .\win32\objd/
- .\win32\objd/
- Level4
- true
- EditAndContinue
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bind/Viewer2d.exe
- true
- ..\..\..\..\win32\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win32\$(VCFMT)\bind/Viewer2d.pdb
- Windows
- MachineX86
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\objd/Viewer2d.tlb
-
-
-
-
- Disabled
- ..\..\..\src\Properties;.;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win64\objd/Viewer2d.pch
- .\win64\objd/
- .\win64\objd/
- .\win64\objd/
- Level4
- true
- ProgramDatabase
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bind/Viewer2d.exe
- true
- ..\..\..\..\win64\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win64\$(VCFMT)\bind/Viewer2d.pdb
- Windows
- MachineX64
-
-
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
-
-
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
- {2d6cbbe8-6965-4016-b503-0d715ae26691}
- false
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj.filters b/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj.filters
deleted file mode 100644
index 77f8789975..0000000000
--- a/samples/mfc/standard/03_Viewer2d/adm/win/vc10/Viewer2d.vcxproj.filters
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- {a5fbdc06-d5d7-4c8a-b829-e986d5c86642}
- cpp;c;cxx;rc;def;r;odl;idl;hpj;bat
-
-
- {c7319851-4cde-42ce-b4aa-8b7ddd5f0c21}
- h;hpp;hxx;hm;inl
-
-
- {ffedd656-2b68-4a6e-8df3-973a1a5b136e}
- ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe
-
-
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Source Files
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/03_Viewer2d/res/Toolbar.bmp b/samples/mfc/standard/03_Viewer2d/res/Toolbar.bmp
deleted file mode 100755
index a6928bd8c9..0000000000
Binary files a/samples/mfc/standard/03_Viewer2d/res/Toolbar.bmp and /dev/null differ
diff --git a/samples/mfc/standard/03_Viewer2d/res/Viewer2d.rc b/samples/mfc/standard/03_Viewer2d/res/Viewer2d.rc
deleted file mode 100755
index 240238973a..0000000000
--- a/samples/mfc/standard/03_Viewer2d/res/Viewer2d.rc
+++ /dev/null
@@ -1,420 +0,0 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "resource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "afxres.h"
-#include "..\..\Common\res\OCC_Resource.h"
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE
-BEGIN
- "#include ""afxres.h""\r\n"
- "#include ""..\\..\\..\\Common\\res\\OCC_Resource.h""\0"
-END
-
-3 TEXTINCLUDE
-BEGIN
- "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
- "#define _AFX_NO_OLE_RESOURCES\r\n"
- "#define _AFX_NO_TRACKER_RESOURCES\r\n"
- "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
- "\r\n"
- "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
- "#ifdef _WIN32\r\n"
- "LANGUAGE 9, 1\r\n"
- "#pragma code_page(1252)\r\n"
- "#endif\r\n"
- "#include ""afxres.rc"" // Standard components\r\n"
- "#endif\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Toolbar
-//
-
-IDR_MAINFRAME TOOLBAR 16, 15
-BEGIN
- BUTTON ID_FILE_NEW
- SEPARATOR
- BUTTON ID_BUTTON_Test_Text
- BUTTON ID_BUTTON_Test_Markers
- BUTTON ID_BUTTON_Test_Line
- SEPARATOR
- BUTTON ID_BUTTON_Test_Face
- SEPARATOR
- BUTTON ID_BUTTON_Test_Rect
- SEPARATOR
- BUTTON ID_BUTTON_Test_Curve
- SEPARATOR
- BUTTON ID_BUTTON32793
- BUTTON ID_BUTTON_Test_MultiImages
- SEPARATOR
- BUTTON ID_BUTTON_Erase
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_DIALOG_Color DIALOG 0, 0, 281, 186
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Color Map "
-FONT 8, "MS Sans Serif"
-BEGIN
- LTEXT "Type Of The Color Map :",IDC_STATIC,20,10,87,10
- LTEXT "To be updated ...",IDC_ColorMap_STATIC_Type,110,10,69,10
- LTEXT "Size Of The Color Map :",IDC_STATIC,20,20,79,10
- CONTROL "Tab1",IDC_ColorMap_TAB,"SysTabControl32",TCS_BUTTONS,19,53,242,15
- LTEXT "To be updated ...",IDC_ColorMap_STATIC_Size,110,20,69,10
- GROUPBOX "Entries :",IDC_STATIC,10,40,264,50
- LTEXT "Color Name :",IDC_STATIC,20,75,50,10
- LTEXT "To be updated ...",IDC_ColorMap_STATIC_EntryColorName,204,75,69,10
- PUSHBUTTON "Add",IDC_ColorMap_BUTTON_AddNewEntry,110,145,55,15
- GROUPBOX "New Entry",IDC_STATIC,10,100,267,79
- PUSHBUTTON "Update Current",IDC_ColorMap_BUTTON_UpdateCurrentEntry,20,145,55,15
- LTEXT "Color Name :",IDC_ColorMap_STATIC_NewEntryColorNameStatic,20,120,55,10
- PUSHBUTTON "Edit...",IDC_ColorMap_BUTTON_NewEntry_EditColor,204,145,55,15
- LTEXT "999",IDC_ColorMap_STATIC_EntryColorRed,75,75,35,10
- LTEXT "999",IDC_ColorMap_STATIC_EntryColorGreen,120,75,35,10
- LTEXT "999",IDC_ColorMap_STATIC_EntryColorBlue,165,75,35,10
- EDITTEXT IDC_ColorMap_EDIT_NewEntryColorRed,75,120,35,12,ES_AUTOHSCROLL
- EDITTEXT IDC_ColorMap_EDIT_NewEntryColorGreen,120,120,30,12,ES_AUTOHSCROLL
- EDITTEXT IDC_ColorMap_EDIT_NewEntryColorBlue,165,120,35,12,ES_AUTOHSCROLL
- COMBOBOX IDC_ColorMap_COMBO_NewEntryColorName,204,120,70,193,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
- PUSHBUTTON "New Generic Color Map",IDC_ColorMap_BUTTON_NewGenericColorMap,179,4,95,13
- LTEXT "Not available for this type of Color map",IDC_ColorMap_STATIC_NewEntryNotavailable,70,130,160,10
- PUSHBUTTON "New Color Cube Color Map ",IDC_ColorMap_BUTTON_NewColorCubeColorMap,179,18,95,13
- PUSHBUTTON "New Color Ramp Color Map",IDC_ColorMap_BUTTON_NewColorRampColorMap,179,31,95,13
-END
-
-IDD_DIALOG_Font DIALOGEX 0, 0, 287, 210
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Font Map"
-FONT 8, "MS Sans Serif", 0, 0, 0x1
-BEGIN
- LTEXT "Size Of The Font Map :",IDC_STATIC,20,10,80,10
- LTEXT "To be updated ...",IDC_FontMap_STATIC_Size,110,10,80,10
- GROUPBOX "Entries :",IDC_STATIC,10,28,270,97,0,WS_EX_TRANSPARENT
- CONTROL "Tab1",IDC_FontMap_TAB,"SysTabControl32",TCS_BUTTONS,20,40,242,15
- GROUPBOX "New Entry",IDC_STATIC,10,130,270,73
- PUSHBUTTON "Update Current",IDC_FontMap_BUTTON_UpdateCurrent,158,181,55,15
- PUSHBUTTON "Add",IDC_FontMap_BUTTON_NewEntry,221,179,55,16
- LTEXT "To be updated...",IDC_FontMap_STATIC_CurrentEntryValue,63,75,217,10
- LTEXT "Type :",IDC_STATIC,21,155,23,10
- LTEXT "Type :",IDC_STATIC,21,60,40,10
- LTEXT "To be updated ...",IDC_FontMap_STATIC_CurrentEntryType,63,60,80,10
- LTEXT "Size :",IDC_STATIC,21,174,42,10
- LTEXT "Slant :",IDC_STATIC,21,189,28,10
- EDITTEXT IDC_FontMap_EDIT_NewEntrySize,63,172,62,12,ES_AUTOHSCROLL | ES_WANTRETURN
- EDITTEXT IDC_FontMap_EDIT_NewEntrySlant,63,187,62,12,ES_AUTOHSCROLL | ES_WANTRETURN
- LTEXT "Size :",IDC_STATIC,21,90,30,10
- LTEXT "Slant :",IDC_STATIC,21,106,36,10
- LTEXT "Value :",IDC_STATIC,21,75,40,10
- LTEXT "Type :",IDC_STATIC,21,140,42,10
- COMBOBOX IDC_FontMap_COMBO_NewEntryType,63,138,113,77,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
- EDITTEXT IDC_FontMap_EDIT_NewEntryValue,63,153,209,12,ES_AUTOHSCROLL | ES_READONLY
- LTEXT "To be updated...",IDC_FontMap_STATIC_CurrentEntrySize,63,90,70,10
- LTEXT "To be updated...",IDC_FontMap_STATIC_CurrentEntrySlant,63,106,80,10
- PUSHBUTTON "Edit...",IDC_FontMap_BUTTON_NewEntry_EditFont,191,138,55,12
-END
-
-IDD_DIALOG_Width DIALOG 0, 0, 281, 167
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Width Map "
-FONT 8, "MS Sans Serif"
-BEGIN
- LTEXT "Size Of The Width Map :",IDC_STATIC,15,10,80,10
- CONTROL "Tab1",IDC_WidthMap_TAB,"SysTabControl32",TCS_BUTTONS,21,40,242,15
- LTEXT "To be updated ...",IDC_WidthMap_STATIC_Size,107,10,80,10
- GROUPBOX "Entries :",IDC_STATIC,10,30,264,57
- LTEXT "Type :",IDC_STATIC,15,60,80,10
- LTEXT "Width :",IDC_STATIC,15,75,80,10
- LTEXT "Type :",IDC_STATIC,15,115,49,10
- LTEXT "Width :",IDC_STATIC,15,130,49,10
- COMBOBOX IDC_WidthMap_COMBO_NewEntryType,70,113,113,77,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
- EDITTEXT IDC_WidthMap_EDIT_NewEntryWidth,70,128,62,12,ES_AUTOHSCROLL | ES_READONLY | ES_WANTRETURN
- LTEXT "To be updated ...",IDC_WidthMap_STATIC_EntryType,107,60,80,10
- LTEXT "To be updated ...",IDC_WidthMap_STATIC_EntryWidth,107,75,80,10
- PUSHBUTTON "Add",IDC_WidthMap_BUTTON_AddNewEntry,200,130,55,15
- GROUPBOX "New Entry",IDC_STATIC,7,101,267,51
- PUSHBUTTON "Update Current",IDC_WidthMap_BUTTON_UpdateCurrentEntry,200,110,55,15
-END
-
-IDD_DIALOG_NewColorCube DIALOG 0, 0, 207, 156
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "New Color Cube"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,150,10,50,13
- PUSHBUTTON "Cancel",IDCANCEL,150,30,50,14
- LTEXT "base_pixel",IDC_STATIC,20,10,50,10
- LTEXT "greenmax",IDC_STATIC,20,70,50,10
- LTEXT "greenmult",IDC_STATIC,20,90,50,10
- LTEXT "bluemax",IDC_STATIC,20,110,50,10
- LTEXT "bluemult",IDC_STATIC,20,130,50,10
- EDITTEXT IDC_NewColorCube_EDIT_bluemult,80,130,50,12,ES_AUTOHSCROLL | ES_NUMBER
- EDITTEXT IDC_NewColorCube_EDIT_bluemax,80,110,50,12,ES_AUTOHSCROLL | ES_NUMBER
- EDITTEXT IDC_NewColorCube_EDIT_grennmult,80,90,50,12,ES_AUTOHSCROLL | ES_NUMBER
- EDITTEXT IDC_NewColorCube_EDIT_greenmax,80,70,50,12,ES_AUTOHSCROLL | ES_NUMBER
- EDITTEXT IDC_NewColorCube_EDIT_base_pixel,80,10,50,12,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "redmax",IDC_STATIC,20,30,50,10
- EDITTEXT IDC_NewColorCube_EDIT_redmax,80,30,50,12,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "redmult",IDC_STATIC,20,50,50,10
- EDITTEXT IDC_NewColorCube_EDIT_redmult,80,50,50,12,ES_AUTOHSCROLL | ES_NUMBER
-END
-
-IDD_DIALOG_NewColorRamp DIALOG 0, 0, 252, 121
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "New Color ramp"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,150,10,50,13
- PUSHBUTTON "Cancel",IDCANCEL,150,30,50,14
- LTEXT "base_pixel",-1,20,10,49,10
- EDITTEXT IDC_NewColorRamp_EDIT_base_pixel,80,10,40,12,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "dimension",-1,20,30,49,10
- EDITTEXT IDC_NewColorramp_EDIT_dimension,80,30,40,12,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "Color Name :",IDC_ColorMap_STATIC_NewEntryColorNameStatic,20,50,49,10
- PUSHBUTTON "Edit...",IDC_NewColorMapRamp_BUTTON_EditColor,145,70,55,10
- EDITTEXT IDC_NewColorMapRamp_EDIT_ColorRed,28,70,35,12,ES_AUTOHSCROLL
- EDITTEXT IDC_NewColorMapRamp_EDIT_ColorGreen,65,70,35,12,ES_AUTOHSCROLL
- EDITTEXT IDC_NewColorMapRamp_EDIT_ColorBlue,103,70,35,12,ES_AUTOHSCROLL
- COMBOBOX IDC_NewColorMap_COMBO_NewEntryColorName,80,50,70,193,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
-END
-
-IDD_DIALOG_Type DIALOGEX 0, 0, 287, 170
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Type Map"
-FONT 8, "MS Sans Serif", 0, 0, 0x1
-BEGIN
- LTEXT "Size Of The Type Map :",-1,20,10,80,10
- LTEXT "To be updated ...",IDC_TypeMap_STATIC_Size,110,10,80,10
- GROUPBOX "Entries :",-1,10,28,270,62,0,WS_EX_TRANSPARENT
- CONTROL "Tab1",IDC_TypeMap_TAB,"SysTabControl32",TCS_BUTTONS,20,40,242,15
- GROUPBOX "New Entry",-1,10,100,270,60
- PUSHBUTTON "Update Current",IDC_FontMap_BUTTON_UpdateCurrent,160,140,55,15
- PUSHBUTTON "Add",IDC_FontMap_BUTTON_NewEntry,220,140,55,15
- LTEXT "To be updated...",IDC_TypeMap_STATIC_CurrentEntryValue,63,75,217,10
- LTEXT "Value :",-1,21,126,42,10
- LTEXT "Style :",-1,21,60,40,10
- LTEXT "To be updated ...",IDC_TypeMap_STATIC_CurrentEntryStyle,63,60,80,10
- LTEXT "Value :",-1,21,75,40,10
- LTEXT "Style :",-1,21,111,42,10
- COMBOBOX IDC_TypeMap_COMBO_NewEntryStyle,63,108,113,77,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
- EDITTEXT IDC_TypeMap_EDIT_NewEntryValue,63,124,194,12,ES_AUTOHSCROLL | ES_READONLY
-END
-
-IDD_DIALOG_Mark DIALOGEX 0, 0, 287, 201
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Mark Map"
-FONT 8, "MS Sans Serif", 0, 0, 0x1
-BEGIN
- LTEXT "Size Of The Mark Map :",AFX_ID_PREVIEW_CLOSE,20,10,80,10
- LTEXT "To be updated ...",IDC_MarkMap_STATIC_Size,110,10,80,10
- GROUPBOX "Entries :",-1,10,28,270,92,0,WS_EX_TRANSPARENT
- CONTROL "Tab1",IDC_MarkMap_TAB,"SysTabControl32",TCS_BUTTONS,20,40,242,15
- LTEXT "To be updated...",IDC_MarkMap_STATIC_CurrentEntryXValue,63,75,217,9
- LTEXT "Style :",-1,21,60,40,10
- LTEXT "To be updated ...",IDC_MarkMap_STATIC_CurrentEntryStyle,63,60,80,10
- LTEXT "XValue :",-1,21,75,40,9
- LTEXT "To be updated...",IDC_MarkMap_STATIC_CurrentEntryYValue,63,90,217,10
- LTEXT "YValue :",-1,21,90,40,10
- LTEXT "To be updated...",IDC_MarkMap_STATIC_CurrentEntrySValue,63,105,217,10
- LTEXT "SValue :",-1,21,105,40,10
- LTEXT "To be updated...",IDC_MarkMap_STATIC_CurrentEntryValue,62,90,217,10
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Bitmap
-//
-
-IDR_MAINFRAME BITMAP "Toolbar.bmp"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDR_2DTYPE MENU
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM "&Close", ID_FILE_CLOSE
- MENUITEM SEPARATOR
- MENUITEM "Export Image...", ID_FILE_EXPORT_IMAGE
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Window"
- BEGIN
- MENUITEM "&New Window", ID_WINDOW_NEW
- MENUITEM "&Cascade", ID_WINDOW_CASCADE
- MENUITEM "&Tile", ID_WINDOW_TILE_HORZ
- MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About Viewer2d...", ID_APP_ABOUT
- END
-END
-
-IDR_MAINFRAME MENU
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About Viewer2d...", ID_APP_ABOUT
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Version
-//
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,1
- PRODUCTVERSION 1,0,0,1
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0"
- BEGIN
- VALUE "FileDescription", "SAMPLEVIEWER2D MFC Application"
- VALUE "FileVersion", "1, 0, 0, 1"
- VALUE "InternalName", "SAMPLEVIEWER2D"
- VALUE "LegalCopyright", "Copyright © 1997"
- VALUE "OriginalFilename", "VIEWER2D.EXE"
- VALUE "ProductName", "SAMPLEVIEWER2D Application"
- VALUE "ProductVersion", "1, 0, 0, 1"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE
-BEGIN
- IDR_MAINFRAME "Viewer2d"
- IDR_2DTYPE "\nViewer2d\nViewer2d\n\n\nViewer2d.Document\nViewer2d Document"
-END
-
-STRINGTABLE
-BEGIN
- ID_BUTTON_Test_Text "Test Text\nTest Text"
- ID_BUTTON_Test_Markers "Test Markers\nTest Markers"
- ID_BUTTON_Test_Line "Test Lines\nTest Lines"
- ID_BUTTON_Erase "Erase all\nErase"
-END
-
-STRINGTABLE
-BEGIN
- ID_BUTTONAxo "Face orientation\nFace orientation"
-END
-
-STRINGTABLE
-BEGIN
- ID_BUTTON_Test_Curve "Test Curves\nTest Curves"
-END
-
-STRINGTABLE
-BEGIN
- ID_BUTTON32793 "Test Image\nTest Image"
- ID_BUTTON_Test_MultiImages "Test multi-images\nTest multi-images"
- ID_BUTTON_Test_Rect "Test Rects\nTest Rects"
- ID_BUTTON_Test_Face "Test Face\nTest Face"
-END
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-#define _AFX_NO_SPLITTER_RESOURCES
-#define _AFX_NO_OLE_RESOURCES
-#define _AFX_NO_TRACKER_RESOURCES
-#define _AFX_NO_PROPERTY_RESOURCES
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE 9, 1
-#pragma code_page(1252)
-#endif
-#include "afxres.rc" // Standard components
-#endif
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/samples/mfc/standard/03_Viewer2d/res/resource.h b/samples/mfc/standard/03_Viewer2d/res/resource.h
deleted file mode 100755
index f461f3c401..0000000000
--- a/samples/mfc/standard/03_Viewer2d/res/resource.h
+++ /dev/null
@@ -1,122 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by Viewer2d.rc
-//
-#define ID_BUTTON_Test_Image 0
-#define IDR_MAINFRAME2 130
-#define IDR_2DTYPE2 131
-#define ID_FILE_EXPORT_IMAGE2 133
-#define ID_MENU_CASCADE_PROPERTIES 148
-#define IDD_DIALOG_Font 160
-#define IDD_DIALOG_Width 161
-#define IDD_DIALOG_Color 162
-#define IDD_DIALOG_NewColorCube 163
-#define IDD_DIALOG_NewColorRamp 164
-#define IDD_DIALOG_Type 165
-#define IDD_DIALOG_Mark 166
-#define ID_BUTTON_Test_Text 1043
-#define ID_BUTTON_Test_Markers 1045
-#define ID_BUTTON_Test_Line 1048
-#define ID_BUTTON_Erase 1051
-#define IDR_MAINFRAME1 1208
-#define IDC_ColorMap_STATIC_Type 1420
-#define IDC_ColorMap_STATIC_Size 1421
-#define IDC_ColorMap_TAB 1422
-#define IDC_ColorMap_STATIC_EntryColorGreen 1423
-#define IDC_ColorMap_STATIC_EntryColorRed 1424
-#define IDC_ColorMap_STATIC_EntryColorBlue 1425
-#define IDC_ColorMap_STATIC_EntryColorName 1426
-#define IDC_ColorMap_EDIT_NewEntryColorRed 1427
-#define IDC_ColorMap_EDIT_NewEntryColorGreen 1428
-#define IDC_ColorMap_EDIT_NewEntryColorBlue 1429
-#define IDC_ColorMap_COMBO_NewEntryColorName 1430
-#define IDC_ColorMap_BUTTON_NewEntry_EditColor 1431
-#define IDC_ColorMap_BUTTON_UpdateCurrentEntry 1432
-#define IDC_ColorMap_BUTTON_AddNewEntry 1433
-#define IDC_ColorMap_BUTTON_NewGenericColorMap 1434
-#define IDC_ColorMap_STATIC_NewEntryColorNameStatic 1435
-#define IDC_ColorMap_STATIC_NewEntryNotavailable 1436
-#define IDC_ColorMap_BUTTON_NewColorCubeColorMap 1437
-#define IDC_ColorMap_BUTTON_NewColorRampColorMap 1438
-#define IDC_NewColorMap_COMBO_NewEntryColorName 1439
-#define IDC_NewColorMap_BUTTON_NewColorRampColorMap 1440
-#define IDC_NewColorMapRamp_EDIT_ColorRed 1441
-#define IDC_NewColorMapRamp_EDIT_ColorGreen 1442
-#define IDC_NewColorMapRamp_EDIT_ColorBlue 1443
-#define IDC_NewColorMapRamp_BUTTON_EditColor 1444
-#define IDC_NewColorRamp_EDIT_base_pixel 1445
-#define IDC_NewColorramp_EDIT_dimension 1446
-#define IDC_NewColorCube_EDIT_bluemult 1447
-#define IDC_NewColorCube_EDIT_base_pixel 1448
-#define IDC_NewColorCube_EDIT_bluemax 1449
-#define IDC_NewColorCube_EDIT_grennmult 1450
-#define IDC_NewColorCube_EDIT_greenmax 1451
-#define IDC_NewColorCube_EDIT_redmax 1452
-#define IDC_NewColorCube_EDIT_redmult 1453
-#define IDC_WidthMap_STATIC_Size 1454
-#define IDC_WidthMap_TAB 1455
-#define IDC_WidthMap_STATIC_EntryType 1456
-#define IDC_WidthMap_STATIC_EntryWidth 1457
-#define IDC_WidthMap_COMBO_NewEntryType 1458
-#define IDC_WidthMap_EDIT_NewEntryWidth 1459
-#define IDC_WidthMap_BUTTON_AddNewEntry 1460
-#define IDC_WidthMap_BUTTON_UpdateCurrentEntry 1461
-#define IDC_FontMap_STATIC_Size 1462
-#define IDC_FontMap_TAB 1463
-#define IDC_FontMap_STATIC_CurrentEntryValue 1464
-#define IDC_FontMap_STATIC_CurrentEntryType 1465
-#define IDC_FontMap_STATIC_CurrentEntrySize 1466
-#define IDC_FontMap_STATIC_CurrentEntrySlant 1467
-#define IDC_FontMap_BUTTON_NewEntry 1468
-#define IDC_FontMap_BUTTON_UpdateCurrent 1469
-#define IDC_FontMap_COMBO_NewEntryType 1470
-#define IDC_FontMap_EDIT_NewEntryValue 1471
-#define IDC_FontMap_EDIT_NewEntrySize 1472
-#define IDC_FontMap_EDIT_NewEntrySlant 1473
-#define IDC_FontMap_BUTTON_NewEntry_EditFont 1474
-#define IDC_TypeMap_STATIC_Size 1475
-#define IDC_TypeMap_TAB 1476
-#define IDC_TypeMap_STATIC_CurrentEntryStyle 1477
-#define IDC_TypeMap_STATIC_CurrentEntryValue 1478
-#define IDC_TypeMap_COMBO_NewEntryStyle 1479
-#define IDC_TypeMap_EDIT_NewEntryValue 1480
-#define IDC_MarkMap_STATIC_Size 1481
-#define IDC_MarkMap_TAB 1482
-#define IDC_MarkMap_STATIC_CurrentEntryXValue 1483
-#define IDC_MarkMap_STATIC_CurrentEntryStyle 1484
-#define IDC_MarkMap_STATIC_CurrentEntryYValue 1485
-#define IDC_MarkMap_STATIC_CurrentEntrySValue 1486
-#define IDC_MarkMap_STATIC_CurrentEntryValue 1487
-#define ID_BUTTON32791 32791
-#define ID_BUTTON32793 32793
-#define ID_BUTTON_Test_MultiImages 32794
-#define ID_BUTTON_Test_Rect 32795
-#define ID_BUTTON_Test_Face 32796
-#define ID_BUTTON_Test_Curve 40016
-#define ID_FILE_NEW2 57601
-#define ID_FILE_OPEN2 57603
-#define ID_FILE_CLOSE2 57604
-#define ID_FILE_SAVE2 57605
-#define ID_FILE_SAVE_AS2 57606
-#define ID_WINDOW_NEW2 57652
-#define ID_WINDOW_ARRANGE2 57653
-#define ID_WINDOW_CASCADE2 57654
-#define ID_WINDOW_TILE_HORZ2 57655
-#define ID_WINDOW_TILE_VERT2 57656
-#define ID_WINDOW_SPLIT2 57657
-#define ID_APP_ABOUT2 57666
-#define ID_APP_EXIT2 57667
-#define ID_VIEW_TOOLBAR2 59394
-#define ID_VIEW_STATUS_BAR2 59395
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_3D_CONTROLS 1
-#define _APS_NEXT_RESOURCE_VALUE 179
-#define _APS_NEXT_COMMAND_VALUE 32797
-#define _APS_NEXT_CONTROL_VALUE 1100
-#define _APS_NEXT_SYMED_VALUE 170
-#endif
-#endif
diff --git a/samples/mfc/standard/03_Viewer2d/src/StdAfx.cpp b/samples/mfc/standard/03_Viewer2d/src/StdAfx.cpp
deleted file mode 100755
index f51e0a6cf3..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/StdAfx.cpp
+++ /dev/null
@@ -1,6 +0,0 @@
-// stdafx.cpp : source file that includes just the standard includes
-// SampleViewer2d.pch will be the pre-compiled header
-// stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
-
diff --git a/samples/mfc/standard/03_Viewer2d/src/StdAfx.h b/samples/mfc/standard/03_Viewer2d/src/StdAfx.h
deleted file mode 100755
index 133d0a5ec0..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/StdAfx.h
+++ /dev/null
@@ -1,158 +0,0 @@
-// stdafx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-//
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
-
-#include // MFC core and standard components
-#include // MFC extensions
-#include // MFC OLE automation classes
-#ifndef _AFX_NO_AFXCMN_SUPPORT
-#include // MFC support for Windows Common Controls
-#endif // _AFX_NO_AFXCMN_SUPPORT
-
-#pragma warning( disable : 4244 ) // Issue warning 4244
-#include "Standard_ShortReal.hxx"
-#pragma warning( default : 4244 ) // Issue warning 4244
-
-#include
-/*
-#ifndef Version15B
-# ifndef Version15D
-# ifndef Version20
-# define Version15B
-# endif // Version20
-# endif // Version15D
-#endif // Version15B
-
-#pragma message ("=============================")
-#ifdef Version15B
-# pragma message ("Set the libs for version 1.5B")
-#endif // Version15B
-
-#ifdef Version15D
-# pragma message ("Set the libs for version 1.5D")
-#endif // Version15D
-
-#ifdef Version20
-# pragma message ("Set the libs for version 2.0 ")
-#endif // Version20
-#pragma message ("=============================")
-
-#ifdef Version15B
-# pragma comment (lib,"TKTop.lib")
-# pragma comment (lib,"TShort.lib")
-# pragma comment (lib,"TColQuantity.lib")
-#endif
-
-#ifdef Version15D
-# pragma comment (lib,"TKTop.lib")
-#endif
-
-#ifdef Version20
-# pragma comment (lib,"TKTop1.lib")
-# pragma comment (lib,"TKTop2.lib")
-#endif
-
-#pragma message ("Set the specific libs for the application")
-# pragma comment (lib,"TKGeom.lib")
-# pragma comment (lib,"TKGlt.lib")
-# pragma comment (lib,"TKGraphic.lib")
-# pragma comment (lib,"TKPrsMgr.lib")
-# pragma comment (lib,"TKViewers.lib")
-# pragma comment (lib,"gp.lib")
-# pragma comment (lib,"TKernel.lib")
-*/
-
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include <..\res\resource.h>
-
-class ISession2D_InteractiveObject;
-
-class V3d_Viewer;
-class SelectMgr_SelectableObject;
-class TCollection_AsciiString;
-class gp_Pnt2d;
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
diff --git a/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.cpp b/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.cpp
deleted file mode 100755
index c452e592ff..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-// Viewer2dApp.cpp : Defines the class behaviors for the application.
-//
-
-#include "stdafx.h"
-
-#include "Viewer2dApp.h"
-
-#include "OCC_MainFrame.h"
-#include "OCC_2dChildFrame.h"
-#include "Viewer2dDoc.h"
-#include "OCC_2dView.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer2dApp construction
-
-CViewer2dApp::CViewer2dApp() : OCC_App()
-{
- SampleName = "Viewer2d"; //for about dialog
- SetSamplePath (L"..\\..\\03_Viewer2d");
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// The one and only CViewer2dApp object
-
-CViewer2dApp theApp;
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer2dApp initialization
-
-BOOL CViewer2dApp::InitInstance()
-{
- // Standard initialization
- // If you are not using these features and wish to reduce the size
- // of your final executable, you should remove from the following
- // the specific initialization routines you do not need.
-
- LoadStdProfileSettings(); // Load standard INI file options (including MRU)
-
- // Register the application's document templates. Document templates
- // serve as the connection between documents, frame windows and views.
-
- CMultiDocTemplate* pDocTemplate;
- pDocTemplate = new CMultiDocTemplate(
- IDR_2DTYPE,
- RUNTIME_CLASS(CViewer2dDoc),
- RUNTIME_CLASS(OCC_2dChildFrame),
- RUNTIME_CLASS(OCC_2dView));
- AddDocTemplate(pDocTemplate);
-
- // create main MDI Frame window
- OCC_MainFrame* pMainFrame = new OCC_MainFrame;
- if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
- return FALSE;
- m_pMainWnd = pMainFrame;
-
- // Parse command line for standard shell commands, DDE, file open
- CCommandLineInfo cmdInfo;
- ParseCommandLine(cmdInfo);
-
- // Dispatch commands specified on the command line
- if (!ProcessShellCommand(cmdInfo))
- return FALSE;
-
- // The main window has been initialized, so show and update it.
- pMainFrame->ShowWindow(m_nCmdShow);
- pMainFrame->UpdateWindow();
-
- return TRUE;
-}
diff --git a/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.h b/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.h
deleted file mode 100755
index d63265348f..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/Viewer2dApp.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Viewer2dApp.h : main header file for the VIEWER2D application
-//
-
-#if !defined(AFX_VIEWER2DAPP_H__45F76B43_423D_11D7_8612_0060B0EE281E__INCLUDED_)
-#define AFX_VIEWER2DAPP_H__45F76B43_423D_11D7_8612_0060B0EE281E__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#include
-
-class CViewer2dApp : public OCC_App
-{
-public:
-
- CViewer2dApp();
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CViewer2dApp)
- public:
- virtual BOOL InitInstance();
- //}}AFX_VIRTUAL
-};
-
-
-/////////////////////////////////////////////////////////////////////////////
-
-#endif //(AFX_VIEWER2DAPP_H__45F76B43_423D_11D7_8612_0060B0EE281E__INCLUDED_)
diff --git a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp b/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp
deleted file mode 100755
index fd99f3d03d..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp
+++ /dev/null
@@ -1,405 +0,0 @@
-// Viewer2dDoc.cpp : implementation of the CViewer2dDoc class
-//
-
-#include "stdafx.h"
-#include "Viewer2dDoc.h"
-#include "OCC_App.h"
-#include "Primitive\Sample2D_Markers.h"
-#include "Primitive\Sample2D_Face.h"
-#include "Primitive\Sample2D_Image.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer2dDoc
-
-IMPLEMENT_DYNCREATE(CViewer2dDoc, CDocument)
-
-BEGIN_MESSAGE_MAP(CViewer2dDoc, CDocument)
- //{{AFX_MSG_MAP(CViewer2dDoc)
- ON_COMMAND(ID_BUTTON_Test_Text, OnBUTTONTestText)
- ON_COMMAND(ID_BUTTON_Test_Markers, OnBUTTONTestMarkers)
- ON_COMMAND(ID_BUTTON_Test_Line, OnBUTTONTestLine)
- ON_COMMAND(ID_BUTTON_Erase, OnBUTTONErase)
- ON_COMMAND(ID_BUTTON_Test_Face, OnBUTTONTestFace)
- ON_COMMAND(ID_BUTTON_Test_Rect, OnBUTTONTestRect)
- ON_COMMAND(ID_BUTTON_Test_Curve, OnBUTTONTestCurve)
- ON_COMMAND(ID_BUTTON32793, OnBUTTONTestImage) // test image
- ON_COMMAND(ID_BUTTON_Test_MultiImages, OnBUTTONMultipleImage)
-
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer2dDoc construction/destruction
-
-CViewer2dDoc::CViewer2dDoc()
-{
-}
-
-CViewer2dDoc::~CViewer2dDoc()
-{
-}
-
-#ifdef _DEBUG
-void CViewer2dDoc::AssertValid() const
-{
- CDocument::AssertValid();
-}
-
-void CViewer2dDoc::Dump(CDumpContext& dc) const
-{
- CDocument::Dump(dc);
-}
-#endif //_DEBUG
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer2dDoc commands
-
-void CViewer2dDoc::OnBUTTONErase()
-{
- myAISContext->EraseAll (Standard_True);
-}
-
-void CViewer2dDoc::OnBUTTONTestText()
-{
- int aColor = Quantity_NOC_MATRABLUE;
- for (Standard_Real j = 15; j <= 20; j++)
- {
- Handle(AIS_TextLabel) aText = new AIS_TextLabel();
- aText->SetText (TCollection_AsciiString ("font 0 scale ") + (j / 20.0));
- aText->SetPosition (gp_Pnt (0.0, 15.0 * (j - 15.0), 0.0));
- aText->SetAngle (30.0 * M_PI / 180.0);
- aText->SetColor (Quantity_NameOfColor(aColor++));
- aText->SetFontAspect (Font_FA_Regular);
- aText->SetFont ("Courier");
- aText->SetHeight (j);
- aText->SetHJustification (Graphic3d_HTA_LEFT);
- aText->SetVJustification (Graphic3d_VTA_BOTTOM);
- aText->SetZoomable (Standard_False);
- myAISContext->Display(aText, Standard_False);
- }
-
- for (Standard_Real j = 10; j <= 15; j++)
- {
- Handle(AIS_TextLabel) aText = new AIS_TextLabel();
- aText->SetText (TCollection_AsciiString ("font 1 scale ") + (j / 10.0));
- aText->SetPosition (gp_Pnt (80.0, 15.0 * (j - 10.0), 0.0));
- aText->SetAngle (0.0);
- aText->SetColor (Quantity_NameOfColor(aColor++));
- aText->SetFontAspect (Font_FA_BoldItalic);
- aText->SetFont ("Cambria");
- aText->SetHeight (j * 2);
- aText->SetHJustification (Graphic3d_HTA_LEFT);
- aText->SetVJustification (Graphic3d_VTA_BOTTOM);
- aText->SetZoomable (Standard_False);
- myAISContext->Display(aText, Standard_False);
- }
-
- aColor = Quantity_NOC_MATRABLUE;
- for (Standard_Real j = 5; j <= 10; j++)
- {
- Handle(AIS_TextLabel) aText = new AIS_TextLabel();
- aText->SetText (TCollection_AsciiString ("font 2 scale ") + (j / 10.0));
- aText->SetPosition (gp_Pnt (140.0, 15.0 * (j - 5.0), 0.0));
- aText->SetAngle (0.0);
- aText->SetColor (Quantity_NameOfColor(aColor++));
- aText->SetFontAspect (Font_FA_Bold);
- aText->SetFont ("Arial");
- aText->SetHeight (j * 2);
- aText->SetHJustification (Graphic3d_HTA_LEFT);
- aText->SetVJustification (Graphic3d_VTA_BOTTOM);
- aText->SetZoomable (Standard_False);
- myAISContext->Display(aText, Standard_False);
- }
- for (Standard_Real j = 10; j <= 15; j++)
- {
- Handle(AIS_TextLabel) aText = new AIS_TextLabel();
- aText->SetText (TCollection_AsciiString ("font 3 scale ") + (j / 10.0));
- aText->SetPosition (gp_Pnt (200.0, 15.0 * (j - 10.0), 0.0));
- aText->SetAngle (0.0);
- aText->SetColor (Quantity_NameOfColor(aColor++));
- aText->SetFontAspect (Font_FA_Italic);
- aText->SetFont ("Georgia");
- aText->SetHeight (j * 2);
- aText->SetHJustification (Graphic3d_HTA_LEFT);
- aText->SetVJustification (Graphic3d_VTA_BOTTOM);
- aText->SetZoomable (Standard_False);
- myAISContext->Display(aText, Standard_False);
- }
-
- FitAll2DViews(Standard_True); // Update Viewer
-}
-
-
-void CViewer2dDoc::OnBUTTONTestMarkers()
-{
- // generic Markers
- Standard_Integer aColor = 20;
- for (int i=1;i<=2;i++)
- {
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+5,5*i,Aspect_TOM_POINT,Quantity_NOC_YELLOW,2.0);
- myAISContext->Display(aMarker, Standard_False);
- }
- for (int i=1;i<=2;i++)
- {
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+10,5*i,Aspect_TOM_O,(Quantity_NameOfColor)(aColor++));
- myAISContext->Display(aMarker, Standard_False);
- }
- for (int i=1;i<=2;i++)
- {
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+15,5*i,Aspect_TOM_O_PLUS,(Quantity_NameOfColor)(aColor++));
- myAISContext->Display(aMarker, Standard_False);
- }
- for (int i=1;i<=2;i++)
- {
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+20,5*i,Aspect_TOM_RING1,(Quantity_NameOfColor)(aColor++));
- myAISContext->Display(aMarker, Standard_False);
- }
- for (int i=1;i<=2;i++)
- {
-
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+25,5*i,Aspect_TOM_STAR,(Quantity_NameOfColor)(aColor++));
- myAISContext->Display(aMarker, Standard_False);
- }
- for (int i=1;i<=2;i++)
- {
- Handle (Sample2D_Markers) aMarker =
- new Sample2D_Markers(10+30,5*i,Aspect_TOM_O_X,(Quantity_NameOfColor)(aColor++));
- myAISContext->Display(aMarker, Standard_False);
- }
-
- FitAll2DViews(Standard_False); // Update Viewer
-}
-void CViewer2dDoc::OnBUTTONTestLine()
-{
- for (int i=0;i<=13;++i)
- for (int j=0;j<=5;++j)
- {
- //set of rectangles here
- TopoDS_Edge E1 = BRepBuilderAPI_MakeEdge(gp_Pnt(10*i,10*j,0.), gp_Pnt(10*i+7,10*j,0.));
- TopoDS_Edge E2 = BRepBuilderAPI_MakeEdge(gp_Pnt(10*i+7,10*j,0.), gp_Pnt(10*i+7,10*j+5,0.));
- TopoDS_Edge E3 = BRepBuilderAPI_MakeEdge(gp_Pnt(10*i+7,10*j+5,0.), gp_Pnt(10*i,10*j+5,0.));
- TopoDS_Edge E4 = BRepBuilderAPI_MakeEdge(gp_Pnt(10*i,10*j+5,0.), gp_Pnt(10*i,10*j,0.));
- TopoDS_Wire W = BRepBuilderAPI_MakeWire(E1,E2,E3,E4);
- TopoDS_Face F = BRepBuilderAPI_MakeFace(W);
- Handle(AIS_Shape) aRect = new AIS_Shape(F);
- //set attributes of boundaries
- Handle(Prs3d_Drawer) aDrawer = new Prs3d_Drawer();
- Handle(Prs3d_LineAspect) aLineAttrib =
- new Prs3d_LineAspect(Quantity_NOC_YELLOW,
- (Aspect_TypeOfLine)(Aspect_TOL_SOLID+j),1);
- aDrawer->SetFaceBoundaryAspect(aLineAttrib);
- aDrawer->SetFaceBoundaryDraw(Standard_True);
- aRect->SetAttributes(aDrawer);
-
- myAISContext->SetDisplayMode (aRect, 1, Standard_False);
- myAISContext->SetColor(aRect,(Quantity_NameOfColor)(Quantity_NOC_CADETBLUE+2*i),Standard_False);
- myAISContext->SetMaterial(aRect,Graphic3d_NOM_PLASTIC,Standard_False);
- myAISContext->Display(aRect, Standard_False);
-
- }
- this->FitAll2DViews(Standard_True);
-}
-
-
-#include
-#include
-
-void CViewer2dDoc::OnBUTTONTestFace()
-{
- //erase all
- myAISContext->EraseAll (Standard_True);
-
- CFileDialog dlg(TRUE,
- NULL,
- NULL,
- OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
- L"BRep Files (*.brep)|*.brep; ||",
- NULL );
-
- CString initdir;
- initdir.GetEnvironmentVariable (L"CSF_OCCTDataPath");
- initdir += L"\\occ";
-
- dlg.m_ofn.lpstrInitialDir = initdir;
-
- if (dlg.DoModal() == IDOK)
- {
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
-
- std::filebuf aFileBuf;
- std::istream aStream (&aFileBuf);
- if (!aFileBuf.open (dlg.GetPathName(), std::ios::in))
- {
- AfxMessageBox (L"The shape must be not a null Face");
- return;
- }
-
- TopoDS_Shape aFaceShape;
- BRep_Builder aBuilder;
- BRepTools::Read (aFaceShape, aStream, aBuilder);
- if(aFaceShape.IsNull() || aFaceShape.ShapeType() != TopAbs_FACE)
- {
- AfxMessageBox (L"The shape must be not a null Face");
- return;
- }
-
- TopoDS_Face aFace = TopoDS::Face(aFaceShape);
- Handle(Sample2D_Face) anAISFace = new Sample2D_Face(aFaceShape);
- myAISContext->Display(anAISFace,Standard_True);
- //activate selection mode for edges selection
- myAISContext->Activate(anAISFace,2);
-
- FitAll2DViews(Standard_False);
-
- }
-}
-
-
-
-void CViewer2dDoc::OnBUTTONTestRect()
-{
- //First rectangle
- TopoDS_Edge E11 = BRepBuilderAPI_MakeEdge(gp_Pnt(40.,0.,0.), gp_Pnt(82.5,25.,0.));
- TopoDS_Edge E12 = BRepBuilderAPI_MakeEdge(gp_Pnt(82.5,25.,0.), gp_Pnt(42.5,93.,0.));
- TopoDS_Edge E13 = BRepBuilderAPI_MakeEdge(gp_Pnt(42.5,93.,0.), gp_Pnt(0.,68.,0.));
- TopoDS_Edge E14 = BRepBuilderAPI_MakeEdge(gp_Pnt(0.,68.,0.), gp_Pnt(40.,0.,0.));
- TopoDS_Wire W1 = BRepBuilderAPI_MakeWire(E11,E12,E13,E14);
- Handle(AIS_Shape) aRect1 = new AIS_Shape(W1);
- myAISContext->Display (aRect1, Standard_False);
- myAISContext->SetColor (aRect1, Quantity_NOC_YELLOW, Standard_False);
-
- //Second rectangle
- TopoDS_Edge E21 = BRepBuilderAPI_MakeEdge(gp_Pnt(110.,0.,0.), gp_Pnt(152.5,25.,0.));
- TopoDS_Edge E22 = BRepBuilderAPI_MakeEdge(gp_Pnt(152.5,25.,0.), gp_Pnt(112.5,93.,0.));
- TopoDS_Edge E23 = BRepBuilderAPI_MakeEdge(gp_Pnt(112.5,93.,0.), gp_Pnt(70.,68.,0.));
- TopoDS_Edge E24 = BRepBuilderAPI_MakeEdge(gp_Pnt(70.,68.,0.), gp_Pnt(110.,0.,0.));
- TopoDS_Wire W2 = BRepBuilderAPI_MakeWire(E21,E22,E23,E24);
- Handle(AIS_Shape) aRect2 = new AIS_Shape(W2);
- myAISContext->Display (aRect2, Standard_False);
- myAISContext->SetColor (aRect2, Quantity_NOC_YELLOW, Standard_False);
- myAISContext->Activate(aRect2,2);
-
- FitAll2DViews(Standard_True); // Update Viewer
-}
-
-void CViewer2dDoc::OnBUTTONTestCurve()
-{
- for(int i=0;i<=5;++i)
- for(int j=0;j<=5;++j)
- {
- Handle(Geom_Point) aStart = new Geom_CartesianPoint(gp_Pnt(10*i,10*j,0.));
- Handle(Geom_Point) anEnd = new Geom_CartesianPoint(gp_Pnt(10*i+5,10*j+10,0.));
- Handle(AIS_Line) aLine = new AIS_Line(aStart,anEnd);
- Handle(Prs3d_LineAspect) aLineAttrib =
- new Prs3d_LineAspect((Quantity_NameOfColor)(Quantity_NOC_CADETBLUE+2*i+2*j),
- (Aspect_TypeOfLine)((Aspect_TOL_DASH+i+j)%5),2+i+j);
- aLine->Attributes()->SetLineAspect(aLineAttrib);
- myAISContext->Display(aLine,Standard_False);
- }
- FitAll2DViews(Standard_True);
-}
-
-void CViewer2dDoc::OnBUTTONTestImage()
-{
- CFileDialog anOpenImageDlg (TRUE,
- NULL,
- NULL,
- OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
- SupportedImageFormats() + L"| all files (*.*)|*.*;||",
- NULL);
-
- CString anInitDir;
- anInitDir.GetEnvironmentVariable (L"CASROOT");
- anInitDir += L"\\data\\images";
-
- anOpenImageDlg.m_ofn.lpstrInitialDir = anInitDir;
- if(anOpenImageDlg.DoModal() == IDOK)
- {
- SetCursor(AfxGetApp()->LoadStandardCursor (IDC_WAIT));
- CString aFilePath = anOpenImageDlg.GetPathName();
- TCollection_AsciiString aFileName ((const wchar_t* )aFilePath);
-
- //erase viewer
- myAISContext->EraseAll (Standard_False);
-
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (40,50) ;
- anImage->SetScale (1.0);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- FitAll2DViews (Standard_True);
- }
-}
-
-void CViewer2dDoc::OnBUTTONMultipleImage()
-{
- CFileDialog anOpenImageDlg (TRUE,
- NULL,
- NULL,
- OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
- SupportedImageFormats() + L"| all files (*.*)|*.*;||",
- NULL);
-
- CString anInitDir;
- anInitDir.GetEnvironmentVariable (L"CASROOT");
- anInitDir += L"\\data\\images";
-
- anOpenImageDlg.m_ofn.lpstrInitialDir = anInitDir;
-
- if (anOpenImageDlg.DoModal() == IDOK)
- {
- SetCursor(AfxGetApp()->LoadStandardCursor (IDC_WAIT));
- CString aFilePath = anOpenImageDlg.GetPathName();
- TCollection_AsciiString aFileName ((const wchar_t* )aFilePath);
-
- //erase viewer
- myAISContext->EraseAll (Standard_False);
-
- //create images
- { // 1
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (40, 50);
- anImage->SetScale (0.5);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 2
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (100, 50);
- anImage->SetScale (0.9);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 3
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (40, 40);
- anImage->SetScale (0.3);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 4
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (50, 40);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 5
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (80, 45);
- anImage->SetScale (2);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 6
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (20, -20);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- { // 7
- Handle(Sample2D_Image) anImage = new Sample2D_Image (aFileName);
- anImage->SetCoord (0, 0);
- anImage->SetScale (0.5);
- myAISContext->Display (anImage, AIS_Shaded, 0, Standard_False);
- }
- FitAll2DViews (Standard_True); // Update Viewer
- }
-}
diff --git a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.h b/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.h
deleted file mode 100755
index dc586c5fe8..0000000000
--- a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Viewer2dDoc.h : interface of the CViewer2dDoc class
-//
-/////////////////////////////////////////////////////////////////////////////
-
-#include
-#include
-#include "OCC_2dDoc.h"
-
-
-class CViewer2dDoc : public OCC_2dDoc
-{
-protected: // create from serialization only
- CViewer2dDoc();
- DECLARE_DYNCREATE(CViewer2dDoc)
-
-// Implementation
-public:
- virtual ~CViewer2dDoc();
-#ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
-#endif
-
-protected:
-
-// Generated message map functions
-protected:
- //{{AFX_MSG(CViewer2dDoc)
- afx_msg void OnBUTTONTestText();
- afx_msg void OnBUTTONTestMarkers();
- afx_msg void OnBUTTONTestLine();
- afx_msg void OnBUTTONErase();
- afx_msg void OnBUTTONTestFace();
- afx_msg void OnBUTTONTestRect();
- afx_msg void OnBUTTONTestCurve();
- afx_msg void OnBUTTONTestImage();
- afx_msg void OnBUTTONMultipleImage();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-};
-
diff --git a/samples/mfc/standard/08_HLR/CMakeLists.txt b/samples/mfc/standard/04_HLR/CMakeLists.txt
similarity index 100%
rename from samples/mfc/standard/08_HLR/CMakeLists.txt
rename to samples/mfc/standard/04_HLR/CMakeLists.txt
diff --git a/samples/mfc/standard/08_HLR/README.txt b/samples/mfc/standard/04_HLR/README.txt
similarity index 100%
rename from samples/mfc/standard/08_HLR/README.txt
rename to samples/mfc/standard/04_HLR/README.txt
diff --git a/samples/mfc/standard/08_HLR/adm/win/vc10/HLR.vcxproj b/samples/mfc/standard/04_HLR/adm/win/vc10/HLR.vcxproj
similarity index 100%
rename from samples/mfc/standard/08_HLR/adm/win/vc10/HLR.vcxproj
rename to samples/mfc/standard/04_HLR/adm/win/vc10/HLR.vcxproj
diff --git a/samples/mfc/standard/08_HLR/adm/win/vc10/HLR.vcxproj.filters b/samples/mfc/standard/04_HLR/adm/win/vc10/HLR.vcxproj.filters
similarity index 100%
rename from samples/mfc/standard/08_HLR/adm/win/vc10/HLR.vcxproj.filters
rename to samples/mfc/standard/04_HLR/adm/win/vc10/HLR.vcxproj.filters
diff --git a/samples/mfc/standard/08_HLR/res/AXOVIEWU.bmp b/samples/mfc/standard/04_HLR/res/AXOVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/AXOVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/AXOVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BACKVIEWD.bmp b/samples/mfc/standard/04_HLR/res/BACKVIEWD.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BACKVIEWD.bmp
rename to samples/mfc/standard/04_HLR/res/BACKVIEWD.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BACKVIEWF.bmp b/samples/mfc/standard/04_HLR/res/BACKVIEWF.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BACKVIEWF.bmp
rename to samples/mfc/standard/04_HLR/res/BACKVIEWF.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BACKVIEWU.bmp b/samples/mfc/standard/04_HLR/res/BACKVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BACKVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/BACKVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BOTTOMVIEWD.bmp b/samples/mfc/standard/04_HLR/res/BOTTOMVIEWD.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BOTTOMVIEWD.bmp
rename to samples/mfc/standard/04_HLR/res/BOTTOMVIEWD.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BOTTOMVIEWF.bmp b/samples/mfc/standard/04_HLR/res/BOTTOMVIEWF.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BOTTOMVIEWF.bmp
rename to samples/mfc/standard/04_HLR/res/BOTTOMVIEWF.bmp
diff --git a/samples/mfc/standard/08_HLR/res/BOTTOMVIEWU.bmp b/samples/mfc/standard/04_HLR/res/BOTTOMVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/BOTTOMVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/BOTTOMVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/ChildFrame2D.bmp b/samples/mfc/standard/04_HLR/res/ChildFrame2D.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/ChildFrame2D.bmp
rename to samples/mfc/standard/04_HLR/res/ChildFrame2D.bmp
diff --git a/samples/mfc/standard/08_HLR/res/ChildFrame3D.bmp b/samples/mfc/standard/04_HLR/res/ChildFrame3D.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/ChildFrame3D.bmp
rename to samples/mfc/standard/04_HLR/res/ChildFrame3D.bmp
diff --git a/samples/mfc/standard/08_HLR/res/FRONTVIEWD.bmp b/samples/mfc/standard/04_HLR/res/FRONTVIEWD.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/FRONTVIEWD.bmp
rename to samples/mfc/standard/04_HLR/res/FRONTVIEWD.bmp
diff --git a/samples/mfc/standard/08_HLR/res/FRONTVIEWF.bmp b/samples/mfc/standard/04_HLR/res/FRONTVIEWF.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/FRONTVIEWF.bmp
rename to samples/mfc/standard/04_HLR/res/FRONTVIEWF.bmp
diff --git a/samples/mfc/standard/08_HLR/res/FRONTVIEWU.bmp b/samples/mfc/standard/04_HLR/res/FRONTVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/FRONTVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/FRONTVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/HLR.rc b/samples/mfc/standard/04_HLR/res/HLR.rc
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/HLR.rc
rename to samples/mfc/standard/04_HLR/res/HLR.rc
diff --git a/samples/mfc/standard/08_HLR/res/LEFTVIEWD.bmp b/samples/mfc/standard/04_HLR/res/LEFTVIEWD.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/LEFTVIEWD.bmp
rename to samples/mfc/standard/04_HLR/res/LEFTVIEWD.bmp
diff --git a/samples/mfc/standard/08_HLR/res/LEFTVIEWF.bmp b/samples/mfc/standard/04_HLR/res/LEFTVIEWF.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/LEFTVIEWF.bmp
rename to samples/mfc/standard/04_HLR/res/LEFTVIEWF.bmp
diff --git a/samples/mfc/standard/08_HLR/res/LEFTVIEWU.bmp b/samples/mfc/standard/04_HLR/res/LEFTVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/LEFTVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/LEFTVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/RIGHTVIEWD.bmp b/samples/mfc/standard/04_HLR/res/RIGHTVIEWD.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/RIGHTVIEWD.bmp
rename to samples/mfc/standard/04_HLR/res/RIGHTVIEWD.bmp
diff --git a/samples/mfc/standard/08_HLR/res/RIGHTVIEWF.bmp b/samples/mfc/standard/04_HLR/res/RIGHTVIEWF.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/RIGHTVIEWF.bmp
rename to samples/mfc/standard/04_HLR/res/RIGHTVIEWF.bmp
diff --git a/samples/mfc/standard/08_HLR/res/RIGHTVIEWU.bmp b/samples/mfc/standard/04_HLR/res/RIGHTVIEWU.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/RIGHTVIEWU.bmp
rename to samples/mfc/standard/04_HLR/res/RIGHTVIEWU.bmp
diff --git a/samples/mfc/standard/08_HLR/res/ToolBarObjects.bmp b/samples/mfc/standard/04_HLR/res/ToolBarObjects.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/ToolBarObjects.bmp
rename to samples/mfc/standard/04_HLR/res/ToolBarObjects.bmp
diff --git a/samples/mfc/standard/08_HLR/res/Toolbar.bmp b/samples/mfc/standard/04_HLR/res/Toolbar.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/Toolbar.bmp
rename to samples/mfc/standard/04_HLR/res/Toolbar.bmp
diff --git a/samples/mfc/standard/08_HLR/res/axoviewd.bmp b/samples/mfc/standard/04_HLR/res/axoviewd.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/axoviewd.bmp
rename to samples/mfc/standard/04_HLR/res/axoviewd.bmp
diff --git a/samples/mfc/standard/08_HLR/res/axoviewf.bmp b/samples/mfc/standard/04_HLR/res/axoviewf.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/axoviewf.bmp
rename to samples/mfc/standard/04_HLR/res/axoviewf.bmp
diff --git a/samples/mfc/standard/08_HLR/res/dummyd.bmp b/samples/mfc/standard/04_HLR/res/dummyd.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/dummyd.bmp
rename to samples/mfc/standard/04_HLR/res/dummyd.bmp
diff --git a/samples/mfc/standard/08_HLR/res/dummyf.bmp b/samples/mfc/standard/04_HLR/res/dummyf.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/dummyf.bmp
rename to samples/mfc/standard/04_HLR/res/dummyf.bmp
diff --git a/samples/mfc/standard/08_HLR/res/dummyu.bmp b/samples/mfc/standard/04_HLR/res/dummyu.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/dummyu.bmp
rename to samples/mfc/standard/04_HLR/res/dummyu.bmp
diff --git a/samples/mfc/standard/08_HLR/res/resource.h b/samples/mfc/standard/04_HLR/res/resource.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/resource.h
rename to samples/mfc/standard/04_HLR/res/resource.h
diff --git a/samples/mfc/standard/08_HLR/res/topviewd.bmp b/samples/mfc/standard/04_HLR/res/topviewd.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/topviewd.bmp
rename to samples/mfc/standard/04_HLR/res/topviewd.bmp
diff --git a/samples/mfc/standard/08_HLR/res/topviewf.bmp b/samples/mfc/standard/04_HLR/res/topviewf.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/topviewf.bmp
rename to samples/mfc/standard/04_HLR/res/topviewf.bmp
diff --git a/samples/mfc/standard/08_HLR/res/topviewu.bmp b/samples/mfc/standard/04_HLR/res/topviewu.bmp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/res/topviewu.bmp
rename to samples/mfc/standard/04_HLR/res/topviewu.bmp
diff --git a/samples/mfc/standard/08_HLR/src/HLRApp.cpp b/samples/mfc/standard/04_HLR/src/HLRApp.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRApp.cpp
rename to samples/mfc/standard/04_HLR/src/HLRApp.cpp
diff --git a/samples/mfc/standard/08_HLR/src/HLRApp.h b/samples/mfc/standard/04_HLR/src/HLRApp.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRApp.h
rename to samples/mfc/standard/04_HLR/src/HLRApp.h
diff --git a/samples/mfc/standard/08_HLR/src/HLRDoc.cpp b/samples/mfc/standard/04_HLR/src/HLRDoc.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRDoc.cpp
rename to samples/mfc/standard/04_HLR/src/HLRDoc.cpp
diff --git a/samples/mfc/standard/08_HLR/src/HLRDoc.h b/samples/mfc/standard/04_HLR/src/HLRDoc.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRDoc.h
rename to samples/mfc/standard/04_HLR/src/HLRDoc.h
diff --git a/samples/mfc/standard/08_HLR/src/HLRView2D.cpp b/samples/mfc/standard/04_HLR/src/HLRView2D.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRView2D.cpp
rename to samples/mfc/standard/04_HLR/src/HLRView2D.cpp
diff --git a/samples/mfc/standard/08_HLR/src/HLRView2D.h b/samples/mfc/standard/04_HLR/src/HLRView2D.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRView2D.h
rename to samples/mfc/standard/04_HLR/src/HLRView2D.h
diff --git a/samples/mfc/standard/08_HLR/src/HLRView3D.cpp b/samples/mfc/standard/04_HLR/src/HLRView3D.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRView3D.cpp
rename to samples/mfc/standard/04_HLR/src/HLRView3D.cpp
diff --git a/samples/mfc/standard/08_HLR/src/HLRView3D.h b/samples/mfc/standard/04_HLR/src/HLRView3D.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/HLRView3D.h
rename to samples/mfc/standard/04_HLR/src/HLRView3D.h
diff --git a/samples/mfc/standard/08_HLR/src/SelectionDialog.cpp b/samples/mfc/standard/04_HLR/src/SelectionDialog.cpp
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/SelectionDialog.cpp
rename to samples/mfc/standard/04_HLR/src/SelectionDialog.cpp
diff --git a/samples/mfc/standard/08_HLR/src/SelectionDialog.h b/samples/mfc/standard/04_HLR/src/SelectionDialog.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/SelectionDialog.h
rename to samples/mfc/standard/04_HLR/src/SelectionDialog.h
diff --git a/samples/mfc/standard/08_HLR/src/StdAfx.cpp b/samples/mfc/standard/04_HLR/src/StdAfx.cpp
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/StdAfx.cpp
rename to samples/mfc/standard/04_HLR/src/StdAfx.cpp
diff --git a/samples/mfc/standard/08_HLR/src/StdAfx.h b/samples/mfc/standard/04_HLR/src/StdAfx.h
old mode 100755
new mode 100644
similarity index 100%
rename from samples/mfc/standard/08_HLR/src/StdAfx.h
rename to samples/mfc/standard/04_HLR/src/StdAfx.h
diff --git a/samples/mfc/standard/04_Viewer3d/CMakeLists.txt b/samples/mfc/standard/04_Viewer3d/CMakeLists.txt
deleted file mode 100644
index 8e57cc5a35..0000000000
--- a/samples/mfc/standard/04_Viewer3d/CMakeLists.txt
+++ /dev/null
@@ -1,77 +0,0 @@
-cmake_minimum_required (VERSION 2.6)
-
-project (Viewer3d)
-
-add_definitions (-DWINVER=0x0501 -DUNICODE -D_UNICODE)
-set (CMAKE_MFC_FLAG 2)
-
-set (Viewer3d_SRC_DIR ${MFC_STANDARD_SAMPLES_DIR}/04_Viewer3d/src)
-set (Viewer3d_RESOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/04_Viewer3d/res)
-set (Viewer3d_HEADER_FILES ${Viewer3d_SRC_DIR}/BoxRadius.h
- ${Viewer3d_SRC_DIR}/DlgIsos.h
- ${Viewer3d_SRC_DIR}/ISession_Curve.h
- ${Viewer3d_SRC_DIR}/ModelClippingDlg.h
- ${Viewer3d_SRC_DIR}/OCCDemo_Presentation.h
- ${Viewer3d_SRC_DIR}/OffsetDlg.h
- ${Viewer3d_SRC_DIR}/ScaleDlg.h
- ${Viewer3d_SRC_DIR}/ShadingModelDlg.h
- ${Viewer3d_SRC_DIR}/StdAfx.h
- ${Viewer3d_SRC_DIR}/TexturesExt_Presentation.h
- ${Viewer3d_SRC_DIR}/TrihedronDlg.h
- ${Viewer3d_SRC_DIR}/Viewer3dApp.h
- ${Viewer3d_SRC_DIR}/Viewer3dDoc.h
- ${Viewer3d_SRC_DIR}/Viewer3dView.h
- ${Viewer3d_SRC_DIR}/State.h
- ${Viewer3d_RESOURCE_DIR}/resource.h
- ${Viewer3d_RESOURCE_DIR}/resource.hm)
-set (Viewer3d_SOURCE_FILES ${Viewer3d_SRC_DIR}/BoxRadius.cpp
- ${Viewer3d_SRC_DIR}/DlgIsos.cpp
- ${Viewer3d_SRC_DIR}/ISession_Curve.cpp
- ${Viewer3d_SRC_DIR}/ModelClippingDlg.cpp
- ${Viewer3d_SRC_DIR}/OCCDemo_Presentation.cpp
- ${Viewer3d_SRC_DIR}/OffsetDlg.cpp
- ${Viewer3d_SRC_DIR}/ScaleDlg.cpp
- ${Viewer3d_SRC_DIR}/ShadingModelDlg.cpp
- ${Viewer3d_SRC_DIR}/StdAfx.cpp
- ${Viewer3d_SRC_DIR}/TexturesExt_Presentation.cpp
- ${Viewer3d_SRC_DIR}/TrihedronDlg.cpp
- ${Viewer3d_SRC_DIR}/Viewer3dApp.cpp
- ${Viewer3d_SRC_DIR}/Viewer3dDoc.cpp
- ${Viewer3d_SRC_DIR}/Viewer3dView.cpp)
-
-set (Viewer3d_RESOURCE_FILES ${Viewer3d_RESOURCE_DIR}/Viewer3d.rc
- ${Viewer3d_RESOURCE_DIR}/AISToolbar.bmp
- ${Viewer3d_RESOURCE_DIR}/AIS_TB.bmp
- ${Viewer3d_RESOURCE_DIR}/Toolbar.bmp)
-
-# groups in the VS solution
-source_group ("Source Files" FILES ${Viewer3d_SOURCE_FILES}
- ${COMMON_WINMAIN_FILE})
-
-source_group ("Header Files" FILES ${Viewer3d_HEADER_FILES})
-
-source_group ("Resource Files" FILES ${Viewer3d_RESOURCE_FILES})
-
-add_executable (Viewer3d WIN32 ${Viewer3d_SOURCE_FILES}
- ${Viewer3d_HEADER_FILES}
- ${COMMON_WINMAIN_FILE}
- ${Viewer3d_RESOURCE_FILES})
-
-set_property (TARGET Viewer3d PROPERTY FOLDER "Samples/mfc")
-
-if (SINGLE_GENERATOR)
- install (TARGETS Viewer3d DESTINATION "${INSTALL_DIR_BIN}")
-else()
- install (TARGETS Viewer3d
- CONFIGURATIONS Release RelWithDebInfo
- DESTINATION "${INSTALL_DIR_BIN}")
- install (TARGETS Viewer3d
- CONFIGURATIONS Debug
- DESTINATION "${INSTALL_DIR_BIN}d")
-endif()
-
-include_directories (${CMAKE_BINARY_DIR}/inc
- ${Viewer3d_SRC_DIR}
- ${MFC_STANDARD_SAMPLES_DIR}/Common)
-
-target_link_libraries (Viewer3d mfcsample)
\ No newline at end of file
diff --git a/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj b/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj
deleted file mode 100644
index 0ff8da4041..0000000000
--- a/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj
+++ /dev/null
@@ -1,492 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {949DFBDF-9007-4C88-8925-43209C36A5D6}
- Viewer3d
- MFCProj
-
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>10.0.30319.1
- ../../../../win32\$(VCFMT)\bin\
- .\win32\obj\
- false
- ../../../../win64\$(VCFMT)\bin\
- .\win64\obj\
- false
- ../../../../win32\$(VCFMT)\bind\
- .\win32\objd\
- true
- ../../../../win64\$(VCFMT)\bind\
- .\win64\objd\
- true
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\obj/Viewer3d.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win32\obj/Viewer3d.pch
- .\win32\obj/
- .\win32\obj/
- .\win32\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bin/Viewer3d.exe
- true
- ..\..\..\..\win32\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win32\$(VCFMT)\bin/Viewer3d.pdb
- Windows
- MachineX86
-
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\obj/Viewer3d.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win64\obj/Viewer3d.pch
- .\win64\obj/
- .\win64\obj/
- .\win64\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bin/Viewer3d.exe
- true
- ..\..\..\..\win64\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win64\$(VCFMT)\bin/Viewer3d.pdb
- Windows
- MachineX64
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\objd/Viewer3d.tlb
-
-
-
-
- Disabled
- ..\..\..\;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win32\objd/Viewer3d.pch
- .\win32\objd/
- .\win32\objd/
- .\win32\objd/
- true
- Level4
- true
- EditAndContinue
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bind/Viewer3d.exe
- true
- ..\..\..\..\win32\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win32\$(VCFMT)\bind/Viewer3d.pdb
- Windows
- MachineX86
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\objd/Viewer3d.tlb
-
-
-
-
- Disabled
- ..\..\..\;..\..\..\src;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win64\objd/Viewer3d.pch
- .\win64\objd/
- .\win64\objd/
- .\win64\objd/
- true
- Level4
- true
- ProgramDatabase
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKBRep.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bind/Viewer3d.exe
- true
- ..\..\..\..\win64\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win64\$(VCFMT)\bind/Viewer3d.pdb
- Windows
- MachineX64
-
-
-
-
-
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
-
- Disabled
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- ..\res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
-
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- true
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
-
-
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {2d6cbbe8-6965-4016-b503-0d715ae26691}
- false
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj.filters b/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj.filters
deleted file mode 100644
index 58bb2346ce..0000000000
--- a/samples/mfc/standard/04_Viewer3d/adm/win/vc10/Viewer3d.vcxproj.filters
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
- {60965501-d2d2-46fa-bdc9-62d45562945b}
- cpp;c;cxx;rc;def;r;odl;idl;hpj;bat
-
-
- {76f67c93-789a-4fb7-a6ca-db367749f593}
- h;hpp;hxx;hm;inl
-
-
- {e16ddbde-8cef-4e45-9ba2-e1b79da373a5}
- ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe
-
-
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Source Files
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
-
- Header Files
-
-
- Resource Files
-
-
- Resource Files
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/04_Viewer3d/res/AISToolbar.bmp b/samples/mfc/standard/04_Viewer3d/res/AISToolbar.bmp
deleted file mode 100644
index bff4ea87dc..0000000000
Binary files a/samples/mfc/standard/04_Viewer3d/res/AISToolbar.bmp and /dev/null differ
diff --git a/samples/mfc/standard/04_Viewer3d/res/AIS_TB.bmp b/samples/mfc/standard/04_Viewer3d/res/AIS_TB.bmp
deleted file mode 100755
index d99e3aeafd..0000000000
Binary files a/samples/mfc/standard/04_Viewer3d/res/AIS_TB.bmp and /dev/null differ
diff --git a/samples/mfc/standard/04_Viewer3d/res/Toolbar.bmp b/samples/mfc/standard/04_Viewer3d/res/Toolbar.bmp
deleted file mode 100755
index df31058df0..0000000000
Binary files a/samples/mfc/standard/04_Viewer3d/res/Toolbar.bmp and /dev/null differ
diff --git a/samples/mfc/standard/04_Viewer3d/res/Viewer3d.rc b/samples/mfc/standard/04_Viewer3d/res/Viewer3d.rc
deleted file mode 100755
index 8f51d7fe1c..0000000000
--- a/samples/mfc/standard/04_Viewer3d/res/Viewer3d.rc
+++ /dev/null
@@ -1,563 +0,0 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "resource.h"
-
-// Generated Help ID header file
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "resource.hm"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "afxres.h"
-#include "..\..\Common\res\OCC_Resource.h"
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// Russian resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS)
-#ifdef _WIN32
-LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
-#pragma code_page(1251)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_SETOFFSETS DIALOGEX 442, 45, 187, 60
-STYLE DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
-EXSTYLE WS_EX_TOOLWINDOW
-CAPTION "Set offsets"
-FONT 8, "MS Sans Serif", 0, 0, 0x1
-BEGIN
- CONTROL "Slider2",IDC_SLIDER_OFFSETFACTOR,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,39,14,100,15
- LTEXT "Factor:",IDC_STATIC,13,17,23,15
- LTEXT "Units:",IDC_STATIC,13,35,19,8
- CONTROL "Slider3",IDC_SLIDER_OFFSETUNITS,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,39,32,100,15
- GROUPBOX "Offset parameters",IDC_STATIC,7,6,173,47
- EDITTEXT IDC_EDIT_OFFSETFACTOR,148,14,22,14,ES_AUTOHSCROLL | ES_NUMBER
- EDITTEXT IDC_EDIT_OFFSETUNITS,148,32,22,14,ES_AUTOHSCROLL | ES_NUMBER
-END
-
-IDD_TRIHEDRON DIALOG 0, 0, 138, 95
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Triedron settings"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,21,75,50,14
- PUSHBUTTON "Cancel",IDCANCEL,73,75,50,14
- COMBOBOX IDC_COMBOTRIHEDRPOS,38,8,92,60,CBS_DROPDOWN | CBS_SORT | WS_VSCROLL | WS_TABSTOP
- COMBOBOX IDC_COMBOTRIHEDRCOLOR,38,29,92,78,CBS_DROPDOWN | CBS_SORT | WS_VSCROLL | WS_TABSTOP
- EDITTEXT IDC_EDITTRIHEDRSCALE,38,51,33,12,ES_CENTER | ES_AUTOHSCROLL
- LTEXT "Color:",IDC_STATIC,8,31,20,8
- LTEXT "Position:",IDC_STATIC,8,10,28,8
- LTEXT "Scale:",IDC_STATIC,8,53,24,10
- CONTROL "Spin1",IDC_SPINTRIHEDRSCALE,"msctls_updown32",UDS_AUTOBUDDY | UDS_ARROWKEYS,70,51,11,12
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DESIGNINFO
-//
-
-#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO
-BEGIN
- IDD_SETOFFSETS, DIALOG
- BEGIN
- LEFTMARGIN, 7
- RIGHTMARGIN, 180
- TOPMARGIN, 6
- BOTTOMMARGIN, 53
- END
-END
-#endif // APSTUDIO_INVOKED
-
-#endif // Russian resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_SHADINGMODEL DIALOG 0, 0, 60, 66
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "ShadingModel"
-FONT 8, "MS Sans Serif"
-BEGIN
- PUSHBUTTON "GOURAUD",IDC_SHADINGMODEL_GOURAUD,7,7,46,16
- PUSHBUTTON "PHONG", IDC_SHADINGMODEL_PHONG, 7,25,46,15
-END
-
-IDD_MODELCLIPPING DIALOG 0, 0, 180, 74
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION
-CAPTION "Model clipping"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,13,47,50,14
- PUSHBUTTON "Cancel",IDCANCEL,70,47,50,14
- CONTROL "Slider1",IDC_SLIDER_MODELCLIPPING_Z,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,21,6,97,15
- LTEXT "Z:",-1,12,10,8,8
- GROUPBOX "",-1,7,0,166,25
- EDITTEXT IDC_EDIT_MODELCLIPPING_Z,118,7,34,14,ES_AUTOHSCROLL | ES_NUMBER
- GROUPBOX "",-1,7,38,166,29
- CONTROL "Model clipping ON/OFF",IDC_CHECK_MODELCLIPPINGONOFF,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,28,91,10
-END
-
-IDD_RADIUS DIALOGEX 0, 0, 151, 82
-STYLE DS_SETFONT | DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Radius"
-FONT 8, "MS Sans Serif", 0, 0, 0x1
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,7,61,50,14
- PUSHBUTTON "Cancel",IDCANCEL,94,61,50,14
- CONTROL "Spin1",IDC_SPIN_RADIUS,"msctls_updown32",UDS_ARROWKEYS,98,43,11,14
- EDITTEXT IDC_EDIT_RADIUS,48,42,45,13,ES_AUTOHSCROLL | NOT WS_TABSTOP
- CTEXT "Radius Fillet",IDC_RadiusFillet,33,20,94,18,0,WS_EX_DLGMODALFRAME | WS_EX_CLIENTEDGE | WS_EX_STATICEDGE,HIDC_RadiusFillet
-END
-
-IDD_ISOS DIALOG 0, 0, 161, 66
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Isos"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,7,44,50,14
- PUSHBUTTON "Cancel",IDCANCEL,104,44,50,14
- LTEXT "U Isos Number",IDC_ISOU,31,13,48,8
- LTEXT "V Isos Number",IDC_ISOV,31,28,47,8
- EDITTEXT IDC_EDIT_ISOU,93,7,40,14,ES_AUTOHSCROLL
- EDITTEXT IDC_EDIT_ISOV,93,24,40,12,ES_AUTOHSCROLL
-END
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE
-BEGIN
- "#include ""afxres.h""\r\n"
- "#include ""..\\..\\Common\\res\\OCC_Resource.h""\0"
-END
-
-3 TEXTINCLUDE
-BEGIN
- "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
- "#define _AFX_NO_OLE_RESOURCES\r\n"
- "#define _AFX_NO_TRACKER_RESOURCES\r\n"
- "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
- "\r\n"
- "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
- "#ifdef _WIN32\r\n"
- "LANGUAGE 9, 1\r\n"
- "#pragma code_page(1252)\r\n"
- "#endif\r\n"
- "#include ""afxres.rc"" // Standard components\r\n"
- "#endif\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Bitmap
-//
-
-IDR_MAINFRAME BITMAP "..//res//Toolbar.bmp"
-IDR_TB_AIS BITMAP "..//res//AIS_TB.bmp"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Toolbar
-//
-
-IDR_MAINFRAME TOOLBAR 20, 20
-BEGIN
- BUTTON ID_FILE_NEW
- SEPARATOR
- BUTTON ID_CIRCLE
- BUTTON ID_LINE
- BUTTON ID_BOX
- BUTTON ID_Cylinder
- BUTTON ID_SPHERE
- SEPARATOR
- BUTTON ID_OVERLAPPED_BOX
- BUTTON ID_OVERLAPPED_CYLINDER
- BUTTON ID_OVERLAPPED_SPHERE
- BUTTON ID_POLYGON_OFFSETS
- SEPARATOR
- BUTTON ID_ERASEALL
- SEPARATOR
- BUTTON ID_SPOT_LIGHT
- BUTTON ID_POSITIONAL_LIGHT
- BUTTON ID_DIRECTIONAL_LIGHT
- BUTTON ID_AMBIENT_LIGHT
- BUTTON ID_CLEAR_LIGHTS
- SEPARATOR
- BUTTON ID_SCALE
- SEPARATOR
- BUTTON ID_NBISOS
- BUTTON ID_SHADINGMODEL
- BUTTON ID_ANTIALIASINGONOFF
- SEPARATOR
- BUTTON ID_MODELCLIPPING
- SEPARATOR
- BUTTON ID_VERTICES
- BUTTON ID_EDGES
- BUTTON ID_FACES
- BUTTON ID_NEUTRAL
- SEPARATOR
- BUTTON ID_FILLET3D
- SEPARATOR
- BUTTON ID_TEXTURE_ON
- BUTTON ID_BUTTONStart
- BUTTON ID_BUTTONPrev
- BUTTON ID_BUTTONRepeat
- BUTTON ID_BUTTONNext
- BUTTON ID_BUTTONEnd
- SEPARATOR
- BUTTON ID_DUMP_VIEW
- SEPARATOR
- BUTTON ID_APP_ABOUT
-END
-
-IDR_TB_AIS TOOLBAR 20, 20
-BEGIN
- BUTTON ID_OBJECT_WIREFRAME
- BUTTON ID_OBJECT_SHADING
- BUTTON ID_OBJECT_COLORED_MESH
- SEPARATOR
- BUTTON ID_OBJECT_COLOR
- BUTTON ID_OBJECT_MATERIAL
- BUTTON ID_OBJECT_TRANSPARENCY
- SEPARATOR
- BUTTON ID_OBJECT_ERASE
- BUTTON ID_OBJECT_DISPLAYALL
- SEPARATOR
- BUTTON ID_OBJECT_REMOVE
- BUTTON ID_OBJECT_DIM
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDR_MAINFRAME MENU
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About Viewer3d...", ID_APP_ABOUT
- END
-END
-
-IDR_3DTYPE MENU
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM "&Close", ID_FILE_CLOSE
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Options"
- BEGIN
- POPUP "&Trihedron"
- BEGIN
- MENUITEM "&Static Trihedron...", ID_OPTIONS_TRIHEDRON_STATIC_TRIHEDRON
- MENUITEM "&Dynamic Trihedron", ID_OPTIONS_TRIHEDRON_DYNAMIC_TRIHEDRON
- END
- END
- POPUP "&Window"
- BEGIN
- MENUITEM "&New Window", ID_WINDOW_NEW
- MENUITEM "&Cascade", ID_WINDOW_CASCADE
- MENUITEM "&Tile", ID_WINDOW_TILE_HORZ
- MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About Viewer3d...", ID_APP_ABOUT
- END
-END
-
-IDR_Popup3D MENU
-BEGIN
- POPUP "BackGround"
- BEGIN
- MENUITEM "Background Color...", ID_Modify_ChangeBackground
- END
- POPUP "Object(s)"
- BEGIN
- MENUITEM "Erase", ID_OBJECT_ERASE
- MENUITEM "Shading", ID_OBJECT_SHADING
- MENUITEM "Wireframe", ID_OBJECT_WIREFRAME
- MENUITEM "Color...", ID_OBJECT_COLOR
- MENUITEM "Material...", ID_OBJECT_MATERIAL
- POPUP "Material"
- BEGIN
- MENUITEM "Aluminium", ID_OBJECT_MATERIAL_ALUMINIUM
- MENUITEM "Brass", ID_OBJECT_MATERIAL_BRASS
- MENUITEM "Bronze", ID_OBJECT_MATERIAL_BRONZE
- MENUITEM "Chrome", ID_OBJECT_MATERIAL_CHROME
- MENUITEM "Copper", ID_OBJECT_MATERIAL_COPPER
- MENUITEM "Gold", ID_OBJECT_MATERIAL_GOLD
- MENUITEM "Jade", ID_OBJECT_MATERIAL_JADE
- MENUITEM "Metalized", ID_OBJECT_MATERIAL_METALIZED
- MENUITEM "Neon GNC", ID_OBJECT_MATERIAL_NEON_GNC
- MENUITEM "Neon PHC", ID_OBJECT_MATERIAL_NEON_PHC
- MENUITEM "Obsidian", ID_OBJECT_MATERIAL_OBSIDIAN
- MENUITEM "Pewter", ID_OBJECT_MATERIAL_PEWTER
- MENUITEM "Plaster", ID_OBJECT_MATERIAL_PLASTER
- MENUITEM "Plastic", ID_OBJECT_MATERIAL_PLASTIC
- MENUITEM "Satin", ID_OBJECT_MATERIAL_SATIN
- MENUITEM "Shiny plastic", ID_OBJECT_MATERIAL_SHINY_PLASTIC
- MENUITEM "Silver", ID_OBJECT_MATERIAL_SILVER
- MENUITEM "Steel", ID_OBJECT_MATERIAL_STEEL
- MENUITEM "Stone", ID_OBJECT_MATERIAL_STONE
- MENUITEM SEPARATOR
- MENUITEM "Default", ID_OBJECT_MATERIAL_DEFAULT
- END
- MENUITEM "Transparency...", ID_OBJECT_TRANSPARENCY
- END
- POPUP "User cylinder"
- BEGIN
- MENUITEM "Change face color", ID_USERCYLINDER_CHANGEFACECOLOR
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Version
-//
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,1
- PRODUCTVERSION 1,0,0,1
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904b0"
- BEGIN
- VALUE "FileDescription", "Viewer MFC Application"
- VALUE "FileVersion", "1, 0, 0, 1"
- VALUE "InternalName", "Viewer"
- VALUE "LegalCopyright", "Copyright (C) 1997"
- VALUE "OriginalFilename", "Viewer.EXE"
- VALUE "ProductName", "SampleViewer3d Application"
- VALUE "ProductVersion", "1, 0, 0, 1"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE
-BEGIN
- IDR_MAINFRAME "Viewer3d"
- IDR_3DTYPE "\nViewer3d\n\n\n\n.Document\n Document"
-END
-
-STRINGTABLE
-BEGIN
- ID_BOX "Create and display a box\nBox"
- ID_Cylinder "Create and display a cylinder\nCylinder"
- ID_SPHERE "Create and display a sphere\nSphere"
- ID_ERASEALL "Remove all\nRemove all"
- ID_AMBIENT_LIGHT "Create an ambient light source\nAmbient light"
- ID_DIRECTIONAL_LIGHT "Create an directional light source\nDirectional light"
- ID_POSITIONAL_LIGHT "Create an positional light source\nPositional light"
- ID_SPOT_LIGHT "Create an spot light source\nSpot light"
- ID_LIGHTOFF "Delete lights\nDelete lights"
- ID_SHADINGMODEL "Define shading model\nShadingModel"
- ID_ANTIALIASINGONOFF "Antialiasing ON/OFF\nAntialiasing"
-END
-
-STRINGTABLE
-BEGIN
- ID_CLEAR_LIGHTS "Clear all the light sources\nClear lights"
- ID_MODELCLIPPING "ModelClipping\nModelClipping"
- ID_OVERLAPPED_BOX "Create and display two overlapped boxes\nOverlapped boxes"
- ID_BUTTON819 "Create and display two overlapped spheres\nOverlapped spheres"
- ID_OVERLAPPED_SPHERE "Create and display two overlapped spheres\nOverlapped spheres"
- ID_BUTTON821 "Create and display two overlapped boxes\nOverlapped boxes"
- ID_OVERLAPPED_CYLINDER "Create and display two overlapped cylinders\nOverlapped cylinders"
- ID_POLYGON_OFFSETS "Set/unset offsets\nSet/unset offsets"
- ID_OBJECT_COLORED_MESH "Puts cylinder in colored mesh\nColored mesh"
- ID_SCALE "Scale\nScale"
-END
-
-STRINGTABLE
-BEGIN
- ID_CIRCLE "Clear all the light sources\nClear lights"
- ID_LINE "Create and display a line with standard tools\nLine"
- ID_VERTICES "Set the selection mode to vertices\nVertices"
- ID_EDGES "Set the selection mode to edges\nEdges"
- ID_FACES "Set the selection modes to faces\nFaces"
- ID_NEUTRAL "Neutral point for selection\nNeutral point"
- ID_FILLET3D "Make a fillet between faces\nFillet"
- ID_NBISOS "Set global isos number\nIsos"
- ID_BUTTONStart "Press to go to the first sample\nFirst sample (Home)"
- ID_BUTTONPrev "Press to go to the previous sample\nPrevious sample (PgUp)"
- ID_BUTTONRepeat "Press to repeat the current sample\nRepeat sample (Space)"
- ID_BUTTONNext "Press to go to the next sample\nNext sample (PgDn)"
- ID_BUTTONEnd "Press to go to the last sample\nLast sample (End)"
-END
-
-STRINGTABLE
-BEGIN
- ID_DUMP_VIEW "Save current frame into an image file\nExport view (F12)"
- ID_TEXTURE_ON "Run texture example\nRun texture example"
-END
-
-STRINGTABLE
-BEGIN
- ID_OBJECT_DIMENSIONS "Add dimensions"
- ID_LOCALCONTEXT_ADDDIMENSION "Add new dimension for selected objects"
-END
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.K.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_SCALE DIALOG 0, 0, 186, 103
-STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Heterogeneous Scale"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,13,78,50,14
- PUSHBUTTON "Cancel",IDCANCEL,70,78,50,14
- GROUPBOX "",IDC_STATIC,7,69,166,29
- GROUPBOX "",IDC_STATIC,7,0,166,65
- CONTROL "Slider1",IDC_SLIDER_SCALEX,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,34,6,97,15
- LTEXT "X:",IDC_STATIC,13,9,8,8
- EDITTEXT IDC_EDIT_SCALEX,131,7,34,14,ES_AUTOHSCROLL | ES_NUMBER
- CONTROL "Slider2",IDC_SLIDER_SCALEY,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,34,25,97,15
- LTEXT "Y:",IDC_STATIC,13,28,8,8
- EDITTEXT IDC_EDIT_SCALEY,131,26,34,14,ES_AUTOHSCROLL | ES_NUMBER
- CONTROL "Slider2",IDC_SLIDER_SCALEZ,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,34,45,97,15
- LTEXT "Z:",IDC_STATIC,13,48,8,8
- EDITTEXT IDC_EDIT_SCALEZ,131,46,34,14,ES_AUTOHSCROLL | ES_NUMBER
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DESIGNINFO
-//
-
-#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO
-BEGIN
- IDD_SCALE, DIALOG
- BEGIN
- LEFTMARGIN, 7
- RIGHTMARGIN, 179
- TOPMARGIN, 7
- BOTTOMMARGIN, 96
- END
-END
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.K.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-#define _AFX_NO_SPLITTER_RESOURCES
-#define _AFX_NO_OLE_RESOURCES
-#define _AFX_NO_TRACKER_RESOURCES
-#define _AFX_NO_PROPERTY_RESOURCES
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE 9, 1
-#pragma code_page(1252)
-#endif
-#include "afxres.rc" // Standard components
-#endif
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/samples/mfc/standard/04_Viewer3d/res/resource.h b/samples/mfc/standard/04_Viewer3d/res/resource.h
deleted file mode 100755
index d7e6ef7847..0000000000
--- a/samples/mfc/standard/04_Viewer3d/res/resource.h
+++ /dev/null
@@ -1,94 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by Viewer3d.rc
-//
-#define IDD_SHADINGMODEL 131
-#define IDD_SETOFFSETS 134
-#define IDD_SCALE 139
-#define IDD_RADIUS 144
-#define IDD_TRIHEDRON 542
-#define ID_BOX 802
-#define ID_Cylinder 803
-#define ID_SPHERE 804
-#define ID_ERASEALL 805
-#define ID_AMBIENT_LIGHT 806
-#define ID_DIRECTIONAL_LIGHT 807
-#define ID_POSITIONAL_LIGHT 808
-#define ID_SPOT_LIGHT 809
-#define ID_LIGHTOFF 810
-#define ID_USERCYLINDER_CHANGEFACECOLOR 810
-#define ID_SHADINGMODEL 814
-#define ID_ANTIALIASINGONOFF 815
-#define ID_CLEAR_LIGHTS 816
-#define ID_MODELCLIPPING 817
-#define ID_OVERLAPPED_BOX 818
-#define ID_BUTTON819 819
-#define ID_OVERLAPPED_SPHERE 820
-#define ID_BUTTON821 821
-#define ID_OVERLAPPED_CYLINDER 822
-#define ID_POLYGON_OFFSETS 823
-#define ID_OBJECT_COLORED_MESH 827
-#define ID_OPTIONS_TRIHEDRON_STATIC_TRIHEDRON 829
-#define ID_OPTIONS_TRIHEDRON_DYNAMIC_TRIHEDRON 830
-#define ID_SCALE 831
-#define ID_CIRCLE 833
-#define ID_LINE 834
-#define ID_VERTICES 837
-#define ID_EDGES 838
-#define ID_FACES 839
-#define ID_NEUTRAL 840
-#define ID_FILLET3D 841
-#define ID_NBISOS 842
-#define ID_BUTTONStart 843
-#define ID_BUTTONPrev 844
-#define ID_BUTTONRepeat 845
-#define ID_BUTTONNext 846
-#define ID_BUTTONEnd 847
-#define ID_DUMP_VIEW 848
-#define ID_TEXTURE_ON 849
-#define IDC_SPIN_RADIUS 1000
-#define IDC_EDIT_RADIUS 1001
-#define IDC_SHADINGMODEL_COLOR 1002
-#define IDC_EDIT_ISOU 1002
-#define IDC_SHADINGMODEL_MULTICOLOR 1003
-#define IDC_SLIDER_MODELCLIPPING_Z 1003
-#define IDC_SHADINGMODEL_FLAT 1004
-#define IDC_ISOU 1004
-#define IDC_SHADINGMODEL_HIDDEN 1005
-#define IDC_EDIT_MODELCLIPPING_Z 1005
-#define IDC_ISOV 1005
-#define IDC_SHADINGMODEL_GOURAUD 1006
-#define IDC_EDIT_ISOV 1006
-#define IDC_SHADINGMODEL_PHONG 1007
-#define IDC_CHECK_MODELCLIPPINGONOFF 1008
-#define IDC_SLIDER_OFFSETFACTOR 1010
-#define IDC_SLIDER_OFFSETUNITS 1011
-#define IDC_EDIT_OFFSETFACTOR 1012
-#define IDC_EDIT_OFFSETUNITS 1013
-#define IDC_COMBO_OFFSETTYPE 1023
-#define IDC_SLIDER_SCALEX 1028
-#define IDC_SLIDER_SCALEY 1029
-#define IDC_EDIT_SCALEX 1030
-#define IDC_EDIT_SCALEY 1031
-#define IDC_RadiusFillet 1031
-#define IDC_SLIDER_SCALEZ 1032
-#define IDC_EDIT_SCALEZ 1033
-#define IDD_RESULTMESSAGEDLG 1500
-#define IDD_MODELCLIPPING 1501
-#define IDD_ISOS 1502
-#define IDC_EDITTRIHEDRSCALE 1686
-#define IDC_SPINTRIHEDRSCALE 1737
-#define IDC_COMBOTRIHEDRPOS 1739
-#define IDC_COMBOTRIHEDRCOLOR 1740
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_3D_CONTROLS 1
-#define _APS_NEXT_RESOURCE_VALUE 140
-#define _APS_NEXT_COMMAND_VALUE 850
-#define _APS_NEXT_CONTROL_VALUE 1032
-#define _APS_NEXT_SYMED_VALUE 104
-#endif
-#endif
diff --git a/samples/mfc/standard/04_Viewer3d/res/resource.hm b/samples/mfc/standard/04_Viewer3d/res/resource.hm
deleted file mode 100644
index 0ed8fdf68d..0000000000
--- a/samples/mfc/standard/04_Viewer3d/res/resource.hm
+++ /dev/null
@@ -1,4 +0,0 @@
-// Microsoft Visual C++ generated Help ID include file.
-// Used by Viewer3d.rc
-//
-#define HIDC_RadiusFillet 0x808f0407 // IDD_RADIUS
diff --git a/samples/mfc/standard/04_Viewer3d/src/BoxRadius.cpp b/samples/mfc/standard/04_Viewer3d/src/BoxRadius.cpp
deleted file mode 100755
index da56cbe4a6..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/BoxRadius.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-// BoxRadius.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-#include "BoxRadius.h"
-
-/////////////////////////////////////////////////////////////////////////////
-
-BoxRadius::BoxRadius(CWnd* pParent,
- double rad)
- : CDialog(BoxRadius::IDD, pParent)
-{
- //{{AFX_DATA_INIT(BoxRadius)
- m_radius = rad;
- //}}AFX_DATA_INIT
-}
-
-
-void BoxRadius::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(BoxRadius)
- DDX_Control(pDX, IDC_SPIN_RADIUS, m_spinradius);
- DDX_Text(pDX, IDC_EDIT_RADIUS, m_radius);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(BoxRadius, CDialog)
- //{{AFX_MSG_MAP(BoxRadius)
- ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_RADIUS, OnDeltaposSpinRadius)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// BoxRadius message handlers
-
-BOOL BoxRadius::OnInitDialog()
-{
- CDialog::OnInitDialog();
-
- // TODO: Add extra initialization here
- m_spinradius.SetRange(-10000,10000);
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
-}
-
-void BoxRadius::OnDeltaposSpinRadius(NMHDR* pNMHDR, LRESULT* pResult)
-{
- NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR;
- // TODO: Add your control notification handler code here
- if (pNMUpDown->iDelta == 1)
- pNMUpDown->iDelta = 1;
- else
- pNMUpDown->iDelta = -1;
- m_radius = m_radius + pNMUpDown->iDelta;
- UpdateData(FALSE);
- *pResult = 0;
-}
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/BoxRadius.h b/samples/mfc/standard/04_Viewer3d/src/BoxRadius.h
deleted file mode 100755
index 0679c506f6..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/BoxRadius.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// BoxRadius.h : header file
-//
-
-#if !defined(AFX_BOXRADIUS_H__AD263FF3_54F3_11D1_8C40_00AA00D10994__INCLUDED_)
-#define AFX_BOXRADIUS_H__AD263FF3_54F3_11D1_8C40_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-/////////////////////////////////////////////////////////////////////////////
-// BoxRadius dialog
-
-class BoxRadius : public CDialog
-{
-// Construction
-public:
- BoxRadius(CWnd* pParent,double rad); // standard constructor
-
-// Dialog Data
- //{{AFX_DATA(BoxRadius)
- enum { IDD = IDD_RADIUS };
- CSpinButtonCtrl m_spinradius;
- double m_radius;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(BoxRadius)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(BoxRadius)
- afx_msg void OnDeltaposSpinRadius(NMHDR* pNMHDR, LRESULT* pResult);
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_BOXRADIUS_H__AD263FF3_54F3_11D1_8C40_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ConvertClickToPoint.cxx b/samples/mfc/standard/04_Viewer3d/src/ConvertClickToPoint.cxx
deleted file mode 100755
index 7ffd51f904..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ConvertClickToPoint.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-#include
-
-gp_Pnt ConvertClickToPoint(Standard_Real x, Standard_Real y, Handle(V3d_View) aView)
-{
-
- Standard_Real XEye,YEye,ZEye,XAt,YAt,ZAt;
- aView->Eye(XEye,YEye,ZEye);
- aView->At(XAt,YAt,ZAt);
- gp_Pnt EyePoint(XEye,YEye,ZEye);
- gp_Pnt AtPoint(XAt,YAt,ZAt);
-
- gp_Vec EyeVector(EyePoint,AtPoint);
- gp_Dir EyeDir(EyeVector);
-
- gp_Pln PlaneOfTheView = gp_Pln(AtPoint,EyeDir);
- Standard_Real X,Y,Z;
- aView->Convert((int)x,(int)y,X,Y,Z);
- gp_Pnt ConvertedPoint(X,Y,Z);
- gp_Pnt2d ConvertedPointOnPlane = ProjLib::Project(PlaneOfTheView,ConvertedPoint);
-
- gp_Pnt ResultPoint = ElSLib::Value(ConvertedPointOnPlane.X(),
- ConvertedPointOnPlane.Y(),
- PlaneOfTheView);
- return ResultPoint;
-}
-
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp
deleted file mode 100755
index 3c527fd5dd..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp
+++ /dev/null
@@ -1,332 +0,0 @@
-// DlgAttributes.cpp : implementation file
-//
-
-#include "stdafx.h"
-
-#include "DlgAttributes.h"
-
-#include "AISDisplayModeApp.h"
-
-#include
-#include
-
-#include
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgAttributes dialog
-
-
-DlgAttributes::DlgAttributes(CWnd* pParent)
- : CDialog(DlgAttributes::IDD, pParent)
-{
- //{{AFX_DATA_INIT(DlgAttributes)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
-}
-
-
-void DlgAttributes::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(DlgAttributes)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(DlgAttributes, CDialog)
- //{{AFX_MSG_MAP(DlgAttributes)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_ALUMINIUM, OnObjectMaterialAluminium)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_BRASS, OnObjectMaterialBrass)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_BRONZE, OnObjectMaterialBronze)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_CHROME, OnObjectMaterialChrome)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_COPPER, OnObjectMaterialCopper)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_GOLD, OnObjectMaterialGold)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_JADE, OnObjectMaterialJade)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_METALIZED, OnObjectMaterialMetalized)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_NEON_GNC, OnObjectMaterialNeonGNC)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_NEON_PHC, OnObjectMaterialNeonPHC)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_OBSIDIAN, OnObjectMaterialObsidian)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_PEWTER, OnObjectMaterialPewter)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_PLASTER, OnObjectMaterialPlaster)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_PLASTIC, OnObjectMaterialPlastic)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_SATIN, OnObjectMaterialSatin)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_SHINY_PLASTIC, OnObjectMaterialShinyPlastic)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_SILVER, OnObjectMaterialSilver)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_STEEL, OnObjectMaterialSteel)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_STONE, OnObjectMaterialStone)
- ON_BN_CLICKED(ID_OBJECT_MATERIAL_DEFAULT, OnObjectMaterialDefault)
- ON_BN_CLICKED(ID_OBJECT_COLOR, OnColor)
- ON_BN_CLICKED(ID_OBJECT_SHADING, OnShading)
- ON_BN_CLICKED(ID_OBJECT_WIREFRAME, OnWireframe)
- ON_COMMAND(ID_OBJECT_TRANSPARENCY, OnTransparency)
- ON_UPDATE_COMMAND_UI(ID_OBJECT_TRANSPARENCY, OnUpdateObjectTransparency)
-//}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgAttributes message handlers
-
-
-void DlgAttributes::OnColor()
-{
- Handle(AIS_InteractiveObject) Current ;
- Quantity_Color CSFColor ;
- COLORREF MSColor ;
-
- myAISContext->InitCurrent();
- if (myAISContext->MoreCurrent()) {
- Current = myAISContext->Current() ;
- if ( Current->HasColor () ) {
- CSFColor = Current->Color () ;
- 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->InitCurrent();
- myAISContext->MoreCurrent ();
- myAISContext->NextCurrent ())
- myAISContext->SetColor (myAISContext->Current(),
- CSFColor.Name());
- }
- }
-
-TCollection_AsciiString Message ("\
-\n\
-for (myAISContext->InitCurrent(); myAISContext->MoreCurrent (); \n\
- myAISContext->NextCurrent ()) \n\
- myAISContext->SetColor (myAISContext->Current(), CSFColor.Name()); \n\
-\n");
-
- CString text(Message.ToCString());
- (*myCResultDialog).SetTitle(CString("Setting Color"));
- (*myCResultDialog).SetText(text);
-}
-
-
-void DlgAttributes::OnWireframe()
-{
- for(myAISContext->InitCurrent(); myAISContext->MoreCurrent();
- myAISContext->NextCurrent())
- myAISContext->SetDisplayMode(myAISContext->Current(), 0);
-
-TCollection_AsciiString Message ("\
-\n\
-for (myAISContext->InitCurrent(); myAISContext->MoreCurrent (); \n\
- myAISContext->NextCurrent ()) \n\
- myAISContext->SetDisplayMode(myAISContext->Current(), 0); \n\
-\n");
-
- CString text(Message.ToCString());
- (*myCResultDialog).SetTitle(CString("Wireframe"));
- (*myCResultDialog).SetText(text);
-}
-
-void DlgAttributes::Set(Handle ( AIS_InteractiveContext ) & acontext, CResultDialog& aResultDialog)
-{
- myAISContext = acontext;
- myCResultDialog=&aResultDialog;
-}
-
-void DlgAttributes::OnTransparency()
-{
-/*
- for (myAISContext->InitCurrent(); myAISContext->MoreCurrent ();
- myAISContext->NextCurrent ()) {
-
-
- int ival = (int) ((double) myAISContext->Current()->Transparency()*10.) ;
- double rval = ((double) ival)/10.;
- CDialogTransparency Dlg(NULL, rval);
- if(Dlg.DoModal()== IDOK)
- myAISContext->SetTransparency (myAISContext->Current(),Dlg.m_transvalue);
-
- }
-*/
- /*
- 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();
- */
- myAISContext->InitCurrent();
- if(myAISContext->NbCurrents() > 0){
- CDialogTransparency DialBox(myAISContext, AfxGetMainWnd());
- DialBox.DoModal();
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- OCC_3dView *pView = (OCC_3dView *) pChild->GetActiveView();
- pView->Redraw();
- }
-
-TCollection_AsciiString Message ("\
-\n\
-for (myAISContext->InitCurrent(); myAISContext->MoreCurrent (); \n\
- myAISContext->NextCurrent ()) \n\
- myAISContext->SetTransparency (myAISContext->Current(),Dlg.m_transvalue); \n\
-\n");
-
- CString text(Message.ToCString());
- (*myCResultDialog).SetTitle(CString("Setting Transparency"));
- (*myCResultDialog).SetText(text);
-}
-
-
-
-void DlgAttributes::OnObjectMaterialAluminium () { SetMaterial ( Graphic3d_NOM_ALUMINIUM ) ; }
-void DlgAttributes::OnObjectMaterialBrass () { SetMaterial ( Graphic3d_NOM_BRASS ) ; }
-void DlgAttributes::OnObjectMaterialBronze () { SetMaterial ( Graphic3d_NOM_BRONZE ) ; }
-void DlgAttributes::OnObjectMaterialChrome () { SetMaterial ( Graphic3d_NOM_CHROME ) ; }
-void DlgAttributes::OnObjectMaterialCopper () { SetMaterial ( Graphic3d_NOM_COPPER ) ; }
-void DlgAttributes::OnObjectMaterialGold () { SetMaterial ( Graphic3d_NOM_GOLD ) ; }
-void DlgAttributes::OnObjectMaterialJade () { SetMaterial ( Graphic3d_NOM_JADE ) ; }
-void DlgAttributes::OnObjectMaterialMetalized () { SetMaterial ( Graphic3d_NOM_METALIZED ) ; }
-void DlgAttributes::OnObjectMaterialNeonGNC () { SetMaterial ( Graphic3d_NOM_NEON_GNC ) ; }
-void DlgAttributes::OnObjectMaterialNeonPHC () { SetMaterial ( Graphic3d_NOM_NEON_PHC ) ; }
-void DlgAttributes::OnObjectMaterialObsidian () { SetMaterial ( Graphic3d_NOM_OBSIDIAN ) ; }
-void DlgAttributes::OnObjectMaterialPewter () { SetMaterial ( Graphic3d_NOM_PEWTER ) ; }
-void DlgAttributes::OnObjectMaterialPlaster () { SetMaterial ( Graphic3d_NOM_PLASTER ) ; }
-void DlgAttributes::OnObjectMaterialPlastic () { SetMaterial ( Graphic3d_NOM_PLASTIC ) ; }
-void DlgAttributes::OnObjectMaterialSatin () { SetMaterial ( Graphic3d_NOM_SATIN ) ; }
-void DlgAttributes::OnObjectMaterialShinyPlastic () { SetMaterial ( Graphic3d_NOM_SHINY_PLASTIC ) ; }
-void DlgAttributes::OnObjectMaterialSilver () { SetMaterial ( Graphic3d_NOM_SILVER ) ; }
-void DlgAttributes::OnObjectMaterialSteel () { SetMaterial ( Graphic3d_NOM_STEEL ) ; }
-void DlgAttributes::OnObjectMaterialStone () { SetMaterial ( Graphic3d_NOM_STONE ) ; }
-void DlgAttributes::OnObjectMaterialDefault () { SetMaterial ( Graphic3d_NOM_DEFAULT ) ; }
-
-void DlgAttributes::SetMaterial(Graphic3d_NameOfMaterial Material)
-{
- for (myAISContext->InitCurrent();myAISContext->MoreCurrent ();myAISContext->NextCurrent ())
- myAISContext->SetMaterial (myAISContext->Current(),
- (Graphic3d_NameOfMaterial)(Material));
-
- TCollection_AsciiString aString;
- TCollection_AsciiString Message1 ("\
-\n\
-for (myAISContext->InitCurrent(); myAISContext->MoreCurrent (); \n\
- myAISContext->NextCurrent ()) \n\
- myAISContext->SetMaterial (myAISContext->Current(), ");
-
- TCollection_AsciiString Message2("); \n\
-\n");
- switch (Material){
- case 0:
- aString = "Graphic3d_NOM_BRASS";
- break;
- case 1:
- aString = "Graphic3d_NOM_BRONZE";
- break;
- case 2:
- aString = "Graphic3d_NOM_COPPER";
- break;
- case 3:
- aString = "Graphic3d_NOM_GOLD";
- break;
- case 4:
- aString = "Graphic3d_NOM_PEWTER";
- break;
- case 5:
- aString = "Graphic3d_NOM_PLASTER";
- break;
- case 6:
- aString = "Graphic3d_NOM_PLASTIC";
- break;
- case 7:
- aString = "Graphic3d_NOM_SILVER";
- break;
- case 8:
- aString = "Graphic3d_NOM_STEEL";
- break;
- case 9:
- aString = "Graphic3d_NOM_STONE";
- break;
- case 10:
- aString = "Graphic3d_NOM_SHINY_PLASTIC";
- break;
- case 11:
- aString = "Graphic3d_NOM_SATIN";
- break;
- case 12:
- aString = "Graphic3d_NOM_METALIZED";
- break;
- case 13:
- aString = "Graphic3d_NOM_NEON_GNC";
- break;
- case 14:
- aString = "Graphic3d_NOM_CHROME";
- break;
- case 15:
- aString = "Graphic3d_NOM_ALUMINIUM";
- break;
- case 16:
- aString = "Graphic3d_NOM_OBSIDIAN";
- break;
- case 17:
- aString = "Graphic3d_NOM_NEON_PHC";
- break;
- case 18:
- aString = "Graphic3d_NOM_JADE";
- break;
- case 19:
- aString = "Graphic3d_NOM_DEFAULT";
- break;
- default:
- break;
- }
-
- Message1 = Message1 +aString +Message2;
- //Graphic3d_MaterialAspect aAspect (Material);
- //Standard_CString aString = aAspect.MaterialName();
-
- CString text(Message1.ToCString());
- (*myCResultDialog).SetTitle(CString("Setting Material"));
- (*myCResultDialog).SetText(text);
-
-}
-
-void DlgAttributes::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 DlgAttributes::OnShading()
-{
- for(myAISContext->InitCurrent(); myAISContext->MoreCurrent();
- myAISContext->NextCurrent())
- myAISContext->SetDisplayMode(myAISContext->Current(), 1);
-
-
-TCollection_AsciiString Message ("\
-\n\
-for (myAISContext->InitCurrent(); myAISContext->MoreCurrent (); \n\
- myAISContext->NextCurrent ()) \n\
- myAISContext->SetDisplayMode(myAISContext->Current(), 1); \n\
-\n");
-
- CString text(Message.ToCString());
- (*myCResultDialog).SetTitle(CString("Shading"));
- (*myCResultDialog).SetText(text);
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h
deleted file mode 100755
index 8d8669325c..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h
+++ /dev/null
@@ -1,83 +0,0 @@
-// DlgAttributes.h : header file
-//
-
-#if !defined(AFX_DLGATTRIBUTES_H__AF548353_9EF6_11D1_A47D_00C095ECDA78__INCLUDED_)
-#define AFX_DLGATTRIBUTES_H__AF548353_9EF6_11D1_A47D_00C095ECDA78__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include
-#include
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgAttributes dialog
-
-class DlgAttributes : public CDialog
-{
-// Construction
-public:
- void Set(Handle(AIS_InteractiveContext)& acontext, CResultDialog& aResultDialog);
- DlgAttributes(CWnd* pParent=NULL);
-
-// Dialog Data
- //{{AFX_DATA(DlgAttributes)
- enum { IDD = IDD_ATTRIBUTES };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(DlgAttributes)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(DlgAttributes)
- afx_msg void OnColor();
- afx_msg void OnWireframe();
- afx_msg void OnTransparency() ;
- afx_msg void OnShading();
- afx_msg void OnObjectMaterialAluminium();
- afx_msg void OnObjectMaterialBrass();
- afx_msg void OnObjectMaterialBronze();
- afx_msg void OnObjectMaterialChrome();
- afx_msg void OnObjectMaterialCopper();
- afx_msg void OnObjectMaterialGold();
- afx_msg void OnObjectMaterialJade();
- afx_msg void OnObjectMaterialMetalized();
- afx_msg void OnObjectMaterialNeonGNC();
- afx_msg void OnObjectMaterialNeonPHC();
- afx_msg void OnObjectMaterialObsidian();
- afx_msg void OnObjectMaterialPewter();
- afx_msg void OnObjectMaterialPlastic();
- afx_msg void OnObjectMaterialPlaster();
- afx_msg void OnObjectMaterialSatin();
- afx_msg void OnObjectMaterialShinyPlastic();
- afx_msg void OnObjectMaterialSilver();
- afx_msg void OnObjectMaterialSteel();
- afx_msg void OnObjectMaterialStone();
- afx_msg void OnObjectMaterialDefault();
-
- afx_msg void OnUpdateObjectTransparency(CCmdUI* pCmdUI) ;
-
-
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- void SetMaterial (Graphic3d_NameOfMaterial Material);
-
-private:
- Handle(AIS_InteractiveContext) myAISContext;
- CResultDialog* myCResultDialog;
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_DLGATTRIBUTES_H__AF548353_9EF6_11D1_A47D_00C095ECDA78__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgIsos.cpp b/samples/mfc/standard/04_Viewer3d/src/DlgIsos.cpp
deleted file mode 100755
index 4de80476da..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/DlgIsos.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-// DlgIsos.cpp : implementation file
-//
-
-#include "stdafx.h"
-
-#include "DlgIsos.h"
-
-#include "Viewer3dApp.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgIsos dialog
-
-
-DlgIsos::DlgIsos(CWnd* pParent,
- int nisou,
- int nisov)
- : CDialog(DlgIsos::IDD, pParent)
-{
- //{{AFX_DATA_INIT(DlgIsos)
- m_isou = nisou;
- m_isov = nisov;
- //}}AFX_DATA_INIT
-}
-
-
-void DlgIsos::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(DlgIsos)
- DDX_Text(pDX, IDC_EDIT_ISOU, m_isou);
- DDX_Text(pDX, IDC_EDIT_ISOV, m_isov);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(DlgIsos, CDialog)
- //{{AFX_MSG_MAP(DlgIsos)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgIsos message handlers
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgIsos.h b/samples/mfc/standard/04_Viewer3d/src/DlgIsos.h
deleted file mode 100755
index 0853be19f1..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/DlgIsos.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// DlgIsos.h : header file
-//
-
-#include "stdafx.h"
-
-#if !defined(AFX_DLGISOS_H__AD159C33_9EDC_11D1_A47D_00C095ECDA78__INCLUDED_)
-#define AFX_DLGISOS_H__AD159C33_9EDC_11D1_A47D_00C095ECDA78__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-/////////////////////////////////////////////////////////////////////////////
-// DlgIsos dialog
-
-class DlgIsos : public CDialog
-{
-// Construction
-public:
- DlgIsos(CWnd* pParent,
- int nisou,
- int nisov); // standard constructor
-
-// Dialog Data
- //{{AFX_DATA(DlgIsos)
- enum { IDD = IDD_ISOS };
- int m_isou;
- int m_isov;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(DlgIsos)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(DlgIsos)
- // NOTE: the ClassWizard will add member functions here
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_DLGISOS_H__AD159C33_9EDC_11D1_A47D_00C095ECDA78__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp
deleted file mode 100755
index 6d6fb6de72..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-// ISession_Curve.cpp: implementation of the ISession_Curve class.
-//
-//////////////////////////////////////////////////////////////////////
-
-#include "stdafx.h"
-#include "ISession_Curve.h"
-#include
-#include
-#include
-#include
-#include
-
-IMPLEMENT_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
-
-#ifdef _DEBUG
-#undef THIS_FILE
-static char THIS_FILE[]=__FILE__;
-#endif
-
-//////////////////////////////////////////////////////////////////////
-// Construction/Destruction
-//////////////////////////////////////////////////////////////////////
-
-
-ISession_Curve::ISession_Curve(const Handle(Geom_Curve)& aCurve)
-:AIS_InteractiveObject(),myCurve(aCurve)
-{
-}
-
-ISession_Curve::~ISession_Curve()
-{
-
-}
-void ISession_Curve::Compute(const Handle(PrsMgr_PresentationManager)& /*aPresentationManager*/,
- const Handle(Prs3d_Presentation)& aPresentation,
- const Standard_Integer /*aMode*/)
-{
- GeomAdaptor_Curve anAdaptorCurve(myCurve);
- if (hasOwnColor)
- myDrawer->LineAspect()->SetColor (myDrawer->Color());
- myDrawer->Link()->SetDiscretisation(100);
- myDrawer->Link()->SetMaximalParameterValue(500);
-
- StdPrs_Curve::Add (aPresentation, anAdaptorCurve, myDrawer);
-}
-
-void ISession_Curve::ComputeSelection(const Handle(SelectMgr_Selection)& /*aSelection*/,
- const Standard_Integer /*aMode*/)
-{
-}
-
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h
deleted file mode 100755
index c1c955fdf9..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// ISession_Curve.h: interface for the ISession_Curve class.
-//
-//////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_ISESSION_CURVE_H__F981CB93_A3CC_11D1_8DA3_0800369C8A03__INCLUDED_)
-#define AFX_ISESSION_CURVE_H__F981CB93_A3CC_11D1_8DA3_0800369C8A03__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-#include
-#include
-#include
-#include
-class ISession_Curve;
-DEFINE_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
-
-class ISession_Curve : public AIS_InteractiveObject
-{
-public:
- ISession_Curve(const Handle(Geom_Curve)& aCurve);
- virtual ~ISession_Curve();
-DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
-private:
-
-Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0) ;
-void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,const Standard_Integer aMode) ;
-
-Handle(Geom_Curve) myCurve;
-};
-
-#endif // !defined(AFX_ISESSION_CURVE_H__F981CB93_A3CC_11D1_8DA3_0800369C8A03__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.cpp
deleted file mode 100755
index 2bf031f7da..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.cpp
+++ /dev/null
@@ -1,298 +0,0 @@
-// ModelClippingDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-#include "ModelClippingDlg.h"
-#include "Viewer3dDoc.h"
-#include "offsetdlg.h" // Added by ClassView
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-#define EOL "\n"
-
-// =======================================================================
-// function : CModelClippingDlg
-// purpose :
-// =======================================================================
-CModelClippingDlg::CModelClippingDlg (Handle(V3d_View) theView,
- Handle(AIS_Shape) theShape,
- Handle(Graphic3d_ClipPlane) theClippingPlane,
- CViewer3dDoc* theDoc,
- CWnd* theParent)
-: CDialog(CModelClippingDlg::IDD, theParent),
- m_ModelClipping_Z (0.0),
- myModelClipping_Z (0.0),
- m_ModelClippingONOFF (FALSE),
- myView (theView),
- myShape (theShape),
- myClippingPlane (theClippingPlane),
- myDoc (theDoc)
-{}
-
-// =======================================================================
-// function : DoDataExchange
-// purpose :
-// =======================================================================
-void CModelClippingDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CModelClippingDlg)
- DDX_Control(pDX, IDC_SLIDER_MODELCLIPPING_Z, m_ModelClippingZSlidCtrl);
- DDX_Text(pDX, IDC_EDIT_MODELCLIPPING_Z, m_ModelClipping_Z);
- DDX_Check(pDX, IDC_CHECK_MODELCLIPPINGONOFF, m_ModelClippingONOFF);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(CModelClippingDlg, CDialog)
- //{{AFX_MSG_MAP(CModelClippingDlg)
- ON_WM_HSCROLL()
- ON_EN_CHANGE(IDC_EDIT_MODELCLIPPING_Z, OnChangeEditModelclippingZ)
- ON_BN_CLICKED(IDC_CHECK_MODELCLIPPINGONOFF, OnCheckModelclippingonoff)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-// =======================================================================
-// function : OnHScroll
-// purpose :
-// =======================================================================
-void CModelClippingDlg::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
-{
- UpdateData(TRUE);
-
- m_ModelClipping_Z = m_ModelClippingZSlidCtrl.GetPos();
-
- UpdateData(FALSE);
-
- // Setting the ZClipping depth at m_ZClippingDepth value
- gp_Pln aPlane (gp_Pnt (-m_ModelClipping_Z, 0.0, 0.0), gp_Dir(1.0, 0.0, 0.0));
-
- myClippingPlane->SetEquation (aPlane);
-
- gp_Trsf myTrsf;
- myTrsf.SetTranslation (gp_Pnt (m_ModelClipping_Z, 0.0, 0.0), gp_Pnt(myModelClipping_Z, 0.0, 0.0));
-
- // transform presentation shape
- if (m_ModelClippingONOFF)
- {
- myDoc->GetAISContext()->SetLocation (myShape, TopLoc_Location (myTrsf));
- myDoc->GetAISContext()->Redisplay (myShape, Standard_True);
- myView->Update();
- }
- else
- {
- myShape->SetLocalTransformation (myTrsf);
- }
-
- TCollection_AsciiString aMessage (
- EOL "gp_Pln aPlane (gp_Pnt (-m_ModelClipping_Z, 0.0, 0.0), gp_Dir(1.0, 0.0, 0.0));"
- EOL
- EOL "myClippingPlane->SetEquation (aPlane);\n" );
-
- // Update The Result Message Dialog
- myDoc->UpdateResultMessageDlg ("Change clipping plane", aMessage);
-
- CDialog::OnHScroll (nSBCode, nPos, pScrollBar);
-}
-
-// =======================================================================
-// function : OnInitDialog
-// purpose :
-// =======================================================================
-BOOL CModelClippingDlg::OnInitDialog()
-{
- CDialog::OnInitDialog();
-
- const Graphic3d_ClipPlane::Equation aPlaneEquation = myClippingPlane->GetEquation();
-
- // m_ModelClipping_Z = D (plane coefficient)
- m_ModelClipping_Z = aPlaneEquation[3];
- m_ModelClippingZSlidCtrl.SetRange (-750, 750, TRUE);
- m_ModelClippingZSlidCtrl.SetPos ((int)floor (m_ModelClipping_Z));
-
- m_ModelClippingONOFF = myClippingPlane->IsOn();
-
- if (m_ModelClippingONOFF)
- {
- // register and activate clipping plane
- Standard_Boolean toAddPlane = Standard_True;
- Handle(Graphic3d_SequenceOfHClipPlane) aPlanes = myView->ClipPlanes();
- if (!aPlanes.IsNull())
- {
- for (Graphic3d_SequenceOfHClipPlane::Iterator aPlaneIt (*aPlanes); aPlaneIt.More(); aPlaneIt.Next())
- {
- if (aPlaneIt.Value() == myClippingPlane)
- {
- toAddPlane = Standard_False;
- break;
- }
- }
- }
-
- if (toAddPlane)
- {
- myView->AddClipPlane (myClippingPlane);
- }
-
- myClippingPlane->SetOn (Standard_True);
-
- myDoc->GetAISContext()->Display (myShape, Standard_True);
- }
-
- UpdateData (FALSE);
-
- return TRUE;
-}
-
-// =======================================================================
-// function : OnChangeEditModelclippingZ
-// purpose :
-// =======================================================================
-void CModelClippingDlg::OnChangeEditModelclippingZ()
-{
- UpdateData (TRUE);
-
- m_ModelClippingZSlidCtrl.SetPos ((int)floor (m_ModelClipping_Z));
-
- // Change clipping plane
- gp_Pln aPlane (gp_Pnt (-m_ModelClipping_Z, 0.0, 0.0), gp_Dir (1.0, 0.0, 0.0));
-
- myClippingPlane->SetEquation (aPlane);
-
- // transform presentation shape
- gp_Trsf myTrsf;
- myTrsf.SetTranslation ( gp_Pnt (m_ModelClipping_Z, 0.0, 0.0), gp_Pnt (myModelClipping_Z, 0.0, 0.0));
-
- // transform presentation shape
- if (m_ModelClippingONOFF)
- {
- myDoc->GetAISContext()->SetLocation (myShape, TopLoc_Location (myTrsf));
- myDoc->GetAISContext()->Redisplay (myShape, Standard_False);
- myView->Update();
- }
- else
- {
- myShape->SetLocalTransformation (myTrsf);
- }
-
- myModelClipping_Z = m_ModelClipping_Z;
-
- TCollection_AsciiString aMessage (
- EOL "gp_Pln aPlane (gp_Pnt (-m_ModelClipping_Z, 0.0, 0.0), gp_Dir(1.0, 0.0, 0.0));"
- EOL
- EOL "myClippingPlane->SetEquation (aPlane);\n" );
-
- // Update The Result Message Dialog
- myDoc->UpdateResultMessageDlg ("Change clipping plane", aMessage);
-}
-
-// =======================================================================
-// function : OnCheckModelclippingonoff
-// purpose :
-// =======================================================================
-void CModelClippingDlg::OnCheckModelclippingonoff()
-{
- UpdateData(TRUE);
-
- if (m_ModelClippingONOFF)
- {
- // register and activate clipping plane
- Standard_Boolean toAddPlane = Standard_True;
- Handle(Graphic3d_SequenceOfHClipPlane) aPlanes = myView->ClipPlanes();
- if (!aPlanes.IsNull())
- {
- for (Graphic3d_SequenceOfHClipPlane::Iterator aPlaneIt (*aPlanes); aPlaneIt.More(); aPlaneIt.Next())
- {
- if (aPlaneIt.Value() == myClippingPlane)
- {
- toAddPlane = Standard_False;
- break;
- }
- }
- }
-
- if (toAddPlane)
- {
- myView->AddClipPlane (myClippingPlane);
- }
-
- myClippingPlane->SetOn (Standard_True);
-
- myDoc->GetAISContext()->Display (myShape, Standard_False);
- }
- else
- {
- // deactivate clipping plane
- myClippingPlane->SetOn (Standard_False);
-
- myDoc->GetAISContext()->Remove (myShape, Standard_False);
- }
-
- myView->Update();
-
- TCollection_AsciiString aMessage (
- EOL "if (...)"
- EOL "{"
- EOL " // register and activate clipping plane"
- EOL " if (!myView->ClipPlanes()->Contains (myClippingPlane))"
- EOL " {"
- EOL " myView->AddClipPlane (myClippingPlane);"
- EOL " }"
- EOL
- EOL " myClippingPlane->SetOn (Standard_True);"
- EOL "}"
- EOL "else"
- EOL "{"
- EOL " // deactivate clipping plane"
- EOL " myClippingPlane->SetOn (Standard_False);"
- EOL "}" );
-
- myDoc->UpdateResultMessageDlg ("Switch clipping on/off", aMessage);
-}
-
-// =======================================================================
-// function : OnCancel
-// purpose :
-// =======================================================================
-void CModelClippingDlg::OnCancel()
-{
- UpdateData(TRUE);
-
- if (m_ModelClippingONOFF)
- {
- // remove and deactivate clipping plane
- myView->RemoveClipPlane (myClippingPlane);
-
- myClippingPlane->SetOn (Standard_False);
- }
-
- m_ModelClippingONOFF=FALSE;
-
- if (!myShape.IsNull())
- {
- myDoc->GetAISContext()->Remove (myShape, Standard_False);
- }
-
- myView->Update();
-
- CDialog::OnCancel();
-}
-
-// =======================================================================
-// function : OnOK
-// purpose :
-// =======================================================================
-void CModelClippingDlg::OnOK()
-{
- if (!myShape.IsNull())
- {
- myDoc->GetAISContext()->Remove (myShape, Standard_True);
- }
-
- CDialog::OnOK();
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.h b/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.h
deleted file mode 100755
index dc8533c96f..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ModelClippingDlg.h
+++ /dev/null
@@ -1,68 +0,0 @@
-#if !defined(AFX_MODELCLIPPINGDLG_H__E206D99D_646E_11D3_8D0A_00AA00D10994__INCLUDED_)
-#define AFX_MODELCLIPPINGDLG_H__E206D99D_646E_11D3_8D0A_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-// ModelClippingDlg.h : header file
-//
-
-/////////////////////////////////////////////////////////////////////////////
-// CModelClippingDlg dialog
-#include "Viewer3dDoc.h"
-
-#include
-
-class CModelClippingDlg : public CDialog
-{
-public:
-
- //! Standard constructor.
- CModelClippingDlg (Handle(V3d_View) theView,
- Handle(AIS_Shape) theShape,
- Handle(Graphic3d_ClipPlane) theClippingPlane,
- CViewer3dDoc* theDoc,
- CWnd* theParent = NULL);
-
-// Dialog Data
- //{{AFX_DATA(CModelClippingDlg)
- enum { IDD = IDD_MODELCLIPPING };
- CSliderCtrl m_ModelClippingZSlidCtrl;
- double m_ModelClipping_Z;
- BOOL m_ModelClippingONOFF;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CModelClippingDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(CModelClippingDlg)
- afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- virtual BOOL OnInitDialog();
- afx_msg void OnChangeEditModelclippingZ();
- afx_msg void OnCheckModelclippingonoff();
- virtual void OnCancel();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-private:
- Handle(V3d_View) myView;
- Handle(AIS_Shape) myShape;
- Handle(Graphic3d_ClipPlane) myClippingPlane;
- CViewer3dDoc* myDoc;
- double myModelClipping_Z;
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_MODELCLIPPINGDLG_H__E206D99D_646E_11D3_8D0A_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp
deleted file mode 100755
index 10b73db8e9..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp
+++ /dev/null
@@ -1,329 +0,0 @@
-// OCCDemo_Presentation.cpp: implementation of the OCCDemo_Presentation class.
-// This is a base class for all presentations
-//////////////////////////////////////////////////////////////////////
-
-#include "stdafx.h"
-#include "OCCDemo_Presentation.h"
-#include "Viewer3dView.h"
-#include "ISession_Curve.h"
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#define MAX_PARAM 1000 // if a surface parameter is infinite, it is assigned
-// this value in order to display the "infinit" object in the viewer.
-
-
-Standard_Boolean OCCDemo_Presentation::WaitForInput (unsigned long aMilliSeconds)
-{
- //::WaitForSingleObject(::CreateEvent (NULL, FALSE, FALSE, NULL), aMilliSeconds);
- if (::MsgWaitForMultipleObjects(0, NULL, FALSE, aMilliSeconds,
- QS_KEY | QS_MOUSEBUTTON) != WAIT_TIMEOUT)
- {
- MSG msg;
- if (::PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
- {
- if (msg.message == WM_KEYUP)
- {
- ::PeekMessage (&msg, NULL, 0, 0, PM_REMOVE);
- return WaitForInput (aMilliSeconds);
- }
- else
- return Standard_True;
- }
- }
- return Standard_False;
-}
-
-//================================================================
-// Function : fixParam
-// Purpose : assigns a finite value to theParam if it's infinite
-// (equal to +- Precision::Infinite())
-//================================================================
-static Standard_Boolean fixParam(Standard_Real& theParam)
-{
- Standard_Boolean aResult = Standard_False;
- if (Precision::IsNegativeInfinite(theParam))
- {
- theParam = -MAX_PARAM;
- aResult = Standard_True;
- }
- if (Precision::IsPositiveInfinite(theParam))
- {
- theParam = MAX_PARAM;
- aResult = Standard_True;
- }
- return aResult;
-}
-
-//================================================================
-// Function : DrawSurface
-// Purpose : displays a given geometric surface in 3d viewer
-// (creates a finite face and displays it)
-//================================================================
-Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawSurface
- (const Handle(Geom_Surface)& theSurface,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay)
-{
- Standard_Real u1, u2, v1, v2;
- theSurface->Bounds(u1,u2,v1,v2);
- fixParam(u1);
- fixParam(u2);
- fixParam(v1);
- fixParam(v2);
-
- Handle(AIS_Shape) aGraphicSurface =
- new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2, Precision::Confusion()));
-
- getAISContext()->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
- getAISContext()->SetColor(aGraphicSurface, theColor, toDisplay);
- if (toDisplay) {
- if (FitMode){
- getAISContext()->Display (aGraphicSurface, Standard_False);
- CViewer3dDoc::Fit();
- }
- else
- getAISContext()->Display (aGraphicSurface, Standard_True);
- }
-
- return aGraphicSurface;
-}
-
-//================================================================
-// Function : DrawCurve
-// Purpose : displays a given curve 3d
-//================================================================
-Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
- (const Handle(Geom_Curve)& theCurve,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay)
-{
- Handle(ISession_Curve) aGraphicCurve = new ISession_Curve (theCurve);
-
- getAISContext()->SetColor (aGraphicCurve, theColor, toDisplay);
- aGraphicCurve->Attributes()->Link()->SetLineArrowDraw(Standard_False);
- if (toDisplay){
- if (FitMode){
- getAISContext()->Display (aGraphicCurve, Standard_False);
- CViewer3dDoc::Fit();
- }
- else
- getAISContext()->Display (aGraphicCurve, Standard_True);
- }
-
- return aGraphicCurve;
-}
-
-//================================================================
-// Function : DrawCurve
-// Purpose : displays a given curve 2d
-//================================================================
-Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
- (const Handle(Geom2d_Curve)& theCurve,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay,
- const gp_Ax2& aPosition)
-{
- // create 3D curve in plane
- Handle(Geom_Curve) aCurve3d;
- if (theCurve->IsKind(STANDARD_TYPE(Geom2d_OffsetCurve)))
- {
- Handle(Geom2d_OffsetCurve) aOffCurve =
- Handle(Geom2d_OffsetCurve)::DownCast(theCurve);
- Handle(Geom_Curve) aBasCurve3d =
- GeomAPI::To3d (aOffCurve->BasisCurve(), gp_Pln(aPosition));
- Standard_Real aDist = aOffCurve->Offset();
- aCurve3d = new Geom_OffsetCurve (aBasCurve3d, aDist, aPosition.Direction());
- }
- else
- {
- aCurve3d = GeomAPI::To3d (theCurve, gp_Pln(aPosition));
- }
- return drawCurve (aCurve3d, theColor, toDisplay);
-}
-
-//================================================================
-// Function : drawPoint
-// Purpose : displays a given point
-//================================================================
-Handle(AIS_Point) OCCDemo_Presentation::drawPoint
- (const gp_Pnt& aPnt,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay)
-{
- Handle(AIS_Point) aGraphicPoint = new AIS_Point (new Geom_CartesianPoint(aPnt));
-
- getAISContext()->SetColor (aGraphicPoint, theColor, toDisplay);
- if (toDisplay) {
- getAISContext()->Display (aGraphicPoint, Standard_True);
- //COCCDemoDoc::Fit();
- }
-
- return aGraphicPoint;
-}
-
-//================================================================
-// Function : drawVector
-// Purpose : displays a given vector in 3d viewer
-// (segment of line starting at thePnt with the arrow at the end,
-// the length of segment is the length of the vector)
-//================================================================
-Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawVector
- (const gp_Pnt& thePnt,
- const gp_Vec& theVec,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay)
-{
- Standard_Real aLength = theVec.Magnitude();
- if (aLength < Precision::Confusion())
- return Handle(AIS_InteractiveObject)();
-
- Handle(Geom_Curve) aCurve = new Geom_Line (thePnt, theVec);
- aCurve = new Geom_TrimmedCurve (aCurve, 0, aLength);
-
- Handle(ISession_Curve) aGraphicCurve = new ISession_Curve (aCurve);
-
- getAISContext()->SetColor (aGraphicCurve, theColor, toDisplay);
- Handle(Prs3d_Drawer) aDrawer = aGraphicCurve->Attributes()->Link();
- aDrawer->SetLineArrowDraw(Standard_True);
- aDrawer->ArrowAspect()->SetLength(aLength/10);
- if (toDisplay) {
- if (FitMode){
- getAISContext()->Display (aGraphicCurve, Standard_False);
- CViewer3dDoc::Fit();
- }
- else
- getAISContext()->Display (aGraphicCurve, Standard_True);
- }
-
- return aGraphicCurve;
-}
-
-
-Handle(AIS_Shape) OCCDemo_Presentation::drawShape
- (const TopoDS_Shape& theShape,const Quantity_Color& theColor,
- const Standard_Boolean toDisplay)
-{
- Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
-
- getAISContext()->SetMaterial(aGraphicShape, Graphic3d_NOM_PLASTIC, toDisplay);
- getAISContext()->SetColor (aGraphicShape, theColor, toDisplay);
- if (toDisplay){
- if (FitMode){
- getAISContext()->Display (aGraphicShape, Standard_False);
- CViewer3dDoc::Fit();
- }
- else
- getAISContext()->Display (aGraphicShape, Standard_True);
- }
-
- return aGraphicShape;
-}
-
-Handle(AIS_Shape) OCCDemo_Presentation::drawShape
- (const TopoDS_Shape& theShape,
- const Graphic3d_NameOfMaterial theMaterial,
- const Standard_Boolean toDisplay)
-{
- Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
-
- getAISContext()->SetMaterial(aGraphicShape, theMaterial, toDisplay);
- if (toDisplay) {
- if (FitMode){
- getAISContext()->Display (aGraphicShape, Standard_False);
- CViewer3dDoc::Fit();
- }
- else
- getAISContext()->Display (aGraphicShape, Standard_True);
- }
-
- return aGraphicShape;
-}
-
-void OCCDemo_Presentation::GetViewAt (Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ)
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->GetViewAt (theX, theY, theZ);
-}
-
-void OCCDemo_Presentation::SetViewAt (const Standard_Real theX, const Standard_Real theY, const Standard_Real theZ)
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->SetViewAt (theX, theY, theZ);
-}
-
-void OCCDemo_Presentation::GetViewEye(Standard_Real& X, Standard_Real& Y, Standard_Real& Z)
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->GetViewEye(X,Y,Z);
-}
-
-void OCCDemo_Presentation::SetViewEye(Standard_Real X, Standard_Real Y, Standard_Real Z)
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->SetViewEye(X,Y,Z);
-}
-
-Standard_Real OCCDemo_Presentation::GetViewScale()
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- return pView->GetViewScale();
-}
-
-void OCCDemo_Presentation::SetViewScale(Standard_Real Coef)
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->SetViewScale(Coef);
-}
-
-void OCCDemo_Presentation::ResetView()
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->Reset();
-}
-
-Handle(AIS_InteractiveContext) OCCDemo_Presentation::getAISContext() const
-{
- return myDoc->GetAISContext();
-}
-
-Handle(V3d_Viewer) OCCDemo_Presentation::getViewer() const
-{
- return myDoc->GetViewer();
-}
-
-Standard_CString OCCDemo_Presentation::GetDataDir()
-{
- return myDoc->GetDataDir();
-}
\ No newline at end of file
diff --git a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h
deleted file mode 100755
index 1fa66aa451..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h
+++ /dev/null
@@ -1,135 +0,0 @@
-// OCCDemo_Presentation.h: interface for the OCCDemo_Presentation class.
-// This is a base class for all presentations
-//////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_OCCDEMO_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
-#define AFX_OCCDEMO_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#include "Viewer3dDoc.h"
-
-#define WAIT_A_LITTLE WaitForInput(500)
-#define WAIT_A_SECOND WaitForInput(1000)
-
-class CViewer3dDoc;
-#include
-#include
-#include
-#include
-#include
-class Quantity_Color;
-
-class OCCDemo_Presentation
-{
-public:
- // Construction
- OCCDemo_Presentation() : myIndex(0), myNbSamples(0), FitMode(false){}
- virtual ~OCCDemo_Presentation() {}
-
-public:
- static OCCDemo_Presentation* Current;
- // this pointer must be initialized when realize a derivable class;
- // it is used by application to access to a presentation class instance
-
- void SetDocument (CViewer3dDoc* theDoc) {myDoc = theDoc;}
- // document must be set by the user of this class before first use of iterations
-
-public:
- // Titling
- const CString& GetName() const {return myName;}
-
-public:
- // Iteration on samples
- void FirstSample() {myIndex=0;}
- void LastSample() {myIndex=myNbSamples-1;}
- Standard_Boolean AtFirstSample() const {return myIndex <= 0;}
- Standard_Boolean AtLastSample() const {return myIndex >= myNbSamples-1;}
- void NextSample() {myIndex++;}
- void PrevSample() {myIndex--;}
- virtual void DoSample() = 0;
- static void GetViewAt (Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ);
- static void SetViewAt (const Standard_Real theX, const Standard_Real theY, const Standard_Real theZ);
- static void GetViewEye (Standard_Real& X, Standard_Real& Y, Standard_Real& Z);
- static void SetViewEye (Standard_Real X, Standard_Real Y, Standard_Real Z);
- static Standard_Real GetViewScale();
- static void SetViewScale(Standard_Real Coef);
- static void ResetView();
- CViewer3dDoc* getDocument() { return myDoc; }
-
-
- // place one-time initialization code in this function
- virtual void Init() {}
-
-protected:
- // Methods to call from a derivable class
- void setName (const char* theName) {myName = CString(theName);}
- Handle(AIS_InteractiveContext) getAISContext() const;
- Handle(V3d_Viewer) getViewer() const;
-// void setResultTitle (const char* theTitle) {myDoc->GetResultDialog()->SetTitle(theTitle);}
-// void setResultText (const char* theText) {myDoc->GetResultDialog()->SetText(theText);}
- Standard_CString GetDataDir();
-
- Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
- // Waits for a user input or a period of time has been elapsed
-
- Handle(AIS_InteractiveObject) drawSurface (const Handle(Geom_Surface)& theSurface,
- const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_LEMONCHIFFON3),
- const Standard_Boolean toDisplay = Standard_True);
- // creates a finite face based on the given geometric surface
- // and displays it in the viewer if toDisplay = Standard_True
-
- Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom_Curve)& theCurve,
- const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
- const Standard_Boolean toDisplay = Standard_True);
- // creates an ISession_Curve based on the given geometric curve
- // and displays it in the viewer if toDisplay = Standard_True
-
- Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom2d_Curve)& theCurve,
- const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
- const Standard_Boolean toDisplay = Standard_True,
- const gp_Ax2& aPosition = gp::XOY());
- // converts a given curve to 3d using aPosition and calls the previous method
-
- Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
- const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
- const Standard_Boolean toDisplay = Standard_True);
- // creates a presentation of the given point
- // and displays it in the viewer if toDisplay = Standard_True
-
- Handle(AIS_InteractiveObject) drawVector (const gp_Pnt& thePnt,
- const gp_Vec& theVec,
- const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_YELLOW),
- const Standard_Boolean toDisplay = Standard_True);
- // creates a presentation of the given vector
- // and displays it in the viewer if toDisplay = Standard_True
-
- Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
- const Quantity_Color& theColor,
- const Standard_Boolean toDisplay = Standard_True);
- // creates a presentation of the given shape
- // with material PLASTIC and a given color
- // and displays it in the viewer if toDisplay = Standard_True
-
- Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
- const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NameOfMaterial_Brass,
- const Standard_Boolean toDisplay = Standard_True);
- // creates a presentation of the given shape with the given material
- // (color is default for a given material)
- // and displays it in the viewer if toDisplay = Standard_True
-
-protected:
- // Fields to use in a derivable class
- BOOL FitMode;
- int myIndex;
- int myNbSamples;
-
-private:
- CViewer3dDoc* myDoc;
- CString myName;
-
-};
-
-#endif // !defined(AFX_OCCDEMO_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.cpp
deleted file mode 100755
index 9084dd3af6..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.cpp
+++ /dev/null
@@ -1,314 +0,0 @@
-// OffsetDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "..\res\resource.h"
-#include "offsetdlg.h"
-#include "Viewer3dView.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-#define FactorMinValue 0
-#define FactorMaxValue 20
-
-#define UnitsMinValue 0
-#define UnitsMaxValue 20
-
-
-/////////////////////////////////////////////////////////////////////////////
-// COffsetDlg dialog
-
-
-COffsetDlg::COffsetDlg(CViewer3dDoc* theDoc, CWnd* pParent /*=NULL*/)
- : CDialog(COffsetDlg::IDD, pParent)
-{
- //{{AFX_DATA_INIT(COffsetDlg)
- m_Factor = 1.;
- m_Units = 0.;
- //}}AFX_DATA_INIT
- myDoc = theDoc;
-}
-
-
-void COffsetDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(COffsetDlg)
- DDX_Control(pDX, IDC_SLIDER_OFFSETUNITS, m_UnitsSlidCtrl);
- DDX_Control(pDX, IDC_SLIDER_OFFSETFACTOR, m_FactorSlidCtrl);
- DDX_Text(pDX, IDC_EDIT_OFFSETFACTOR, m_Factor);
- DDV_MinMaxDouble(pDX, m_Factor, FactorMinValue, FactorMaxValue);
- DDX_Text(pDX, IDC_EDIT_OFFSETUNITS, m_Units);
- DDV_MinMaxDouble(pDX, m_Units, UnitsMinValue, UnitsMaxValue);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(COffsetDlg, CDialog)
- //{{AFX_MSG_MAP(COffsetDlg)
- ON_WM_HSCROLL()
- ON_EN_CHANGE(IDC_EDIT_OFFSETFACTOR, OnChangeEditOffsetFactor)
- ON_EN_CHANGE(IDC_EDIT_OFFSETUNITS, OnChangeEditOffsetUnits)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// COffsetDlg message handlers
-
-BOOL COffsetDlg::OnInitDialog()
-{
- CDialog::OnInitDialog();
-
-// Initializing the ComboBox
- SetOffsets(m_Factor,m_Units);
-
-// Setting the m_FactorSlidCtrl position at floor(m_Factor) value (because slider position is an integer)
- m_FactorSlidCtrl.SetRange(FactorMinValue, FactorMaxValue, TRUE);
- m_FactorSlidCtrl.SetPos( (int) floor(m_Factor));
-
-// Setting the m_UnitsSlidCtrl position at floor(m_Units) value (because slider position is an integer)
- m_UnitsSlidCtrl.SetRange(UnitsMinValue, UnitsMaxValue, TRUE);
- m_UnitsSlidCtrl.SetPos( (int) floor(m_Units));
-
- UpdateData(FALSE);
-
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
-}
-
-void COffsetDlg::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
-{
-
-// Setting the m_Factor value at m_FactorSlidCtrl position
- m_Factor = m_FactorSlidCtrl.GetPos();
-// Setting the m_Units value at m_UnitsSlidCtrl position
- m_Units = m_UnitsSlidCtrl.GetPos();
-
- UpdateData(FALSE);
-
-
- SetOffsets(m_Factor,m_Units);
-
- CDialog::OnHScroll(nSBCode, nPos, pScrollBar);
-}
-
-void COffsetDlg::OnChangeEditOffsetFactor()
-{
- UpdateData();
-
- m_FactorSlidCtrl.SetPos(int(m_Units));
-
- SetOffsets(m_Factor,m_Units);
-}
-
-void COffsetDlg::OnChangeEditOffsetUnits()
-{
- UpdateData();
-
- m_UnitsSlidCtrl.SetPos(int(m_Units));
-
- SetOffsets(m_Factor,m_Units);
-}
-
-void COffsetDlg::SetOffsets(Standard_Real theFactor, Standard_Real theUnits)
-{
- Handle(AIS_InteractiveContext) aAISContext = myDoc->GetAISContext();
-
- Handle(AIS_Shape) aOverlappedBox = myDoc->GetOverlappedBox();
- Handle(AIS_Shape) aOverlappedCylinder = myDoc->GetOverlappedCylinder();
- Handle(AIS_Shape) aOverlappedSphere = myDoc->GetOverlappedSphere();
- Handle(AIS_Shape) aBox = myDoc->GetBox();
- Handle(User_Cylinder) aCylinder = myDoc->GetCylinder();
- Handle(AIS_Shape) aSphere = myDoc->GetSphere();
-
-
- myDoc->SetDialogTitle("Set offsets");
-
- TCollection_AsciiString Message;
-
- Standard_Boolean OneOrMoreCurrentIsDisplayed=false;
- Standard_ShortReal aFactor = (Standard_ShortReal)theFactor;
- Standard_ShortReal aUnits = (Standard_ShortReal)theUnits;
-
- for (aAISContext->InitSelected(); aAISContext->MoreSelected(); aAISContext->NextSelected())
- if (aAISContext->IsDisplayed(aAISContext->SelectedInteractive())) OneOrMoreCurrentIsDisplayed=true;
-
- if(OneOrMoreCurrentIsDisplayed){
- // A small trick to avoid compiler error (C2668).
- const Handle(AIS_InteractiveObject)& anIOOverlappedBox = aOverlappedBox;
- const Handle(AIS_InteractiveObject)& anIOBox = aBox;
- if((aAISContext->IsSelected(anIOOverlappedBox) || aAISContext->IsSelected(anIOBox))
- && aAISContext->IsDisplayed(aOverlappedBox)){
- aOverlappedBox->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = "Box2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
-
- // A small trick to avoid compiler error (C2668).
- const Handle(AIS_InteractiveObject)& anIOOverlappedCylinder = aOverlappedCylinder;
- const Handle(AIS_InteractiveObject)& anIOCylinder = aCylinder;
- if((aAISContext->IsSelected(anIOOverlappedCylinder) || aAISContext->IsSelected(anIOCylinder))
- && aAISContext->IsDisplayed(aOverlappedCylinder)){
- aOverlappedCylinder->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = Message + "Cylinder2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
-
- // A small trick to avoid compiler error (C2668).
- const Handle(AIS_InteractiveObject)& anIOOverlappedSphere = aOverlappedSphere;
- const Handle(AIS_InteractiveObject)& anIOSphere = aSphere;
- if((aAISContext->IsSelected(anIOOverlappedSphere) || aAISContext->IsSelected(anIOSphere))
- && aAISContext->IsDisplayed(aOverlappedSphere)){
- aOverlappedSphere->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = Message + "Sphere2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
- }
- else{
- if(aAISContext->IsDisplayed(aOverlappedBox)){
- aOverlappedBox->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = Message + "Box2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
-
- if(aAISContext->IsDisplayed(aOverlappedCylinder)){
- aOverlappedCylinder->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = Message + "Cylinder2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
-
- if(aAISContext->IsDisplayed(aOverlappedSphere)){
- aOverlappedSphere->SetPolygonOffsets(Aspect_POM_Fill,aFactor,aUnits);
- Message = Message + "Sphere2 -> SetPolygonOffsets(Aspect_POM_Fill, Factor, Units);\n";
- //myDoc -> AddTextInDialog(Message);
- }
- }
-
- CString aTextInDialog = myDoc -> GetDialogText();
- if (aTextInDialog != Message.ToCString())
- myDoc -> UpdateResultMessageDlg("Set offsets", Message);
- aAISContext->UpdateCurrentViewer();
-}
-
-void COffsetDlg::UpdateValues()
-{
- Standard_Integer aOffsetMode;
- Standard_ShortReal aBoxFactor = 0;
- Standard_ShortReal aCylFactor = 0;
- Standard_ShortReal aSphereFactor = 0;
- Standard_ShortReal aCylUnits = 0;
- Standard_ShortReal aSphereUnits = 0;
- Standard_ShortReal aBoxUnits = 0;
-
- Handle(AIS_InteractiveContext) aAISContext = myDoc->GetAISContext();
-
- Handle(AIS_Shape) aOverlappedBox = myDoc->GetOverlappedBox();
- Handle(AIS_Shape) aOverlappedCylinder = myDoc->GetOverlappedCylinder();
- Handle(AIS_Shape) aOverlappedSphere = myDoc->GetOverlappedSphere();
- Handle(AIS_Shape) aBox = myDoc->GetBox();
- Handle(User_Cylinder) aCylinder = myDoc->GetCylinder();
- Handle(AIS_Shape) aSphere = myDoc->GetSphere();
-
- BOOL IsOverlappedCylinderDisplayed = aAISContext->IsDisplayed(aOverlappedCylinder);
- BOOL IsOverlappedSphereDisplayed = aAISContext->IsDisplayed(aOverlappedSphere);
- BOOL IsOverlappedBoxDisplayed = aAISContext->IsDisplayed(aOverlappedBox);
-
- const Handle(AIS_InteractiveObject)& anIOOverlappedCylinder = aOverlappedCylinder;
- const Handle(AIS_InteractiveObject)& anIOOverlappedSphere = aOverlappedSphere;
- const Handle(AIS_InteractiveObject)& anIOOverlappedBox = aOverlappedBox;
- BOOL IsOverlappedCylinderCurrent = aAISContext->IsSelected(anIOOverlappedCylinder);
- BOOL IsOverlappedSphereCurrent = aAISContext->IsSelected(anIOOverlappedSphere);
- BOOL IsOverlappedBoxCurrent = aAISContext->IsSelected(anIOOverlappedBox);
-
-
- /*BOOL IsAnyOverlappedObjectCurrent =
- IsOverlappedCylinderCurrent || IsOverlappedSphereCurrent || IsOverlappedBoxCurrent;*/
-
- const Handle(AIS_InteractiveObject)& anIOCylinder = aCylinder;
- const Handle(AIS_InteractiveObject)& anIOSphere = aSphere;
- const Handle(AIS_InteractiveObject)& anIOBox = aBox;
- BOOL IsCylinderCurrent = aAISContext->IsSelected(anIOCylinder);
- BOOL IsSphereCurrent = aAISContext->IsSelected(anIOSphere);
- BOOL IsBoxCurrent = aAISContext->IsSelected(anIOBox);
-
- BOOL IsAnyObjectCurrent =
- IsOverlappedCylinderCurrent || IsOverlappedSphereCurrent || IsOverlappedBoxCurrent
- || IsCylinderCurrent || IsSphereCurrent || IsBoxCurrent;
-
- BOOL IsAnyOverlappedObjectDisplayed =
- IsOverlappedCylinderDisplayed || IsOverlappedSphereDisplayed || IsOverlappedBoxDisplayed;
-
- Standard_Boolean OneOrMoreCurrentIsDisplayed=false;
- for (aAISContext->InitSelected();aAISContext->MoreSelected ();aAISContext->NextSelected ())
- if (aAISContext->IsDisplayed(aAISContext->SelectedInteractive())) OneOrMoreCurrentIsDisplayed=true;
-
- if(OneOrMoreCurrentIsDisplayed){
- if(IsOverlappedBoxDisplayed && (IsBoxCurrent || IsOverlappedBoxCurrent)){
- aOverlappedBox->PolygonOffsets(aOffsetMode,aBoxFactor,aBoxUnits);
- }
-
- if(IsOverlappedCylinderDisplayed && (IsCylinderCurrent || IsOverlappedCylinderCurrent)){
- aOverlappedCylinder->PolygonOffsets(aOffsetMode,aCylFactor,aCylUnits);
- }
-
- if(IsOverlappedSphereDisplayed && (IsSphereCurrent || IsOverlappedSphereCurrent)){
- aOverlappedSphere->PolygonOffsets(aOffsetMode,aSphereFactor,aSphereUnits);
- }
-
- }
- else{
- if(IsOverlappedBoxDisplayed){
- aOverlappedBox->PolygonOffsets(aOffsetMode,aBoxFactor,aBoxUnits);
- }
-
- if(IsOverlappedCylinderDisplayed){
- aOverlappedCylinder->PolygonOffsets(aOffsetMode,aCylFactor,aCylUnits);
- }
-
- if(IsOverlappedSphereDisplayed){
- aOverlappedSphere->PolygonOffsets(aOffsetMode,aSphereFactor,aSphereUnits);
- }
- }
-
- Standard_Real Max = aBoxFactor;
- if (Max < aCylFactor) Max = aCylFactor;
- if (Max < aSphereFactor) Max = aSphereFactor;
-
- m_Factor = Max;
-
- Max = aBoxUnits;
- if (Max < aCylUnits) Max = aCylUnits;
- if (Max < aSphereUnits) Max = aSphereUnits;
-
- m_Units = Max;
-
- m_FactorSlidCtrl.SetPos( (int) floor(m_Factor));
-
-
- m_UnitsSlidCtrl.SetPos( (int) floor(m_Units));
- UpdateData(FALSE);
-
- if( (IsOverlappedBoxCurrent || (IsBoxCurrent && IsOverlappedBoxDisplayed)) ||
- (IsOverlappedCylinderCurrent || (IsCylinderCurrent && IsOverlappedCylinderDisplayed)) ||
- (IsOverlappedSphereCurrent || (IsSphereCurrent && IsOverlappedSphereDisplayed)) ||
- (!IsAnyObjectCurrent && IsAnyOverlappedObjectDisplayed)
- )
- {
- m_FactorSlidCtrl.EnableWindow();
- m_UnitsSlidCtrl.EnableWindow();
- GetDlgItem(IDC_EDIT_OFFSETFACTOR)->EnableWindow();
- GetDlgItem(IDC_EDIT_OFFSETUNITS)->EnableWindow();
- }
- else{
- m_FactorSlidCtrl.EnableWindow(false);
- m_UnitsSlidCtrl.EnableWindow(false);
- GetDlgItem(IDC_EDIT_OFFSETFACTOR)->EnableWindow(false);
- GetDlgItem(IDC_EDIT_OFFSETUNITS)->EnableWindow(false);
- }
-
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.h b/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.h
deleted file mode 100755
index f97cd1da47..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/OffsetDlg.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#if !defined(AFX_OFFSETDLG_H__9E963234_B2CB_11D8_8CF3_00047571ABCA__INCLUDED_)
-#define AFX_OFFSETDLG_H__9E963234_B2CB_11D8_8CF3_00047571ABCA__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-// offsetdlg.h : header file
-//
-
-#include "Viewer3dDoc.h"
-
-class CViewer3dDoc;
-/////////////////////////////////////////////////////////////////////////////
-// COffsetDlg dialog
-
-class COffsetDlg : public CDialog
-{
-// Construction
-public:
- void UpdateValues();
- void SetOffsets(Standard_Real theFactor, Standard_Real theUnits);
- COffsetDlg( CViewer3dDoc* theDoc, CWnd* pParent = NULL);
-
-// Dialog Data
- //{{AFX_DATA(COffsetDlg)
- enum { IDD = IDD_SETOFFSETS };
- CSliderCtrl m_UnitsSlidCtrl;
- CSliderCtrl m_FactorSlidCtrl;
- Standard_Real m_Factor;
- Standard_Real m_Units;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(COffsetDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(COffsetDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- afx_msg void OnChangeEditOffsetFactor();
- afx_msg void OnChangeEditOffsetUnits();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- CViewer3dDoc* myDoc;
-
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_OFFSETDLG_H__9E963234_B2CB_11D8_8CF3_00047571ABCA__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp
deleted file mode 100755
index 65d39f2c14..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp
+++ /dev/null
@@ -1,188 +0,0 @@
-// ScaleDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "ScaleDlg.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// ScaleDlg dialog
-
-
-ScaleDlg::ScaleDlg(Handle(V3d_View) Current_V3d_View, CViewer3dView* pView, CWnd* pParent /*=NULL*/)
- : CDialog(ScaleDlg::IDD, pParent)
-{
- //{{AFX_DATA_INIT(ScaleDlg)
- myCurrent_V3d_View = Current_V3d_View;
- myView=pView;
- m_ScaleX = 0;
- m_ScaleY = 0;
- m_ScaleZ = 0;
- //}}AFX_DATA_INIT
-}
-
-
-void ScaleDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(ScaleDlg)
- DDX_Control(pDX, IDC_SLIDER_SCALEX, m_ScaleXSlidCtrl);
- DDX_Control(pDX, IDC_SLIDER_SCALEY, m_ScaleYSlidCtrl);
- DDX_Control(pDX, IDC_SLIDER_SCALEZ, m_ScaleZSlidCtrl);
- DDX_Text(pDX, IDC_EDIT_SCALEX, m_ScaleX);
- DDV_MinMaxInt(pDX, m_ScaleX, 1, 100);
- DDX_Text(pDX, IDC_EDIT_SCALEY, m_ScaleY);
- DDV_MinMaxInt(pDX, m_ScaleY, 1, 100);
- DDX_Text(pDX, IDC_EDIT_SCALEZ, m_ScaleZ);
- DDV_MinMaxInt(pDX, m_ScaleZ, 1, 100);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(ScaleDlg, CDialog)
- //{{AFX_MSG_MAP(ScaleDlg)
- ON_EN_CHANGE(IDC_EDIT_SCALEX, OnChangeEditScaleX)
- ON_EN_CHANGE(IDC_EDIT_SCALEY, OnChangeEditScaleY)
- ON_EN_CHANGE(IDC_EDIT_SCALEZ, OnChangeEditScaleZ)
- ON_WM_HSCROLL()
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// ScaleDlg message handlers
-BOOL ScaleDlg::OnInitDialog()
-{
- CDialog::OnInitDialog();
-
- int ScaleX = myView->scaleX;
- int ScaleY = myView->scaleY;
- int ScaleZ = myView->scaleZ;
-
- m_ScaleX=ScaleX;
- m_ScaleXSlidCtrl.SetRange(0, 100, TRUE);
- m_ScaleXSlidCtrl.SetPos( ScaleX );
-
- m_ScaleY=ScaleY;
- m_ScaleYSlidCtrl.SetRange(0, 100, TRUE);
- m_ScaleYSlidCtrl.SetPos( ScaleY );
-
- m_ScaleZ=ScaleZ;
- m_ScaleZSlidCtrl.SetRange(0, 100, TRUE);
- m_ScaleZSlidCtrl.SetPos( ScaleZ );
-
- UpdateData(FALSE);
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
-}
-
-void ScaleDlg::OnChangeEditScaleX()
-{
- UpdateData(TRUE);
-
- m_ScaleXSlidCtrl.SetPos( m_ScaleX );
- myView->scaleX = m_ScaleX;
-
- myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ );
- myCurrent_V3d_View->Update();
-
- TCollection_AsciiString Message("\
-myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ);\n\
-\n\
-myCurrent_V3d_View->Update();\n\
- ");
-
- // Update The Result Message Dialog
- myView->GetDocument()->UpdateResultMessageDlg("SetAxialScale",Message);
-}
-
-void ScaleDlg::OnChangeEditScaleY()
-{
- UpdateData(TRUE);
-
- m_ScaleYSlidCtrl.SetPos( m_ScaleY );
- myView->scaleY = m_ScaleY;
-
- myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ );
- myCurrent_V3d_View->Update();
-
- TCollection_AsciiString Message("\
-myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ);\n\
-\n\
-myCurrent_V3d_View->Update();\n\
- ");
-
- // Update The Result Message Dialog
- myView->GetDocument()->UpdateResultMessageDlg("SetAxialScale",Message);
-}
-
-void ScaleDlg::OnChangeEditScaleZ()
-{
- UpdateData(TRUE);
-
- m_ScaleZSlidCtrl.SetPos( m_ScaleZ );
- myView->scaleZ = m_ScaleZ;
-
- myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ );
- myCurrent_V3d_View->Update();
-
- TCollection_AsciiString Message("\
-myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ);\n\
-\n\
-myCurrent_V3d_View->Update();\n\
- ");
-
- // Update The Result Message Dialog
- myView->GetDocument()->UpdateResultMessageDlg("SetAxialScale",Message);
-}
-
-void ScaleDlg::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
-{
- m_ScaleX = m_ScaleXSlidCtrl.GetPos();
- m_ScaleY = m_ScaleYSlidCtrl.GetPos();
- m_ScaleZ = m_ScaleZSlidCtrl.GetPos();
-
- if(m_ScaleX<=0)
- {
- m_ScaleX=1;
- m_ScaleXSlidCtrl.SetPos( 1 );
- }
-
- if(m_ScaleY<=0)
- {
- m_ScaleY=1;
- m_ScaleYSlidCtrl.SetPos( 1 );
- }
-
- if(m_ScaleZ<=0)
- {
- m_ScaleZ=1;
- m_ScaleZSlidCtrl.SetPos( 1 );
- }
-
- UpdateData(FALSE);
-
- myView->scaleX = m_ScaleX;
- myView->scaleY = m_ScaleY;
- myView->scaleZ = m_ScaleZ;
-
- myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ );
- myCurrent_V3d_View->Update();
-
- TCollection_AsciiString Message("\
-myCurrent_V3d_View->SetAxialScale( m_ScaleX, m_ScaleY, m_ScaleZ);\n\
-\n\
-myCurrent_V3d_View->Update();\n\
- ");
-
- // Update The Result Message Dialog
- myView->GetDocument()->UpdateResultMessageDlg("SetAxialScale",Message);
-
- CDialog::OnHScroll(nSBCode, nPos, pScrollBar);
-}
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h
deleted file mode 100755
index 2353a9ff92..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h
+++ /dev/null
@@ -1,63 +0,0 @@
-#if !defined(AFX_ScaleDlg_H__1796AA04_63B7_4E46_B00A_D2DAC975CAF1__INCLUDED_)
-#define AFX_ScaleDlg_H__1796AA04_63B7_4E46_B00A_D2DAC975CAF1__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-// ScaleDlg.h : header file
-//
-
-#include "..\res\resource.h"
-#include "Viewer3dView.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// ScaleDlg dialog
-
-class ScaleDlg : public CDialog
-{
-// Construction
-public:
- ScaleDlg(Handle(V3d_View) Current_V3d_View, CViewer3dView* pView, CWnd* pParent = NULL);
-
-// Dialog Data
- //{{AFX_DATA(ScaleDlg)
- enum { IDD = IDD_SCALE };
- CSliderCtrl m_ScaleXSlidCtrl;
- CSliderCtrl m_ScaleYSlidCtrl;
- CSliderCtrl m_ScaleZSlidCtrl;
- int m_ScaleX;
- int m_ScaleY;
- int m_ScaleZ;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(ScaleDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(ScaleDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnChangeEditScaleX();
- afx_msg void OnChangeEditScaleY();
- afx_msg void OnChangeEditScaleZ();
- afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-private:
-
- Handle(V3d_View) myCurrent_V3d_View;
- CViewer3dView* myView;
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_ScaleDlg_H__1796AA04_63B7_4E46_B00A_D2DAC975CAF1__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp
deleted file mode 100755
index 77ecb4860e..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-// ShadingModelDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-#include "ShadingModelDlg.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// CShadingModelDlg dialog
-
-
-CShadingModelDlg::CShadingModelDlg(Handle(V3d_View) Current_V3d_View, CWnd* pParent /*=NULL*/)
- : CDialog(CShadingModelDlg::IDD, pParent)
-{
- //{{AFX_DATA_INIT(CShadingModelDlg)
- myCurrent_V3d_View=Current_V3d_View;
- //}}AFX_DATA_INIT
-}
-
-
-void CShadingModelDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CShadingModelDlg)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(CShadingModelDlg, CDialog)
- //{{AFX_MSG_MAP(CShadingModelDlg)
- ON_BN_CLICKED(IDC_SHADINGMODEL_COLOR, OnShadingmodelColor)
- ON_BN_CLICKED(IDC_SHADINGMODEL_FLAT, OnShadingmodelFlat)
- ON_BN_CLICKED(IDC_SHADINGMODEL_GOURAUD, OnShadingmodelGouraud)
- ON_BN_CLICKED(IDC_SHADINGMODEL_PHONG, OnShadingmodelPhong)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CShadingModelDlg message handlers
-
-void CShadingModelDlg::OnShadingmodelColor()
-{
- myCurrent_V3d_View->SetShadingModel(V3d_COLOR);
- myCurrent_V3d_View->Update();
-}
-
-void CShadingModelDlg::OnShadingmodelFlat()
-{
- myCurrent_V3d_View->SetShadingModel(V3d_FLAT);
- myCurrent_V3d_View->Update();
-}
-
-void CShadingModelDlg::OnShadingmodelGouraud()
-{
- myCurrent_V3d_View->SetShadingModel(V3d_GOURAUD);
- myCurrent_V3d_View->Update();
-}
-
-void CShadingModelDlg::OnShadingmodelPhong()
-{
- myCurrent_V3d_View->SetShadingModel(V3d_PHONG);
- myCurrent_V3d_View->Update();
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h
deleted file mode 100755
index 30f38ab23e..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// ShadingModelDlg.h : header file
-//
-#if !defined(AFX_SHADINGMODELDLG_H__4DEFD9F9_61FC_11D3_8D0A_00AA00D10994__INCLUDED_)
-#define AFX_SHADINGMODELDLG_H__4DEFD9F9_61FC_11D3_8D0A_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include "..\res\resource.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// CShadingModelDlg dialog
-
-class CShadingModelDlg : public CDialog
-{
-// Construction
-public:
- CShadingModelDlg(Handle(V3d_View) Current_V3d_View, CWnd* pParent = NULL); // standard constructor
-
-// Dialog Data
- //{{AFX_DATA(CShadingModelDlg)
- enum { IDD = IDD_SHADINGMODEL };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CShadingModelDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(CShadingModelDlg)
- afx_msg void OnShadingmodelColor();
- afx_msg void OnShadingmodelFlat();
- afx_msg void OnShadingmodelGouraud();
- afx_msg void OnShadingmodelPhong();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- Handle(V3d_View) myCurrent_V3d_View;
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_SHADINGMODELDLG_H__4DEFD9F9_61FC_11D3_8D0A_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/State.h b/samples/mfc/standard/04_Viewer3d/src/State.h
deleted file mode 100755
index b58cdc57aa..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/State.h
+++ /dev/null
@@ -1,3 +0,0 @@
-enum STATE {
- FACE_COLOR
- };
diff --git a/samples/mfc/standard/04_Viewer3d/src/StdAfx.cpp b/samples/mfc/standard/04_Viewer3d/src/StdAfx.cpp
deleted file mode 100755
index a50be5907a..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/StdAfx.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-// stdafx.cpp : source file that includes just the standard includes
-// SampleViewer3d.pch will be the pre-compiled header
-// stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
diff --git a/samples/mfc/standard/04_Viewer3d/src/StdAfx.h b/samples/mfc/standard/04_Viewer3d/src/StdAfx.h
deleted file mode 100755
index 2d5561443b..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/StdAfx.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// stdafx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-//
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
-
-#include // MFC core and standard components
-#include // MFC extensions
-#include // MFC OLE automation classes
-#ifndef _AFX_NO_AFXCMN_SUPPORT
-#include // MFC support for Windows Common Controls
-#endif // _AFX_NO_AFXCMN_SUPPORT
-
-#pragma warning( disable : 4244 ) // Issue warning 4244
-#include "Standard_ShortReal.hxx"
-#pragma warning( default : 4244 ) // Issue warning 4244
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include "State.h"
-
-#include <..\res\resource.h>
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp
deleted file mode 100755
index a2b00f7a5d..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp
+++ /dev/null
@@ -1,441 +0,0 @@
-// TexturesExt_Presentation.cpp: implementation of the TexturesExt_Presentation class.
-// Creation of textural presentation of shape
-//////////////////////////////////////////////////////////////////////
-
-#include "stdafx.h"
-#include "TexturesExt_Presentation.h"
-#include "Viewer3dApp.h"
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#define DISP(OBJ) getAISContext()->Display((OBJ), Standard_False)
-
-// Initialization of global variable with an instance of this class
-OCCDemo_Presentation* OCCDemo_Presentation::Current = new TexturesExt_Presentation;
-
-// Initialization of array of samples
-const TexturesExt_Presentation::PSampleFuncType TexturesExt_Presentation::SampleFuncs[] =
-{
- &TexturesExt_Presentation::sampleBottle,
- &TexturesExt_Presentation::sampleTerrain,
- &TexturesExt_Presentation::sampleKitchen
-};
-
-#define EOL "\r\n"
-
-#define ZVIEW_SIZE 100
-
-//////////////////////////////////////////////////////////////////////
-// Construction/Destruction
-//////////////////////////////////////////////////////////////////////
-
-TexturesExt_Presentation::TexturesExt_Presentation()
-{
- myNbSamples = sizeof(SampleFuncs)/sizeof(PSampleFuncType);
- setName ("Textured Shapes");
-}
-
-//////////////////////////////////////////////////////////////////////
-// Sample execution
-//////////////////////////////////////////////////////////////////////
-
-void TexturesExt_Presentation::DoSample()
-{
- ((CViewer3dApp*) AfxGetApp())->SetSampleName (L"Viewer3d");
- ((CViewer3dApp*) AfxGetApp())->SetSamplePath (L"..\\..\\04_Viewer3d");
- getAISContext()->EraseAll (Standard_True);
- if (myIndex >=0 && myIndex < myNbSamples)
- {
- // turn lights on for terrain sample
- lightsOnOff(myIndex==1);
- (this->*SampleFuncs[myIndex])();
- }
-}
-
-void TexturesExt_Presentation::Init()
-{
- // initialize v3d_view so it displays TexturesExt well
- Handle(V3d_View) aView = getViewer()->ActiveViews().First();
- aView->SetSize(ZVIEW_SIZE);
-
-// getDocument()->UpdateResultMessageDlg("Textured Shape",
- TCollection_AsciiString Message ("Textured Shape",
- " TopoDS_Shape aShape;" EOL
- "" EOL
- " // initialize aShape" EOL
- " // aShape = ..." EOL
- "" EOL
- " // create a textured presentation object for aShape" EOL
- " Handle(AIS_Shape) aTShape = new AIS_Shape(aShape);" EOL
- "" EOL
- " TCollection_AsciiString aTFileName;" EOL
- "" EOL
- " // initialize aTFileName with an existing texture file name" EOL
- " // (gif, bmp, xwd, rgb, and other formats are supported)" EOL
- " // OR with an integer value string (max = Graphic3d_Texture2D::NumberOfTexturesExt())" EOL
- " // which will indicate use of predefined texture of this number" EOL
- " // aTFileName = ..." EOL
- "" EOL
- " aTShape->Attributes()->SetShadingAspect (new Prs3d_ShadingAspect());" EOL
- " Handle(Graphic3d_Texture2Dmanual) aTexture = new Graphic3d_Texture2Dmanual (aTFileName);" EOL
- " aTShape->Attributes()->ShadingAspect()->Aspect()->SetTextureMap (aTexture);" EOL
- " aTShape->Attributes()->ShadingAspect()->Aspect()->SetTextureMapOn();" EOL);
-// CString text(Message.ToCString());
- getDocument()->ClearDialog();
- getDocument()->SetDialogTitle("Change face color");
- getDocument()->AddTextInDialog(Message);
-}
-
-//////////////////////////////////////////////////////////////////////
-// Sample functions
-//////////////////////////////////////////////////////////////////////
-//================================================================
-// Function : TexturesExt_Presentation::Texturize
-// display an AIS_Shape based on a given shape with texture with given filename
-// filename can also be an integer value ("2", "5", etc.), in this case
-// a predefined texture from Graphic3d_NameOfTexture2D with number = this value
-// is loaded.
-//================================================================
-Handle(AIS_Shape) TexturesExt_Presentation::Texturize(const TopoDS_Shape& aShape,
- TCollection_AsciiString aTFileName,
- Standard_Real toScaleU,
- Standard_Real toScaleV,
- Standard_Real toRepeatU,
- Standard_Real toRepeatV,
- Standard_Real originU,
- Standard_Real originV)
-{
- // create a textured presentation object for aShape
- Handle(AIS_Shape) aTShape = new AIS_Shape(aShape);
- TCollection_AsciiString TFileName;
- // load texture from file if it is not an integer value
- // integer value indicates a number of texture in predefined TexturesExt enumeration
- CString anOCCTDataPathValue;
- anOCCTDataPathValue.GetEnvironmentVariable(L"CSF_OCCTDataPath");
- CString initfile = (anOCCTDataPathValue + L"\\images\\");
- if (!aTFileName.IsIntegerValue())
- {
- initfile += aTFileName.ToCString();
- }
-
- if (!aTShape->Attributes()->HasOwnShadingAspect())
- {
- aTShape->Attributes()->SetShadingAspect (new Prs3d_ShadingAspect());
- }
- aTShape->Attributes()->ShadingAspect()->Aspect()->SetTextureMap (new Graphic3d_Texture2Dmanual (TCollection_AsciiString ((const wchar_t* )initfile)));
- aTShape->Attributes()->ShadingAspect()->Aspect()->SetTextureMapOn();
-
- // do other initialization of AIS_Shape
- aTShape->SetTextureScaleUV (gp_Pnt2d ( toScaleU, toScaleV));
- aTShape->SetTextureRepeatUV(gp_Pnt2d (toRepeatU, toRepeatV));
- aTShape->SetTextureOriginUV(gp_Pnt2d ( originU, originV));
-
- aTShape->SetDisplayMode(AIS_Shaded);
-
- return aTShape;
-}
-
-
-//================================================================
-// Function : TexturesExt_Presentation::loadShape
-// loads a shape from a given brep file from data dir into a given TopoDS_Shape object
-//================================================================
-Standard_Boolean TexturesExt_Presentation::loadShape(TopoDS_Shape& aShape,
- TCollection_AsciiString aFileName)
-{
- // create a TopoDS_Shape -> read from a brep file
- CString anOCCTDataPathValue;
- anOCCTDataPathValue.GetEnvironmentVariable(L"CSF_OCCTDataPath");
- CString initfile = (anOCCTDataPathValue + L"\\occ\\" + aFileName.ToCString());
-
- std::filebuf aFileBuf;
- std::istream aStream (&aFileBuf);
- if (!aFileBuf.open (initfile, std::ios::in))
- {
- initfile += L" was not found. The sample can not be shown.";
- getDocument()->UpdateResultMessageDlg ("Textured Shape", initfile);
- return Standard_False;
- }
-
- BRep_Builder aBld;
- BRepTools::Read (aShape, aStream, aBld);
- if (aShape.IsNull())
- {
- initfile += " is invalid. The sample can not be shown.";
- getDocument()->UpdateResultMessageDlg ("Textured Shape", initfile);
- return Standard_False;
- }
-
- return Standard_True;
-}
-
-//================================================================
-// Function : lightsOnOff
-// Purpose : 6 lights are used for a brighter demonstration of textured shapes
-// call lightsOnOff(false) before showing normal shape
-// call lightsOnOff(true) before showing textured shape
-//================================================================
-void TexturesExt_Presentation::lightsOnOff(Standard_Boolean isOn)
-{
- static Handle(V3d_Light) aLight1 = new V3d_DirectionalLight(V3d_XnegYposZneg);
- static Handle(V3d_Light) aLight2 = new V3d_DirectionalLight(V3d_XnegYnegZpos);
- static Handle(V3d_Light) aLight3 = new V3d_DirectionalLight(V3d_XposYnegZpos);
- static Handle(V3d_Light) aLight4 = new V3d_DirectionalLight(V3d_XnegYnegZneg);
- static Handle(V3d_Light) aLight5 = new V3d_DirectionalLight(V3d_XnegYposZpos);
- static Handle(V3d_Light) aLight6 = new V3d_DirectionalLight(V3d_XposYposZpos);
-
- if (isOn)
- {
- getViewer()->SetLightOn(aLight1);
- getViewer()->SetLightOn(aLight2);
- getViewer()->SetLightOn(aLight3);
- getViewer()->SetLightOn(aLight4);
- getViewer()->SetLightOn(aLight5);
- getViewer()->SetLightOn(aLight6);
- }
- else
- {
- getViewer()->SetLightOff(aLight1);
- getViewer()->SetLightOff(aLight2);
- getViewer()->SetLightOff(aLight3);
- getViewer()->SetLightOff(aLight4);
- getViewer()->SetLightOff(aLight5);
- getViewer()->SetLightOff(aLight6);
- }
-}
-
-//================================================================
-// Function : TexturesExt_Presentation::sampleBottle
-// Purpose :
-//================================================================
-void TexturesExt_Presentation::sampleBottle()
-{
- TopoDS_Shape aShape;
- if (!loadShape(aShape, "bottle.brep"))
- return;
-
- // resize and move the shape to the center of the viewer
-gp_Trsf aTrsf1, aTrsf2;
-aTrsf1.SetScale(gp_Pnt(0,0,0), 0.8);
-aTrsf2.SetTranslation(gp_Pnt(0,0,0),gp_Pnt(0,0,-20));
-aTrsf1.Multiply(aTrsf2);
-BRepBuilderAPI_Transform Transformer(aTrsf1);
-Transformer.Perform(aShape);
-aShape = Transformer.Shape();
-
- TopTools_IndexedMapOfShape aFaces;
- TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
-
- // display original shape in shaded display mode
- Handle(AIS_Shape) aShapeIO = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
- getAISContext()->SetDisplayMode(aShapeIO, AIS_Shaded, Standard_False);
- // Set increased polygon offset for the main shape to avoid depth collision with textured faces
- aShapeIO->SetPolygonOffsets(Aspect_POM_Fill, 1.5, 0.5);
- DISP(aShapeIO);
-
- Handle(AIS_Shape) aTFace1 = Texturize(aFaces(16), "carrelage1.gif", 1, 1, 3, 2);
- DISP(aTFace1);
-
- Handle(AIS_Shape) aTFace2 = Texturize(aFaces(21), "carrelage1.gif", 1, 1, 3, 2);
- DISP(aTFace2);
-
- getViewer()->Update();
-}
-
-
-//================================================================
-// Function : TexturesExt_Presentation::sampleLand
-// Purpose :
-//================================================================
-void TexturesExt_Presentation::sampleTerrain()
-{
- TopoDS_Shape aShape;
- if (!loadShape(aShape, "terrain.brep"))
- return;
-
- // a part of the landscape is textured
- TopTools_IndexedMapOfShape aFaces;
- TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
-
-// TopLoc_Location aLoc;
-// Handle(Geom_Surface) aSur = BRep_Tool::Surface(TopoDS::Face(aFaces(1)), aLoc);
-// Standard_Real u1,u2,v1,v2;
-// aSur->Bounds(u1,u2,v1,v2);
-// gp_Pnt aPnt = aSur->Value(u1, v1);
- gp_Pnt aPnt(82100,80300,10940);// point at u1,v1
- // resize and move the shape to the center of the viewer
-
- gp_Trsf aMoveTrsf;
- gp_Ax3 New(gp_Pnt(-30,-30, 0),gp_Dir(0,0,1));
- gp_Ax3 aCurrent(aPnt,gp_Dir(0,0,1));
- aMoveTrsf.SetDisplacement(aCurrent, New);
-
- gp_Trsf aScaleTrsf;
- aScaleTrsf.SetScale(aPnt,0.0075);
-
- BRepBuilderAPI_Transform aTransform(aMoveTrsf*aScaleTrsf);
-
- aTransform.Perform(aFaces(1));
- aShape = aTransform;
-
- getAISContext()->Display (Texturize (aShape, "terrain.gif"), Standard_True);
-}
-
-
-//================================================================
-// Function : moveScale
-// Purpose : move a shape a little left and scale it to 15%.
-//================================================================
-static void moveScale(TopoDS_Shape& aShape)
-{
- gp_Trsf aMoveTrsf;
- gp_Ax3 New(gp_Pnt(-30,-30, -10),gp_Dir(0,0,1));
- gp_Ax3 Current(gp_Pnt(0,0,0),gp_Dir(0,0,1));
- aMoveTrsf.SetDisplacement(Current, New);
-
- gp_Trsf aScaleTrsf;
- aScaleTrsf.SetScale(gp_Pnt(0,0,0),0.15);
-
- BRepBuilderAPI_Transform aTransform(aMoveTrsf*aScaleTrsf);
-
- aTransform.Perform(aShape);
- aShape = aTransform;
-}
-
-//================================================================
-// Function : TexturesExt_Presentation::sampleKitchen
-// Purpose : kitchen with texturized items in it.
-//================================================================
-void TexturesExt_Presentation::sampleKitchen()
-{
- TopoDS_Shape aShape;
-
- if (!loadShape(aShape, "Room.brep"))
- return;
-
- gp_Trsf aTrsf;
- gp_Ax3 NewCoordSystem (gp_Pnt(-1,-1, -1),gp_Dir(0,0,1));
- gp_Ax3 CurrentCoordSystem(gp_Pnt(0,0,0),gp_Dir(0,0,1));
- aTrsf.SetDisplacement(CurrentCoordSystem, NewCoordSystem);
- aShape.Location(TopLoc_Location(aTrsf));
-
- moveScale(aShape);
-
- // draw kitchen room without one wall (to better see the insides)
- TopTools_IndexedMapOfShape aFaces;
- TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
- Standard_Integer nbFaces = aFaces.Extent();
-
- // create a wooden kitchen floor
- // the floor's face will be textured with texture from chataignier.gif
- DISP(Texturize(aFaces(5),"plancher.gif",1,1,2,1));
-
- // texturize other faces of the room with texture from wallpaper.gif (walls)
- DISP(Texturize(aFaces(1),"wallpaper.gif",1,1,8,6));
- DISP(Texturize(aFaces(3),"wallpaper.gif",1,1,8,6));
- DISP(Texturize(aFaces(4),"wallpaper.gif",1,1,8,6));
-
-// DISP(drawShape(aFaces(1), Quantity_NOC_LIGHTPINK, Standard_False));
-// DISP(drawShape(aFaces(3), Quantity_NOC_LIGHTPINK, Standard_False));
-// DISP(drawShape(aFaces(4), Quantity_NOC_LIGHTPINK, Standard_False));
-
- // texturize furniture items with "wooden" texture
- if (loadShape(aShape, "MODERN_Table_1.brep"))
- {
- moveScale(aShape);
- DISP(Texturize(aShape, "chataignier.gif"));
- }
- if (loadShape(aShape, "MODERN_Chair_1.brep"))
- {
- moveScale(aShape);
- DISP(Texturize(aShape, "chataignier.gif"));
- }
- if (loadShape(aShape, "MODERN_Cooker_1.brep"))
- {
- moveScale(aShape);
-
- aFaces.Clear();
- TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
- nbFaces = aFaces.Extent();
-
- for (Standard_Integer i = 1; i <= nbFaces; i++)
- {
- if (i >= 59)
- DISP(drawShape(aFaces(i), Graphic3d_NOM_STEEL, Standard_False));
- else if (i >= 29)
- DISP(drawShape(aFaces(i), Graphic3d_NOM_ALUMINIUM, Standard_False));
- else if (i == 28)
- DISP(Texturize(aFaces(i), "cookerplate.gif"));
- else
- DISP(Texturize(aFaces(i), "chataignier.gif"));
- }
- }
- if (loadShape(aShape, "MODERN_Cooker_1_opened.brep"))
- {
- moveScale(aShape);
- DISP(Texturize(aShape, "chataignier.gif"));
- }
- if (loadShape(aShape, "MODERN_Exhaust_1.brep"))
- {
- moveScale(aShape);
- DISP(drawShape(aShape, Graphic3d_NOM_STONE, Standard_False));
- }
- if (loadShape(aShape, "MODERN_MVCooker_1.brep"))
- {
- moveScale(aShape);
- DISP(drawShape(aShape, Graphic3d_NOM_SILVER, Standard_False));
- }
- if (loadShape(aShape, "MODERN_MVCooker_1_opened.brep"))
- {
- moveScale(aShape);
- DISP(drawShape(aShape, Graphic3d_NOM_SILVER, Standard_False));
- }
- if (loadShape(aShape, "MODERN_Sink_1.brep"))
- {
- moveScale(aShape);
-
- aFaces.Clear();
- TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
- nbFaces = aFaces.Extent();
-
- for (Standard_Integer i = 1; i <= nbFaces; i++)
- {
- if (i < 145)
- DISP(drawShape(aFaces(i), Graphic3d_NOM_ALUMINIUM, Standard_False));
- else if (i == 145)
- DISP(Texturize(aFaces(i), "cookerplate.gif"));
- else
- DISP(Texturize(aFaces(i), "chataignier.gif"));
- }
- }
- if (loadShape(aShape, "MODERN_Sink_1_opened.brep"))
- {
- moveScale(aShape);
- DISP(Texturize(aShape, "chataignier.gif"));
- }
- if (loadShape(aShape, "MODERN_Refrigerator_1.brep"))
- {
- moveScale(aShape);
- DISP(drawShape(aShape, Graphic3d_NOM_CHROME, Standard_False));
- }
- if (loadShape(aShape, "MODERN_Refrigerator_1_opened.brep"))
- {
- moveScale(aShape);
- DISP(drawShape(aShape, Graphic3d_NOM_CHROME, Standard_False));
- }
-
- getViewer()->Update();
-}
\ No newline at end of file
diff --git a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h
deleted file mode 100755
index 1c67a95be5..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// TexturesExt_Presentation.h: interface for the TexturesExt_Presentation class.
-// Creation of textural presentation of shape
-//////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_TexturesExt_Presentation_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
-#define AFX_TexturesExt_Presentation_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-#include "OCCDemo_Presentation.h"
-#include
-class TopoDS_Shape;
-class TCollection_AsciiString;
-
-class TexturesExt_Presentation : public OCCDemo_Presentation
-{
-public:
- // Construction
- TexturesExt_Presentation();
-
-public:
- // Iteration on samples
- virtual void DoSample();
- // one phase of iterations
-
- virtual void Init();
-
-private:
- // display an AIS_Shape based on a given shape with texture with given filename
- // filename can also be an integer value ("2", "5", etc.), in this case
- // a predefined texture from Graphic3d_NameOfTexture2D with number = this value
- // is loaded.
- Handle(AIS_Shape) Texturize(
- const TopoDS_Shape& aShape, TCollection_AsciiString aTFileName,
- Standard_Real toScaleU=1.0, Standard_Real toScaleV=1.0,
- Standard_Real toRepeatU=1.0, Standard_Real toRepeatV=1.0,
- Standard_Real originU=0.0, Standard_Real originV=0.0);
-
- // loads a shape from a given brep file from data dir into a given TopoDS_Shape object
- Standard_Boolean loadShape(TopoDS_Shape&, TCollection_AsciiString);
-
- // turns 6 diretional lights on/off for brighter demonstration
- void lightsOnOff(Standard_Boolean isOn);
-
- // Sample functions
- void sampleBottle();
- void sampleTerrain();
- void sampleKitchen();
-
-private:
- // Array of pointers to sample functions
- typedef void (TexturesExt_Presentation::*PSampleFuncType)();
- static const PSampleFuncType SampleFuncs[];
-
-};
-
-#endif // !defined(AFX_TexturesExt_Presentation_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp
deleted file mode 100755
index 6db2006ab1..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp
+++ /dev/null
@@ -1,291 +0,0 @@
-// TrihedronDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-#include "Viewer3dView.h"
-#include "TrihedronDlg.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-void round(double &value, unsigned char digits)
-{
-char neg = 1;
-if(value < 0){
-neg = (-1);
-value *= (-1);
-}
-double inc(1.0);
-while(digits){ inc*=10; --digits; }
-double dg(value*inc*100);
-value = floor(floor(dg)/100);
-if((dg-(value*100)) > 49.9) value+=1;
-value = (value*neg)/inc;
-}
-
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrihedronDlg dialog
-
-
-//CTrihedronDlg::CTrihedronDlg(CWnd* pParent /*=NULL*/)
- //: CDialog(CTrihedronDlg::IDD, pParent)
-
-CTrihedronDlg::CTrihedronDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
- : CDialog(CTrihedronDlg::IDD, pParent)
-
-{
- //{{AFX_DATA_INIT(CTrihedronDlg)
- m_TrihedronScale = 0.1;
- myDoc=pDoc;
- myCurrent_V3d_View = Current_V3d_View;
- /*m_*/Color = Quantity_NOC_WHITE;
- /*m_*/Position = Aspect_TOTP_LEFT_UPPER;
-
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
-}
-
-
-void CTrihedronDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CTrihedronDlg)
- DDX_Control(pDX, IDC_COMBOTRIHEDRPOS, m_ComboTrihedronPosList);
- DDX_Control(pDX, IDC_COMBOTRIHEDRCOLOR, m_ComboTrihedronColorList);
- DDX_Text(pDX, IDC_EDITTRIHEDRSCALE, m_TrihedronScale);
- DDV_MinMaxDouble(pDX, m_TrihedronScale, 0., 1.);
- DDX_Control(pDX, IDC_SPINTRIHEDRSCALE, m_SpinTrihedronScale);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(CTrihedronDlg, CDialog)
- //{{AFX_MSG_MAP(CTrihedronDlg)
- ON_CBN_SELCHANGE(IDC_COMBOTRIHEDRCOLOR, OnSelchangeCombotrihedrcolor)
- ON_CBN_SELCHANGE(IDC_COMBOTRIHEDRPOS, OnSelchangeCombotrihedrpos)
- ON_EN_CHANGE(IDC_EDITTRIHEDRSCALE, OnChangeEdittrihedrscale)
- ON_NOTIFY(UDN_DELTAPOS, IDC_SPINTRIHEDRSCALE, OnDeltaposSpintrihedrscale)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-
-
-
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrihedronDlg message handlers
-
-void CTrihedronDlg::OnSelchangeCombotrihedrcolor()
-{
- UpdateData(TRUE);
- int a = m_ComboTrihedronColorList.GetCurSel();
- if( a==0)
- Color=Quantity_NOC_BLACK;
- else if(a==1)
- Color=Quantity_NOC_MATRABLUE;
- else if(a==2)
- Color=Quantity_NOC_MATRAGRAY;
-// else if(a==3)
-// Color=Quantity_NOC_ALICEBLUE;
- else if(a==3)
- Color=Quantity_NOC_ANTIQUEWHITE;
- //else if(a==4)
- // Color=Quantity_NOC_BISQUE;
-
- UpdateData(FALSE);
-
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- myCurrent_V3d_View->Update();
-
-}
-
-void CTrihedronDlg::OnSelchangeCombotrihedrpos()
-{
- UpdateData(TRUE);
- int b = m_ComboTrihedronPosList.GetCurSel();
-
- if( b==0)
- Position=Aspect_TOTP_CENTER;
- else if(b==1)
- Position=Aspect_TOTP_LEFT_LOWER;
- else if(b==2)
- Position=Aspect_TOTP_LEFT_UPPER;
- else if(b==3)
- Position=Aspect_TOTP_RIGHT_LOWER;
- else if(b==4)
- Position=Aspect_TOTP_RIGHT_UPPER;
-
- UpdateData(FALSE);
-
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- myCurrent_V3d_View->Update();
-
-}
-
-
-BOOL CTrihedronDlg::OnInitDialog()
-{
- CDialog::OnInitDialog();
- UpdateData(TRUE);
-
-// Initializing the ComboBox : Position
- m_ComboTrihedronPosList.InsertString(-1, L"Center");
- m_ComboTrihedronPosList.InsertString(-1, L"Left Lower");
- m_ComboTrihedronPosList.InsertString(-1, L"Left Upper");
- m_ComboTrihedronPosList.InsertString(-1, L"Right Lower");
- m_ComboTrihedronPosList.InsertString(-1, L"Right Upper");
-
-// Initializing the ComboBox : Color
- /*
- m_ComboTrihedronColorList.InsertString(-1, L"BLACK");
- m_ComboTrihedronColorList.InsertString(-1, L"MATRABLUE");
- m_ComboTrihedronColorList.InsertString(-1, L"MATRAGRAY");
- m_ComboTrihedronColorList.InsertString(-1, L"ALICE BLUE");
- m_ComboTrihedronColorList.InsertString(-1, L"WHITE");
- m_ComboTrihedronColorList.InsertString(-1, L"BISQUE");
- */
- m_ComboTrihedronColorList.InsertString(-1, L"Black");
- m_ComboTrihedronColorList.InsertString(-1, L"Blue");
- m_ComboTrihedronColorList.InsertString(-1, L"Gray");
- m_ComboTrihedronColorList.InsertString(-1, L"White");
- //m_ComboTrihedronColorList.InsertString(-1, L"Bisque");
-
-
-
- UpdateData(FALSE);
-
-/* if (CDemoVisualizationView::slinitialisation())
- {
- AfxMessageBox("debut");
-
- if(m_Position==Aspect_TOTP_CENTER)
- m_ComboTrihedronPosList.SetCurSel(0);
- else if(m_Position==Aspect_TOTP_LEFT_LOWER)
- m_ComboTrihedronPosList.SetCurSel(1);
- else if(m_Position==Aspect_TOTP_LEFT_UPPER)
- m_ComboTrihedronPosList.SetCurSel(2);
- else if(m_Position==Aspect_TOTP_RIGHT_LOWER)
- m_ComboTrihedronPosList.SetCurSel(3);
- else if(m_Position==Aspect_TOTP_RIGHT_UPPER)
- m_ComboTrihedronPosList.SetCurSel(4);
-
- if(m_Color==Quantity_NOC_BLACK)
- m_ComboTrihedronColorList.SetCurSel(0);
- else if(m_Color==Quantity_NOC_MATRABLUE)
- m_ComboTrihedronColorList.SetCurSel(1);
- else if(m_Color==Quantity_NOC_MATRAGRAY)
- m_ComboTrihedronColorList.SetCurSel(2);
- else if(m_Color==Quantity_NOC_ALICEBLUE)
- m_ComboTrihedronColorList.SetCurSel(3);
- else if(m_Color==Quantity_NOC_WHITE)
- m_ComboTrihedronColorList.SetCurSel(4);
- else if(m_Color==Quantity_NOC_BISQUE)
- m_ComboTrihedronColorList.SetCurSel(5);
- Position = m_Position;
- Color = m_Color;
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- myCurrent_V3d_View->Update();
-
- Initialisation = Standard_False;
-
- }
- else
- {*/
- if(Position==Aspect_TOTP_CENTER)
- m_ComboTrihedronPosList.SetCurSel(0);
- else if(Position==Aspect_TOTP_LEFT_LOWER)
- m_ComboTrihedronPosList.SetCurSel(1);
- else if(Position==Aspect_TOTP_LEFT_UPPER)
- m_ComboTrihedronPosList.SetCurSel(2);
- else if(Position==Aspect_TOTP_RIGHT_LOWER)
- m_ComboTrihedronPosList.SetCurSel(3);
- else if(Position==Aspect_TOTP_RIGHT_UPPER)
- m_ComboTrihedronPosList.SetCurSel(4);
-
- if(Color==Quantity_NOC_BLACK)
- m_ComboTrihedronColorList.SetCurSel(0);
- else if(Color==Quantity_NOC_MATRABLUE)
- m_ComboTrihedronColorList.SetCurSel(1);
- else if(Color==Quantity_NOC_MATRAGRAY)
- m_ComboTrihedronColorList.SetCurSel(2);
-// else if(Color==Quantity_NOC_ALICEBLUE)
-// m_ComboTrihedronColorList.SetCurSel(3);
- else if(Color==Quantity_NOC_WHITE)
- m_ComboTrihedronColorList.SetCurSel(3);
- //else if(Color==Quantity_NOC_BISQUE)
- // m_ComboTrihedronColorList.SetCurSel(4);
-
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- myCurrent_V3d_View->Update();
-// }
-
-
-
-
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
-}
-
-
-void CTrihedronDlg::OnDeltaposSpintrihedrscale(NMHDR* pNMHDR, LRESULT* pResult)
-{
- NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR;
-
- if (pNMUpDown->iDelta >= 1)
- pNMUpDown->iDelta = 1;
- else
- pNMUpDown->iDelta = -1;
-
- if ((pNMUpDown->iDelta > 0) && (m_TrihedronScale > 0))
- m_TrihedronScale = m_TrihedronScale - (pNMUpDown->iDelta)*0.01;
-
- if ((pNMUpDown->iDelta < 0) && (m_TrihedronScale < 1))
- m_TrihedronScale = m_TrihedronScale - (pNMUpDown->iDelta)*0.01;
-
-
- m_TrihedronScale = m_TrihedronScale*100;
- m_TrihedronScale = floor(m_TrihedronScale );
- m_TrihedronScale = m_TrihedronScale /100;
-
-// round(m_TrihedronScale,2);
-
- if (fabs(m_TrihedronScale) < 0.001)
- m_TrihedronScale =0;
- UpdateData(FALSE);
-
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- *pResult = 0;
-
- myCurrent_V3d_View->Update();
-
-}
-
-void CTrihedronDlg::OnChangeEdittrihedrscale()
-{
- if (UpdateData()){
- myCurrent_V3d_View->TriedronDisplay(Position, Color, m_TrihedronScale);
- myCurrent_V3d_View->Update();
- }
-}
-
-void CTrihedronDlg::OnCancel()
-{
- myCurrent_V3d_View->TriedronErase();
- myCurrent_V3d_View->Update();
- myDoc -> SetMyStaticTrihedronAxisIsDisplayed(FALSE);
-// Initialisation = Standard_True;
- CDialog::OnCancel();
-}
-
-void CTrihedronDlg::OnOK()
-{
- myDoc -> SetMyStaticTrihedronAxisIsDisplayed(TRUE);
- CDialog::OnOK();
-}
-
diff --git a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h
deleted file mode 100755
index bfe4056f9d..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h
+++ /dev/null
@@ -1,82 +0,0 @@
-#if !defined(AFX_TRIHEDRONDLG_H__1917B30F_3102_11D6_BD0D_00A0C982B46F__INCLUDED_)
-#define AFX_TRIHEDRONDLG_H__1917B30F_3102_11D6_BD0D_00A0C982B46F__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-// TrihedronDlg.h : header file
-//
-
-#include "Viewer3dDoc.h"
-
-#include
-#include
-
-#include "..\res\resource.h"
-/////////////////////////////////////////////////////////////////////////////
-// CTrihedronDlg dialog
-
-class CTrihedronDlg : public CDialog
-{
-// Construction
-public:
- CTrihedronDlg(CWnd* pParent = NULL); // standard constructor
- CTrihedronDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL); // standard constructor
-
-
-// Dialog Data
- //{{AFX_DATA(CTrihedronDlg)
- enum { IDD = IDD_TRIHEDRON };
- CComboBox m_ComboTrihedronPosList;
- CComboBox m_ComboTrihedronColorList;
- double m_TrihedronScale;
- CSpinButtonCtrl m_SpinTrihedronScale;
- Quantity_NameOfColor m_Color;
- Aspect_TypeOfTriedronPosition m_Position;
-
-
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CTrihedronDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(CTrihedronDlg)
- afx_msg void OnSelchangeCombotrihedrcolor();
- afx_msg void OnSelchangeCombotrihedrpos();
- afx_msg void OnChangeEdittrihedrscale();
- afx_msg void OnDeltaposSpintrihedrscale(NMHDR* pNMHDR, LRESULT* pResult);
- virtual BOOL OnInitDialog();
- virtual void OnCancel();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-private:
-
- Handle(V3d_View) myCurrent_V3d_View;
- CViewer3dDoc* myDoc;
- Quantity_NameOfColor Color ;
- Aspect_TypeOfTriedronPosition Position;
-/*
-public:
-
-static Standard_Boolean Initialisation;
-static Standard_Boolean GetInitialisation() {return Initialisation;};
-*/
-
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_TRIHEDRONDLG_H__1917B30F_3102_11D6_BD0D_00A0C982B46F__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.cpp b/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.cpp
deleted file mode 100755
index 36834f8b2d..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-// Viewer3dApp.cpp : Defines the class behaviors for the application.
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-
-#include
-#include
-#include "Viewer3dDoc.h"
-#include "Viewer3dView.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dApp
-
-BEGIN_MESSAGE_MAP(CViewer3dApp, CWinApp)
- //{{AFX_MSG_MAP(CViewer3dApp)
- ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- // Standard file based document commands
- ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
- ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dApp construction
-
-CViewer3dApp::CViewer3dApp() : OCC_App()
-{
- SampleName = "Viewer3d"; //for about dialog
- SetSamplePath (L"..\\..\\03_Viewer3d");
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// The one and only CViewer3dApp object
-
-CViewer3dApp theApp;
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dApp initialization
-
-BOOL CViewer3dApp::InitInstance()
-{
- AfxEnableControlContainer();
-
- // Standard initialization
- // If you are not using these features and wish to reduce the size
- // of your final executable, you should remove from the following
- // the specific initialization routines you do not need.
-
- // Change the registry key under which our settings are stored.
- // You should modify this string to be something appropriate
- // such as the name of your company or organization.
- SetRegistryKey(_T("Local AppWizard-Generated Applications"));
-
- LoadStdProfileSettings(); // Load standard INI file options (including MRU)
-
- // Register the application's document templates. Document templates
- // serve as the connection between documents, frame windows and views.
-
- CMultiDocTemplate* pDocTemplate;
- pDocTemplate = new CMultiDocTemplate(
- IDR_3DTYPE,
- RUNTIME_CLASS(CViewer3dDoc),
- RUNTIME_CLASS(OCC_3dChildFrame), // custom MDI child frame
- RUNTIME_CLASS(CViewer3dView));
- AddDocTemplate(pDocTemplate);
-
- // create main MDI Frame window
- OCC_MainFrame* pMainFrame = new OCC_MainFrame(with_AIS_TB);
- if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
- return FALSE;
- m_pMainWnd = pMainFrame;
-
- // Parse command line for standard shell commands, DDE, file open
- CCommandLineInfo cmdInfo;
- ParseCommandLine(cmdInfo);
-
- // Dispatch commands specified on the command line
- if (!ProcessShellCommand(cmdInfo))
- return FALSE;
-
- // The main window has been initialized, so show and update it.
- pMainFrame->ShowWindow(m_nCmdShow);
- pMainFrame->UpdateWindow();
-
- return TRUE;
-}
-
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dApp commands
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.h b/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.h
deleted file mode 100755
index 31459e5184..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dApp.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Viewer3dApp.h : main header file for the Viewer3d application
-//
-
-#if !defined(AFX_VIEWER3DAPP_H__3045338E_3E75_11D7_8611_0060B0EE281E__INCLUDED_)
-#define AFX_VIEWER3DAPP_H__3045338E_3E75_11D7_8611_0060B0EE281E__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include
-
-class CViewer3dApp : public OCC_App
-{
-public:
-
- CViewer3dApp();
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CViewer3dApp)
- public:
- virtual BOOL InitInstance();
- //}}AFX_VIRTUAL
-
- DECLARE_MESSAGE_MAP()
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_VIEWER3DAPP_H__3045338E_3E75_11D7_8611_0060B0EE281E__INCLUDED_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp
deleted file mode 100755
index a29bfdc869..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp
+++ /dev/null
@@ -1,1039 +0,0 @@
-// Viewer3dDoc.cpp : implementation of the CViewer3dDoc class
-//
-
-#include "stdafx.h"
-#include "Viewer3dApp.h"
-#include "BoxRadius.h"
-#include "DlgIsos.h"
-
-#include "Viewer3dDoc.h"
-#include "Viewer3dView.h"
-#include "OffsetDlg.h"
-#include "ResultDialog.h"
-#include "User_Cylinder.hxx"
-
-#include "AIS_Trihedron.hxx"
-#include "Geom_Axis2Placement.hxx"
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dDoc
-
-IMPLEMENT_DYNCREATE(CViewer3dDoc, CDocument)
-
-BEGIN_MESSAGE_MAP(CViewer3dDoc, OCC_3dDoc)
- //{{AFX_MSG_MAP(CViewer3dDoc)
- ON_COMMAND(ID_BOX, OnBox)
- ON_COMMAND(ID_Cylinder, OnCylinder)
- ON_COMMAND(ID_SPHERE, OnSphere)
- ON_COMMAND(ID_ERASEALL, OnRemoveAll)
- ON_COMMAND(ID_NBISOS, OnNbisos)
- ON_COMMAND(ID_FACES, OnFaces)
- ON_COMMAND(ID_EDGES, OnEdges)
- ON_COMMAND(ID_VERTICES, OnVertices)
- ON_COMMAND(ID_NEUTRAL, OnNeutral)
- ON_COMMAND(ID_USERCYLINDER_CHANGEFACECOLOR, OnUsercylinderChangefacecolor)
- ON_COMMAND(ID_FILLET3D, OnFillet3d)
- ON_COMMAND(ID_CIRCLE, OnCircle)
- ON_COMMAND(ID_LINE, OnLine)
- ON_COMMAND(ID_OVERLAPPED_BOX, OnOverlappedBox)
- ON_COMMAND(ID_OVERLAPPED_CYLINDER, OnOverlappedCylinder)
- ON_COMMAND(ID_OVERLAPPED_SPHERE, OnOverlappedSphere)
- ON_COMMAND(ID_POLYGON_OFFSETS, OnPolygonOffsets)
- ON_UPDATE_COMMAND_UI(ID_POLYGON_OFFSETS, OnUpdatePolygonOffsets)
- ON_UPDATE_COMMAND_UI(ID_Cylinder, OnUpdateCylinder)
- ON_UPDATE_COMMAND_UI(ID_SPHERE, OnUpdateSphere)
- ON_UPDATE_COMMAND_UI(ID_BOX, OnUpdateBox)
- ON_UPDATE_COMMAND_UI(ID_OVERLAPPED_CYLINDER, OnUpdateOverlappedCylinder)
- ON_UPDATE_COMMAND_UI(ID_OVERLAPPED_SPHERE, OnUpdateOverlappedSphere)
- ON_UPDATE_COMMAND_UI(ID_OVERLAPPED_BOX, OnUpdateOverlappedBox)
- ON_COMMAND(ID_OBJECT_REMOVE, OnObjectRemove)
- ON_COMMAND(ID_OBJECT_ERASE, OnObjectErase)
- ON_COMMAND(ID_OBJECT_DISPLAYALL, OnObjectDisplayall)
- ON_COMMAND(ID_OBJECT_COLORED_MESH, OnObjectColoredMesh)
- ON_UPDATE_COMMAND_UI(ID_OBJECT_COLORED_MESH, OnUpdateObjectColoredMesh)
- ON_UPDATE_COMMAND_UI(ID_OBJECT_SHADING, OnUpdateObjectShading)
- ON_UPDATE_COMMAND_UI(ID_OBJECT_WIREFRAME, OnUpdateObjectWireframe)
- ON_COMMAND(ID_OPTIONS_TRIHEDRON_DYNAMIC_TRIHEDRON, OnOptionsTrihedronDynamicTrihedron)
- ON_UPDATE_COMMAND_UI(ID_OPTIONS_TRIHEDRON_DYNAMIC_TRIHEDRON, OnUpdateOptionsTrihedronDynamicTrihedron)
- ON_UPDATE_COMMAND_UI(ID_OPTIONS_TRIHEDRON_STATIC_TRIHEDRON, OnUpdateOptionsTrihedronStaticTrihedron)
- ON_COMMAND(ID_OBJECT_MATERIAL, OnObjectMaterial)
- ON_COMMAND(ID_TEXTURE_ON, OnTextureOn)
- ON_COMMAND(ID_BUTTONNext, OnBUTTONNext)
- ON_COMMAND(ID_BUTTONStart, OnBUTTONStart)
- ON_COMMAND(ID_BUTTONRepeat, OnBUTTONRepeat)
- ON_COMMAND(ID_BUTTONPrev, OnBUTTONPrev)
- ON_COMMAND(ID_BUTTONEnd, OnBUTTONEnd)
- ON_UPDATE_COMMAND_UI(ID_BUTTONNext, OnUpdateBUTTONNext)
- ON_UPDATE_COMMAND_UI(ID_BUTTONPrev, OnUpdateBUTTONPrev)
- ON_UPDATE_COMMAND_UI(ID_BUTTONStart, OnUpdateBUTTONStart)
- ON_UPDATE_COMMAND_UI(ID_BUTTONRepeat, OnUpdateBUTTONRepeat)
- ON_UPDATE_COMMAND_UI(ID_BUTTONEnd, OnUpdateBUTTONEnd)
- ON_COMMAND(ID_FILE_NEW, OnFileNew)
- ON_COMMAND(ID_DUMP_VIEW, OnDumpView)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dDoc construction/destruction
-
-CViewer3dDoc::CViewer3dDoc()
-:OCC_3dDoc()
-{
- myCylinder.Nullify();
- mySphere.Nullify();
- myBox.Nullify();
- myOverlappedCylinder.Nullify();
- myOverlappedSphere.Nullify();
- myOverlappedBox.Nullify();
- myOffsetDlg = NULL;
- myStaticTrihedronAxisIsDisplayed = FALSE;
- myState = -1;
-
- isTextureSampleStarted = FALSE;
-
- myPresentation = OCCDemo_Presentation::Current;
- myPresentation->SetDocument(this);
-
-
- myAISContext->DefaultDrawer()->ShadingAspect()->SetColor(Quantity_NOC_CHARTREUSE1);
- myAISContext->DefaultDrawer()->ShadingAspect()->SetMaterial(Graphic3d_NOM_SILVER);
-
- strcpy_s(myDataDir, "Data");
- strcpy_s(myLastPath, ".");
-
- /*
- Handle(AIS_Trihedron) myTrihedron;
- Handle(Geom_Axis2Placement) myTrihedronAxis=new Geom_Axis2Placement(gp::XOY());
- myTrihedron=new AIS_Trihedron(myTrihedronAxis);
- myAISContext->Display(myTrihedron);
- */
-}
-
-CViewer3dDoc::~CViewer3dDoc()
-{
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dDoc diagnostics
-
-#ifdef _DEBUG
-void CViewer3dDoc::AssertValid() const
-{
- CDocument::AssertValid();
-}
-
-void CViewer3dDoc::Dump(CDumpContext& dc) const
-{
- CDocument::Dump(dc);
-}
-#endif //_DEBUG
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dDoc commands
-
-void CViewer3dDoc::UpdateResultMessageDlg (CString theTitle, const TCollection_AsciiString& theMessage)
-{
- CString aText (theMessage.ToCString());
- myCResultDialog.SetText (aText);
- myCResultDialog.SetTitle(theTitle);
-}
-
-void CViewer3dDoc::UpdateResultMessageDlg(CString theTitle, CString theMessage)
-{
- myCResultDialog.SetText (theMessage);
- myCResultDialog.SetTitle(theTitle);
-}
-
-void CViewer3dDoc::OnBox()
-{
- if(myBox.IsNull())
- {
- BRepPrimAPI_MakeBox B(gp_Pnt(0,-400,-100), 200.,150.,100.);
-
-
- myBox = new AIS_Shape(B.Shape());
-
- myAISContext->SetMaterial (myBox, Graphic3d_NOM_PEWTER, Standard_False);
- myAISContext->SetDisplayMode (myBox, 1, Standard_False);
-
- myAISContext->Display (myBox, Standard_True);
- TCollection_AsciiString Message("\
-BRepPrimAPI_MakeBox Box1(gp_Pnt(0,-400,-100), 200.,150.,100.);\n\
- ");
-
- UpdateResultMessageDlg("Create Box",Message);
- }
-}
-
-void CViewer3dDoc::OnCylinder()
-{
- if(myCylinder.IsNull())
- {
- gp_Ax2 CylAx2(gp_Pnt(0,0,-100), gp_Dir(gp_Vec(gp_Pnt(0,0,-100),gp_Pnt(0,0,100))));
- myCylinder = new User_Cylinder(CylAx2, 80.,200.);
-
- myAISContext->SetDisplayMode (myCylinder, 1, Standard_False);
-
- myAISContext->Display (myCylinder, Standard_True);
-
- TCollection_AsciiString Message("\
-gp_Ax2 CylAx2(gp_Pnt(0,0,-100), gp_Dir(gp_Vec(gp_Pnt(0,0,-100),gp_Pnt(0,0,100))));\n\
-C = new User_Cylinder(CylAx2, 80.,200.);;\n\
- ");
-
- UpdateResultMessageDlg("Create Cylinder",Message);
- }
-}
-
-void CViewer3dDoc::OnSphere()
-{
- if(mySphere.IsNull())
- {
- BRepPrimAPI_MakeSphere S(gp_Pnt(0,300,0), 100.);
-
- mySphere = new AIS_Shape(S.Shape());
-
- myAISContext->SetMaterial (mySphere, Graphic3d_NOM_BRONZE, Standard_False);
- myAISContext->SetDisplayMode (mySphere, 1, Standard_False);
-
- myAISContext->Display (mySphere, Standard_True);
- TCollection_AsciiString Message("\
-BRepPrimAPI_MakeSphere S(gp_Pnt(0,300,0), 100.);\n\
- ");
- UpdateResultMessageDlg("Create Sphere",Message);
- }
-}
-
-void CViewer3dDoc::OnRemoveAll()
-
-{
- AIS_ListOfInteractive aListOfObjects;
- myAISContext->ObjectsInside(aListOfObjects,AIS_KOI_Shape);
-
- AIS_ListIteratorOfListOfInteractive aListIterator;
- for(aListIterator.Initialize(aListOfObjects);aListIterator.More();aListIterator.Next()){
- myAISContext->Remove (aListIterator.Value(), Standard_False);
- }
-
- myAISContext->Remove (myCylinder, Standard_True);
-
-
- myCylinder.Nullify();
- mySphere.Nullify();
- myBox.Nullify();
- myOverlappedCylinder.Nullify();
- myOverlappedSphere.Nullify();
- myOverlappedBox.Nullify();
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-void CViewer3dDoc::OnOverlappedBox()
-{
- OnBox();
- if(myOverlappedBox.IsNull()){
- BRepPrimAPI_MakeBox B(gp_Pnt(0,-400,-100), 200.,150.,100.);
-
- BRepBuilderAPI_NurbsConvert aNurbsConvert(B.Shape());
- TopoDS_Shape aBoxShape2 = aNurbsConvert.Shape();
-
-
- myOverlappedBox = new AIS_Shape(aBoxShape2);
-
- myAISContext->SetMaterial (myOverlappedBox, Graphic3d_NOM_GOLD, Standard_False);
- myAISContext->SetDisplayMode (myOverlappedBox, 1, Standard_False);
-
- myAISContext->Display (myOverlappedBox, Standard_True);
- TCollection_AsciiString Message("\
-BRepPrimAPI_MakeBox Box1(gp_Pnt(0,-400,-100), 200.,150.,100.);\n\
-\n\
-BRepPrimAPI_MakeBox Box2(gp_Pnt(0,-400,-100), 200.,150.,100.);\n\
-BRepBuilderAPI_NurbsConvert aNurbsConvert(Box2.Shape());\n\
- ");
- UpdateResultMessageDlg("Create overlapped boxes",Message);
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
- }
-}
-
-void CViewer3dDoc::OnOverlappedCylinder()
-{
- OnCylinder();
-
- if(myOverlappedCylinder.IsNull()){
- gp_Ax2 CylAx2(gp_Pnt(0,0,-100), gp_Dir(gp_Vec(gp_Pnt(0,0,-100),gp_Pnt(0,0,100))));
- BRepPrimAPI_MakeCylinder C(CylAx2, 80.,200.);
-
- BRepBuilderAPI_NurbsConvert aNurbsConvert(C.Shape());
- TopoDS_Shape aCylShape2 = aNurbsConvert.Shape();
-
- myOverlappedCylinder = new AIS_Shape(aCylShape2);
-
-
- myAISContext->SetMaterial (myOverlappedCylinder, Graphic3d_NOM_GOLD, Standard_False);
- myAISContext->SetDisplayMode (myOverlappedCylinder, 1, Standard_False);
-
- myAISContext->Display (myOverlappedCylinder, Standard_True);
-
- TCollection_AsciiString Message("\
-gp_Ax2 CylAx2(gp_Pnt(0,0,-100), gp_Dir(gp_Vec(gp_Pnt(0,0,-100),gp_Pnt(0,0,100))));\n\
-Cylinder1 = new User_Cylinder(CylAx2, 80.,200.);\n\
-\n\
-BRepPrimAPI_MakeCylinder Cylinder2(CylAx2, 80.,200.);\n\
-BRepBuilderAPI_NurbsConvert aNurbsConvert(Cylinder2.Shape());\n\
- ");
- UpdateResultMessageDlg("Create overlapped cylinders",Message);
- if (myOffsetDlg && myOffsetDlg->IsWindowVisible())
- {
- myOffsetDlg->UpdateValues();
- }
- }
-}
-
-void CViewer3dDoc::OnOverlappedSphere()
-{
- OnSphere();
- if(myOverlappedSphere.IsNull()){
- BRepPrimAPI_MakeSphere S(gp_Pnt(0,300,0), 100.);
-
- BRepBuilderAPI_NurbsConvert aNurbsConvert(S.Shape());
- TopoDS_Shape aSphereShape2 = aNurbsConvert.Shape();
-
- myOverlappedSphere = new AIS_Shape(aSphereShape2);
-
- myAISContext->SetMaterial (myOverlappedSphere, Graphic3d_NOM_GOLD, Standard_False);
-
- myAISContext->SetDisplayMode (myOverlappedSphere, 1, Standard_False);
-
- myAISContext->Display (myOverlappedSphere, Standard_True);
-
- TCollection_AsciiString Message("\
-BRepPrimAPI_MakeSphere Sphere1(gp_Pnt(0,300,0), 100.);\n\
-\n\
-BRepPrimAPI_MakeSphere Sphere2(gp_Pnt(0,300,0), 100.);\n\
-BRepBuilderAPI_NurbsConvert aNurbsConvert(Sphere2.Shape());\n\
- ");
- UpdateResultMessageDlg("Create overlapped spheres",Message);
- if (myOffsetDlg && myOffsetDlg->IsWindowVisible())
- {
- myOffsetDlg->UpdateValues();
- }
- }
-}
-
-void CViewer3dDoc::OnPolygonOffsets()
-{
- myOffsetDlg = new COffsetDlg(this);
- myOffsetDlg->Create(COffsetDlg::IDD,NULL);
- myAISContext->UpdateCurrentViewer();
-}
-
-void CViewer3dDoc::OnUpdatePolygonOffsets(CCmdUI* pCmdUI)
-{
- Standard_Integer aOffsetMode;
- Standard_ShortReal aFactor;
- Standard_ShortReal aCylUnits = 0;
- Standard_ShortReal aSphereUnits = 0;
- Standard_ShortReal aBoxUnits = 0;
-
- BOOL IsOverlappedCylinderDisplayed = myAISContext->IsDisplayed(myOverlappedCylinder);
- BOOL IsOverlappedSphereDisplayed = myAISContext->IsDisplayed(myOverlappedSphere);
- BOOL IsOverlappedBoxDisplayed = myAISContext->IsDisplayed(myOverlappedBox);
- BOOL IsAnyOverlappedObjectDisplayed =
- IsOverlappedCylinderDisplayed || IsOverlappedSphereDisplayed || IsOverlappedBoxDisplayed;
-
- if(!myOverlappedCylinder.IsNull() && IsOverlappedCylinderDisplayed){
- myOverlappedCylinder->PolygonOffsets(aOffsetMode,aFactor,aCylUnits);
- }
-
- if(!myOverlappedSphere.IsNull() && IsOverlappedSphereDisplayed){
- myOverlappedSphere->PolygonOffsets(aOffsetMode,aFactor,aSphereUnits);
- }
-
- if(!myOverlappedBox.IsNull() && IsOverlappedBoxDisplayed){
- myOverlappedBox->PolygonOffsets(aOffsetMode,aFactor,aBoxUnits);
- }
-
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- pCmdUI->SetCheck(TRUE);
- else
- pCmdUI->SetCheck(FALSE);
- if (IsAnyOverlappedObjectDisplayed)
- if(myOffsetDlg)
- pCmdUI->Enable(!myOffsetDlg->IsWindowVisible());
- else
- pCmdUI->Enable(TRUE);
- else
- pCmdUI->Enable(FALSE);
-}
-
-void CViewer3dDoc::OnUpdateCylinder(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable(myCylinder.IsNull());
-}
-
-void CViewer3dDoc::OnUpdateSphere(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable(mySphere.IsNull());
-}
-
-void CViewer3dDoc::OnUpdateBox(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable(myBox.IsNull());
-}
-
-void CViewer3dDoc::OnUpdateOverlappedCylinder(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (myOverlappedCylinder.IsNull()
- || myCylinder.IsNull());
-
-}
-
-void CViewer3dDoc::OnUpdateOverlappedSphere(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (myOverlappedSphere.IsNull()
- || mySphere.IsNull());
-}
-
-void CViewer3dDoc::OnUpdateOverlappedBox(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (myOverlappedBox.IsNull()
- || myBox.IsNull());
-}
-
-void CViewer3dDoc::OnObjectRemove()
-{
- // A small trick to avoid compiler error (C2668).
- const Handle(AIS_InteractiveObject)& aBox = myBox;
- if(myAISContext->IsSelected (aBox))
- myBox.Nullify();
-
- const Handle(AIS_InteractiveObject)& aCylinder = myCylinder;
- if(myAISContext->IsSelected (aCylinder))
- myCylinder.Nullify();
-
- const Handle(AIS_InteractiveObject)& aSphere = mySphere;
- if(myAISContext->IsSelected (aSphere))
- mySphere.Nullify();
-
- const Handle(AIS_InteractiveObject)& anOverlappedBox = myOverlappedBox;
- if(myAISContext->IsSelected (anOverlappedBox))
- myOverlappedBox.Nullify();
-
- const Handle(AIS_InteractiveObject)& anOverlappedCylinder = myOverlappedCylinder;
- if(myAISContext->IsSelected (anOverlappedCylinder))
- myOverlappedCylinder.Nullify();
-
- const Handle(AIS_InteractiveObject)& anOverlappedSphere = myOverlappedSphere;
- if(myAISContext->IsSelected (anOverlappedSphere))
- myOverlappedSphere.Nullify();
-
-
- for(myAISContext->InitSelected();myAISContext->MoreSelected();myAISContext->InitSelected())
- myAISContext->Remove(myAISContext->SelectedInteractive(),Standard_True);
-
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-void CViewer3dDoc::OnObjectErase()
-
-{
- OCC_3dBaseDoc::OnObjectErase();
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-void CViewer3dDoc::OnObjectDisplayall()
-
-{
- OCC_3dBaseDoc::OnObjectDisplayall();
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-Handle(User_Cylinder) CViewer3dDoc::GetCylinder()
-{
- return myCylinder;
-}
-
-
-Handle(AIS_Shape) CViewer3dDoc::GetSphere()
-{
- return mySphere;
-}
-
-Handle(AIS_Shape) CViewer3dDoc::GetBox()
-{
- return myBox;
-}
-
-Handle(AIS_Shape) CViewer3dDoc::GetOverlappedCylinder()
-{
- return myOverlappedCylinder;
-}
-
-
-Handle(AIS_Shape) CViewer3dDoc::GetOverlappedSphere()
-{
- return myOverlappedSphere;
-}
-
-Handle(AIS_Shape) CViewer3dDoc::GetOverlappedBox()
-{
- return myOverlappedBox;
-}
-
-void CViewer3dDoc::DragEvent (const Standard_Integer theX,
- const Standard_Integer theY,
- const Standard_Integer theState,
- const Handle(V3d_View)& theView)
-{
- OCC_3dBaseDoc::DragEvent (theX, theY, theState, theView);
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-//-----------------------------------------------------------------------------------------
-//
-//-----------------------------------------------------------------------------------------
-void CViewer3dDoc::InputEvent(const Standard_Integer /*x*/,
- const Standard_Integer /*y*/,
- const Handle(V3d_View)& /*aView*/ )
-{
- if (myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-
- Quantity_Color CSFColor;
- COLORREF MSColor;
- myAISContext->SelectDetected();
-
- // Change the color of a selected face in a user cylinder
- if (myState == FACE_COLOR)
- {
- myAISContext->InitSelected();
- if (myAISContext->MoreSelected())
- {
- Handle(AIS_InteractiveObject) Current = myAISContext->SelectedInteractive();
- if (Current->HasColor())
- {
- myAISContext->Color (Current, CSFColor);
- MSColor = RGB (CSFColor.Red()*255.0, CSFColor.Green()*255.0, CSFColor.Blue()*255.0);
- }
- else
- {
- MSColor = RGB (255, 255, 255);
- }
-
- CColorDialog dlgColor(MSColor);
- if (dlgColor.DoModal() == IDOK)
- {
- MSColor = dlgColor.GetColor();
- CSFColor = Quantity_Color (GetRValue (MSColor)/255.0,
- GetGValue (MSColor)/255.0,
- GetBValue (MSColor)/255.0,
- Quantity_TOC_RGB);
-
- Handle(AIS_InteractiveObject) aSelectedObject = myAISContext->SelectedInteractive();
- Handle(User_Cylinder)::DownCast (aSelectedObject)->SetColor (CSFColor);
-
- myAISContext->Redisplay (aSelectedObject, Standard_True);
- myState = -1;
- }
- }
-
- myCResultDialog.SetTitle("Change face color");
- myCResultDialog.SetText( " Handle(AIS_InteractiveObject) aSelectedObject = myAISContext->SelectedInteractive(); \n"
- " Handle(User_Cylinder)::DownCast(aSelectedObject)->SetColor (CSFColor); \n"
- " myAISContext->Redisplay (myAISContext->Current(), Standard_True); \n"
- " \n"
- " \n"
- " NOTE: a User_Cylinder is an object defined by the user. \n"
- " The User_Cylinder class inherit from the AIS_InteractiveObject \n"
- " Cascade class, it's use is the same as an AIS_InteractiveObject. \n"
- " \n");
- SetTitle (L"Change face color");
- }
-}
-
-//-----------------------------------------------------------------------------------------
-//
-//-----------------------------------------------------------------------------------------
-void CViewer3dDoc::ShiftDragEvent (const Standard_Integer theX,
- const Standard_Integer theY,
- const Standard_Integer theState,
- const Handle(V3d_View)& theView)
-{
- OCC_3dBaseDoc::ShiftDragEvent(theX, theY, theState, theView);
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-
-//-----------------------------------------------------------------------------------------
-//
-//-----------------------------------------------------------------------------------------
-void CViewer3dDoc::ShiftInputEvent (const Standard_Integer theX,
- const Standard_Integer theY,
- const Handle(V3d_View)& theView)
-{
- OCC_3dBaseDoc::ShiftInputEvent (theX, theY, theView);
- if(myOffsetDlg && myOffsetDlg->IsWindowVisible())
- myOffsetDlg->UpdateValues();
-}
-
-void CViewer3dDoc::OnObjectColoredMesh()
-{
- for(myAISContext->InitSelected();myAISContext->MoreSelected();myAISContext->NextSelected())
- if (myAISContext->SelectedInteractive()->IsKind(STANDARD_TYPE(User_Cylinder)))
- {
- myAISContext->ClearPrs(myAISContext->SelectedInteractive(),6,Standard_False);
- myAISContext->RecomputePrsOnly(myAISContext->SelectedInteractive(), Standard_False);
- myAISContext->SetDisplayMode(myAISContext->SelectedInteractive(), 6, Standard_False);
- }
-
- myAISContext->UpdateCurrentViewer();
-}
-
-void CViewer3dDoc::OnUpdateObjectColoredMesh(CCmdUI* pCmdUI)
-{
- bool CylinderIsCurrentAndDisplayed = false;
- for (myAISContext->InitSelected();myAISContext->MoreSelected ();myAISContext->NextSelected ())
- if(myAISContext->SelectedInteractive()->IsKind(STANDARD_TYPE(User_Cylinder)))
- CylinderIsCurrentAndDisplayed=true;
- pCmdUI->Enable (CylinderIsCurrentAndDisplayed);
-}
-
-void CViewer3dDoc::OnUpdateObjectWireframe(CCmdUI* pCmdUI)
-{
- bool OneOrMoreInShadingOrColoredMesh = false;
- for (myAISContext->InitSelected();myAISContext->MoreSelected ();myAISContext->NextSelected ())
- if (myAISContext->IsDisplayed(myAISContext->SelectedInteractive(), 1) || myAISContext->IsDisplayed(myAISContext->SelectedInteractive(), 6))
- OneOrMoreInShadingOrColoredMesh=true;
- pCmdUI->Enable (OneOrMoreInShadingOrColoredMesh);
-}
-
-
-void CViewer3dDoc::OnUpdateObjectShading(CCmdUI* pCmdUI)
-{
- bool OneOrMoreInWireframeOrColoredMesh = false;
- for (myAISContext->InitSelected();myAISContext->MoreSelected ();myAISContext->NextSelected ())
- if (myAISContext->IsDisplayed(myAISContext->SelectedInteractive(),0) || myAISContext->IsDisplayed(myAISContext->SelectedInteractive(),6))
- OneOrMoreInWireframeOrColoredMesh=true;
- pCmdUI->Enable (OneOrMoreInWireframeOrColoredMesh);
-}
-
-void CViewer3dDoc::OnOptionsTrihedronDynamicTrihedron()
-{
- if (myAISContext -> IsDisplayed(myTrihedron))
- {
- myAISContext->Remove(myTrihedron, Standard_True);
- }
- else
- {
- Handle(Geom_Axis2Placement) myTrihedronAxis=new Geom_Axis2Placement(gp::XOY());
- myTrihedron=new AIS_Trihedron(myTrihedronAxis);
- myAISContext->SetTrihedronSize(200, Standard_False);
- myAISContext->Display(myTrihedron, Standard_True);
- }
-}
-
-void CViewer3dDoc::OnUpdateOptionsTrihedronDynamicTrihedron(CCmdUI* pCmdUI)
-{
- if (myAISContext->IsDisplayed(myTrihedron))
- pCmdUI->SetCheck(1);
- else
- pCmdUI->SetCheck(0);
-}
-
-void CViewer3dDoc::SetMyStaticTrihedronAxisIsDisplayed(BOOL IsDisplayed)
-{
- myStaticTrihedronAxisIsDisplayed = IsDisplayed;
-}
-
-void CViewer3dDoc::OnUpdateOptionsTrihedronStaticTrihedron(CCmdUI* pCmdUI)
-{
- if (myStaticTrihedronAxisIsDisplayed)
- pCmdUI->SetCheck(1);
- else
- pCmdUI->SetCheck(0);
-
-}
-
-void CViewer3dDoc::Popup (const Standard_Integer x,
- const Standard_Integer y ,
- const Handle(V3d_View)& aView)
-{
- myPopupMenuNumber=0;
- // Specified check for context menu number to call
- myAISContext->InitSelected();
- if (myAISContext->MoreSelected())
- {
- if (myAISContext->SelectedInteractive()->IsKind(STANDARD_TYPE(User_Cylinder)))
- {
- myPopupMenuNumber = 2;
- //return;
- }
- }
- OCC_3dBaseDoc::Popup(x,y, aView);
-}
-
-//Set faces selection mode
-void CViewer3dDoc::OnFaces()
-{
- myAISContext->Deactivate();
- myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_FACE));
-
- myCResultDialog.SetTitle("Standard mode: TopAbs_FACE");
- myCResultDialog.SetText(" myAISContext->Deactivate();\n"
- " myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_FACE));\n\n");
- SetTitle (L"Standard mode: TopAbs_FACE");
-}
-
-//Set edges selection mode
-void CViewer3dDoc::OnEdges()
-{
- myAISContext->Deactivate();
- myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_EDGE));
-
- myCResultDialog.SetTitle("Standard mode: TopAbs_EDGE");
- myCResultDialog.SetText(" myAISContext->Deactivate();\n"
- " myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_EDGE));\n\n");
- SetTitle (L"Standard mode: TopAbs_EDGE");
-}
-
-// Set vertices selection mode
-void CViewer3dDoc::OnVertices()
-{
- myAISContext->Deactivate();
- myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_VERTEX));
-
- myCResultDialog.SetTitle("Standard mode: TopAbs_VERTEX");
- myCResultDialog.SetText(" myAISContext->Deactivate();\n"
- " myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_VERTEX));\n\n");
- SetTitle (L"Standard mode: TopAbs_VERTEX");
-}
-
-//Neutral selection mode
-void CViewer3dDoc::OnNeutral()
-{
- myAISContext->Deactivate();
- myAISContext->Activate (0);
-
- myCResultDialog.SetTitle("Standard mode: Neutral");
- myCResultDialog.SetText(" myAISContext->Deactivate();\n"
- " myAISContext->Activate (0);\n\n");
- SetTitle (L"Standard mode: Neutral");
-}
-
-// Change the color of faces on a user cylinder
-void CViewer3dDoc::OnUsercylinderChangefacecolor()
-{
- myAISContext->Activate (myAISContext->SelectedInteractive(), AIS_Shape::SelectionMode (TopAbs_FACE));
- myState = FACE_COLOR;
- // see the following of treatment in inputevent
-}
-
-// Make 3d fillets on solids
-// It is necessary to activate the edges selection mode and select edges on an object
-// before running this function
-void CViewer3dDoc::OnFillet3d()
-{
- myAISContext->InitSelected();
- if (myAISContext->MoreSelected())
- {
- Handle(AIS_Shape) aSelInteractive (Handle(AIS_Shape)::DownCast (myAISContext->SelectedInteractive()));
- if (aSelInteractive.IsNull())
- {
- AfxMessageBox (L"It is necessary to activate the edges selection mode\n"
- L"and select edges on an object before \nrunning this function");
- return;
- }
-
- BRepFilletAPI_MakeFillet aFillet (aSelInteractive->Shape());
-
- for (myAISContext->InitSelected(); myAISContext->MoreSelected(); myAISContext->NextSelected())
- {
- const TopoDS_Shape& aSelShape = myAISContext->SelectedShape();
- if (aSelShape.ShapeType() != TopAbs_EDGE)
- {
- AfxMessageBox (L"It is necessary to activate the edges selection mode\n"
- L"and select edges on an object before \nrunning this function");
- return;
- }
- }
-
- BoxRadius aDialog (NULL,10.);
- if (aDialog.DoModal() == IDOK)
- {
- for (myAISContext->InitSelected(); myAISContext->MoreSelected(); myAISContext->NextSelected())
- {
- // Selected shape has its own location, and sub-shapes in the solid shape for fillet building
- // don't have own locations. Fillet builder needs to know that input edge is just the same one as
- // some sub-shape in our target solid shape, so no location is to be in input edge for fillet builder.
- TopoDS_Shape aSelShape = myAISContext->SelectedShape().Located (TopLoc_Location());
- aFillet.Add (aDialog.m_radius, TopoDS::Edge (aSelShape) );
- }
- }
- else
- {
- return;
- }
-
- TopoDS_Shape aNewShape;
- try
- {
- aNewShape = aFillet.Shape();
- }
- catch (Standard_Failure)
- {
- AfxMessageBox (L"Error During Fillet computation");
- return;
- }
-
- aSelInteractive ->Set (aNewShape);
- myAISContext->Redisplay (aSelInteractive, Standard_True);
- }
-
- myCResultDialog.SetTitle("Make a fillet");
- myCResultDialog.SetText(" Handle(AIS_Shape) S = Handle(AIS_Shape)::DownCast(myAISContext->Interactive()); \n"
- " \n"
- " BRepAPI_MakeFillet aFillet(S->Shape()); \n"
- " \n"
- " TopoDS_Edge anEdge=TopoDS::Edge(myAISContext->SelectedShape()); \n"
- " \n"
- " aFillet.Add(dlg.m_radius,anEdge); \n"
- " \n"
- " TopoDS_Shape aNewShape = aFillet.Shape(); \n"
- " \n"
- " S->Set(aNewShape); \n"
- " \n"
- " myAISContext->Redisplay(S); \n"
- " \n");
- SetTitle (L"Make a fillet");
-}
-
-// Create and display a circle with standard tools
-void CViewer3dDoc::OnCircle()
-{
- gp_Ax2 anAx2 (gp_Pnt (0., 0., 0.), gp_Dir(0., 0., -1.));
- Handle(Geom_Circle) aGeomCircle = new Geom_Circle (anAx2, 300);
-
- // the lines above substitute
- // GC_MakeCircle C(gp_Pnt(-100.,-300.,0.),gp_Pnt(-50.,-200.,0.),gp_Pnt(-10.,-250.,0.));
- // Handle(AIS_Circle) anAISCirc = new AIS_Circle(C.Value());
-
- Handle(AIS_Circle) anAISCirc = new AIS_Circle(aGeomCircle);
- myAISContext->Display (anAISCirc, Standard_True);
-
- myCResultDialog.SetTitle("Create a circle");
- myCResultDialog.SetText(" GC_MakeCircle C(gp_Pnt(-100.,-300.,0.),gp_Pnt(-50.,-200.,0.),gp_Pnt(-10.,-250.,0.)); \n"
- " \n"
- " Handle(AIS_Circle) anAISCirc = new AIS_Circle(C.Value()); \n"
- " \n"
- " myAISContext->Display(anAISCirc); \n"
- " \n");
- SetTitle (L"Create a circle");
-}
-
-void CViewer3dDoc::OnLine()
-{
- // TODO: Add your command handler code here
- gp_Lin aGpLin (gp_Pnt (0., 0., 0.), gp_Dir(1., 0., 0.));
- Handle(Geom_Line) aGeomLin = new Geom_Line (aGpLin);
- Handle(AIS_Line) anAISLine = new AIS_Line (aGeomLin);
- myAISContext->Display (anAISLine, Standard_True);
-
- myCResultDialog.SetTitle("Create a line");
- myCResultDialog.SetText(" gp_Lin L(gp_Pnt(0.,0.,0.),gp_Dir(1.,0.,0.)); \n"
- " \n"
- " Handle(Geom_Line) aLine = new Geom_Line(L); \n"
- " \n"
- " Handle(AIS_Line) anAISLine = new AIS_Line(aLine); \n"
- " \n"
- " myAISContext->Display(anAISLine); \n"
- " \n");
- SetTitle (L"Create a line");
-}
-
-void CViewer3dDoc::OnNbisos()
-{
- int aNumU = myAISContext->DefaultDrawer()->UIsoAspect()->Number();
- int aNumV = myAISContext->DefaultDrawer()->VIsoAspect()->Number();
-
- DlgIsos aDlg (NULL, aNumU, aNumV);
-
- if (aDlg.DoModal() == IDOK)
- {
- myAISContext->DefaultDrawer()->UIsoAspect()->SetNumber (aDlg.m_isou);
- myAISContext->DefaultDrawer()->VIsoAspect()->SetNumber (aDlg.m_isov);
-
- myCResultDialog.SetTitle("Iso Aspect");
- myCResultDialog.SetText(" myAISContext->DefaultDrawer()->UIsoAspect()->SetNumber(dlg.m_isou); \n"
- " \n"
- " myAISContext->DefaultDrawer()->VIsoAspect()->SetNumber(dlg.m_isov); \n"
- " \n");
- SetTitle (L"Iso Aspect");
- }
-}
-
-BOOL CViewer3dDoc::OnNewDocument()
-{
- if (!CDocument::OnNewDocument())
- return FALSE;
-
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- SetTitle(myPresentation->GetName());
-
- myAISContext->EraseAll (Standard_False);
- myAISContext->SetDisplayMode(AIS_Shaded, Standard_True);
-
- POSITION pos = GetFirstViewPosition();
- while (pos != NULL)
- {
- CViewer3dView* pView = (CViewer3dView*) GetNextView(pos);
- pView->Reset();
- }
-
- return TRUE;
-}
-
-void CViewer3dDoc::OnFileNew()
-{
- OnNewDocument();
-}
-
-void CViewer3dDoc::InitViewButtons()
-{
- POSITION pos = GetFirstViewPosition();
- while (pos != NULL)
- {
- CViewer3dView* pView = (CViewer3dView*) GetNextView(pos);
- pView->InitButtons();
- }
-}
-
-void CViewer3dDoc::OnTextureOn()
-{
- isTextureSampleStarted = TRUE;
- Start();
-}
-
-void CViewer3dDoc::DoSample()
-{
- InitViewButtons();
-
- HCURSOR hOldCursor = ::GetCursor();
- HCURSOR hNewCursor = AfxGetApp()->LoadStandardCursor(IDC_APPSTARTING);
-
- SetCursor(hNewCursor);
- {
- try
- {
- myPresentation->DoSample();
- }
- catch (Standard_Failure const& anException)
- {
- Standard_SStream aSStream;
- aSStream << "An exception was caught: " << anException << std::ends;
- CString aMsg = aSStream.str().c_str();
- AfxMessageBox (aMsg);
- }
- }
- SetCursor(hOldCursor);
-}
-
-void CViewer3dDoc::OnBUTTONStart()
-{
- myAISContext->EraseAll (Standard_True);
- myPresentation->FirstSample();
- DoSample();
-}
-
-void CViewer3dDoc::OnBUTTONEnd()
-{
- myAISContext->EraseAll (Standard_True);
- myPresentation->LastSample();
- DoSample();
-}
-
-void CViewer3dDoc::OnBUTTONRepeat()
-{
- DoSample();
-}
-
-void CViewer3dDoc::OnBUTTONNext()
-{
- if (!myPresentation->AtLastSample())
- {
- myPresentation->NextSample();
- DoSample();
- }
-}
-
-void CViewer3dDoc::OnBUTTONPrev()
-{
- if (!myPresentation->AtFirstSample())
- {
- myPresentation->PrevSample();
- DoSample();
- }
-}
-
-void CViewer3dDoc::OnUpdateBUTTONNext(CCmdUI* pCmdUI)
-{
- if ( isTextureSampleStarted )
- pCmdUI->Enable (!myPresentation->AtLastSample());
- else
- pCmdUI->Enable (FALSE);
-}
-
-void CViewer3dDoc::OnUpdateBUTTONPrev(CCmdUI* pCmdUI)
-{
- if ( isTextureSampleStarted )
- pCmdUI->Enable (!myPresentation->AtFirstSample());
- else
- pCmdUI->Enable (FALSE);
-}
-
-void CViewer3dDoc::OnUpdateBUTTONStart(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (isTextureSampleStarted);
-}
-
-void CViewer3dDoc::OnUpdateBUTTONRepeat(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (isTextureSampleStarted);
-}
-
-void CViewer3dDoc::OnUpdateBUTTONEnd(CCmdUI* pCmdUI)
-{
- pCmdUI->Enable (isTextureSampleStarted);
-}
-
-void CViewer3dDoc::OnDumpView()
-{
- for (POSITION aPos = GetFirstViewPosition(); aPos != NULL;)
- {
- CViewer3dView* pView = (CViewer3dView* )GetNextView (aPos);
- pView->UpdateWindow();
- }
-
- Handle(V3d_View) aView = myViewer->ActiveViews().First();
- ExportView (aView);
-}
-
-void CViewer3dDoc::Start()
-{
- myPresentation->Init();
- OnBUTTONStart();
-}
-
-void CViewer3dDoc::Fit()
-{
- CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
- CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
- CViewer3dView *pView = (CViewer3dView *) pChild->GetActiveView();
- pView->FitAll();
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h
deleted file mode 100755
index 69a4a708a4..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h
+++ /dev/null
@@ -1,159 +0,0 @@
-// 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 "OCCDemo_Presentation.h"
-#include "OffsetDlg.h"
-#include "OCC_3dDoc.h"
-#include "ResultDialog.h"
-#include "User_Cylinder.hxx"
-
-
-#include
-#include
-#include
-
-class COffsetDlg;
-class OCCDemo_Presentation;
-
-class CViewer3dDoc : public OCC_3dDoc
-{
- DECLARE_DYNCREATE(CViewer3dDoc)
-
-protected: // create from serialization only
- CViewer3dDoc();
- void InitViewButtons();
- void DoSample();
-
-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();
- void Start();
- Standard_CString GetDataDir() {return myDataDir;}
- static void Fit();
-
- virtual ~CViewer3dDoc();
- void UpdateResultMessageDlg (CString theTitle, const TCollection_AsciiString& theMessage);
- void UpdateResultMessageDlg (CString theTitle, CString theMessage);
- virtual BOOL OnNewDocument();
- virtual void Popup (const Standard_Integer x,
- const Standard_Integer y,
- const Handle(V3d_View)& aView);
-
- 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 OnNbisos();
- afx_msg void OnFaces();
- afx_msg void OnEdges();
- afx_msg void OnVertices();
- afx_msg void OnNeutral();
- afx_msg void OnUsercylinderChangefacecolor();
- afx_msg void OnFillet3d();
- afx_msg void OnCircle();
- afx_msg void OnLine();
- 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 void OnTextureOn();
- afx_msg void OnBUTTONNext();
- afx_msg void OnBUTTONStart();
- afx_msg void OnBUTTONRepeat();
- afx_msg void OnBUTTONPrev();
- afx_msg void OnBUTTONEnd();
- afx_msg void OnUpdateBUTTONNext(CCmdUI* pCmdUI);
- afx_msg void OnUpdateBUTTONPrev(CCmdUI* pCmdUI);
- afx_msg void OnUpdateBUTTONStart(CCmdUI* pCmdUI);
- afx_msg void OnUpdateBUTTONRepeat(CCmdUI* pCmdUI);
- afx_msg void OnUpdateBUTTONEnd(CCmdUI* pCmdUI);
- afx_msg void OnFileNew();
- afx_msg void OnBUTTONShowResult();
- afx_msg void OnDumpView();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- //Attributes
-protected:
- int myState;
-
-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;
-
- OCCDemo_Presentation *myPresentation;
- char myDataDir[5]; // for "Data\0"
- char myLastPath[MAX_PATH]; // directory of lastly saved file in DumpView()
- bool isTextureSampleStarted;
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-//{{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_)
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp
deleted file mode 100755
index 62f5df3316..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp
+++ /dev/null
@@ -1,1180 +0,0 @@
-// Viewer3dView.cpp : implementation of the CViewer3dView class
-//
-
-#include "stdafx.h"
-
-#include "Viewer3dView.h"
-
-#include "OCC_MainFrame.h"
-#include "Viewer3dApp.h"
-#include "Viewer3dDoc.h"
-#include "ScaleDlg.h"
-#include "ShadingModelDlg.h"
-#include "ModelClippingDlg.h"
-#include "TrihedronDlg.h"
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#define ValZWMin 1
-#define X_Key 0x58
-#define Y_Key 0x59
-#define Z_Key 0x5A
-
-#define ModelClipping
-
-#ifdef _DEBUG
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-//gp_Pnt ConvertClickToPoint(Standard_Real x, Standard_Real y, Handle(V3d_View) aView);
-
- gp_Pnt p1,p2,p3;
- Handle(AIS_Shape) spotConeShape=new AIS_Shape(TopoDS_Solid());
- Handle(AIS_Shape) directionalEdgeShape=new AIS_Shape(TopoDS_Edge());
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dView
-
-IMPLEMENT_DYNCREATE(CViewer3dView, CView)
-
-BEGIN_MESSAGE_MAP(CViewer3dView, CView)
- //{{AFX_MSG_MAP(CViewer3dView)
- ON_COMMAND(ID_BUTTONAxo, OnBUTTONAxo)
- ON_COMMAND(ID_BUTTONBack, OnBUTTONBack)
- ON_COMMAND(ID_BUTTONBottom, OnBUTTONBottom)
- ON_COMMAND(ID_BUTTONFront, OnBUTTONFront)
- ON_COMMAND(ID_BUTTONHlrOff, OnBUTTONHlrOff)
- ON_COMMAND(ID_BUTTONHlrOn, OnBUTTONHlrOn)
- ON_COMMAND(ID_BUTTONLeft, OnBUTTONLeft)
- ON_COMMAND(ID_BUTTONPan, OnBUTTONPan)
- ON_COMMAND(ID_BUTTONPanGlo, OnBUTTONPanGlo)
- ON_COMMAND(ID_BUTTONReset, OnBUTTONReset)
- ON_COMMAND(ID_BUTTONRight, OnBUTTONRight)
- ON_COMMAND(ID_BUTTONRot, OnBUTTONRot)
- ON_COMMAND(ID_BUTTONTop, OnBUTTONTop)
- ON_COMMAND(ID_BUTTONZoomAll, OnBUTTONZoomAll)
- ON_WM_SIZE()
- ON_COMMAND(ID_BUTTONZoomProg, OnBUTTONZoomProg)
- ON_COMMAND(ID_BUTTONZoomWin, OnBUTTONZoomWin)
- ON_WM_LBUTTONDOWN()
- ON_WM_KEYDOWN()
- ON_WM_LBUTTONUP()
- ON_WM_MBUTTONDOWN()
- ON_WM_MBUTTONUP()
- ON_WM_MOUSEMOVE()
- ON_WM_RBUTTONDOWN()
- ON_WM_RBUTTONUP()
- ON_UPDATE_COMMAND_UI(ID_BUTTONHlrOff, OnUpdateBUTTONHlrOff)
- ON_UPDATE_COMMAND_UI(ID_BUTTONHlrOn, OnUpdateBUTTONHlrOn)
- ON_UPDATE_COMMAND_UI(ID_BUTTONPanGlo, OnUpdateBUTTONPanGlo)
- ON_UPDATE_COMMAND_UI(ID_BUTTONPan, OnUpdateBUTTONPan)
- ON_UPDATE_COMMAND_UI(ID_BUTTONZoomProg, OnUpdateBUTTONZoomProg)
- ON_UPDATE_COMMAND_UI(ID_BUTTONZoomWin, OnUpdateBUTTONZoomWin)
- ON_UPDATE_COMMAND_UI(ID_BUTTONRot, OnUpdateBUTTONRot)
- ON_COMMAND(ID_Modify_ChangeBackground , OnModifyChangeBackground)
- ON_COMMAND(ID_DIRECTIONAL_LIGHT, OnDirectionalLight)
- ON_COMMAND(ID_SPOT_LIGHT, OnSpotLight)
- ON_COMMAND(ID_POSITIONAL_LIGHT, OnPositionalLight)
- ON_COMMAND(ID_AMBIENT_LIGHT, OnAmbientLight)
- ON_COMMAND(ID_SCALE, OnScale)
- ON_COMMAND(ID_SHADINGMODEL, OnShadingmodel)
- ON_COMMAND(ID_ANTIALIASINGONOFF, OnAntialiasingonoff)
- ON_COMMAND(ID_CLEAR_LIGHTS, OnClearLights)
- ON_COMMAND(ID_MODELCLIPPING, OnModelclipping)
- ON_COMMAND(ID_OPTIONS_TRIHEDRON_STATIC_TRIHEDRON, OnOptionsTrihedronStaticTrihedron)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dView construction/destruction
-
-CViewer3dView::CViewer3dView()
-: scaleX (1),
- scaleY (1),
- scaleZ (1),
- myVisMode (VIS_SHADE),
- myCurrentMode (CurAction3d_Nothing),
- myXmin (0),
- myYmin (0),
- myXmax (0),
- myYmax (0),
- myCurZoom (0.0),
- NbActiveLights (2), // There are 2 default active lights
- myHlrModeIsOn (Standard_False),
- myRect (new AIS_RubberBand (Quantity_NOC_WHITE, Aspect_TOL_SOLID, 1.0)),
- myAxisKey (0),
- myScaleDirection (0)
-{
- // TODO: add construction code here
- myGraphicDriver = ((CViewer3dApp*)AfxGetApp())->GetGraphicDriver();
-}
-
-CViewer3dView::~CViewer3dView()
-{
- myView->Remove();
-}
-
-BOOL CViewer3dView::PreCreateWindow(CREATESTRUCT& cs)
-{
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
- cs.lpszClass = ::AfxRegisterWndClass(CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS | CS_OWNDC, ::LoadCursor(NULL, IDC_ARROW), NULL, NULL);
- return CView::PreCreateWindow(cs);
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dView drawing
-void CViewer3dView::OnInitialUpdate()
-{
- CView::OnInitialUpdate();
-
- myView = GetDocument()->GetViewer()->CreateView();
-
- // store for restore state after rotation (witch is in Degenerated mode)
- myHlrModeIsOn = Standard_False;
- myView->SetComputedMode (myHlrModeIsOn);
-
- Handle(WNT_Window) aWNTWindow = new WNT_Window (GetSafeHwnd());
- myView->SetWindow(aWNTWindow);
- if (!aWNTWindow->IsMapped()) aWNTWindow->Map();
-
- // Standard_Integer w=100 , h=100 ; /* Debug Matrox */
- // aWNTWindow->Size (w,h) ; /* Keeps me unsatisfied (rlb)..... */
- /* Resize is not supposed to be done on */
- /* Matrox */
- /* I suspect another problem elsewhere */
- // ::PostMessage ( GetSafeHwnd () , WM_SIZE , SIZE_RESTORED , w + h*65536 ) ;
-
- // store the mode ( nothing , dynamic zooming, dynamic ... )
- myCurrentMode = CurAction3d_Nothing;
- myVisMode = VIS_SHADE;
- RedrawVisMode();
-}
-
-void CViewer3dView::OnDraw(CDC* /*pDC*/)
-{
- CViewer3dDoc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- myView->Redraw();
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dView diagnostics
-
-#ifdef _DEBUG
-void CViewer3dView::AssertValid() const
-{
- CView::AssertValid();
-}
-
-void CViewer3dView::Dump(CDumpContext& dc) const
-{
- CView::Dump(dc);
-}
-
-CViewer3dDoc* CViewer3dView::GetDocument() // non-debug version is inline
-{
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CViewer3dDoc)));
- return (CViewer3dDoc*)m_pDocument;
-}
-#endif //_DEBUG
-
-/////////////////////////////////////////////////////////////////////////////
-// CViewer3dView message handlers
-
-gp_Pnt ConvertClickToPoint(Standard_Real x, Standard_Real y, Handle(V3d_View) aView)
-{
- Standard_Real XEye,YEye,ZEye,XAt,YAt,ZAt;
- aView->Eye(XEye,YEye,ZEye);
- aView->At(XAt,YAt,ZAt);
- gp_Pnt EyePoint(XEye,YEye,ZEye);
- gp_Pnt AtPoint(XAt,YAt,ZAt);
-
- gp_Vec EyeVector(EyePoint,AtPoint);
- gp_Dir EyeDir(EyeVector);
-
- gp_Pln PlaneOfTheView = gp_Pln(AtPoint,EyeDir);
- Standard_Real X,Y,Z;
- aView->Convert(int(x),int(y),X,Y,Z);
- gp_Pnt ConvertedPoint(X,Y,Z);
- gp_Pnt2d ConvertedPointOnPlane = ProjLib::Project(PlaneOfTheView,ConvertedPoint);
-
- gp_Pnt ResultPoint = ElSLib::Value(ConvertedPointOnPlane.X(),
- ConvertedPointOnPlane.Y(),
- PlaneOfTheView);
- return ResultPoint;
-}
-
-void CViewer3dView::OnSize(UINT nType, int cx, int cy)
-{
- CView::OnSize (nType, cx, cy);
- if (!myView.IsNull())
- myView->MustBeResized();
-}
-
-void CViewer3dView::OnBUTTONBack()
-{
- myView->SetProj(V3d_Ypos);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Ypos);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the back View
-void CViewer3dView::OnBUTTONFront()
-{
- myView->SetProj(V3d_Yneg);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Yneg);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the front View
-
-void CViewer3dView::OnBUTTONBottom()
-{
- myView->SetProj(V3d_Zneg);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Zneg);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the bottom View
-void CViewer3dView::OnBUTTONTop()
-{
- myView->SetProj(V3d_Zpos);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Zpos);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the top View
-
-void CViewer3dView::OnBUTTONLeft()
-{
- myView->SetProj(V3d_Xneg);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Xneg);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the left View
-void CViewer3dView::OnBUTTONRight()
-{
- myView->SetProj(V3d_Xpos);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_Xpos);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the right View
-
-void CViewer3dView::OnBUTTONAxo()
-{
- myView->SetProj(V3d_XposYnegZpos);
-
-TCollection_AsciiString Message("\
-myView->SetProj(V3d_XposYnegZpos);\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetProj",Message);
-} // See the axonometric View
-
-void CViewer3dView::OnBUTTONHlrOff()
-{
- myHlrModeIsOn = Standard_False;
- myView->SetComputedMode (myHlrModeIsOn);
- myView->Redraw();
-
- TCollection_AsciiString aMsg ("myView->SetComputedMode (Standard_False);\n"
- " ");
-
- // Update The Result Message Dialog
- GetDocument()->UpdateResultMessageDlg ("SetComputedMode", aMsg);
-}
-
-void CViewer3dView::OnBUTTONHlrOn()
-{
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
- myHlrModeIsOn = Standard_True;
- myView->SetComputedMode (myHlrModeIsOn);
- myView->Redraw();
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
-
- TCollection_AsciiString aMsg ("myView->SetComputedMode (Standard_True);\n"
- " ");
-
- // Update The Result Message Dialog
- GetDocument()->UpdateResultMessageDlg ("SetComputedMode", aMsg);
-}
-
-void CViewer3dView::OnBUTTONPan()
-{ myCurrentMode = CurAction3d_DynamicPanning; }
-
-void CViewer3dView::OnBUTTONPanGlo()
-{
- // save the current zoom value
- myCurZoom = myView->Scale();
- // Do a Global Zoom
- myView->FitAll();
- // Set the mode
- myCurrentMode = CurAction3d_GlobalPanning;
-}
-
-void CViewer3dView::OnBUTTONReset()
-{ myView->Reset(); }
-
-void CViewer3dView::OnBUTTONRot()
-{ myCurrentMode = CurAction3d_DynamicRotation; }
-
-
-void CViewer3dView::OnBUTTONZoomAll()
-{
- myView->FitAll();
- myView->ZFitAll();
-}
-
-void CViewer3dView::OnBUTTONZoomProg()
-{ myCurrentMode = CurAction3d_DynamicZooming; }
-
-void CViewer3dView::OnBUTTONZoomWin()
-{ myCurrentMode = CurAction3d_WindowZooming; }
-
-void CViewer3dView::OnLButtonDown(UINT nFlags, CPoint point)
-{
- // save the current mouse coordinate in min
- myXmin=point.x; myYmin=point.y;
- myXmax=point.x; myYmax=point.y;
-
- if ( nFlags & MK_CONTROL )
- {
- // Button MB1 down Control :start zomming
- // SetCursor(AfxGetApp()->LoadStandardCursor());
- }
- else // if ( Ctrl )
- {
- switch (myCurrentMode)
- {
- case CurAction3d_Nothing : // start a drag
- if (nFlags & MK_SHIFT)
- GetDocument()->ShiftDragEvent(myXmax,myYmax,-1,myView);
- else
- GetDocument()->DragEvent(myXmax,myYmax,-1,myView);
- break;
- break;
- case CurAction3d_DynamicZooming : // noting
- break;
- case CurAction3d_WindowZooming :
- break;
- case CurAction3d_DynamicPanning :// noting
- break;
- case CurAction3d_GlobalPanning :// noting
- break;
- case CurAction3d_DynamicRotation :
- if (myHlrModeIsOn)
- {
- myView->SetComputedMode (Standard_False);
- }
- myView->StartRotation (point.x, point.y);
- break;
- case CurAction3d_BeginPositionalLight :
- {
- p1 = ConvertClickToPoint(point.x,point.y,myView);
- myCurrent_PositionalLight->SetPosition(p1.X(),p1.Y(),p1.Z()) ;
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Ready");
- myCurrentMode = CurAction3d_Nothing;
-
-TCollection_AsciiString Message("\
-myCurrent_PositionalLight->SetPosition(Xp, Yp, Zp) ;\n\
-");
-// Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetPosition",Message);
- }
- break;
- case CurAction3d_BeginSpotLight :
- {
- p1 = ConvertClickToPoint(point.x,point.y,myView);
- myCurrent_SpotLight = new V3d_SpotLight (p1, gp_Dir (gp_XYZ (0.0, 0.0, 1.0) - p1.XYZ()), Quantity_NOC_RED);
- myView->SetLightOn(myCurrent_SpotLight);
- NbActiveLights++;
- p2 = gp_Pnt(p1.X(),p1.Y(),p1.Z()+1.);
- Standard_Real coneHeigth=p1.Distance(p2);
- BRepPrimAPI_MakeCone MakeCone(gp_Ax2(p1, gp_Dir(gp_Vec(p1, p2))),
- 0, (p1.Distance(p2))/tan(1.04), coneHeigth);
- spotConeShape->Set(MakeCone.Solid());
- GetDocument()->GetAISContext()->Display (spotConeShape, 0, -1, false);
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick the target point");
- myCurrentMode = CurAction3d_TargetSpotLight;
-
-TCollection_AsciiString Message("\
-myCurrent_SpotLight->SetDirection(Xv, Yv, Zv);\n\
-");
-// Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetDirection",Message);
- }
- break;
- case CurAction3d_TargetSpotLight :
- {
- p2 = ConvertClickToPoint(point.x,point.y,myView);
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick a third point (to define the angle)");
- myCurrentMode = CurAction3d_EndSpotLight;
-
-TCollection_AsciiString Message("\
-myCurrent_SpotLight->SetAngle(Angle) ;\n\
-");
-// Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetAngle",Message);
- }
- break;
- case CurAction3d_EndSpotLight :
- GetDocument()->GetAISContext()->Erase (spotConeShape, Standard_True);
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Ready");
- myCurrentMode = CurAction3d_Nothing;
- break;
- case CurAction3d_BeginDirectionalLight:
- {
- p1 = ConvertClickToPoint(point.x,point.y,myView);
- p2 = gp_Pnt(p1.X(),p1.Y(),p1.Z()+1.);
- BRepBuilderAPI_MakeEdge MakeEdge(p1, p2);
- directionalEdgeShape->Set(MakeEdge.Edge());
- GetDocument()->GetAISContext()->Display (directionalEdgeShape, 0, -1, Standard_True);
- // Create a directional light
- myCurrent_DirectionalLight = new V3d_DirectionalLight (gp_Dir (p1.XYZ() - gp_XYZ (0.,0.,1.)));
- myView->SetLightOn(myCurrent_DirectionalLight);
- NbActiveLights++;
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick the target point");
- myCurrentMode = CurAction3d_EndDirectionalLight;
-
-
-TCollection_AsciiString Message("\
-myCurrent_DirectionalLight->SetDirection(Xv, Yv, Zv);\n\
-");
-// Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetDirection",Message);
- }
- break;
- case CurAction3d_EndDirectionalLight:
- GetDocument()->GetAISContext()->Erase (directionalEdgeShape, Standard_True);
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Ready");
- myCurrentMode = CurAction3d_Nothing;
- break;
- }
- }
-}
-
-void CViewer3dView::OnKeyDown(UINT nChar, UINT /*nRepCnt*/, UINT /*nFlags*/)
-{
-
- if( nChar == X_Key || nChar == Y_Key || nChar == Z_Key )
- myAxisKey = nChar;
- else if( (nChar == VK_ADD || nChar == VK_SUBTRACT) && myAxisKey )
- {
- myScaleDirection = nChar;
- if( myAxisKey && myScaleDirection )
- {
- switch( myAxisKey )
- {
- case X_Key:
- if( myScaleDirection == VK_ADD ) scaleX ++;
- if( myScaleDirection == VK_SUBTRACT ) scaleX --;
- break;
- case Y_Key:
- if( myScaleDirection == VK_ADD ) scaleY ++;
- if( myScaleDirection == VK_SUBTRACT ) scaleY --;
- break;
- case Z_Key:
- if( myScaleDirection == VK_ADD ) scaleZ ++;
- if( myScaleDirection == VK_SUBTRACT ) scaleZ --;
- break;
- default:
- break;
- }
- if( scaleX < 1 ) scaleX = 1;
- if( scaleY < 1 ) scaleY = 1;
- if( scaleZ < 1 ) scaleZ = 1;
-
- myView->SetAxialScale( scaleX, scaleY, scaleZ );
- }
- }
-}
-
-void CViewer3dView::OnLButtonUp(UINT nFlags, CPoint point)
-{
- if ( nFlags & MK_CONTROL )
- {
- return;
- }
- else // if ( Ctrl )
- {
- switch (myCurrentMode)
- {
- case CurAction3d_Nothing :
- if (point.x == myXmin && point.y == myYmin)
- { // no offset between down and up --> selectEvent
- myXmax=point.x;
- myYmax=point.y;
- if (nFlags & MK_SHIFT )
- GetDocument()->ShiftInputEvent(point.x,point.y,myView);
- else
- GetDocument()->InputEvent (point.x,point.y,myView);
- } else
- {
- DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_False);
- myXmax=point.x;
- myYmax=point.y;
- if (nFlags & MK_SHIFT)
- GetDocument()->ShiftDragEvent(point.x,point.y,1,myView);
- else
- GetDocument()->DragEvent(point.x,point.y,1,myView);
- }
- break;
- case CurAction3d_DynamicZooming :
- // SetCursor(AfxGetApp()->LoadStandardCursor());
- myCurrentMode = CurAction3d_Nothing;
- break;
- case CurAction3d_WindowZooming :
- DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_False);
- myXmax=point.x;
- myYmax=point.y;
- if ((abs(myXmin-myXmax)>ValZWMin) || (abs(myYmin-myYmax)>ValZWMin))
- // Test if the zoom window is greater than a minimale window.
- {
- // Do the zoom window between Pmin and Pmax
- myView->WindowFitAll(myXmin,myYmin,myXmax,myYmax);
- }
- myCurrentMode = CurAction3d_Nothing;
- break;
- case CurAction3d_DynamicPanning :
- myCurrentMode = CurAction3d_Nothing;
- break;
- case CurAction3d_GlobalPanning :
- myView->Place(point.x,point.y,myCurZoom);
- myCurrentMode = CurAction3d_Nothing;
- break;
- case CurAction3d_DynamicRotation :
- myCurrentMode = CurAction3d_Nothing;
- break;
- } //switch (myCurrentMode)
- } // else // if ( Ctrl )
-}
-
-void CViewer3dView::OnMButtonDown(UINT nFlags, CPoint /*point*/)
-{
- if ( nFlags & MK_CONTROL )
- {
- // Button MB2 down Control : panning init
- // SetCursor(AfxGetApp()->LoadStandardCursor());
- }
-}
-
-void CViewer3dView::OnMButtonUp(UINT nFlags, CPoint /*point*/)
-{
- if ( nFlags & MK_CONTROL )
- {
- // Button MB2 down Control : panning init
- // SetCursor(AfxGetApp()->LoadStandardCursor());
- }
-}
-
-void CViewer3dView::OnRButtonDown(UINT nFlags, CPoint point)
-{
- if ( nFlags & MK_CONTROL )
- {
- // SetCursor(AfxGetApp()->LoadStandardCursor());
- if (myHlrModeIsOn)
- {
- myView->SetComputedMode (Standard_False);
- }
- myView->StartRotation (point.x, point.y);
- }
- else // if ( Ctrl )
- {
- GetDocument()->Popup (point.x, point.y, myView);
- }
-}
-
-void CViewer3dView::OnRButtonUp(UINT /*nFlags*/, CPoint /*point*/)
-{
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
- if (myHlrModeIsOn)
- {
- myView->SetComputedMode (myHlrModeIsOn);
- myView->Redraw();
- }
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
-}
-
-void CViewer3dView::OnMouseMove(UINT nFlags, CPoint point)
-{
- // ============================ LEFT BUTTON =======================
- if ( nFlags & MK_LBUTTON)
- {
- if ( nFlags & MK_CONTROL )
- {
- // move with MB1 and Control : on the dynamic zooming
- // Do the zoom in function of mouse's coordinates
- myView->Zoom(myXmax,myYmax,point.x,point.y);
- // save the current mouse coordinate in min
- myXmax = point.x;
- myYmax = point.y;
- }
- else // if ( Ctrl )
- {
- switch (myCurrentMode)
- {
- case CurAction3d_Nothing :
-
- myXmax = point.x; myYmax = point.y;
- if (nFlags & MK_SHIFT)
- GetDocument()->ShiftDragEvent(myXmax,myYmax,0,myView);
- else
- GetDocument()->DragEvent(myXmax,myYmax,0,myView);
- DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_True);
- break;
- case CurAction3d_DynamicZooming :
- myView->Zoom(myXmax,myYmax,point.x,point.y);
- // save the current mouse coordinate in min \n";
- myXmax=point.x; myYmax=point.y;
- break;
- case CurAction3d_WindowZooming :
- myXmax = point.x; myYmax = point.y;
- DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_True, Aspect_TOL_DASH);
-
- break;
- case CurAction3d_DynamicPanning :
- myView->Pan(point.x-myXmax,myYmax-point.y); // Realize the panning
- myXmax = point.x; myYmax = point.y;
- break;
- case CurAction3d_GlobalPanning : // nothing
- break;
- case CurAction3d_DynamicRotation :
- myView->Rotation(point.x,point.y);
- myView->Redraw();
- break;
- }// switch (myCurrentMode)
- }// if ( nFlags & MK_CONTROL ) else
- } else // if ( nFlags & MK_LBUTTON)
- // ============================ MIDDLE BUTTON =======================
- if ( nFlags & MK_MBUTTON)
- {
- if ( nFlags & MK_CONTROL )
- {
- myView->Pan(point.x-myXmax,myYmax-point.y); // Realize the panning
- myXmax = point.x; myYmax = point.y;
-
- }
- } else // if ( nFlags & MK_MBUTTON)
- // ============================ RIGHT BUTTON =======================
- if ( nFlags & MK_RBUTTON)
- {
- if ( nFlags & MK_CONTROL )
- {
- myView->Rotation(point.x,point.y);
- }
- }else //if ( nFlags & MK_RBUTTON)
- // ============================ NO BUTTON =======================
- { // No buttons
- myXmax = point.x; myYmax = point.y;
- if (myCurrentMode == CurAction3d_EndDirectionalLight)
- {
- p2 = ConvertClickToPoint(point.x,point.y,myView);
- //Update the light dynamically
- if( p1.Distance(p2)>Precision::Confusion())
- {
- BRepBuilderAPI_MakeEdge MakeEdge(p1, p2);
- directionalEdgeShape->Set(MakeEdge.Edge());
- GetDocument()->GetAISContext()->Redisplay(directionalEdgeShape,0,Standard_True);
- myCurrent_DirectionalLight->SetDirection(p2.X()-p1.X(),p2.Y()-p1.Y(),p2.Z()-p1.Z());
- myView->UpdateLights();
- myView->Redraw();
- }
- }
- else if (myCurrentMode == CurAction3d_BeginPositionalLight)
- {
- p2 = ConvertClickToPoint(point.x,point.y,myView);
- //Update the light dynamically
- myCurrent_PositionalLight->SetPosition(p2.X(),p2.Y(),p2.Z());
- myView->UpdateLights();
- myView->Redraw();
- }
- else if (myCurrentMode == CurAction3d_TargetSpotLight)
- {
- p2 = ConvertClickToPoint(point.x,point.y,myView);
- //Update the light dynamically
- Standard_Real coneHeigth=p1.Distance(p2);
- if( coneHeigth>Precision::Confusion())
- {
- BRepPrimAPI_MakeCone MakeCone(gp_Ax2(p1, gp_Dir(gp_Vec(p1, p2))),
- 0, (p1.Distance(p2))/tan(1.04), coneHeigth);
- spotConeShape->Set(MakeCone.Solid());
- GetDocument()->GetAISContext()->Redisplay(spotConeShape,0,Standard_True);
- myCurrent_SpotLight->SetDirection(p2.X()-p1.X(),p2.Y()-p1.Y(),p2.Z()-p1.Z());
- myView->UpdateLights();
- myView->Redraw();
- }
- }
- else if (myCurrentMode == CurAction3d_EndSpotLight)
- {
- p3 = ConvertClickToPoint(point.x,point.y,myView);
- //Update the light dynamically
- Standard_Real coneHeigth=p1.Distance(p2);
- if( (p2.Distance(p3))>Precision::Confusion())
- {
- BRepPrimAPI_MakeCone MakeCone(gp_Ax2(p1, gp_Dir(gp_Vec(p1, p2))),
- 0, p2.Distance(p3), coneHeigth);
- spotConeShape->Set(MakeCone.Solid());
- GetDocument()->GetAISContext()->Redisplay(spotConeShape,0,Standard_True);
- myCurrent_SpotLight->SetAngle((float )atan(p2.Distance(p3)/p1.Distance(p2))) ;
- myView->UpdateLights();
- myView->Redraw();
- }
- }
- else if (nFlags & MK_SHIFT)
- {
- GetDocument()->ShiftMoveEvent(point.x,point.y,myView);
- }
- else
- {
- GetDocument()->MoveEvent(point.x,point.y,myView);
- }
- }
-}
-
-void CViewer3dView::OnUpdateBUTTONHlrOff (CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (!myHlrModeIsOn);
- pCmdUI->Enable (myHlrModeIsOn);
-}
-
-void CViewer3dView::OnUpdateBUTTONHlrOn (CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myHlrModeIsOn);
- pCmdUI->Enable (!myHlrModeIsOn);
-}
-
-void CViewer3dView::OnUpdateBUTTONPanGlo(CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myCurrentMode == CurAction3d_GlobalPanning);
- pCmdUI->Enable (myCurrentMode != CurAction3d_GlobalPanning);
-
-}
-
-void CViewer3dView::OnUpdateBUTTONPan(CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myCurrentMode == CurAction3d_DynamicPanning);
- pCmdUI->Enable (myCurrentMode != CurAction3d_DynamicPanning );
-}
-
-void CViewer3dView::OnUpdateBUTTONZoomProg(CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myCurrentMode == CurAction3d_DynamicZooming );
- pCmdUI->Enable (myCurrentMode != CurAction3d_DynamicZooming);
-}
-
-void CViewer3dView::OnUpdateBUTTONZoomWin(CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myCurrentMode == CurAction3d_WindowZooming);
- pCmdUI->Enable (myCurrentMode != CurAction3d_WindowZooming);
-}
-
-void CViewer3dView::OnUpdateBUTTONRot(CCmdUI* pCmdUI)
-{
- pCmdUI->SetCheck (myCurrentMode == CurAction3d_DynamicRotation);
- pCmdUI->Enable (myCurrentMode != CurAction3d_DynamicRotation);
-}
-
-void CViewer3dView::DrawRectangle (Standard_Integer theMinX,
- Standard_Integer theMinY,
- Standard_Integer theMaxX,
- Standard_Integer theMaxY,
- Standard_Boolean theToDraw,
- Aspect_TypeOfLine theLineType)
-{
- const Handle(AIS_InteractiveContext)& aCtx = GetDocument()->GetAISContext();
- if (!theToDraw)
- {
- aCtx->Remove (myRect, false);
- aCtx->CurrentViewer()->RedrawImmediate();
- return;
- }
-
- CRect aRect;
- GetWindowRect (aRect);
- myRect->SetLineType (theLineType);
- myRect->SetRectangle (theMinX, aRect.Height() - theMinY, theMaxX, aRect.Height() - theMaxY);
- if (!aCtx->IsDisplayed (myRect))
- {
- aCtx->Display (myRect, false);
- }
- else
- {
- aCtx->Redisplay (myRect, false);
- }
- aCtx->CurrentViewer()->RedrawImmediate();
-}
-
-void CViewer3dView::OnModifyChangeBackground()
-{
- Standard_Real R1;
- Standard_Real G1;
- Standard_Real B1;
- myView->BackgroundColor(Quantity_TOC_RGB,R1,G1,B1);
- COLORREF m_clr ;
- m_clr = RGB(R1*255,G1*255,B1*255);
-
- CColorDialog dlgColor(m_clr);
- if (dlgColor.DoModal() == IDOK)
- {
- m_clr = dlgColor.GetColor();
- R1 = GetRValue(m_clr)/255.;
- G1 = GetGValue(m_clr)/255.;
- B1 = GetBValue(m_clr)/255.;
- myView->SetBackgroundColor(Quantity_TOC_RGB,R1,G1,B1);
- }
- myView->Redraw();
-}
-
-void CViewer3dView::OnDirectionalLight()
-{
-// Directional light source creation
-
-// Checking if the Active lights limit number is not reached
- if( NbActiveLights>=myGraphicDriver->InquireLightLimit() )
- {
- CString aMsg;
- aMsg.Format (L"You have reach the limit number of active lights (%d).\n Clear lights to create new ones.", myGraphicDriver->InquireLightLimit());
- MessageBox (aMsg, L"Light creation", MB_OK);
- return;
- }
-
- UpdateData(TRUE);
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick a first point");
- myCurrentMode = CurAction3d_BeginDirectionalLight;
-
-TCollection_AsciiString Message("\
-myCurrent_DirectionalLight = new V3d_DirectionalLight (gp_Dir (theDirection));\n\
-\n\
-myView->SetLightOn(myCurrent_DirectionalLight);\n\
-\n\
-");
-// Update The Result Message Dialog
- GetDocument()->UpdateResultMessageDlg("V3d_DirectionalLight",Message);
-}
-
-void CViewer3dView::OnSpotLight()
-{
-// Spot light source creation
-
-// Checking if the Active lights limit number is not reached
- if( NbActiveLights>=myGraphicDriver->InquireLightLimit() )
- {
- CString aMsg;
- aMsg.Format(L"You have reach the limit number of active lights (%d).\n Clear lights to create new ones.", myGraphicDriver->InquireLightLimit());
- MessageBox (aMsg, L"Light creation", MB_OK);
- return;
- }
-
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick the light position");
- myCurrentMode = CurAction3d_BeginSpotLight;
-
-TCollection_AsciiString Message("\
-myCurrent_SpotLight = new V3d_SpotLight (gp_Pnt (thePosition), gp_Dir (theDirection), Quantity_NOC_RED);\n\
-\n\
-myView->SetLightOn(myCurrent_SpotLight);\n\
-\n\
-");
-// Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("V3d_SpotLight",Message);
-}
-
-void CViewer3dView::OnPositionalLight()
-{
-// Positional light source creation
-
-// Checking if the Active lights limit number is not reached
- if( NbActiveLights>=myGraphicDriver->InquireLightLimit() )
- {
- CString aMsg;
- aMsg.Format(L"You have reach the limit number of active lights (%d).\n Clear lights to create new ones.", myGraphicDriver->InquireLightLimit());
- MessageBox(aMsg, L"Light creation", MB_OK);
- return;
- }
-
- myCurrent_PositionalLight=new V3d_PositionalLight (gp_Pnt (0,0,0), Quantity_NOC_GREEN);
- myCurrent_PositionalLight->SetAttenuation (1, 0);
- myView->SetLightOn(myCurrent_PositionalLight);
- NbActiveLights++;
- ((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Pick the light position");
- myCurrentMode = CurAction3d_BeginPositionalLight;
-
-TCollection_AsciiString Message("\
-myCurrent_PositionalLight=new V3d_PositionalLight (gp_Pnt(thePosition),Quantity_NOC_GREEN);\n\
-myCurrent_PositionalLight->SetAttenuation (1, 0);\n\
-\n\
-myView->SetLightOn(myCurrent_PositionalLight) ;\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("V3d_PositionalLight",Message);
-}
-
-void CViewer3dView::OnAmbientLight()
-{
-// Ambiant light source creation
-
-// Checking if the Active lights limit number is not reached
- if( NbActiveLights>=myGraphicDriver->InquireLightLimit() )
- {
- CString aMsg;
- aMsg.Format(L"You have reach the limit number of active lights (%d).\n Clear lights to create new ones.", myGraphicDriver->InquireLightLimit());
- MessageBox(aMsg, L"Light creation", MB_OK);
- return;
- }
-
- myCurrent_AmbientLight=new V3d_AmbientLight (Quantity_NOC_GRAY);
- myView->SetLightOn(myCurrent_AmbientLight) ;
- NbActiveLights++;
-
- myView->UpdateLights();
- myView->Redraw();
-
-TCollection_AsciiString Message("\
-myCurrent_AmbientLight=new V3d_AmbientLight(Quantity_NOC_GRAY);\n\
-\n\
-myView->SetLightOn(myCurrent_AmbientLight) ;\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("V3d_AmbientLight",Message);
-}
-
-
-void CViewer3dView::OnScale()
-{
- ScaleDlg Dlg(myView, this);
- Dlg.DoModal();
- myView->Redraw();
-}
-
-//V3d_View.hxx
-
-void CViewer3dView::OnShadingmodel()
-{
-TCollection_AsciiString Message("\
-myView->SetShadingModel(V3d_TypeOfShadingModel myTypeOfShadingModel);\n\
-\n\
-myCurrent_V3d_View->Update();\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetShadingModel",Message);
-
- CShadingModelDlg Dlg(myView);
- Dlg.DoModal();
- myView->Redraw();
-}
-
-
-void CViewer3dView::OnAntialiasingonoff()
-{
- Graphic3d_RenderingParams& aParams = myView->ChangeRenderingParams();
- aParams.NbMsaaSamples = aParams.NbMsaaSamples == 0 ? 8 : 0;
- myView->Update();
-
-TCollection_AsciiString Message("\
-Graphic3d_RenderingParams& aParams = myView->ChangeRenderingParams();\n\
-aParams.NbMsaaSamples = aParams.NbMsaaSamples == 0 ? 8 : 0;\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetAntialiasingOn/SetAntialiasingOff",Message);
-}
-
-void CViewer3dView::OnClearLights()
-{
-// Setting Off all viewer active lights
- V3d_ListOfLight lights;
- for (V3d_ListOfLightIterator anIter = myView->Viewer()->ActiveLightIterator(); anIter.More(); anIter.Next())
- {
- lights.Append (anIter.Value());
- }
- V3d_ListOfLightIterator itrLights(lights);
- for (; itrLights.More(); itrLights.Next())
- {
- myView->Viewer()->SetLightOff (itrLights.Value());
- }
-
-// Setting Off all view active lights
- lights.Clear();
- for (V3d_ListOfLightIterator anIter = myView->ActiveLightIterator(); anIter.More(); anIter.Next())
- {
- lights.Append (anIter.Value());
- }
- itrLights.Initialize (lights);
- for (; itrLights.More(); itrLights.Next())
- {
- myView->SetLightOff (itrLights.Value());
- }
-
- myView->Viewer()->SetDefaultLights(); // Setting the default lights on
-
- NbActiveLights = 2; // There are 2 default active lights
-
- myView->Update();
-
-TCollection_AsciiString Message("\
-// Setting Off all viewer active lights\n\
-V3d_ListOfLight lights;\n\
-for (V3d_ListOfLightIterator anIter = myView->Viewer()->ActiveLightIterator(); anIter.More(); anIter.Next())\n\
-{\n\
- lights.Append (anIter.Value());\n\
-}\n\
-V3d_ListOfLightIterator itrLights(lights);\n\
-for (; itrLights.More(); itrLights.Next())\n\
-{\n\
- myView->Viewer()->SetLightOff (itrLights.Value())\n\
-}\n\
-\n\
-// Setting Off all view active lights\n\
-lights.Clear();\n\
-for (V3d_ListOfLightIterator anIter = myView->ActiveLightIterator(); anIter.More(); anIter.Next())\n\
-{\n\
- lights.Append (anIter.Value());\n\
-}\n\
-itrLights.Initialize(lights);\n\
-for (; itrLights.More(); itrLights.Next())\n\
-{\n\
- myView->SetLightOff (itrLights.Value());\n\
-}\n\
-\n\
-myView->Viewer()->SetDefaultLights();// Setting the default lights on\n\
- ");
-
- // Update The Result Message Dialog
-GetDocument()->UpdateResultMessageDlg("SetLightOff",Message);
-}
-
-void CViewer3dView::OnModelclipping()
-{
- if (myClippingPlane.IsNull())
- {
- gp_Pln aClipPlane (gp_Pnt (0.0, 0.0, 0.0), gp_Dir (1.0, 0.0, 0.0));
- gp_Pln aFacePlane (gp_Pnt (0.1, 0.0, 0.0), gp_Dir (1.0, 0.0, 0.0));
-
- // create clipping plane and add to view
- myClippingPlane = new Graphic3d_ClipPlane (aClipPlane);
-
- // shape to represent clipping plane
- BRepBuilderAPI_MakeFace aMakeFaceCommand (aFacePlane, 200.0, -200.0, 410.0, -410.0);
- TopoDS_Face aShape = aMakeFaceCommand.Face();
- myShape = new AIS_Shape (aShape);
- myShape->SetTransparency (0.5);
- }
-
- CModelClippingDlg aClippingDlg (myView, myShape, myClippingPlane, GetDocument());
-
- aClippingDlg.DoModal();
-}
-
-void CViewer3dView::OnOptionsTrihedronStaticTrihedron()
-{
- CTrihedronDlg Dlg(myView, GetDocument());
- Dlg.DoModal();
-}
-
-void CViewer3dView::InitButtons()
-{
- myXmin=0;
- myYmin=0;
- myXmax=0;
- myYmax=0;
- myCurZoom=0;
- myCurrentMode = CurAction3d_Nothing;
-}
-
-void CViewer3dView::Reset()
-{
- InitButtons();
- myVisMode = VIS_SHADE;
- if (!myView.IsNull())
- {
- RedrawVisMode();
- myView->Reset();
- }
-}
-
-void CViewer3dView::GetViewAt (Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ) const
-{
- myView->At (theX, theY, theZ);
-}
-
-void CViewer3dView::SetViewAt (const Standard_Real theX, const Standard_Real theY, const Standard_Real theZ)
-{
- myView->SetAt (theX, theY, theZ);
-}
-
-void CViewer3dView::GetViewEye(Standard_Real& X, Standard_Real& Y, Standard_Real& Z)
-{
- myView->Eye(X,Y,Z);
-}
-
-void CViewer3dView::SetViewEye(Standard_Real X, Standard_Real Y, Standard_Real Z)
-{
- myView->SetEye(X,Y,Z);
-}
-
-Standard_Real CViewer3dView::GetViewScale()
-{
- return myView->Scale();
-}
-
-void CViewer3dView::SetViewScale(Standard_Real Coef)
-{
- myView->SetScale(Coef);
-}
-
-void CViewer3dView::RedrawVisMode()
-{
- switch (myVisMode)
- {
- case VIS_WIREFRAME:
- GetDocument()->GetAISContext()->SetDisplayMode (AIS_WireFrame, Standard_True);
- myView->SetComputedMode (Standard_False);
- myView->Redraw();
- break;
- case VIS_SHADE:
- GetDocument()->GetAISContext()->SetDisplayMode (AIS_Shaded, Standard_True);
- myView->SetComputedMode (Standard_False);
- myView->Redraw();
- break;
- case VIS_HLR:
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
- myView->SetComputedMode (Standard_True);
- myView->Redraw();
- SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
- GetDocument()->GetAISContext()->SetDisplayMode (AIS_WireFrame, Standard_True);
- break;
- }
-}
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h
deleted file mode 100755
index 1f2d3495df..0000000000
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h
+++ /dev/null
@@ -1,173 +0,0 @@
-// Viewer3dView.h : interface of the CViewer3dView class
-//
-/////////////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_VIEWERVIEW_H__4EF39FBC_4EBB_11D1_8D67_0800369C8A03__INCLUDED_)
-#define AFX_VIEWERVIEW_H__4EF39FBC_4EBB_11D1_8D67_0800369C8A03__INCLUDED_
-
-#include
-
-#include
-#include
-#include
-#include
-#include
-
-#include
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-enum View3D_CurrentAction {
- CurAction3d_Nothing,
- CurAction3d_DynamicZooming,
- CurAction3d_WindowZooming,
- CurAction3d_DynamicPanning,
- CurAction3d_GlobalPanning,
- CurAction3d_DynamicRotation,
- CurAction3d_BeginSpotLight,
- CurAction3d_TargetSpotLight,
- CurAction3d_EndSpotLight,
- CurAction3d_BeginPositionalLight,
- CurAction3d_BeginDirectionalLight,
- CurAction3d_EndDirectionalLight
-};
-
-class AIS_RubberBand;
-
-class CViewer3dView : public CView
-{
-protected: // create from serialization only
- CViewer3dView();
- DECLARE_DYNCREATE(CViewer3dView)
-
-public:
- CViewer3dDoc* GetDocument();
- void Redraw() { myView->Redraw(); };
- void InitButtons();
- void Reset();
- void GetViewAt (Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ) const;
- void SetViewAt (const Standard_Real theX, const Standard_Real theY, const Standard_Real theZ);
- void GetViewEye (Standard_Real& X, Standard_Real& Y, Standard_Real& Z);
- void SetViewEye (const Standard_Real X,const Standard_Real Y,const Standard_Real Z);
- Standard_Real GetViewScale();
- void SetViewScale (const Standard_Real Coef);
- void FitAll() { myView->FitAll(); myView->ZFitAll(); };
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CViewer3dView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- virtual void OnInitialUpdate();
- //}}AFX_VIRTUAL
-
-// Implementation
-public:
- virtual ~CViewer3dView();
-#ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
-#endif
-
- int scaleX;
- int scaleY;
- int scaleZ;
-
-protected:
-
-// Generated message map functions
-protected:
- //{{AFX_MSG(CViewer3dView)
- 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 OnSize(UINT nType, int cx, int cy);
- afx_msg void OnBUTTONZoomProg();
- afx_msg void OnBUTTONZoomWin();
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
- 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 OnDirectionalLight();
- afx_msg void OnSpotLight();
- afx_msg void OnPositionalLight();
- afx_msg void OnAmbientLight();
- afx_msg void OnScale();
- afx_msg void OnShadingmodel();
- afx_msg void OnAntialiasingonoff();
- afx_msg void OnClearLights();
- afx_msg void OnModelclipping();
- afx_msg void OnOptionsTrihedronStaticTrihedron();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-private:
- enum VisMode { VIS_WIREFRAME, VIS_SHADE, VIS_HLR };
- VisMode myVisMode;
-
- Handle(V3d_View) myView;
- Handle(Graphic3d_GraphicDriver) myGraphicDriver;
- View3D_CurrentAction myCurrentMode;
- Standard_Integer myXmin;
- Standard_Integer myYmin;
- Standard_Integer myXmax;
- Standard_Integer myYmax;
-
- Standard_Integer NbActiveLights;
- Standard_Boolean myHlrModeIsOn;
- Standard_Real myCurZoom;
- Handle(V3d_AmbientLight) myCurrent_AmbientLight;
- Handle(V3d_SpotLight) myCurrent_SpotLight;
- Handle(V3d_PositionalLight) myCurrent_PositionalLight;
- Handle(V3d_DirectionalLight) myCurrent_DirectionalLight;
- Handle(Graphic3d_ClipPlane) myClippingPlane;
- Handle(AIS_Shape) myShape;
- Handle(AIS_RubberBand) myRect; //!< Rubber rectangle for selection
-
-private:
-
- void DrawRectangle (Standard_Integer theMinX, Standard_Integer theMinY, Standard_Integer theMaxX, Standard_Integer theMaxY,
- Standard_Boolean theToDraw, Aspect_TypeOfLine theLineType = Aspect_TOL_SOLID);
-
- UINT myAxisKey;
- UINT myScaleDirection;
- void RedrawVisMode();
-
-};
-
-#ifndef _DEBUG // debug version in Viewer3dView.cpp
-inline CViewer3dDoc* CViewer3dView::GetDocument()
- { return (CViewer3dDoc*)m_pDocument; }
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_VIEWERVIEW_H__4EF39FBC_4EBB_11D1_8D67_0800369C8A03__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/CMakeLists.txt b/samples/mfc/standard/06_Ocaf/CMakeLists.txt
deleted file mode 100644
index 8a45d105ef..0000000000
--- a/samples/mfc/standard/06_Ocaf/CMakeLists.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-cmake_minimum_required (VERSION 2.6)
-
-project (Ocaf)
-
-add_definitions (-DWINVER=0x0501 -DUNICODE -D_UNICODE)
-set (CMAKE_MFC_FLAG 2)
-
-set (Ocaf_SRC_DIR ${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf/src)
-set (Ocaf_HEADER_FILES ${Ocaf_SRC_DIR}/NewBoxDlg.h
- ${Ocaf_SRC_DIR}/NewCylDlg.h
- ${Ocaf_SRC_DIR}/OcafApp.h
- ${Ocaf_SRC_DIR}/OcafDoc.h
- ${Ocaf_SRC_DIR}/OcafMainFrm.h
- ${Ocaf_SRC_DIR}/TOcaf_Commands.hxx
- ${Ocaf_SRC_DIR}/StdAfx.h )
-set (Ocaf_SOURCE_FILES ${Ocaf_SRC_DIR}/NewBoxDlg.cpp
- ${Ocaf_SRC_DIR}/NewCylDlg.cpp
- ${Ocaf_SRC_DIR}/OcafApp.cpp
- ${Ocaf_SRC_DIR}/OcafDoc.cpp
- ${Ocaf_SRC_DIR}/OcafMainFrm.cpp
- ${Ocaf_SRC_DIR}/TOcaf_Application.cxx
- ${Ocaf_SRC_DIR}/TOcaf_Commands.cxx
- ${Ocaf_SRC_DIR}/TOcafFunction_BoxDriver.cxx
- ${Ocaf_SRC_DIR}/TOcafFunction_CutDriver.cxx
- ${Ocaf_SRC_DIR}/TOcafFunction_CylDriver.cxx
- ${Ocaf_SRC_DIR}/StdAfx.cpp )
-
-set (Ocaf_RESOURCE_DIR ${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf/res)
-set (Ocaf_RESOURCE_HEADER ${Ocaf_RESOURCE_DIR}/resource.h)
-set (Ocaf_RESOURCE_FILES ${Ocaf_RESOURCE_DIR}/ActionsTB.bmp
- ${Ocaf_RESOURCE_DIR}/AIS_TB.bmp
- ${Ocaf_RESOURCE_DIR}/Toolbar.bmp
- ${Ocaf_RESOURCE_DIR}/UndoRedoTB.bmp
- ${Ocaf_RESOURCE_DIR}/Ocaf.rc)
-
-# groups in the VS solution
-source_group ("Source Files" FILES ${Ocaf_SOURCE_FILES}
- ${COMMON_WINMAIN_FILE})
-
-source_group ("Header Files" FILES ${Ocaf_HEADER_FILES}
- ${Ocaf_RESOURCE_HEADER})
-
-source_group ("Resource Files" FILES ${Ocaf_RESOURCE_FILES})
-
-add_executable (Ocaf WIN32 ${Ocaf_SOURCE_FILES}
- ${Ocaf_HEADER_FILES}
- ${COMMON_WINMAIN_FILE}
- ${Ocaf_RESOURCE_HEADER}
- ${Ocaf_RESOURCE_FILES} )
-
-
-set_property (TARGET Ocaf PROPERTY FOLDER "Samples/mfc")
-
-if (SINGLE_GENERATOR)
- install (TARGETS Ocaf DESTINATION "${INSTALL_DIR_BIN}")
-else()
- install (TARGETS Ocaf
- CONFIGURATIONS Release RelWithDebInfo
- DESTINATION "${INSTALL_DIR_BIN}")
- install (TARGETS Ocaf
- CONFIGURATIONS Debug
- DESTINATION "${INSTALL_DIR_BIN}d")
-endif()
-
-include_directories (${CMAKE_BINARY_DIR}/inc
- ${MFC_STANDARD_SAMPLES_DIR}/06_Ocaf
- ${Ocaf_SRC_DIR}
- ${MFC_STANDARD_SAMPLES_DIR}/Common)
-
-target_link_libraries (Ocaf mfcsample TKLCAF TKVCAF TKBO TKBin TKXml TKBinL TKXmlL)
diff --git a/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj b/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj
deleted file mode 100644
index a68e892151..0000000000
--- a/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj
+++ /dev/null
@@ -1,493 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {B3C10EF6-42C7-4DB8-A49C-7E38255D5B1B}
- Ocaf
- MFCProj
-
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
- Application
- Dynamic
- Unicode
- $(VCPlatformToolSet)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>10.0.30319.1
- ../../../../win32\$(VCFMT)\bin\
- .\win32\obj\
- false
- ../../../../win64\$(VCFMT)\bin\
- .\win64\obj\
- false
- ../../../../win32\$(VCFMT)\bind\
- .\win32\objd\
- true
- ../../../../win64\$(VCFMT)\bind\
- .\win64\objd\
- true
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\obj/Ocaf.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\;..\..\..\src;...\..\..\res;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win32\obj/Ocaf.pch
- .\win32\obj/
- .\win32\obj/
- .\win32\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKLCAF.lib;TKBrep.lib;TKIGES.lib;TKShHealing.lib;TKStep.lib;TKXSBase.lib;TKBO.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;TKBin.lib;TKXml.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bin/Ocaf.exe
- true
- ..\..\..\..\win32\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win32\$(VCFMT)\bin/Ocaf.pdb
- Windows
- MachineX86
-
-
-
-
- NDEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\obj/Ocaf.tlb
-
-
-
-
- MaxSpeed
- OnlyExplicitInline
- ..\..\..\;..\..\..\src;...\..\..\res;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- NDEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- true
- MultiThreadedDLL
- true
- Use
- stdafx.h
- .\win64\obj/Ocaf.pch
- .\win64\obj/
- .\win64\obj/
- .\win64\obj/
- Level4
- true
- Default
-
-
- NDEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKLCAF.lib;TKBrep.lib;TKIGES.lib;TKShHealing.lib;TKStep.lib;TKXSBase.lib;TKBO.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;TKBin.lib;TKXml.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bin/Ocaf.exe
- true
- ..\..\..\..\win64\$(VCFMT)\lib;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- ../../../../win64\$(VCFMT)\bin/Ocaf.pdb
- Windows
- MachineX64
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- Win32
- .\win32\objd/Ocaf.tlb
-
-
-
-
- Disabled
- ..\..\..\;..\..\..\src;...\..\..\res;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win32\objd/Ocaf.pch
- .\win32\objd/
- .\win32\objd/
- .\win32\objd/
- Level4
- true
- EditAndContinue
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKLCAF.lib;TKBrep.lib;TKIGES.lib;TKShHealing.lib;TKStep.lib;TKXSBase.lib;TKBO.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;TKBin.lib;TKXml.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win32\$(VCFMT)\bind/Ocaf.exe
- true
- ..\..\..\..\win32\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win32\$(VCFMT)\bind/Ocaf.pdb
- Windows
- MachineX86
-
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
- true
- true
- X64
- .\win64\objd/Ocaf.tlb
-
-
-
-
- Disabled
- ..\..\..\;..\..\..\src;...\..\..\res;..\..\..\..\Common;$(CSF_OCCTIncludePath);%(AdditionalIncludeDirectories)
- _DEBUG;_WINDOWS;WINVER=0x0501;%(PreprocessorDefinitions)
- EnableFastChecks
- MultiThreadedDebugDLL
- Use
- stdafx.h
- .\win64\objd/Ocaf.pch
- .\win64\objd/
- .\win64\objd/
- .\win64\objd/
- Level4
- true
- ProgramDatabase
- Default
-
-
- _DEBUG;%(PreprocessorDefinitions)
- 0x0409
-
-
- TKVCAF.lib;TKLCAF.lib;TKBrep.lib;TKIGES.lib;TKShHealing.lib;TKStep.lib;TKXSBase.lib;TKBO.lib;TKBool.lib;TKCAF.lib;TKCDF.lib;TKernel.lib;TKFeat.lib;TKFillet.lib;TKG2d.lib;TKG3d.lib;TKGeomAlgo.lib;TKGeomBase.lib;TKHLR.lib;TKMath.lib;TKOffset.lib;TKPrim.lib;TKService.lib;TKTopAlgo.lib;TKV3d.lib;TKOpenGl.lib;TKBin.lib;TKXml.lib;mfcsample.lib;%(AdditionalDependencies)
- ../../../../win64\$(VCFMT)\bind/Ocaf.exe
- true
- ..\..\..\..\win64\$(VCFMT)\libd;$(CSF_OCCTLibPath);%(AdditionalLibraryDirectories)
- true
- ../../../../win64\$(VCFMT)\bind/Ocaf.pdb
- Windows
- MachineX64
-
-
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Create
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- Create
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- Disabled
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- EnableFastChecks
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- MaxSpeed
- %(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
-
-
-
-
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
- %(PreprocessorDefinitions)
- res;%(AdditionalIncludeDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {2d6cbbe8-6965-4016-b503-0d715ae26691}
- false
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj.filters b/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj.filters
deleted file mode 100644
index 976b07f05b..0000000000
--- a/samples/mfc/standard/06_Ocaf/adm/win/vc10/Ocaf.vcxproj.filters
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
- {3c30d6ca-d9bc-459f-99b6-9cc644fb9093}
- cpp;c;cxx;rc;def;r;odl;idl;hpj;bat
-
-
- {84ea6fae-dd93-4f6d-b50f-ed88ccc5ce98}
- h;hpp;hxx;hm;inl
-
-
- {185b7bc3-efac-469b-960c-918d0e30bc03}
- ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe
-
-
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Source Files
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
-
- Resource Files
-
-
- Resource Files
-
-
- Resource Files
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/samples/mfc/standard/06_Ocaf/res/AIS_TB.bmp b/samples/mfc/standard/06_Ocaf/res/AIS_TB.bmp
deleted file mode 100755
index f104c7f53f..0000000000
Binary files a/samples/mfc/standard/06_Ocaf/res/AIS_TB.bmp and /dev/null differ
diff --git a/samples/mfc/standard/06_Ocaf/res/ActionsTB.bmp b/samples/mfc/standard/06_Ocaf/res/ActionsTB.bmp
deleted file mode 100755
index f3bd7b6e6b..0000000000
Binary files a/samples/mfc/standard/06_Ocaf/res/ActionsTB.bmp and /dev/null differ
diff --git a/samples/mfc/standard/06_Ocaf/res/Ocaf.rc b/samples/mfc/standard/06_Ocaf/res/Ocaf.rc
deleted file mode 100755
index 7e2d993d73..0000000000
--- a/samples/mfc/standard/06_Ocaf/res/Ocaf.rc
+++ /dev/null
@@ -1,390 +0,0 @@
-//Microsoft Developer Studio generated resource script.
-//
-#include "resource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "afxres.h"
-#include "..\..\Common\res\OCC_Resource.h"
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE DISCARDABLE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE DISCARDABLE
-BEGIN
- "#include ""afxres.h""\r\n"
- "#include ""..\\..\\Common\\res\\OCC_Resource.h""\0"
-END
-
-3 TEXTINCLUDE DISCARDABLE
-BEGIN
- "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
- "#define _AFX_NO_OLE_RESOURCES\r\n"
- "#define _AFX_NO_TRACKER_RESOURCES\r\n"
- "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
- "\r\n"
- "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
- "#ifdef _WIN32\r\n"
- "LANGUAGE 9, 1\r\n"
- "#pragma code_page(1252)\r\n"
- "#endif //_WIN32\r\n"
- "#include ""afxres.rc"" // Standard components\r\n"
- "#endif\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Bitmap
-//
-
-IDR_MAINFRAME BITMAP MOVEABLE PURE "Toolbar.bmp"
-IDR_UNDOREDO BITMAP DISCARDABLE "UndoRedoTB.bmp"
-IDR_ACTIONS BITMAP DISCARDABLE "ActionsTB.bmp"
-IDR_TB_AIS BITMAP MOVEABLE PURE "AIS_TB.bmp"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Toolbar
-//
-
-IDR_MAINFRAME TOOLBAR DISCARDABLE 16, 15
-BEGIN
- BUTTON ID_FILE_NEW
- BUTTON ID_FILE_OPEN
- BUTTON ID_FILE_SAVE
- SEPARATOR
- BUTTON ID_APP_ABOUT
-END
-
-IDR_UNDOREDO TOOLBAR DISCARDABLE 16, 15
-BEGIN
- BUTTON ID_EDIT_UNDO
- BUTTON ID_EDIT_REDO
-END
-
-IDR_ACTIONS TOOLBAR DISCARDABLE 16, 15
-BEGIN
- BUTTON ID_CREATEBOX
- BUTTON ID_CREATECYL
- BUTTON ID_CUT
- BUTTON ID_MODIFY
-// BUTTON ID_DFBR
-END
-
-IDR_TB_AIS TOOLBAR DISCARDABLE 16, 15
-BEGIN
- BUTTON ID_OBJECT_WIREFRAME
- BUTTON ID_OBJECT_SHADING
- SEPARATOR
- BUTTON ID_OBJECT_COLOR
- BUTTON ID_OBJECT_MATERIAL
- BUTTON ID_OBJECT_TRANSPARENCY
- SEPARATOR
- BUTTON ID_OBJECT_DELETE
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDR_MAINFRAME MENU PRELOAD DISCARDABLE
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM "&Open...\tCtrl+O", ID_FILE_OPEN
- MENUITEM SEPARATOR
- MENUITEM "Recent File", ID_FILE_MRU_FILE1, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About Ocaf...", ID_APP_ABOUT
- END
-END
-
-IDR_3DTYPE MENU PRELOAD DISCARDABLE
-BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", ID_FILE_NEW
- MENUITEM "&Open...\tCtrl+O", ID_FILE_OPEN
- MENUITEM "&Close", ID_FILE_CLOSE
- MENUITEM "&Save\tCtrl+S", ID_FILE_SAVE
- MENUITEM "Save &As...", ID_FILE_SAVE_AS
- MENUITEM SEPARATOR
- POPUP "Export"
- BEGIN
- MENUITEM "BRep...", ID_FILE_EXPORT_BREP
- MENUITEM SEPARATOR
- MENUITEM "Image...", ID_FILE_EXPORT_IMAGE
- END
- MENUITEM SEPARATOR
- MENUITEM "Recent File", ID_FILE_MRU_FILE1, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "E&xit", ID_APP_EXIT
- END
- POPUP "&View"
- BEGIN
- MENUITEM "&Toolbar", ID_VIEW_TOOLBAR
- MENUITEM "&Status Bar", ID_VIEW_STATUS_BAR
- END
- POPUP "&Window"
- BEGIN
- MENUITEM "New Window &3D", ID_WINDOW_NEW
- MENUITEM "&Cascade", ID_WINDOW_CASCADE
- MENUITEM "&Tile", ID_WINDOW_TILE_HORZ
- MENUITEM "&Arrange Icons", ID_WINDOW_ARRANGE
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&About OCAF...", ID_APP_ABOUT
- END
-END
-
-IDR_Popup3D MENU DISCARDABLE
-BEGIN
- POPUP "BackGround"
- BEGIN
- MENUITEM "Background Color...", ID_Modify_ChangeBackground
- END
- POPUP "Object(s)"
- BEGIN
- MENUITEM "Delete", ID_OBJECT_DELETE
- MENUITEM "Shading", ID_OBJECT_SHADING
- MENUITEM "Wireframe", ID_OBJECT_WIREFRAME
- MENUITEM "Color...", ID_OBJECT_COLOR
- MENUITEM "Material...", ID_OBJECT_MATERIAL
- POPUP "Material"
- BEGIN
- MENUITEM "Aluminium", ID_OBJECT_MATERIAL_ALUMINIUM
-
- MENUITEM "Brass", ID_OBJECT_MATERIAL_BRASS
- MENUITEM "Bronze", ID_OBJECT_MATERIAL_BRONZE
-
- MENUITEM "Chrome", ID_OBJECT_MATERIAL_CHROME
-
- MENUITEM "Copper", ID_OBJECT_MATERIAL_COPPER
-
- MENUITEM "Gold", ID_OBJECT_MATERIAL_GOLD
- MENUITEM "Jade", ID_OBJECT_MATERIAL_JADE
- MENUITEM "Metalized", ID_OBJECT_MATERIAL_METALIZED
-
- MENUITEM "Neon GNC", ID_OBJECT_MATERIAL_NEON_GNC
-
- MENUITEM "Neon PHC", ID_OBJECT_MATERIAL_NEON_PHC
-
- MENUITEM "Obsidian", ID_OBJECT_MATERIAL_OBSIDIAN
-
- MENUITEM "Pewter", ID_OBJECT_MATERIAL_PEWTER
-
- MENUITEM "Plaster", ID_OBJECT_MATERIAL_PLASTER
-
- MENUITEM "Plastic", ID_OBJECT_MATERIAL_PLASTIC
-
- MENUITEM "Satin", ID_OBJECT_MATERIAL_SATIN
- MENUITEM "Shiny plastic", ID_OBJECT_MATERIAL_SHINY_PLASTIC
-
- MENUITEM "Silver", ID_OBJECT_MATERIAL_SILVER
-
- MENUITEM "Steel", ID_OBJECT_MATERIAL_STEEL
- MENUITEM "Stone", ID_OBJECT_MATERIAL_STONE
- MENUITEM SEPARATOR
- MENUITEM "Default", ID_OBJECT_MATERIAL_DEFAULT
-
- END
- MENUITEM "Transparency...", ID_OBJECT_TRANSPARENCY
- MENUITEM SEPARATOR
- MENUITEM "Modify attributes", ID_MODIFY
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_NEWBOX DIALOG DISCARDABLE 0, 0, 90, 170
-STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
-CAPTION " Box parameters"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,4,149,38,14
- PUSHBUTTON "Cancel",IDCANCEL,45,149,38,14
- LTEXT "Name",IDC_STATIC,12,132,24,11
- EDITTEXT IDC_NAME,36,130,40,14,ES_AUTOHSCROLL
- EDITTEXT IDC_X,36,15,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "X",IDC_STATIC,14,18,8,8
- EDITTEXT IDC_Y,36,32,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "Y",IDC_STATIC,14,35,8,8
- EDITTEXT IDC_Z,36,48,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "Z",IDC_STATIC,14,51,8,8
- GROUPBOX "Position",IDC_STATIC,4,7,79,59
- EDITTEXT IDC_L,36,76,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "L",IDC_STATIC,14,79,8,8
- EDITTEXT IDC_H,36,94,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "H",IDC_STATIC,14,97,8,8
- EDITTEXT IDC_W,36,110,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "W",IDC_STATIC,14,113,8,8
- GROUPBOX "Dimension",IDC_STATIC,4,66,79,61
-END
-
-IDD_NEWCYL DIALOG DISCARDABLE 0, 0, 90, 151
-STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
-CAPTION " Cylinder parameters"
-FONT 8, "MS Sans Serif"
-BEGIN
- DEFPUSHBUTTON "OK",IDOK,4,130,38,14
- PUSHBUTTON "Cancel",IDCANCEL,45,130,38,14
- LTEXT "Name",-1,13,116,24,11
- EDITTEXT IDC_NAME,37,114,40,14,ES_AUTOHSCROLL
- EDITTEXT IDC_X,36,15,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "X",-1,14,18,8,8
- EDITTEXT IDC_Y,36,32,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "Y",-1,14,35,8,8
- EDITTEXT IDC_Z,36,48,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "Z",-1,14,51,8,8
- GROUPBOX "Position",-1,4,7,79,59
- EDITTEXT IDC_R,36,76,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "R",-1,14,79,8,8
- EDITTEXT IDC_H,36,94,40,14,ES_AUTOHSCROLL | ES_NUMBER
- LTEXT "H",-1,14,97,8,8
- GROUPBOX "Dimension",-1,4,67,79,44
-END
-
-
-#ifndef _MAC
-/////////////////////////////////////////////////////////////////////////////
-//
-// Version
-//
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,1
- PRODUCTVERSION 1,0,0,1
- FILEFLAGSMASK 0x3fL
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0"
- BEGIN
- VALUE "CompanyName", "Open CASCADE Company\0"
- VALUE "FileDescription", "Ocaf MFC Application\0"
- VALUE "FileVersion", "1, 0, 0, 1\0"
- VALUE "InternalName", "Ocaf\0"
- VALUE "LegalCopyright", "Copyright (C) 2003\0"
- VALUE "LegalTrademarks", "\0"
- VALUE "OriginalFilename", "Ocaf.EXE\0"
- VALUE "ProductName", "Ocaf Application\0"
- VALUE "ProductVersion", "1, 0, 0, 1\0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
-
-#endif // !_MAC
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE PRELOAD DISCARDABLE
-BEGIN
- IDR_MAINFRAME "OCAF"
- IDR_3DTYPE "\nOCAF\nOCAF\nOCAF Files(*.sta)\n.sta\nOcaf.Document\nOCAF Document"
-END
-
-STRINGTABLE DISCARDABLE
-BEGIN
- ID_EDIT_UNDO "Undo the last action\nUndo"
- ID_EDIT_REDO "Redo the previously undone action\nRedo"
-END
-
-STRINGTABLE DISCARDABLE
-BEGIN
- ID_CREATEBOX "Create a box using function driver\nBox"
- ID_CUT "Cut operation\nCut"
- ID_CREATECYL "Create a cylinder using function driver\nCylinder"
- ID_MODIFY "Modify and recompute selected object\nModification"
-// ID_DFBR "Loading DF browser\nData Framework browser"
-END
-
-STRINGTABLE DISCARDABLE
-BEGIN
- AFX_IDS_APP_TITLE "Ocaf"
-END
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-#define _AFX_NO_SPLITTER_RESOURCES
-#define _AFX_NO_OLE_RESOURCES
-#define _AFX_NO_TRACKER_RESOURCES
-#define _AFX_NO_PROPERTY_RESOURCES
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE 9, 1
-#pragma code_page(1252)
-#endif //_WIN32
-#include "afxres.rc" // Standard components
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/samples/mfc/standard/06_Ocaf/res/Plugin b/samples/mfc/standard/06_Ocaf/res/Plugin
deleted file mode 100755
index fb9786f0d8..0000000000
--- a/samples/mfc/standard/06_Ocaf/res/Plugin
+++ /dev/null
@@ -1,44 +0,0 @@
-! Description of available plugins
-! ********************************
-!
-! XmlOcaf Document Plugin
-!
-03a56820-8269-11d5-aab2-0050044b1af1.Location: TKXml
-03a56822-8269-11d5-aab2-0050044b1af1.Location: TKXml
-03a56824-8269-11d5-aab2-0050044b1af1.Location: TKXml
-!
-! XmlLOcaf Document Plugin
-!
-13a56820-8269-11d5-aab2-0050044b1af1.Location: TKXmlL
-13a56822-8269-11d5-aab2-0050044b1af1.Location: TKXmlL
-13a56824-8269-11d5-aab2-0050044b1af1.Location: TKXmlL
-!
-! BinOcaf Document Plugin
-!
-03a56835-8269-11d5-aab2-0050044b1af1.Location: TKBin
-03a56836-8269-11d5-aab2-0050044b1af1.Location: TKBin
-!
-! BinLOcaf Document Plugin
-!
-13a56835-8269-11d5-aab2-0050044b1af1.Location: TKBinL
-13a56836-8269-11d5-aab2-0050044b1af1.Location: TKBinL
-!
-! XmlXCAF Document Plugin
-!
-f78ff496-a779-11d5-aab4-0050044b1af1.Location: TKXmlXCAF
-f78ff497-a779-11d5-aab4-0050044b1af1.Location: TKXmlXCAF
-!
-! BinXCAF Document Plugin
-!
-a78ff496-a779-11d5-aab4-0050044b1af1.Location: TKBinXCAF
-a78ff497-a779-11d5-aab4-0050044b1af1.Location: TKBinXCAF
-!
-! TObjXml Document Plugin
-!
-f78ff4a0-a779-11d5-aab4-0050044b1af1.Location: TKXmlTObj
-f78ff4a1-a779-11d5-aab4-0050044b1af1.Location: TKXmlTObj
-!
-! TObjBin Document Plugin
-!
-f78ff4a2-a779-11d5-aab4-0050044b1af1.Location: TKBinTObj
-f78ff4a3-a779-11d5-aab4-0050044b1af1.Location: TKBinTObj
diff --git a/samples/mfc/standard/06_Ocaf/res/Resources b/samples/mfc/standard/06_Ocaf/res/Resources
deleted file mode 100755
index 2034eeb6be..0000000000
--- a/samples/mfc/standard/06_Ocaf/res/Resources
+++ /dev/null
@@ -1,15 +0,0 @@
-formatlist:XmlOcaf|BinOcaf
-!
-! XmlOcaf format
-!
-XmlOcaf.Description: Xml Document Version 1.0
-XmlOcaf.FileExtension: xml
-XmlOcaf.StoragePlugin: 03a56820-8269-11d5-aab2-0050044b1af1
-XmlOcaf.RetrievalPlugin: 03a56822-8269-11d5-aab2-0050044b1af1
-!
-! BinOcaf format
-!
-BinOcaf.Description: Bin Ocaf Document Version 1.0
-BinOcaf.FileExtension: cbf
-BinOcaf.StoragePlugin: 03a56835-8269-11d5-aab2-0050044b1af1
-BinOcaf.RetrievalPlugin: 03a56836-8269-11d5-aab2-0050044b1af1
diff --git a/samples/mfc/standard/06_Ocaf/res/Toolbar.bmp b/samples/mfc/standard/06_Ocaf/res/Toolbar.bmp
deleted file mode 100755
index e63008860b..0000000000
Binary files a/samples/mfc/standard/06_Ocaf/res/Toolbar.bmp and /dev/null differ
diff --git a/samples/mfc/standard/06_Ocaf/res/UndoRedoTB.bmp b/samples/mfc/standard/06_Ocaf/res/UndoRedoTB.bmp
deleted file mode 100755
index 2876a290b8..0000000000
Binary files a/samples/mfc/standard/06_Ocaf/res/UndoRedoTB.bmp and /dev/null differ
diff --git a/samples/mfc/standard/06_Ocaf/res/resource.h b/samples/mfc/standard/06_Ocaf/res/resource.h
deleted file mode 100755
index b9b6a86669..0000000000
--- a/samples/mfc/standard/06_Ocaf/res/resource.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Developer Studio generated include file.
-// Used by Ocaf.rc
-//
-#define IDR_ACTIONS 500
-#define IDR_UNDOREDO 520
-#define IDD_NEWBOX 529
-#define IDD_NEWCYL 530
-#define ID_WINDOW_NEW3D 1151
-#define ID_OBJECT_DELETE 1202
-#define IDC_R 1650
-#define IDC_X 1659
-#define IDC_L 1660
-#define IDC_Y 1663
-#define IDC_Z 1664
-#define IDC_H 1665
-#define IDC_W 1666
-#define IDC_NAME 1673
-#define ID_CREATEBOX 3000
-#define ID_CUT 3002
-#define ID_CREATECYL 3003
-#define ID_MODIFY 3004
-//#define ID_DFBR 3007
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_3D_CONTROLS 1
-#define _APS_NEXT_RESOURCE_VALUE 504
-#define _APS_NEXT_COMMAND_VALUE 3007
-#define _APS_NEXT_CONTROL_VALUE 1658
-#define _APS_NEXT_SYMED_VALUE 600
-#endif
-#endif
diff --git a/samples/mfc/standard/06_Ocaf/src/DebugBrowser.hxx b/samples/mfc/standard/06_Ocaf/src/DebugBrowser.hxx
deleted file mode 100755
index f788826c18..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/DebugBrowser.hxx
+++ /dev/null
@@ -1,113 +0,0 @@
-// File generated by CPPExt (Value)
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-
-#ifndef _DebugBrowser_HeaderFile
-#define _DebugBrowser_HeaderFile
-
-#ifndef _Standard_Integer_HeaderFile
-#include
-#endif
-class TDocStd_Document;
-class DebugBrowser_Attr;
-class DebugBrowser_DFTree;
-class DebugBrowser_DFNode;
-class DebugBrowser_AttrNode;
-class DebugBrowser_LabelNode;
-class DebugBrowser_ListNode;
-class DebugBrowser_NSNode;
-class DebugBrowser_GUI;
-class DebugBrowser_DataMapOfIntegerExtString;
-class DebugBrowser_QTGUI;
-class DebugBrowser_DataMapNodeOfDataMapOfIntegerExtString;
-class DebugBrowser_DataMapIteratorOfDataMapOfIntegerExtString;
-
-
-#ifndef _Standard_HeaderFile
-#include
-#endif
-#ifndef _Standard_Macro_HeaderFile
-#include
-#endif
-
-class DebugBrowser {
-
-public:
-
- inline void* operator new(size_t,void* anAddress)
- {
- return anAddress;
- }
- inline void* operator new(size_t size)
- {
- return Standard::Allocate(size);
- }
- inline void operator delete(void *anAddress)
- {
- if (anAddress) Standard::Free((Standard_Address&)anAddress);
- }
-// inline void operator delete(void *anAddress, size_t size)
-// {
-// if (anAddress) Standard::Free((Standard_Address&)anAddress,size);
-// }
- // Methods PUBLIC
- //
-Standard_EXPORT static Standard_Integer DFBrowser(const Handle(TDocStd_Document)& theDoc) ;
-
-
-
-
-
-protected:
-
- // Methods PROTECTED
- //
-
-
- // Fields PROTECTED
- //
-
-
-private:
-
- // Methods PRIVATE
- //
-
-
- // Fields PRIVATE
- //
-
-friend class DebugBrowser_Attr;
-friend class DebugBrowser_DFTree;
-friend class DebugBrowser_DFNode;
-friend class DebugBrowser_AttrNode;
-friend class DebugBrowser_LabelNode;
-friend class DebugBrowser_ListNode;
-friend class DebugBrowser_NSNode;
-friend class DebugBrowser_GUI;
-friend class DebugBrowser_DataMapOfIntegerExtString;
-friend class DebugBrowser_QTGUI;
-friend class DebugBrowser_DataMapNodeOfDataMapOfIntegerExtString;
-friend class DebugBrowser_DataMapIteratorOfDataMapOfIntegerExtString;
-
-};
-
-
-
-
-
-// other inline functions and methods (like "C++: function call" methods)
-//
-
-
-#endif
diff --git a/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.cpp b/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.cpp
deleted file mode 100755
index b670c73ed4..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-// NewBoxDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-
-#include "NewBoxDlg.h"
-
-//#include "OcafApp.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewBoxDlg dialog
-
-CNewBoxDlg::CNewBoxDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CNewBoxDlg::IDD, pParent)
-{
- //{{AFX_DATA_INIT(CNewBoxDlg)
- m_h = 10.0;
- m_l = 15.0;
- m_Name = _T("Box");
- m_w = 10.0;
- m_x = 0.0;
- m_y = 0.0;
- m_z = 0.0;
- //}}AFX_DATA_INIT
-}
-
-void CNewBoxDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CNewBoxDlg)
- DDX_Text(pDX, IDC_H, m_h);
- DDX_Text(pDX, IDC_L, m_l);
- DDX_Text(pDX, IDC_NAME, m_Name);
- DDX_Text(pDX, IDC_W, m_w);
- DDX_Text(pDX, IDC_X, m_x);
- DDX_Text(pDX, IDC_Y, m_y);
- DDX_Text(pDX, IDC_Z, m_z);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(CNewBoxDlg, CDialog)
- //{{AFX_MSG_MAP(CNewBoxDlg)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewBoxDlg message handlers
-
-void CNewBoxDlg::OnOK()
-{
- UpdateData(TRUE);
- if( (m_h<=Precision::Confusion()) || (m_l<=Precision::Confusion()) || (m_w<=Precision::Confusion()) )
- {
- MessageBox (L"Length, height and width of a box should be srictly positives.", L"New box", MB_ICONEXCLAMATION);
- return;
- }
-
- CDialog::OnOK();
-}
-
-void CNewBoxDlg::InitFields(Standard_Real x, Standard_Real y, Standard_Real z, Standard_Real w, Standard_Real l, Standard_Real h, const TCollection_ExtendedString &Name)
-{
- m_x=x;
- m_y=y;
- m_z=z;
- m_w=w;
- m_l=l;
- m_h=h;
- TCollection_AsciiString AsciiName(Name);
- m_Name=AsciiName.ToCString();
-}
diff --git a/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.h b/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.h
deleted file mode 100755
index caec9e74c2..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/NewBoxDlg.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#if !defined(AFX_NEWBOXDLG_H__5A881DC0_7A5F_11D4_8D45_00AA00D10994__INCLUDED_)
-#define AFX_NEWBOXDLG_H__5A881DC0_7A5F_11D4_8D45_00AA00D10994__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-// NewBoxDlg.h : header file
-//
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewBoxDlg dialog
-
-class CNewBoxDlg : public CDialog
-{
-// Construction
-public:
- void InitFields(Standard_Real x, Standard_Real y, Standard_Real z, Standard_Real w, Standard_Real l, Standard_Real h, const TCollection_ExtendedString &Name);
- CNewBoxDlg(CWnd* pParent = NULL); // standard constructor
-
-// Dialog Data
- //{{AFX_DATA(CNewBoxDlg)
- enum { IDD = IDD_NEWBOX };
- double m_h;
- double m_l;
- CString m_Name;
- double m_w;
- double m_x;
- double m_y;
- double m_z;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CNewBoxDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(CNewBoxDlg)
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_NEWBOXDLG_H__5A881DC0_7A5F_11D4_8D45_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/src/NewCylDlg.cpp b/samples/mfc/standard/06_Ocaf/src/NewCylDlg.cpp
deleted file mode 100755
index a7f9a1822a..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/NewCylDlg.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
-// NewCylDlg.cpp : implementation file
-//
-
-#include "stdafx.h"
-
-#include "NewCylDlg.h"
-
-//#include "OcafApp.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewCylDlg dialog
-
-CNewCylDlg::CNewCylDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CNewCylDlg::IDD, pParent)
-{
- //{{AFX_DATA_INIT(CNewCylDlg)
- m_h = 20.0;
- m_Name = _T("Cylinder");
- m_r = 10.0;
- m_x = 0.0;
- m_y = 0.0;
- m_z = 0.0;
- //}}AFX_DATA_INIT
-}
-
-void CNewCylDlg::DoDataExchange(CDataExchange* pDX)
-{
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CNewCylDlg)
- DDX_Text(pDX, IDC_H, m_h);
- DDX_Text(pDX, IDC_NAME, m_Name);
- DDX_Text(pDX, IDC_R, m_r);
- DDX_Text(pDX, IDC_X, m_x);
- DDX_Text(pDX, IDC_Y, m_y);
- DDX_Text(pDX, IDC_Z, m_z);
- //}}AFX_DATA_MAP
-}
-
-
-BEGIN_MESSAGE_MAP(CNewCylDlg, CDialog)
- //{{AFX_MSG_MAP(CNewCylDlg)
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewCylDlg message handlers
-
-void CNewCylDlg::OnOK()
-{
- UpdateData(TRUE);
- if( (m_h<=Precision::Confusion()) || (m_r<=Precision::Confusion()) )
- {
- MessageBox (L"Radius and height of a cylinder should be srictly positives.", L"New box", MB_ICONEXCLAMATION);
- return;
- }
-
- CDialog::OnOK();
-}
-
-void CNewCylDlg::InitFields(Standard_Real x, Standard_Real y, Standard_Real z, Standard_Real r, Standard_Real h, const TCollection_ExtendedString &Name)
-{
- m_x=x;
- m_y=y;
- m_z=z;
- m_r=r;
- m_h=h;
- TCollection_AsciiString AsciiName(Name);
- m_Name=AsciiName.ToCString();
-}
diff --git a/samples/mfc/standard/06_Ocaf/src/NewCylDlg.h b/samples/mfc/standard/06_Ocaf/src/NewCylDlg.h
deleted file mode 100755
index 640a8cdbe8..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/NewCylDlg.h
+++ /dev/null
@@ -1,52 +0,0 @@
-#if !defined(AFX_NEWCYLDLG_H__FFA9686D_8580_11D4_8D47_00AA00D10994__INCLUDED_)
-#define AFX_NEWCYLDLG_H__FFA9686D_8580_11D4_8D47_00AA00D10994__INCLUDED_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-// NewCylDlg.h : header file
-//
-
-/////////////////////////////////////////////////////////////////////////////
-// CNewCylDlg dialog
-
-class CNewCylDlg : public CDialog
-{
-// Construction
-public:
- void InitFields(Standard_Real x, Standard_Real y, Standard_Real z, Standard_Real r, Standard_Real h, const TCollection_ExtendedString &Name);
- CNewCylDlg(CWnd* pParent = NULL); // standard constructor
-
-// Dialog Data
- //{{AFX_DATA(CNewCylDlg)
- enum { IDD = IDD_NEWCYL };
- double m_h;
- CString m_Name;
- double m_r;
- double m_x;
- double m_y;
- double m_z;
- //}}AFX_DATA
-
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CNewCylDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
-// Implementation
-protected:
-
- // Generated message map functions
- //{{AFX_MSG(CNewCylDlg)
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-};
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_NEWCYLDLG_H__FFA9686D_8580_11D4_8D47_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.cxx b/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.cxx
deleted file mode 100755
index 6658540682..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.cxx
+++ /dev/null
@@ -1,94 +0,0 @@
-// File: OCAFSample_CommonDriver.cxx
-// Created: Wed Feb 13 18:24:21 2002
-// Author: Michael KUZMITCHEV
-//
-//Modified by: Sergey RUIN (Naming)
-
-#include "stdafx.h"
-
-#include
-#include
-#include
-
-#include "Tags.h"
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-
-#include
-//#include <.hxx>
-
-#include
-
-#define OK_OPERATION 0
-#define TREENODE_NOT_FOUND 1
-#define LABEL_NOT_FOUND 2
-#define NAMED_SHAPE_NOT_FOUND 3
-#define NAMED_SHAPE_EMPTY 4
-#define OPERATION_NOT_DONE 8
-#define NULL_OPERATION 9
-
-// OCCT RTTI
-IMPLEMENT_STANDARD_RTTIEXT (OCAFSample_CommonDriver, OCAFSample_Driver)
-
-//=======================================================================
-//function : Constructor
-//purpose :
-//=======================================================================
-
-OCAFSample_CommonDriver::OCAFSample_CommonDriver()
-{
-}
-
-//=======================================================================
-//function : Execute
-//purpose :
-//=======================================================================
-
-Standard_Integer OCAFSample_CommonDriver::Execute(Handle(TFunction_Logbook)& theLogbook) const
-{
- Handle(TDF_Reference) aReference;
- TopoDS_Shape aMaster, aTool;
-
- Handle(TDataStd_TreeNode) aNode;
- if(!Label().FindAttribute(TDataStd_TreeNode::GetDefaultTreeID(), aNode)) return TREENODE_NOT_FOUND;
-
- OCAFSample_ICommon anInterface(aNode);
- aMaster = anInterface.GetContext();
- aTool = anInterface.GetTool();
-
- BRepAlgoAPI_Common mkCommon(aMaster, aTool);
- if (!mkCommon.IsDone()) return OPERATION_NOT_DONE;
- if (mkCommon.Shape().IsNull()) return NULL_OPERATION;
- if (!BRepAlgo::IsValid(mkCommon.Shape()))
- return OPERATION_NOT_DONE;
-
-
- // Name result
- TDF_Label ResultLabel = Label().FindChild(RESULTS_TAG);
-
- BRepNaming_Common aNaming(ResultLabel);
- aNaming.Load(mkCommon);
-
- OCAFSample_IShape::AddLabels(aNode, theLogbook);
-
- TDocStd_Modified::Add(aNode->Father()->Label());
-
- theLogbook->SetImpacted(Label());
- TDocStd_Modified::Add(Label());
-
- theLogbook->SetImpacted(ResultLabel);
-
- TDF_ChildIterator anIterator(ResultLabel);
- for(; anIterator.More(); anIterator.Next()) {
- theLogbook->SetImpacted(anIterator.Value());
- }
-
- return OK_OPERATION;
-}
diff --git a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx b/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx
deleted file mode 100755
index cc88a0a3b4..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx
+++ /dev/null
@@ -1,37 +0,0 @@
-// File generated by CPPExt (Transient)
-//
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-//
-#ifndef _OCAFSample_CommonDriver_HeaderFile
-#define _OCAFSample_CommonDriver_HeaderFile
-
-#include
-#include
-
-class TFunction_Logbook;
-
-
-class OCAFSample_CommonDriver : public OCAFSample_Driver
-{
-public:
-
- Standard_EXPORT OCAFSample_CommonDriver ();
- Standard_EXPORT virtual Standard_Integer Execute (Handle (TFunction_Logbook)& theLogbook) const;
- Standard_EXPORT ~OCAFSample_CommonDriver ();
-
- // OCCT RTTI
- DEFINE_STANDARD_RTTIEXT (OCAFSample_CommonDriver, OCAFSample_Driver)
-};
-
-#endif
diff --git a/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx b/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx
deleted file mode 100755
index fc6d35edc0..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// File generated by CPPExt (Transient)
-//
-// Copyright (C) 1991,1995 by
-//
-// MATRA DATAVISION, FRANCE
-//
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of the above copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any other person. No title to an ownership of the
-// software is hereby transferred.
-//
-// At the termination of the contract, the software and all copies of this
-// software must be deleted.
-//
-#ifndef _OCAFSample_Driver_HeaderFile
-#define _OCAFSample_Driver_HeaderFile
-
-#include
-#include
-#include
-
-class TFunction_Logbook;
-
-class OCAFSample_Driver : public TFunction_Driver
-{
-public:
-
- Standard_EXPORT void Validate (TFunction_Logbook& log) const;
- Standard_EXPORT virtual Standard_Boolean MustExecute (const Handle (TFunction_Logbook)& log) const;
- Standard_EXPORT virtual Standard_Integer Execute (Handle (TFunction_Logbook)& log) const;
- Standard_EXPORT virtual Standard_Boolean Arguments (TDF_LabelMap& theArgs) const;
- Standard_EXPORT virtual Standard_Boolean Results (TDF_LabelMap& theRes) const;
- Standard_EXPORT ~OCAFSample_Driver ();
-
- // OCCT RTTI
- DEFINE_STANDARD_RTTIEXT(OCAFSample_Driver,TFunction_Driver)
-
-protected:
-
- Standard_EXPORT OCAFSample_Driver ();
-};
-
-#endif
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafApp.cpp b/samples/mfc/standard/06_Ocaf/src/OcafApp.cpp
deleted file mode 100755
index ff43d3c36e..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafApp.cpp
+++ /dev/null
@@ -1,153 +0,0 @@
-// OcafApp.cpp : Defines the class behaviors for the application.
-//
-
-#include "StdAfx.h"
-
-#include "OcafApp.h"
-
-#include "OcafMainFrm.h"
-#include
-#include "OcafDoc.h"
-#include
-
-#include "direct.h"
-#include
-
-#include
-#include
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafApp
-
-BEGIN_MESSAGE_MAP(COcafApp, CWinApp)
- //{{AFX_MSG_MAP(COcafApp)
- ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- // Standard file based document commands
- ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
- ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
-// ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafApp construction
-
-COcafApp::COcafApp() : OCC_App()
-{
- myApp = new TOcaf_Application();
- SampleName = "OCAF"; //for about dialog
- SetSamplePath (L"..\\..\\06_Ocaf");
-
- // load persistence
- BinDrivers::DefineFormat (myApp);
- XmlDrivers::DefineFormat (myApp);
-
- try
- {
- UnitsAPI::SetLocalSystem(UnitsAPI_MDTV);
- }
- catch (Standard_Failure)
- {
- AfxMessageBox (L"Fatal Error in units initialisation");
- }
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// The one and only COcafApp object
-
-COcafApp theApp;
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafApp initialization
-
-BOOL COcafApp::InitInstance()
-{
- AfxEnableControlContainer();
-
- // Standard initialization
- // If you are not using these features and wish to reduce the size
- // of your final executable, you should remove from the following
- // the specific initialization routines you do not need.
-
- // Change the registry key under which our settings are stored.
- // You should modify this string to be something appropriate
- // such as the name of your company or organization.
- // Modified by CasCade :
- SetRegistryKey(_T("Local CasCade Applications"));
-
- LoadStdProfileSettings(); // Load standard INI file options (including MRU)
-
- // Register the application's document templates. Document templates
- // serve as the connection between documents, frame windows and views.
-
- pDocTemplateForView3d = new CMultiDocTemplate(
- IDR_3DTYPE,
- RUNTIME_CLASS(COcafDoc),
- RUNTIME_CLASS(OCC_3dChildFrame),
- RUNTIME_CLASS(OCC_3dView));
- AddDocTemplate(pDocTemplateForView3d);
-
- // create main MDI Frame window
- OcafMainFrame* pMainFrame = new OcafMainFrame;
- if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
- return FALSE;
- m_pMainWnd = pMainFrame;
-
- // Parse command line for standard shell commands, DDE, file open
- CCommandLineInfo cmdInfo;
- ParseCommandLine(cmdInfo);
-
- // Dispatch commands specified on the command line
- if (!ProcessShellCommand(cmdInfo))
- return FALSE;
-
- // The main window has been initialized, so show and update it.
- pMainFrame->ShowWindow(m_nCmdShow);
- pMainFrame->UpdateWindow();
-
- return TRUE;
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafApp commands
-
-BOOL COcafApp::IsViewExisting(CDocument * pDoc, CRuntimeClass * pViewClass, CView * & pView)
-{
- ASSERT_VALID(pDoc);
- ASSERT(pViewClass != (CRuntimeClass *)NULL );
-
- POSITION position = pDoc->GetFirstViewPosition();
- while (position != (POSITION)NULL)
- {
- CView* pCurrentView = pDoc->GetNextView(position);
- ASSERT_VALID(pCurrentView);
- if (pCurrentView->IsKindOf(pViewClass))
- {
- pView = pCurrentView;
- return TRUE;
- }
- }
- return FALSE;
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// COCcafApp message handlers
-
-//================================================================
-// Function : COcafApp::OnFileOpen()
-// Purpose :
-//================================================================
-void COcafApp::OnFileOpen()
-{
- CFileDialog aDlg(TRUE, NULL, NULL, OFN_FILEMUSTEXIST|OFN_HIDEREADONLY,
- L"OCAFSample(Binary) (*.cbf)|*.cbf|OCAFSample(XML) (*.xml)|*.xml||");
-
- if (aDlg.DoModal() != IDOK)
- return;
-
- OpenDocumentFile (aDlg.GetPathName());
-}
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafApp.h b/samples/mfc/standard/06_Ocaf/src/OcafApp.h
deleted file mode 100755
index 37588967b9..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafApp.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// OcafApp.h : main header file for the OCAF application
-//
-
-#if !defined(AFX_OCAF_H__49324D74_7836_11D4_8D45_00AA00D10994__INCLUDED_)
-#define AFX_OCAF_H__49324D74_7836_11D4_8D45_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include
-#include "OcafDoc.h"
-#include
-
-
-class COcafApp : public OCC_App
-{
-public:
-
- COcafApp();
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(COcafApp)
- public:
- virtual BOOL InitInstance();
- //}}AFX_VIRTUAL
- void OnFileOpen();
-public:
- Handle(TOcaf_Application) GetApp() {return myApp;}
-
-private :
- BOOL IsViewExisting(CDocument* pDoc,CRuntimeClass* pViewClass,CView*& pView);
-
-private:
-
- Handle(TOcaf_Application) myApp;
- CMultiDocTemplate* pDocTemplateForView3d;
-
- DECLARE_MESSAGE_MAP()
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-#endif // !defined(AFX_OCAF_H__49324D74_7836_11D4_8D45_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafDoc.cpp b/samples/mfc/standard/06_Ocaf/src/OcafDoc.cpp
deleted file mode 100755
index f82218600a..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafDoc.cpp
+++ /dev/null
@@ -1,1209 +0,0 @@
-// OcafDoc.cpp : implementation of the COcafDoc class
-//
-
-#include "StdAfx.h"
-
-#include "OcafDoc.h"
-
-#include "OcafApp.h"
-#include
-#include "AISDialogs.h"
-
-// Dialog boxes classes
-#include
-#include
-#include
-
-#include
-
-#include
-
-#ifdef _DEBUG
-//#define new DEBUG_NEW // by cascade
-#undef THIS_FILE
-static char THIS_FILE[] = __FILE__;
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafDoc
-
-IMPLEMENT_DYNCREATE(COcafDoc, CDocument)
-
-BEGIN_MESSAGE_MAP(COcafDoc, OCC_3dBaseDoc)
- //{{AFX_MSG_MAP(COcafDoc)
- ON_COMMAND(ID_CREATEBOX, OnCreatebox)
- ON_COMMAND(ID_EDIT_REDO, OnEditRedo)
- ON_COMMAND(ID_EDIT_UNDO, OnEditUndo)
- ON_UPDATE_COMMAND_UI(ID_EDIT_UNDO, OnUpdateEditUndo)
- ON_COMMAND(ID_MODIFY, OnModify)
- ON_UPDATE_COMMAND_UI(ID_MODIFY, OnUpdateModify)
- ON_UPDATE_COMMAND_UI(ID_EDIT_REDO, OnUpdateEditRedo)
- ON_COMMAND(ID_CUT, OnCut)
- ON_COMMAND(ID_OBJECT_DELETE, OnObjectDelete)
- ON_UPDATE_COMMAND_UI(ID_OBJECT_DELETE, OnUpdateObjectDelete)
- ON_COMMAND(ID_FILE_SAVE, OnFileSave)
- ON_COMMAND(ID_FILE_SAVE_AS, OnFileSaveAs)
- ON_COMMAND(ID_CREATECYL, OnCreatecyl)
-// ON_COMMAND(ID_DFBR, OnDfbr)
- //}}AFX_MSG_MAP
-
-END_MESSAGE_MAP()
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafDoc construction/destruction
-
-COcafDoc::COcafDoc()
-{
-}
-
-COcafDoc::~COcafDoc()
-{
-}
-
- BOOL COcafDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
-
- // Get an Handle on the current TOcaf_Application (which is initialized in the "Ocaf.h" file)
- Handle(TOcaf_Application) OcafApp = ((COcafApp*)AfxGetApp())->GetApp();
-
- // Create a new Ocaf document
- OcafApp->NewDocument("BinOcaf",myOcafDoc);
- TPrsStd_AISViewer::New(myOcafDoc->Main(),myViewer);
-
- Handle(AIS_InteractiveContext) CTX;
- TPrsStd_AISViewer::Find(myOcafDoc->Main(), CTX);
- CTX->SetDisplayMode (AIS_Shaded, Standard_True);
- myAISContext=CTX;
-
- // Set the maximum number of available "undo" actions
- myOcafDoc->SetUndoLimit(10);
-
-
- TCollection_AsciiString Message ("\
- // Creation of a new document \n\
- \n\
- Handle(TOcaf_Application) OcafApp= ((COcafApp*)AfxGetApp())->GetApp(); \n\
- \n\
- // Creating the new document \n\
- OcafApp->NewDocument(\"BinOcaf\", myOcafDoc); \n\
- \n\
- // Creation of a new TPrsStd_AISViewer connected to the current V3d_Viewer\n\
- TPrsStd_AISViewer::New(myOcafDoc->Main(),myViewer); \n\
- \n\
- // Setting the number of memorized undos \n\
- myOcafDoc->SetUndoLimit(10); \n\
- \n");
-
- myCResultDialog.SetTitle("New document");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-
- PathName="";
-
- return TRUE;
- }
-
-void COcafDoc::ActivateFrame(CRuntimeClass* pViewClass,int nCmdShow)
-{
- POSITION position = GetFirstViewPosition();
- while (position != (POSITION)NULL)
- {
- CView* pCurrentView = (CView*)GetNextView(position);
- if(pCurrentView->IsKindOf(pViewClass) )
- {
- ASSERT_VALID(pCurrentView);
- CFrameWnd* pParentFrm = pCurrentView->GetParentFrame();
- ASSERT(pParentFrm != (CFrameWnd *)NULL);
- // simply make the frame window visible
- pParentFrm->ActivateFrame(nCmdShow);
- }
- }
-
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafDoc diagnostics
-
-#ifdef _DEBUG
-void COcafDoc::AssertValid() const
-{
- CDocument::AssertValid();
-}
-
-void COcafDoc::Dump(CDumpContext& dc) const
-{
- CDocument::Dump(dc);
-}
-#endif //_DEBUG
-
-/////////////////////////////////////////////////////////////////////////////
-// COcafDoc commands
-
-void COcafDoc::OnEditRedo()
-{
- myOcafDoc->Redo();
- myOcafDoc->CommitCommand();
- myAISContext->UpdateCurrentViewer();
-
- UpdateAllViews(NULL);
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Redo last undoes operation \n\
- \n\
-myOcafDoc->Redo(); \n\
- \n\
-myOcafDoc->CommitCommand(); \n\
- \n\
-\n");
-
- myCResultDialog.SetTitle("Redo");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnEditUndo()
-{
- myOcafDoc->Undo();
- myOcafDoc->CommitCommand();
- myAISContext->UpdateCurrentViewer();
-
- UpdateAllViews(NULL);
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Undo last operation \n\
- \n\
-myOcafDoc->Undo(); \n\
- \n\
-myOcafDoc->CommitCommand(); \n\
- \n\
-\n");
-
- myCResultDialog.SetTitle("Undo");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnUpdateEditRedo(CCmdUI* pCmdUI)
-{
- // Disable the "redo" button if there is no availlables redo actions
- if (myOcafDoc->GetAvailableRedos()>0) pCmdUI->Enable(Standard_True);
- else pCmdUI->Enable(Standard_False);
-}
-
-void COcafDoc::OnUpdateEditUndo(CCmdUI* pCmdUI)
-{
- // Disable the "undo" button if there is no availlables undo actions
- if (myOcafDoc->GetAvailableUndos()>0) pCmdUI->Enable(Standard_True);
- else pCmdUI->Enable(Standard_False);
-}
-
-void COcafDoc::OnCreatebox()
-{
- EraseAll();
- CNewBoxDlg Dlg;
- if(Dlg.DoModal()!=IDOK) return;
-
- Handle(TDocStd_Document) D = GetOcafDoc();
-
- // Open a new command (for undo)
- D->NewCommand();
- TOcaf_Commands TSC(D->Main());
-
- // Create a new box using the CNewBoxDlg Dialog parameters as attributes
- TDF_Label L = TSC.CreateBox (Dlg.m_x, Dlg.m_y, Dlg.m_z, Dlg.m_w, Dlg.m_l, Dlg.m_h,
- TCollection_ExtendedString ((const wchar_t* )Dlg.m_Name));
-
- // Get the TPrsStd_AISPresentation of the new box TNaming_NamedShape
- Handle(TPrsStd_AISPresentation) prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID());
- // Display it
- prs->Display(1);
- Fit3DViews();
- // Attach an integer attribute to L to memorize it's displayed
- TDataStd_Integer::Set(L, 1);
- myAISContext->UpdateCurrentViewer();
-
- // Close the command (for undo)
- D->CommitCommand();
-
-
- TCollection_AsciiString Message ("\
-// Creation of a new box using Ocaf attributes \n\
- \n\
-Handle(TDocStd_Document) D = GetOcafDoc(); \n\
- \n\
-// Opening a new command (for undo/redo) \n\
-D->NewCommand(); \n\
- \n\
-TOcaf_Commands TSC(D->Main()); \n\
-// Look at the TOcaf_Commands::CreateBox() function \n\
-TDF_Label L=TSC.CreateBox(m_x, m_y, m_z, m_w, m_l, m_h, Name); \n\
- \n\
-// Set the TPrsStd_AISPresentation of the box \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
-prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID()); \n\
- \n\
-// Displaying the box \n\
-prs->Display(1); \n\
- \n\
-// Commint the command (for undo/redo) \n\
-D->CommitCommand(); \n\
-\n");
-
- myCResultDialog.SetTitle("Create box");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnCreatecyl()
-{
- EraseAll();
- CNewCylDlg Dlg;
- if(Dlg.DoModal()!=IDOK) return;
-
- Handle(TDocStd_Document) D = GetOcafDoc();
-
- // Open a new command (for undo)
- D->NewCommand();
- TOcaf_Commands TSC(D->Main());
-
- // Create a new box using the CNewCylDlg Dialog parameters as attributes
- TDF_Label L = TSC.CreateCyl (Dlg.m_x, Dlg.m_y, Dlg.m_z, Dlg.m_r, Dlg.m_h,
- TCollection_ExtendedString ((const wchar_t* )Dlg.m_Name));
-
- // Get the TPrsStd_AISPresentation of the new cylinder TNaming_NamedShape
- Handle(TPrsStd_AISPresentation) prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID());
- // Display it
- prs->Display(1);
- Fit3DViews();
- // Attach an integer attribute to L to memorize it's displayed
- TDataStd_Integer::Set(L, 1);
- myAISContext->UpdateCurrentViewer();
-
- // Close the command (for undo)
- D->CommitCommand();
-
-
- TCollection_AsciiString Message ("\
-// Creation of a new cylinder using Ocaf attributes \n\
- \n\
-Handle(TDocStd_Document) D = GetOcafDoc(); \n\
- \n\
-// Opening a new command (for undo/redo) \n\
-D->NewCommand(); \n\
- \n\
-TOcaf_Commands TSC(D->Main()); \n\
-// Look at the TOcaf_Commands::CreateCyl() function \n\
-TDF_Label L=TSC.CreateCyl(m_x, m_y, m_z, m_r, m_h, Name); \n\
- \n\
-// Set the TPrsStd_AISPresentation of the cylinder \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
-prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID()); \n\
- \n\
-// Displaying the cylinder \n\
-prs->Display(1); \n\
- \n\
-// Commint the command (for undo/redo) \n\
-D->CommitCommand(); \n\
-\n");
-
- myCResultDialog.SetTitle("Create cylinder");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnModify()
-{
- // Get the selected interactive object
- myAISContext->InitSelected();
- Handle(AIS_InteractiveObject) curAISObject = myAISContext->SelectedInteractive();
-
-
- // Get the main label of the selected object
- Handle(TPrsStd_AISPresentation) ObjectPrs =
- Handle(TPrsStd_AISPresentation)::DownCast(curAISObject->GetOwner());
- TDF_Label LabObject = ObjectPrs->Label();
-
- // Get the TFunction_Function attribute of the selected object
- Handle(TFunction_Function) TFF;
- if ( !LabObject.FindAttribute(TFunction_Function::GetID(),TFF) )
- {
- MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Object cannot be modify.", L"Modification", MB_ICONEXCLAMATION);
- return;
- }
- // Get the Standard_GUID of the TFunction_FunctionDriver of the selected object TFunction_Function attribute
- Standard_GUID myDriverID=TFF->GetDriverGUID();
-
- Handle(TDocStd_Document) D = GetOcafDoc();
- Handle(TFunction_Logbook) log = TFunction_Logbook::Set(D->Main());
-
- TCollection_AsciiString Message("\
-// Modification and recomputation of the selected object \n\
- \n\
-Handle(TDocStd_Document) D = GetOcafDoc(); \n\
- \n\
-// Getting the TPrsStd_AISPresentation of the selected object \n\
-Handle(TPrsStd_AISPresentation) ObjectPrs = \n\
- Handle(TPrsStd_AISPresentation)::DownCast(curAISObject->GetOwner()); \n\
- \n\
-// Getting the Label of the selected object using the TPrsStd_AISPresentation \n\
-TDF_Label LabObject = ObjectPrs->Label(); \n\
- \n\
-// Getting the TFunction_FunctionDriver ID attached to this label \n\
-Handle(TFunction_Function) TFF; \n\
-\n");
- TCollection_AsciiString Suite;
-
- // Case of a box created with the box function driver
- if(myDriverID==TOcafFunction_BoxDriver::GetID())
- {
- CNewBoxDlg Dlg;
- Standard_Real x, y, z, w, l, h;
-
- // Get the attributes values of the current box
- Handle(TDataStd_Real) curReal;
- LabObject.FindChild(1).FindAttribute(TDataStd_Real::GetID(),curReal);
- w=curReal->Get();
- LabObject.FindChild(2).FindAttribute(TDataStd_Real::GetID(),curReal);
- l=curReal->Get();
- LabObject.FindChild(3).FindAttribute(TDataStd_Real::GetID(),curReal);
- h=curReal->Get();
- LabObject.FindChild(4).FindAttribute(TDataStd_Real::GetID(),curReal);
- x=curReal->Get();
- LabObject.FindChild(5).FindAttribute(TDataStd_Real::GetID(),curReal);
- y=curReal->Get();
- LabObject.FindChild(6).FindAttribute(TDataStd_Real::GetID(),curReal);
- z=curReal->Get();
- Handle(TDataStd_Name) stdName;
- LabObject.FindAttribute(TDataStd_Name::GetID(),stdName);
-
- // Initialize the dialog box with the values of the current box
- Dlg.InitFields(x, y, z, w, l, h, stdName->Get());
-
- if(Dlg.DoModal()!=IDOK) return;
-
- // Open a new command (for undo)
- D->NewCommand();
-
- // Modify the box
- TOcaf_Commands TSC(LabObject);
- TSC.ModifyBox (Dlg.m_x, Dlg.m_y, Dlg.m_z, Dlg.m_w, Dlg.m_l, Dlg.m_h,
- TCollection_ExtendedString ((const wchar_t* )Dlg.m_Name), log);
-
- // Get the presentation of the box, display it and set it selected
- Handle(TPrsStd_AISPresentation) prs= TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID());
- TDataStd_Integer::Set(LabObject, 1);
- prs->Display(1);
- myAISContext->UpdateCurrentViewer();
- // Close the command (for undo)
- D->CommitCommand();
-
- Message+=("\
- \n\
-// In this case the TFunction_FunctionDriver ID is a BoxDriver \n\
-if(myDriverID==TOcafFunction_BoxDriver::GetID()){ \n\
- \n\
-// Getting values of box attributes \n\
-Handle(TDataStd_Real) curReal; \n\
-LabObject.FindChild(1).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-w=curReal->Get(); \n\
-LabObject.FindChild(2).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-l=curReal->Get(); \n\
-LabObject.FindChild(3).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-h=curReal->Get(); \n\
-LabObject.FindChild(4).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-x=curReal->Get(); \n\
-LabObject.FindChild(5).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-y=curReal->Get(); \n\
-LabObject.FindChild(6).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-z=curReal->Get(); \n\
-Handle(TDataStd_Name) stdName; \n\
-LabObject.FindAttribute(TDataStd_Name::GetID(),stdName); \n\
- \n\
-// Opening a new command \n\
-D->NewCommand(); \n\
- \n\
-TOcaf_Commands TSC(LabObject); \n\
-// Look at the TOcaf_Commands::ModifyBox() function \n\
-TSC.ModifyBox(m_x, m_y, m_z, m_w, m_l, m_h, Name); \n\
- \n\
-// Set the TPrsStd_AISPresentation of the box \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
-prs= TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID()); \n\
- \n\
-// Display the box \n\
-prs->Display(1); \n\
- \n\
-// Commit the command \n\
-D->CommitCommand(); \n\
-} \n\
-\n");
-
- myCResultDialog.SetTitle("Modify Box");
- }
- // Case of a cylinder created with the box function driver
- else if(myDriverID==TOcafFunction_CylDriver::GetID())
- {
- CNewCylDlg Dlg;
- Standard_Real x, y, z, r, h;
-
- // Get the attributes values of the current box
- Handle(TDataStd_Real) curReal;
- LabObject.FindChild(1).FindAttribute(TDataStd_Real::GetID(),curReal);
- r=curReal->Get();
- LabObject.FindChild(2).FindAttribute(TDataStd_Real::GetID(),curReal);
- h=curReal->Get();
- LabObject.FindChild(3).FindAttribute(TDataStd_Real::GetID(),curReal);
- x=curReal->Get();
- LabObject.FindChild(4).FindAttribute(TDataStd_Real::GetID(),curReal);
- y=curReal->Get();
- LabObject.FindChild(5).FindAttribute(TDataStd_Real::GetID(),curReal);
- z=curReal->Get();
- Handle(TDataStd_Name) stdName;
- LabObject.FindAttribute(TDataStd_Name::GetID(),stdName);
-
- // Initialize the dialog cylinder with the values of the current cylinder
- Dlg.InitFields(x, y, z, r, h, stdName->Get());
-
- if(Dlg.DoModal()!=IDOK) return;
-
- // Open a new command (for undo)
- D->NewCommand();
-
- // Modify the cylinder
- TOcaf_Commands TSC(LabObject);
- TSC.ModifyCyl (Dlg.m_x, Dlg.m_y, Dlg.m_z, Dlg.m_r, Dlg.m_h,
- TCollection_ExtendedString ((const wchar_t* )Dlg.m_Name), log);
-
- // Get the presentation of the cylinder, display it and set it selected
- Handle(TPrsStd_AISPresentation) prs= TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID());
- TDataStd_Integer::Set(LabObject, 1);
- prs->Display(1);
- myAISContext->UpdateCurrentViewer();
- // Close the command (for undo)
- D->CommitCommand();
-
- Message+=("\
- \n\
-// In this case the TFunction_FunctionDriver ID is a CylDriver \n\
-if(myDriverID==TOcafFunction_CylDriver::GetID()){ \n\
- \n\
-// Getting values of box cylinder \n\
-Handle(TDataStd_Real) curReal; \n\
-LabObject.FindChild(1).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-r=curReal->Get(); \n\
-LabObject.FindChild(2).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-h=curReal->Get(); \n\
-LabObject.FindChild(3).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-x=curReal->Get(); \n\
-LabObject.FindChild(4).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-y=curReal->Get(); \n\
-LabObject.FindChild(5).FindAttribute(TDataStd_Real::GetID(),curReal); \n\
-z=curReal->Get(); \n\
-Handle(TDataStd_Name) stdName; \n\
-LabObject.FindAttribute(TDataStd_Name::GetID(),stdName); \n\
- \n\
-// Opening a new command \n\
-D->NewCommand(); \n\
- \n\
-TOcaf_Commands TSC(LabObject); \n\
-// Look at the TOcaf_Commands::ModifyCyl() function \n\
-TSC.ModifyCyl(m_x, m_y, m_z, m_r, m_h, Name); \n\
- \n\
-// Set the TPrsStd_AISPresentation of the cylinder \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
-prs= TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID()); \n\
- \n\
-// Display the cylinder \n\
-prs->Display(1); \n\
- \n\
-// Commit the command \n\
-D->CommitCommand(); \n\
-} \n\
-\n");
-
- myCResultDialog.SetTitle("Modify cylinder");
- }
- // Case of a cut solid created with the cut function driver
- else if(myDriverID==TOcafFunction_CutDriver::GetID())
- {
- // Open a new command (for undo)
- D->NewCommand();
-
- // Get the reference of the Original object used to make the cut object,
- // this reference is here attached to the first child of the cut object label
- Handle(TDF_Reference) OriginalRef;
- LabObject.FindChild(1).FindAttribute(TDF_Reference::GetID(),OriginalRef);
-
- // Get the presentation of the Original object
- Handle(TPrsStd_AISPresentation) OriginalPrs= TPrsStd_AISPresentation::Set(OriginalRef->Get(), TNaming_NamedShape::GetID());
-
- // Get the reference of the Tool object used to make the cut object,
- // this reference is here attached to the second child of the cut object label
- Handle(TDF_Reference) ToolRef;
- LabObject.FindChild(2).FindAttribute(TDF_Reference::GetID(),ToolRef);
- TDF_Label ToolLab=ToolRef->Get();
-
-
- // Get the presentation of the Tool object
- Handle(TPrsStd_AISPresentation) ToolPrs= TPrsStd_AISPresentation::Set(ToolLab, TNaming_NamedShape::GetID());
-
- // Display the Original object and the Tool object, erase the cut object.
- TDataStd_Integer::Set(OriginalRef->Get(), 1);
- OriginalPrs->Display(1);
- TDataStd_Integer::Set(ToolLab, 1);
- ToolPrs->Display(1);
- TDataStd_Integer::Set(LabObject, 0);
- ObjectPrs->Erase(1);
- myAISContext->UpdateCurrentViewer();
-
- // In this we decided to modify the tool object which is a cylinder,
- // so we open the cylinder parameters dialog box
- CNewCylDlg Dlg;
- Standard_Real x, y, z, h, r;
-
- // Get the attributes values of the tool cylinder
- Handle(TDataStd_Real) curReal;
- ToolLab.FindChild(1).FindAttribute(TDataStd_Real::GetID(),curReal);
- r=curReal->Get();
- ToolLab.FindChild(2).FindAttribute(TDataStd_Real::GetID(),curReal);
- h=curReal->Get();
- ToolLab.FindChild(3).FindAttribute(TDataStd_Real::GetID(),curReal);
- x=curReal->Get();
- ToolLab.FindChild(4).FindAttribute(TDataStd_Real::GetID(),curReal);
- y=curReal->Get();
- ToolLab.FindChild(5).FindAttribute(TDataStd_Real::GetID(),curReal);
- z=curReal->Get();
- Handle(TDataStd_Name) stdName;
- ToolLab.FindAttribute(TDataStd_Name::GetID(),stdName);
-
- // Initialize the dialog box with the values of the tool cylinder
- Dlg.InitFields(x, y, z, r, h, stdName->Get());
-
- if(Dlg.DoModal()!=IDOK)
- {
- D->AbortCommand();
- myAISContext->UpdateCurrentViewer();
- return;
- }
-
- // Modify the cylinder
- TOcaf_Commands ToolTSC(ToolLab);
- ToolTSC.ModifyCyl (Dlg.m_x, Dlg.m_y, Dlg.m_z, Dlg.m_r, Dlg.m_h,
- TCollection_ExtendedString ((const wchar_t* )Dlg.m_Name), log);
-
- // Redisplay the modified Tool object
- TDataStd_Integer::Set(ToolLab, 1);
- ToolPrs->Display(1);
- myAISContext->UpdateCurrentViewer();
- Sleep(1000);
-
- // Get the TOcafFunction_CutDriver using its Standard_GUID in the TFunction_DriverTable
- Handle(TFunction_Driver) myCutDriver;
- if (TFunction_DriverTable::Get()->FindDriver(myDriverID, myCutDriver))
- myCutDriver->Init(LabObject);
-
- // Recompute the cut object if it must be (look at the MustExecute function code)
-// if (myCutDriver->MustExecute(log))
-// {
- log->SetTouched(LabObject);
- if(myCutDriver->Execute(log))
- MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Recompute failed", L"Modify cut", MB_ICONEXCLAMATION);
-// }
-
- // Erase the Original object and the Tool objectedisplay the modified Tool object
- TDataStd_Integer::Set(ToolLab, 0);
- ToolPrs->Erase(0);
- TDataStd_Integer::Set(OriginalRef->Get(), 0);
- OriginalPrs->Erase(0);
- ObjectPrs=TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID());
- TDataStd_Integer::Set(LabObject, 1);
- ObjectPrs->Display(1);
- myAISContext->UpdateCurrentViewer();
- // Close the command (for undo)
- D->CommitCommand();
-
- Message+=("\
- \n\
-// In this case the TFunction_FunctionDriver ID is a CutDriver \n\
-if(myDriverID==TOcafFunction_CutDriver::GetID()){ \n\
- \n\
-// Getting values of cut attributes (which are reference to the shapes)\n\
-Handle(TDF_Reference) OriginalRef; \n\
-LabObject.FindChild(1).FindAttribute(TDF_Reference::GetID(),OriginalRef); \n\
-Handle(TDF_Reference) ToolRef; \n\
-LabObject.FindChild(2).FindAttribute(TDF_Reference::GetID(),ToolRef); \n\
- \n\
-// Getting the label of the tool shape (to modify it)\n\
-TDF_Label ToolLab=ToolRef->Get(); \n\
- \n\
-TOcaf_Commands TSC(ToolLab); \n\
-// Look at the TOcaf_Commands::ModifyBox() function \n\
-TSC.ModifyBox(m_x, m_y, m_z, m_w, m_l, m_h, Name); \n\
- \n\
-// Getting the TOcafFunction_CutDriver used to create the cut\n\
-Handle(TFunction_Driver) myCutDriver; \n\
-TFunction_DriverTable::Get()->FindDriver(myDriverID, myCutDriver); \n\
- \n\
-// Recompute the cut if it must be (if an attribute was modified)\n\
-if (myCutDriver->MustExecute(log)) { \n\
- log.SetTouched(LabObject); \n\
- myCutDriver->Execute(log) \n\
-} \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
- \n\
-// Setting the TPrsStd_AISPresentation of the cut object\n\
-prs= TPrsStd_AISPresentation::Set(LabObject, TNaming_NamedShape::GetID()); \n\
- \n\
-// Display the TPrsStd_AISPresentation of the cut object\n\
-prs->Display(1); \n\
- \n\
-// Commit the command\n\
-D->CommitCommand(); \n\
-} \n\
-\n");
-
- myCResultDialog.SetTitle("Modify Cut");
- }
- else
- {
- MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"No associated function driver", L"Modify", MB_OK);
- }
-
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnUpdateModify(CCmdUI* pCmdUI)
-{
- // Disable the "modify" button if there is no selected object or several selected objects
- myAISContext->InitSelected();
- if(myAISContext->NbSelected()!=1)
- {
- pCmdUI->Enable(Standard_False);
- return;
- }
-
- // Get the root label of the selected object using its TPrsStd_AISPresentation
- myAISContext->InitSelected();
- Handle(TPrsStd_AISPresentation) ObjectPrs =
- Handle(TPrsStd_AISPresentation)::DownCast(myAISContext->SelectedInteractive()->GetOwner());
- if (!ObjectPrs.IsNull()){
- TDF_Label LabObject = ObjectPrs->Label();
-
-
- // Disable the "modify" button if selected object don't have a TFunction_Function attribute
- Handle(TFunction_Function) TFF;
- pCmdUI->Enable(LabObject.FindAttribute(TFunction_Function::GetID(),TFF) );
- }
- else
- pCmdUI->Enable(FALSE);
-}
-
-
-void COcafDoc::OnCut()
-{
- EraseAll();
- Handle(TDocStd_Document) D = GetOcafDoc();
- TDF_Label L = D->Main();
-
- TOcaf_Commands TSC(L);
-
- // Open a new command (for undo)
- D->NewCommand();
-
- // Create a new cyl (10*20 dimensions)
- TDF_Label L2=TSC.CreateCyl(0, 10, -10, 5, 80, "Cylinder");
- Handle(TPrsStd_AISPresentation) prs1= TPrsStd_AISPresentation::Set(L2, TNaming_NamedShape::GetID());
- prs1->SetColor(Quantity_NOC_MATRABLUE);
- TDataStd_Integer::Set(L2, 1);
- prs1->Display(1);
- Fit3DViews();
-
- // Wait a second to see the construction
- Sleep(500);
-
- // Create a new box (20*20*20 dimensions, at the (-12,0,10) position)
- TDF_Label L1=TSC.CreateBox(-12, 0, 10, 20, 30, 40, "Box");
- Handle(TPrsStd_AISPresentation) prs2= TPrsStd_AISPresentation::Set(L1, TNaming_NamedShape::GetID());
- prs2->SetColor(Quantity_NOC_YELLOW);
- TDataStd_Integer::Set(L1, 1);
- prs2->Display(1);
- Fit3DViews();
-
- Sleep(1000);
-
- // Cut the boxes
- L=TSC.Cut(L1, L2);
- Handle(TPrsStd_AISPresentation) prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID());
-
- // Erase the two boxes and display the cut object
- TDataStd_Integer::Set(L1, 0);
- prs1->Erase(0);
- TDataStd_Integer::Set(L2, 0);
- prs2->Erase(0);
- TDataStd_Integer::Set(L, 1);
- prs->Display(1);
- myAISContext->UpdateCurrentViewer();
-
- // Close the cut operation command (for undo)
- D->CommitCommand();
-
-
- TCollection_AsciiString Message ("\
-// Cut operation between a cylinder and a box \n\
- \n\
-Handle(TDocStd_Document) D = GetOcafDoc(); \n\
-TDF_Label L = D->Main(); \n\
- \n\
-// Opening a new command\n\
-D->NewCommand(); \n\
- \n\
-TOcaf_Commands TSC(D->Main()); \n\
- \n\
-// Create a box \n\
-// Look at the TOcaf_Commands::CreateBox() function \n\
-TDF_Label L1=TSC.CreateBox(-12, 0, 10, 24, 20, 20, '\"'Box'\"'); \n\
-// Look at the TOcaf_Commands::Cut() function \n\
- \n\
-// Create a cylinder \n\
-// Look at the TOcaf_Commands::CreateCyl() function \n\
-// Create two boxes \n\
-TDF_Label L2=TSC.CreateCyl(0, 0, 0, 10, 20, '\"'Cylinder'\"'); \n\
- \n\
-// Cut the cylinder with the box \n\
-L=TSC.Cut(L1, L2); \n\
-Handle(TPrsStd_AISPresentation) prs; \n\
- \n\
-// Setting the TPrsStd_AISPresentation of the cut object\n\
-prs= TPrsStd_AISPresentation::Set(L, TNaming_NamedShape::GetID()); \n\
- \n\
-// Displaying the TPrsStd_AISPresentation of the cut object\n\
-prs->Display(1); \n\
- \n\
-// Commit the command\n\
-D->CommitCommand(); \n\
-\n");
-
- myCResultDialog.SetTitle("Cut operation");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-
-void COcafDoc::Fit3DViews()
-{
- POSITION position = GetFirstViewPosition();
- while (position != (POSITION)NULL)
- {
- CView* pCurrentView = (CView*)GetNextView(position);
- if(pCurrentView->IsKindOf( RUNTIME_CLASS( OCC_3dView ) ) )
- {
- ASSERT_VALID(pCurrentView);
- OCC_3dView* aOCC_3dView = (OCC_3dView*)pCurrentView;
- aOCC_3dView->FitAll();
- }
- }
-
-}
-
-void COcafDoc::OnObjectDelete()
-{
- Handle(TDocStd_Document) D = GetOcafDoc();
-
- D->NewCommand();
-
- AIS_ListOfInteractive aList;
- for (myAISContext->InitSelected(); myAISContext->MoreSelected(); myAISContext->NextSelected())
- {
- aList.Append(myAISContext->SelectedInteractive());
- }
-
- for (AIS_ListOfInteractive::Iterator anIter (aList); anIter.More(); anIter.Next())
- {
- Handle(AIS_InteractiveObject) aPrs = anIter.Value();
- if (myAISContext->DisplayStatus (aPrs) == AIS_DS_Displayed)
- {
- Handle(TPrsStd_AISPresentation) CurrentPrs = Handle(TPrsStd_AISPresentation)::DownCast(aPrs->GetOwner());
- TDataStd_Integer::Set(CurrentPrs->Label(), 0);
- CurrentPrs->Erase(1);
- }
- }
-
- D->CommitCommand();
- myAISContext->UpdateCurrentViewer();
-
- TCollection_AsciiString Message ("\
- // Delete selected object \n\
- \n\
- Handle(TDocStd_Document) D = GetOcafDoc(); \n\
- \n\
- // Opening a new command\n\
- D->NewCommand(); \n\
- \n\
- // Getting the TPrsStd_AISPresentation of the selected object\n\
- Handle(TPrsStd_AISPresentation) CurrentPrs \n\
- =Handle(TPrsStd_AISPresentation)::DownCast(myAISContext->Current()->GetOwner()); \n\
- \n\
- // Erasing the TPrsStd_AISPresentation of the selected object\n\
- CurrentPrs->Erase(1); \n\
- \n\
- // Commit the command\n\
- D->CommitCommand(); \n\
- \n");
-
- myCResultDialog.SetTitle("Delete");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
- }
-
- void COcafDoc::OnUpdateObjectDelete(CCmdUI* pCmdUI)
- {
- myAISContext->InitSelected();
- pCmdUI->Enable (myAISContext->MoreSelected());
- }
-
- void COcafDoc::DisplayPrs()
- {
- TDF_Label LabSat = myOcafDoc->Main();
-
- for (TDF_ChildIterator it(LabSat); it.More(); it.Next())
- {
- TDF_Label L = it.Value();
- Handle(TNaming_NamedShape) TNS;
- if (!L.FindAttribute(TNaming_NamedShape::GetID(), TNS)) continue;
- Handle(TDataStd_Integer) TDI;
-
- // To know if the object was displayed
- if (L.FindAttribute(TDataStd_Integer::GetID(), TDI))
- if(!TDI->Get()) continue;
-
- Handle(TPrsStd_AISPresentation) prs;
- if (!L.FindAttribute(TPrsStd_AISPresentation::GetID(),prs))
- prs = TPrsStd_AISPresentation::Set(L,TNaming_NamedShape::GetID());
- prs->SetColor(Quantity_NOC_ORANGE);
- prs->Display(1);
- }
-
- myAISContext->UpdateCurrentViewer();
-}
-
-void COcafDoc::OnCloseDocument()
-{
- Handle(TOcaf_Application) OcafApp = ((COcafApp*)AfxGetApp())->GetApp();
- OcafApp->Close(myOcafDoc);
- CDocument::OnCloseDocument();
-}
-
-void COcafDoc::OnFileSaveAs()
-{
- const wchar_t* SPathName = PathName;
- TCollection_ExtendedString TPathName (SPathName);
-
- CString Filter;
-
- if (TPathName.SearchFromEnd(".xml") > 0){
- Filter = "OCAFSample(XML) (*.xml)|*.xml|OCAFSample(Binary) (*.cbf)|*.cbf||";
- } else {
- Filter = "OCAFSample(Binary) (*.cbf)|*.cbf|OCAFSample(XML) (*.xml)|*.xml||";
- }
-
- CFileDialog dlg(FALSE,
- L"cbf",
- GetTitle(),
- OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
- Filter,
- NULL );
-
-
- Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp();
- if (dlg.DoModal() != IDOK) return;
-
- SetTitle(dlg.GetFileTitle());
-
- CWaitCursor aWaitCursor;
- CString CSPath = dlg.GetPathName();
-
- std::cout << "Save As " << CSPath << std::endl;
- PathName=CSPath;
- const wchar_t* SPath = CSPath;
- TCollection_ExtendedString TPath (SPath);
-
- if (TPath.SearchFromEnd(".xml") > 0)
- {
- // The document must be saved in XML format
- myOcafDoc->ChangeStorageFormat("XmlOcaf");
- }
- else if (TPath.SearchFromEnd(".cbf") > 0)
- {
- // The document must be saved in binary format
- myOcafDoc->ChangeStorageFormat("BinOcaf");
- }
-
- try
- {
- // Saves the document in the current application
- m_App->SaveAs(myOcafDoc,TPath);
- }
- catch(...)
- {
- AfxMessageBox (L"Error! The file wasn't saved.");
- return;
- }
-// // save the document in the current application
-// m_App->SaveAs(myOcafDoc,TPath);
-
- SetPathName(SPath);
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Storing the document as \n\
- \n\
-Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp(); \n\
- \n\
-// Saving current OCAF document at TPath \n\
-m_App->SaveAs(myOcafDoc,(TCollection_ExtendedString) TPath); \n\
-\n");
-
- myCResultDialog.SetTitle("Save a document");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-void COcafDoc::OnFileSave()
-{
- Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp();
-
-
- if (myOcafDoc.IsNull())
- {
- AfxMessageBox (L"Error during saving! Empty document.");
- return;
- }
-
- if(PathName!="")
- {
- const wchar_t* SPath = PathName;
- TCollection_ExtendedString TPath (SPath);
-
- if (TPath.SearchFromEnd(".xml") > 0)
- {
- // The document must be saved in XML format
- myOcafDoc->ChangeStorageFormat("XmlOcaf");
- }
- else if (TPath.SearchFromEnd(".cbf") > 0)
- {
- // The document must be saved in binary format
- myOcafDoc->ChangeStorageFormat("BinOcaf");
- }
-
- try
- {
- // Saves the document in the current application
- m_App->SaveAs(myOcafDoc,TPath);
- }
- catch(...)
- {
- AfxMessageBox (L"Error! The file wasn't saved.");
- return;
- }
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Storing the document \n\
- \n\
-Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp(); \n\
- \n\
-// Saving current OCAF document at TPath \n\
-m_App->SaveAs(myOcafDoc,(TCollection_ExtendedString) TPath); \n\
-\n");
-
- myCResultDialog.SetTitle("Save a document");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
- return;
- }
-
- CFileDialog dlg(FALSE,
- L"cbf",
- GetTitle(),
- OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
- L"OCAFSample(Binary) (*.cbf)|*.cbf|OCAFSample(XML) (*.xml)|*.xml||",
- NULL );
-
- if (dlg.DoModal() != IDOK) return;
-
- SetTitle(dlg.GetFileTitle());
-
- CWaitCursor aWaitCursor;
- CString CSPath = dlg.GetPathName();
-
- const wchar_t* SPath = CSPath;
- TCollection_ExtendedString TPath (SPath);
-
- // Choose storage format
- if (TPath.SearchFromEnd(".xml") > 0)
- {
- // The document must be saved in XML format
- myOcafDoc->ChangeStorageFormat("XmlOcaf");
- }
- else if (TPath.SearchFromEnd(".cbf") > 0)
- {
- // The document must be saved in binary format
- myOcafDoc->ChangeStorageFormat("BinOcaf");
- }
-
- try
- {
- // Saves the document in the current application
- m_App->SaveAs(myOcafDoc,TPath);
- }
- catch(...)
- {
- AfxMessageBox (L"Error! The file wasn't saved.");
- return;
- }
-
- SetPathName(SPath);
- PathName=CSPath;
-
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Storing the document as \n\
- \n\
-Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp(); \n\
- \n\
-// Saving current OCAF document at TPath \n\
-m_App->SaveAs(myOcafDoc,(TCollection_ExtendedString) TPath); \n\
-\n");
-
- myCResultDialog.SetTitle("Save a document");
- CString text(Message.ToCString());
- myCResultDialog.SetText(text);
-}
-
-BOOL COcafDoc::OnOpenDocument(LPCTSTR lpszPathName)
-{
- if (!CDocument::OnOpenDocument(lpszPathName))
- {
- return FALSE;
- }
-
- Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp();
-
- CWaitCursor aWaitCursor;
- PathName = lpszPathName;
-
- const wchar_t* aPathName = lpszPathName;
- TCollection_ExtendedString anOccPathName (aPathName);
-
- // Open the document in the current application
- //PCDM_ReaderStatus RS = m_App->Open(TPath,myOcafDoc);
- m_App->Open(anOccPathName, myOcafDoc);
- //CDF_RetrievableStatus RS = m_App->Open(TPath,myOcafDoc);
-
- // Connect the document CAF (myDoc) with the AISContext (myAISContext)
- TPrsStd_AISViewer::New (myOcafDoc->Main(), myViewer);
- myOcafDoc->SetUndoLimit (10);
-
- Handle(AIS_InteractiveContext) aContext;
- TPrsStd_AISViewer::Find (myOcafDoc->Main(), aContext);
- aContext->SetDisplayMode (AIS_Shaded, Standard_True);
- myAISContext = aContext;
-
- // Display the presentations (which was not stored in the document)
- DisplayPrs();
-
- TCollection_AsciiString Message = TCollection_AsciiString("\
-// Retrieve a document \n\
- \n\
- Handle(TOcaf_Application) m_App= ((COcafApp*)AfxGetApp())->GetApp(); \n\
- \n\
-// Opening the OCAF document from the TPath file\n\
-m_App->Open((TCollection_ExtendedString) TPath,myOcafDoc); \n\
- \n\
-// Creation of a new TPrsStd_AISViewer connected to the current V3d_Viewer\n\
-TPrsStd_AISViewer::New(myOcafDoc->Main(),myViewer); \n\
- \n\
-// Setting the number of memorized undos \n\
-myOcafDoc->SetUndoLimit(10); \n\
- \n\
-\n");
-
- myCResultDialog.SetTitle ("Open a document");
- CString text (Message.ToCString());
- myCResultDialog.SetText (text);
-
- return TRUE;
-
-}
-
-
-void COcafDoc::EraseAll()
-{
- myOcafDoc->NewCommand();
-
- TDF_Label LabSat = myOcafDoc->Main();
-
- for (TDF_ChildIterator it(LabSat); it.More(); it.Next())
- {
- TDF_Label L = it.Value();
- Handle(TNaming_NamedShape) TNS;
- if (!L.FindAttribute(TNaming_NamedShape::GetID(), TNS)) continue;
- Handle(TDataStd_Integer) TDI;
-
- // To know if the object was displayed
- if (L.FindAttribute(TDataStd_Integer::GetID(), TDI))
- if(!TDI->Get()) continue;
-
- Handle(TPrsStd_AISPresentation) prs;
- if (!L.FindAttribute(TPrsStd_AISPresentation::GetID(),prs))
- prs = TPrsStd_AISPresentation::Set(L,TNaming_NamedShape::GetID());
- prs->SetColor(Quantity_NOC_ORANGE);
- prs->Erase(1);
- }
-
- myAISContext->UpdateCurrentViewer();
-
- myOcafDoc->CommitCommand();
-}
-
-void COcafDoc::Popup(const Standard_Integer x,
- const Standard_Integer y ,
- const Handle(V3d_View)& aView )
-{
- Standard_Integer PopupMenuNumber=0;
- myAISContext->InitSelected();
- if (myAISContext->MoreSelected())
- PopupMenuNumber=1;
-
- CMenu menu;
- VERIFY(menu.LoadMenu(IDR_Popup3D));
- CMenu* pPopup = menu.GetSubMenu(PopupMenuNumber);
-
- ASSERT(pPopup != NULL);
- if (PopupMenuNumber == 1) // more than 1 object.
- {
- bool OneOrMoreInShading = false;
- for (myAISContext->InitSelected();myAISContext->MoreSelected ();myAISContext->NextSelected ())
- if (myAISContext->IsDisplayed(myAISContext->SelectedInteractive(),1)) OneOrMoreInShading=true;
- if(!OneOrMoreInShading)
- pPopup->EnableMenuItem(5, MF_BYPOSITION | MF_DISABLED | MF_GRAYED);
- }
-
- POINT winCoord = { x , y };
- Handle(WNT_Window) aWNTWindow=
- Handle(WNT_Window)::DownCast(aView->Window());
- ClientToScreen ( (HWND)(aWNTWindow->HWindow()),&winCoord);
- pPopup->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON , winCoord.x, winCoord.y ,
- AfxGetMainWnd());
-
-
-}
-
-
-//void COcafDoc::OnDfbr()
-//{
-// // TODO: Add your command handler code here
-// DebugBrowser::DFBrowser(myOcafDoc);
-//
-//}
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafDoc.h b/samples/mfc/standard/06_Ocaf/src/OcafDoc.h
deleted file mode 100755
index d1704d215e..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafDoc.h
+++ /dev/null
@@ -1,86 +0,0 @@
-// OcafDoc.h : interface of the COcafDoc class
-//
-/////////////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_OCAFDOC_H__49324D7C_7836_11D4_8D45_00AA00D10994__INCLUDED_)
-#define AFX_OCAFDOC_H__49324D7C_7836_11D4_8D45_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include
-#include
-
-class COcafDoc : public OCC_3dDoc
-{
-protected: // create from serialization only
- COcafDoc();
- DECLARE_DYNCREATE(COcafDoc)
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(COcafDoc)
- public:
- virtual void OnCloseDocument();
- virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
- virtual BOOL COcafDoc::OnNewDocument();
-
- //}}AFX_VIRTUAL
-
-// Implementation
-public:
- virtual ~COcafDoc();
- virtual void Popup (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
-
-protected:
-
-// Generated message map functions
-protected:
- //{{AFX_MSG(COcafDoc)
- afx_msg void OnCreatebox();
- afx_msg void OnEditRedo();
- afx_msg void OnEditUndo();
- afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
- afx_msg void OnModify();
- afx_msg void OnUpdateModify(CCmdUI* pCmdUI);
- afx_msg void OnUpdateEditRedo(CCmdUI* pCmdUI);
- afx_msg void OnCut();
- afx_msg void OnObjectDelete();
- afx_msg void OnUpdateObjectDelete(CCmdUI* pCmdUI);
- afx_msg void OnFileSave();
- afx_msg void OnFileSaveAs();
- afx_msg void OnCreatecyl();
- afx_msg void OnDfbr();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-public :
-void ActivateFrame(CRuntimeClass* pViewClass, int nCmdShow = SW_RESTORE );
- Handle(TDocStd_Document) GetOcafDoc() {return myOcafDoc;};
- CString PathName;
-
-private:
- Handle(TDocStd_Document) myOcafDoc;
-
-public :
- void EraseAll();
-
-private:
- void DisplayPrs();
- void Fit3DViews();
-
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_OCAFDOC_H__49324D7C_7836_11D4_8D45_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.cpp b/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.cpp
deleted file mode 100755
index 09a71246bb..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.cpp
+++ /dev/null
@@ -1,96 +0,0 @@
-// MainFrm.cpp : implementation of the OcafMainFrame class
-//
-
-#include "StdAfx.h"
-
-#include "OcafMainFrm.h"
-
-#include "OcafApp.h"
-
-/////////////////////////////////////////////////////////////////////////////
-// OcafMainFrame
-
-IMPLEMENT_DYNAMIC(OcafMainFrame, CMDIFrameWnd)
-
-BEGIN_MESSAGE_MAP(OcafMainFrame, CMDIFrameWnd)
- //{{AFX_MSG_MAP(OcafMainFrame)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code !
- ON_WM_CREATE()
- //}}AFX_MSG_MAP
-END_MESSAGE_MAP()
-
-static UINT indicators[] =
-{
- ID_SEPARATOR, // status line indicator
-// ID_INDICATOR_CAPS,
-// ID_INDICATOR_NUM,
-// ID_INDICATOR_SCRL,
-};
-
-/////////////////////////////////////////////////////////////////////////////
-// OcafMainFrame construction/destruction
-
-OcafMainFrame::OcafMainFrame():
- OCC_MainFrame(true)
-{
- // TODO: add member initialization code here
-
-}
-
-OcafMainFrame::~OcafMainFrame()
-{
-}
-
-int OcafMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
-{
- if (OCC_MainFrame::OnCreate(lpCreateStruct) == -1)
- return -1;
-
- if (!m_UndoRedoBar.Create(this) ||
- !m_UndoRedoBar.LoadToolBar(IDR_UNDOREDO) ||
- !m_ActionsBar.Create(this) ||
- !m_ActionsBar.LoadToolBar(IDR_ACTIONS))
- {
- TRACE0("Failed to create toolbar\n");
- return -1; // fail to create
- }
-
- m_UndoRedoBar.SetBarStyle(m_UndoRedoBar.GetBarStyle() |
- CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
-
- m_ActionsBar.SetBarStyle(m_ActionsBar.GetBarStyle() |
- CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
-
- // TODO: Delete these three lines if you don't want the toolbar to
- // be dockable
- m_UndoRedoBar.EnableDocking(CBRS_ALIGN_ANY);
- m_ActionsBar.EnableDocking(CBRS_ALIGN_ANY);
-
- EnableDocking(CBRS_ALIGN_ANY);
- DockControlBarLeftOf(&m_UndoRedoBar,m_AISToolBar);
- DockControlBarLeftOf(&m_ActionsBar,&m_UndoRedoBar);
-
-// SetTitle("Ocaf Sample");
- return 0;
-}
-
-
-/////////////////////////////////////////////////////////////////////////////
-// OcafMainFrame diagnostics
-
-#ifdef _DEBUG
-void OcafMainFrame::AssertValid() const
-{
- CMDIFrameWnd::AssertValid();
-}
-
-void OcafMainFrame::Dump(CDumpContext& dc) const
-{
- CMDIFrameWnd::Dump(dc);
-}
-
-#endif //_DEBUG
-
-/////////////////////////////////////////////////////////////////////////////
-// OcafMainFrame message handlers
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.h b/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.h
deleted file mode 100755
index 55abd74a13..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/OcafMainFrm.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// MainFrm.h : interface of the OcafMainFrame class
-//
-/////////////////////////////////////////////////////////////////////////////
-
-#if !defined(AFX_MAINFRM_H__49324D78_7836_11D4_8D45_00AA00D10994__INCLUDED_)
-#define AFX_MAINFRM_H__49324D78_7836_11D4_8D45_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#include
-
-class OcafMainFrame : public OCC_MainFrame
-{
- DECLARE_DYNAMIC(OcafMainFrame)
-public:
- OcafMainFrame();
-
-// Attributes
-public:
-
-// Operations
-public:
-
-// Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(OcafMainFrame)
- //}}AFX_VIRTUAL
-
-// Implementation
-public:
- virtual ~OcafMainFrame();
-#ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
-#endif
-
-
-protected: // control bar embedded members
- CToolBar m_UndoRedoBar;
- CToolBar m_ActionsBar;
-
-// Generated message map functions
-protected:
- //{{AFX_MSG(OcafMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-private :
-};
-
-/////////////////////////////////////////////////////////////////////////////
-
-//{{AFX_INSERT_LOCATION}}
-// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
-
-#endif // !defined(AFX_MAINFRM_H__49324D78_7836_11D4_8D45_00AA00D10994__INCLUDED_)
diff --git a/samples/mfc/standard/06_Ocaf/src/StdAfx.cpp b/samples/mfc/standard/06_Ocaf/src/StdAfx.cpp
deleted file mode 100755
index e189c88b67..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/StdAfx.cpp
+++ /dev/null
@@ -1,6 +0,0 @@
-// StdAfx.cpp : source file that includes just the standard includes
-// SampleOcaf.pch will be the pre-compiled header
-// StdAfx.obj will contain the pre-compiled type information
-
-#include "StdAfx.h"
-
diff --git a/samples/mfc/standard/06_Ocaf/src/StdAfx.h b/samples/mfc/standard/06_Ocaf/src/StdAfx.h
deleted file mode 100755
index a4fad16a3a..0000000000
--- a/samples/mfc/standard/06_Ocaf/src/StdAfx.h
+++ /dev/null
@@ -1,153 +0,0 @@
-// StdAfx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-//
-
-#if !defined(AFX_STDAFX_H__49324D76_7836_11D4_8D45_00AA00D10994__INCLUDED_)
-#define AFX_STDAFX_H__49324D76_7836_11D4_8D45_00AA00D10994__INCLUDED_
-
-#if _MSC_VER >= 1000
-#pragma once
-#endif // _MSC_VER >= 1000
-
-#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
-
-#include // MFC core and standard components
-#include // MFC extensions
-#include // MFC OLE automation classes
-#ifndef _AFX_NO_AFXCMN_SUPPORT
-#include // MFC support for Windows Common Controls
-#endif // _AFX_NO_AFXCMN_SUPPORT
-
-
-
-// CasCade :
-
-#ifdef MAINWIN
-# define false FALSE
-# define true TRUE
-#endif
-
-#include
-
-#include
-#include
-#include
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include