Class SoFile
- All Implemented Interfaces:
SafeDisposable
SoFile
node is written out, just the field containing the name of the file is written; no children are written out. When an SoFile
is encountered during reading, reading continues from the named file, and all nodes read from the file are added as hidden children of the file node.
Whenever the name
field changes, any existing children are removed and the contents of the new file is read in. The file node remembers what directory the last file was read from and will read the new file from the same directory after checking the standard list of directories (see SoInput
), assuming the field isn't set to an absolute path name.
The children of an SoFile
node are hidden; there is no way of accessing or editing them. If you wish to edit the contents of an SoFile
node, you can modify the contents of the named file and then "touch" the name
field (see SoField
). Alternatively, you can use the copyChildren()
method to get an editable copy of the file node's children. Note that this does not affect the original file on disk, however.
File format/default:
File {
name | "<Undefined file>" |
Action behavior:
SoGLRenderAction
, SoCallbackAction
, SoGetBoundingBoxAction
, SoGetMatrixAction
, SoHandleEventAction
Traverses its children just as SoGroup
does.
SoRayPickAction
Traverses its hidden children, but, if intersections are found, generates paths that end at the SoFile
node.
SoWriteAction
Writes just the name
field and no children.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.openinventor.inventor.nodes.SoNode
SoNode.RenderModes
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal SoSFFilePathString
Name of file from which to read children.Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a newSoGroup
containing copies of all of the file node's children.static boolean
Queries whether the search action will traverse the hidden children.static void
setSearchOK
(boolean flag) If flag is true, the search action will traverse hidden children.Methods inherited from class com.openinventor.inventor.nodes.SoNode
affectsState, callback, copy, copy, distribute, doAction, getAlternateRep, getBoundingBox, getByName, getMatrix, getPrimitiveCount, getRenderEngineMode, getRenderUnitID, GLRender, GLRenderBelowPath, GLRenderInPath, GLRenderOffPath, grabEventsCleanup, grabEventsSetup, handleEvent, isBoundingBoxIgnoring, isOverride, pick, rayPick, search, setOverride, touch, write
Methods inherited from class com.openinventor.inventor.fields.SoFieldContainer
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, set, setToDefaults
Methods inherited from class com.openinventor.inventor.misc.SoBase
dispose, getName, isDisposable, isSynchronizable, setName, setSynchronizable
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
Field Details
-
name
Name of file from which to read children.
-
-
Constructor Details
-
SoFile
public SoFile()Creates a file node with default settings.
-
-
Method Details
-
copyChildren
Returns a newSoGroup
containing copies of all of the file node's children. -
getSearchOK
public static boolean getSearchOK()Queries whether the search action will traverse the hidden children. -
setSearchOK
public static void setSearchOK(boolean flag) If flag is true, the search action will traverse hidden children. Default is false (children will not be searched).
-