1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
vro c9776c7ac0 0028314: Application Framework - Display mode is not saved within XML OCAF document
A rebased up-to-date version:
    - a bug is fixed (storage and retrieval of display mode in XML file format)
    - draw-commands to manipulate the display and selection mode are implemented
    - a test command "caf presentation M1" is created
2017-05-18 16:49:06 +03:00

28 lines
543 B
Plaintext

#INTERFACE CAF
# Presentation attributes
#
# Testing attribute: TPrsStd_AISPresentation
#
# Testing command: AISMode, storage of display mode in XML file
#
NewDocument D1 XmlOcaf
AISInitViewer D1
box b 100 100 100
SetShape D1 0:1 b
AISSet D1 0:1 NS
AISDisplay D1 0:1
AISMode D1 0:1 1
SaveAs D1 testmode.xml
Close D1
Open testmode.xml D2
AISInitViewer D2
AISDisplay D2 0:1
set mode [AISMode D2 0:1]
if { ${mode} != 1 } {
puts ${mode}
puts "Storage of display mode of TPrsStd_AISPresentation attribute in XML document: Error"
return
}