parseWinFile function

Convert a Window Description File into a List Object

Convert a Window Description File into a List Object

Parse a window description file (markup file) into the list format expected by createWin.

Note

All widgets are forced into a 1-column by N-row grid.

parseWinFile(fname, astext=FALSE)

Arguments

  • fname: file name of the window description file.
  • astext: if TRUE, fname is interpreted as a vector of strings, with each element representing a line of code in a window description file.

Returns

A list representing a parsed window description file that can be directly passed to createWin.

Author(s)

Alex Couture-Beil, Vancouver Island University, Nanaimo BC

See Also

createWin, compileDescription

Examples

## Not run: local(envir=.PBSmodEnv,expr={ x <- parseWinFile(system.file("examples/LissFigWin.txt",package="PBSmodelling")) createWin(x) }) ## End(Not run)