ctkCmdLineModuleTour.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <executable>
  3. <category>Tours</category>
  4. <title>Execution Model Tour</title>
  5. <description>
  6. Shows one of each type of parameter.
  7. </description>
  8. <version>1.0</version>
  9. <documentation-url></documentation-url>
  10. <license></license>
  11. <contributor>Daniel Blezek</contributor>
  12. <parameters>
  13. <label>Scalar Parameters</label>
  14. <description>
  15. Variations on scalar parameters
  16. </description>
  17. <integer>
  18. <name>integerVariable</name>
  19. <flag>i</flag>
  20. <longflag>integer</longflag>
  21. <description>
  22. An integer without constraints
  23. </description>
  24. <label>Integer Parameter</label>
  25. <default>30</default>
  26. </integer>
  27. <boolean>
  28. <name>booleanParam</name>
  29. <flag>b</flag>
  30. <description>
  31. A boolean without constraints
  32. </description>
  33. <label>Boolean Parameter</label>
  34. </boolean>
  35. <file>
  36. <name>fileVar</name>
  37. <index>3</index>
  38. <description>Some file</description>
  39. <label>Some file</label>
  40. <default>bla</default>
  41. <channel>input</channel>
  42. </file>
  43. <directory>
  44. <name>dirVar</name>
  45. <index>6</index>
  46. <description>Some dir</description>
  47. <label>Some dir</label>
  48. <default>/home</default>
  49. <channel>output</channel>
  50. </directory>
  51. <geometry fileExtensions="*.jpg, *.txt">
  52. <name>geomVar</name>
  53. <index>7</index>
  54. <description>Some geom</description>
  55. <label>Some geom</label>
  56. </geometry>
  57. <double>
  58. <name>doubleVariable</name>
  59. <flag>d</flag>
  60. <longflag>double</longflag>
  61. <description>An double with constraints</description>
  62. <label>Double Parameter</label>
  63. <default>30</default>
  64. <constraints>
  65. <minimum>0</minimum>
  66. <maximum>1.e3</maximum>
  67. <step>0</step>
  68. </constraints>
  69. </double>
  70. </parameters>
  71. <parameters advanced="true">
  72. <label>Vector Parameters</label>
  73. <description>Variations on vector parameters</description>
  74. <float-vector>
  75. <name>floatVector</name>
  76. <flag>f</flag>
  77. <description>A vector of floats</description>
  78. <label>Float Vector Parameter</label>
  79. <default>1.3,2,-14</default>
  80. </float-vector>
  81. <string-vector>
  82. <name>stringVector</name>
  83. <longflag>string_vector</longflag>
  84. <description>A vector of strings</description>
  85. <label>String Vector Parameter</label>
  86. <default>"foo",bar,"foobar"</default>
  87. </string-vector>
  88. </parameters>
  89. <parameters>
  90. <label>Enumeration Parameters</label>
  91. <description>Variations on enumeration parameters</description>
  92. <string-enumeration>
  93. <name>stringChoice</name>
  94. <flag>e</flag>
  95. <longflag>enumeration</longflag>
  96. <description>An enumeration of strings</description>
  97. <label>String Enumeration Parameter</label>
  98. <default>foo</default>
  99. <element>foo</element>
  100. <element>"foobar"</element>
  101. <element>foofoo</element>
  102. </string-enumeration>
  103. <point>
  104. <name>pointVar</name>
  105. <flag>p</flag>
  106. <description>asf</description>
  107. <label>A point</label>
  108. <default>0.5,-34.2,43</default>
  109. </point>
  110. </parameters>
  111. </executable>