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.
61 lines
1.9 KiB
Plaintext
61 lines
1.9 KiB
Plaintext
puts "============"
|
|
puts "CR26779"
|
|
puts "============"
|
|
puts ""
|
|
|
|
##########################################################################################
|
|
puts "Draw Harness, ViewerTest - vstate output is incorrect for sub-shapes selection without opening local context"
|
|
##########################################################################################
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
box b1 1 2 3
|
|
box b2 5 5 5 1 1 1
|
|
|
|
vclear
|
|
vclose ALL
|
|
vinit View1
|
|
vaxo
|
|
vsetdispmode 1
|
|
vdisplay b1
|
|
vfit
|
|
|
|
vselmode b1 4 1
|
|
vselect 300 300
|
|
set anInfo [split [vstate] "\n"]
|
|
set aItem1 [lindex $anInfo 0]
|
|
set aItem2 [string trim [lindex $anInfo 1] ]
|
|
set aSize [llength $anInfo]
|
|
if {$aSize != 3 || [string compare $aItem1 "Locally selected sub-shapes within b1:"] != 0 || [string compare $aItem2 "Face #2"] != 0} {
|
|
puts "ERROR: vstate output for selected face is incorrect"
|
|
}
|
|
|
|
vdisplay b2
|
|
vfit
|
|
|
|
vselect 350 120 -xor
|
|
set anInfo [split [vstate *] "\n"]
|
|
set aItem1 [string trim [lindex $anInfo 1] ]
|
|
set aItem2 [string trim [lindex $anInfo 2] ]
|
|
set aItem3 [string trim [lindex $anInfo 4] ]
|
|
set aSize [llength $anInfo]
|
|
puts $aItem1
|
|
puts $aItem2
|
|
puts $aSize
|
|
if {$aSize != 6} {
|
|
puts "ERROR: vstate output for shift selection is incorrect"
|
|
}
|
|
if {[string compare $aItem1 "b1 Displayed Type: AIS_Shape (AIS_Shape)"] != 0 &&
|
|
[string compare $aItem2 "b1 Displayed Type: AIS_Shape (AIS_Shape)"] != 0} {
|
|
puts "ERROR: no info about object b1 in vstate output"
|
|
}
|
|
if {[string compare $aItem1 "b2 Displayed Selected Detected Type: AIS_Shape (AIS_Shape)"] != 0 &&
|
|
[string compare $aItem2 "b2 Displayed Selected Detected Type: AIS_Shape (AIS_Shape)"] != 0} {
|
|
puts "ERROR: no info about object b2 in vstate output"
|
|
}
|
|
if {[string compare $aItem3 "Face #2"] != 0} {
|
|
puts "ERROR: vstate output for selected face in test part 2 is incorrect"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|