mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
V3d_View/Graphic3d_CView pair has been extended to define subview within the other V3d_View instance. The initialization is done in form of V3d_View::SetWindow() taking parent V3d_View instance on input. Subview definition includes dimensions defined as a fraction of a parent view and offset from a corner. This scheme allows splitting window into several subviews automatically occupying entire viewport, like splitting window into two vertial subviews (100%x50% + 100%x50%), three horizontal subviews (33%x100% + 30%x100% + 30%x100%), 1 + 2 stacked subviews (50%x100% + 50%x50% + 50%x50%), as well as thumbnail-alike subviews displayed on top of another larger view. OpenGl_View::Redraw() blits content of subviews into the window within immediate redraw step. AIS_ViewController::FlushViewEvents() has been extended to re-calculate mouse input into local subview coordinates. AIS_ViewController::handleViewRedraw() first redraws subviews and then parent views. Introduced new callback AIS_ViewController::OnSubviewChanged() to switch input focus to another subview on mouse click, implemented by ViewerTest_EventManager (has to be done at application level). vinit command has been extended with parameters -subview and -parent to create a subview. In addition, view dimension arguments now can be defined as a fraction of screen size instead of pixels.
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
puts "========"
|
|
puts "0032886: Visualization, V3d_View - introduce interface for creating a subview"
|
|
puts "V1/CompView + V2/ViewLeft + V2/ViewRightTop + V2/ViewRightBottom + margins"
|
|
puts "========"
|
|
|
|
pload MODELING VISUALIZATION
|
|
vinit V1/CompView -width 768 -height 512 -composer 1
|
|
vbackground GRAY20
|
|
|
|
vinit V2/ViewLeft -parent V1/CompView -width 0.5 -height 1.0 -margins 2 2
|
|
vbackground GRAY30
|
|
vaxo
|
|
vcamera -persp
|
|
box b 1 2 3
|
|
vdisplay -dispMode 1 b
|
|
vaspects b -faceBoundaryDraw 1
|
|
vfit
|
|
vviewcube vc
|
|
|
|
vinit V2/ViewRightTop -parent V1/CompView -width 0.5 -height 0.5 -corner topRight -margins 2 2
|
|
vbackground GRAY40
|
|
vaxo
|
|
vfit
|
|
verase vc -view
|
|
|
|
vinit V3/ViewRightBottom -parent V1/CompView -width 0.5 -height 0.5 -corner bottomRight -margins 2 2
|
|
vbackground GRAY50
|
|
psphere s 1
|
|
vdisplay -dispMode 1 s
|
|
vaspects s -material SILVER
|
|
vaxo
|
|
vfit
|
|
vzbufftrihedron
|
|
|
|
vinit V3/ThumbView -parent V1/CompView -width 100 -height 150 -corner topLeft -top 10 -left 10 -margins 2 2
|
|
vbackground GRAY40
|
|
vaxo
|
|
vfit
|
|
|
|
vactivate V1/CompView
|
|
vdump $::imagedir/${::casename}.png
|
|
|
|
vactivate V2/ViewLeft
|
|
vdump $::imagedir/${::casename}_left.png
|
|
|
|
vactivate V2/ViewRightTop
|
|
vdump $::imagedir/${::casename}_righttop.png
|
|
|
|
vactivate V3/ThumbView
|
|
vdump $::imagedir/${::casename}_thumb.png
|
|
|
|
vactivate V3/ViewRightBottom
|
|
vdump $::imagedir/${::casename}_rightbottom.png
|