mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added AIS_ViewController::MouseSelectionSchemes() property defining map of selection schemes for mouse+modifier combinations. IsXOR flag has been replaced by AIS_SelectionScheme in interfaces. Rubber-band selection with Shift key pressed now applies XOR selection scheme in in Draw Harness. Command vselect has been extended to specify selection scheme by name.
36 lines
904 B
Plaintext
36 lines
904 B
Plaintext
puts "============"
|
|
puts "CR23649"
|
|
puts "============"
|
|
puts ""
|
|
|
|
#######################################################################
|
|
# 0023649: Different behaviour of highlighting after shift selection
|
|
# It tests highlighting of selected shapes (neutral point).
|
|
# This mode is option of interactive context.
|
|
#######################################################################
|
|
|
|
set anImage1 $imagedir/${casename}_HighlightFirst.png
|
|
set anImage2 $imagedir/${casename}_HighlightSecond.png
|
|
|
|
box a 2 0 0 3 2 1
|
|
box b 1 2 3
|
|
vinit
|
|
vdisplay a b
|
|
vfit
|
|
#select the first shape
|
|
vselect 70 230
|
|
#select the second shape
|
|
vselect 200 358 -xor
|
|
vmoveto 0 0
|
|
|
|
#enable 'highlight selected' mode
|
|
vhighlightselected on
|
|
|
|
#highlight the first edge - it should be highlightable by default
|
|
vmoveto 70 230
|
|
vdump ${anImage1}
|
|
|
|
#highlight the second edge - it should be highlightable by default
|
|
vmoveto 200 358
|
|
vdump ${anImage2}
|