mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1) Add SelectMgr_EntityOwner::IsSelected() and SelectMgr_EntityOwner::SetSelected() methods to determine if corresponding entity is selected. They replace functionality of SelectMgr_EntityOwner::State() methods that are deprecated now. 2) AIS_InteractiveContext::ToHilightSelected() and AIS_InteractiveContext::SetToHilightSelected() is to be used to enable highlighting of selected objects. 3) By default selected objects are highlighted (new behavior) 4) Add ViewerTest_ViewerCommands: vhighlightselected command to enable/disable 'highlight selected objects' mode. 5) AIS_LocalContext, AIS_InteractiveContext : style changes in Select and ShiftSelect methods. 6) Add test cases /bugs/vis bug23649_1 and /bugs/vis bug23649_2 to test highlighting of selected objects in local context. 7) Add test cases /bugs/vis bug23649_3 and /bugs/vis bug23649_4 to test highlighting of selected objects in neutral point. Updated test case
35 lines
884 B
Plaintext
35 lines
884 B
Plaintext
puts "============"
|
|
puts "CR23649"
|
|
puts "============"
|
|
puts ""
|
|
|
|
#######################################################################
|
|
# 0023649: Different behaviour of highlighting after shift selection
|
|
# It tests highlighting of selected sub-shapes.
|
|
# This mode is option of interactive context.
|
|
#######################################################################
|
|
|
|
set anImage1 $imagedir/${casename}_HighlightFirst.png
|
|
set anImage2 $imagedir/${casename}_HighlightSecond.png
|
|
|
|
box b 1 2 3
|
|
vinit
|
|
vdisplay b
|
|
vfit
|
|
vselmode b 2 1
|
|
#select the first edge
|
|
vselect 232 368
|
|
#select the second edge
|
|
vselect 165 278 1
|
|
vmoveto 0 0
|
|
|
|
#enable 'highlight selected' mode
|
|
vhighlightselected on
|
|
|
|
#highlight the first edge - it should be highlightable by default
|
|
vmoveto 232 368
|
|
vdump ${anImage1}
|
|
|
|
#highlight the second edge - it should be highlightable by default
|
|
vmoveto 165 278
|
|
vdump ${anImage2} |