qooxview 1.9.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (605) hide show
  1. checksums.yaml +7 -0
  2. data/.project +13 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +5 -0
  5. data/Gemfile.lock +89 -0
  6. data/LICENSE.txt +619 -0
  7. data/README.md +31 -0
  8. data/Rakefile +2 -0
  9. data/VERSIONS +12 -0
  10. data/lib/qooxview/additions.rb +161 -0
  11. data/lib/qooxview/config_yaml.rb +42 -0
  12. data/lib/qooxview/entity.rb +698 -0
  13. data/lib/qooxview/frontend/1build_generate +14 -0
  14. data/lib/qooxview/frontend/2src_generate +4 -0
  15. data/lib/qooxview/frontend/Manifest.json +34 -0
  16. data/lib/qooxview/frontend/README +19 -0
  17. data/lib/qooxview/frontend/UploadMgr/.project +11 -0
  18. data/lib/qooxview/frontend/UploadMgr/Manifest.json +34 -0
  19. data/lib/qooxview/frontend/UploadMgr/config.json +77 -0
  20. data/lib/qooxview/frontend/UploadMgr/demo/default/Manifest.json +34 -0
  21. data/lib/qooxview/frontend/UploadMgr/demo/default/config.json +84 -0
  22. data/lib/qooxview/frontend/UploadMgr/demo/default/generate.py +72 -0
  23. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/Application.js +224 -0
  24. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/simulation/DemoSimulation.js +44 -0
  25. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/test/DemoTest.js +55 -0
  26. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Appearance.js +18 -0
  27. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Color.js +18 -0
  28. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Decoration.js +18 -0
  29. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Font.js +18 -0
  30. data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Theme.js +21 -0
  31. data/lib/qooxview/frontend/UploadMgr/demo/default/source/index.html +9 -0
  32. data/lib/qooxview/frontend/UploadMgr/demo/default/source/resource/uploadmgr/demo/test.png +0 -0
  33. data/lib/qooxview/frontend/UploadMgr/demo/default/source/script/uploadmgr.demo.d88b4fb45db4.js +1 -0
  34. data/lib/qooxview/frontend/UploadMgr/demo/default/source/script/uploadmgr.demo.js +211 -0
  35. data/lib/qooxview/frontend/UploadMgr/demo/default/source/translation/readme.txt +3 -0
  36. data/lib/qooxview/frontend/UploadMgr/generate.py +72 -0
  37. data/lib/qooxview/frontend/UploadMgr/server/LICENSE.TXT +3 -0
  38. data/lib/qooxview/frontend/UploadMgr/server/README.txt +3 -0
  39. data/lib/qooxview/frontend/UploadMgr/server/java/com/zenesis/qx/upload/DemoUploadServlet.java +176 -0
  40. data/lib/qooxview/frontend/UploadMgr/server/perl.cgi +62 -0
  41. data/lib/qooxview/frontend/UploadMgr/server/php.php +116 -0
  42. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/AbstractHandler.js +278 -0
  43. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/File.js +178 -0
  44. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/FormHandler.js +192 -0
  45. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/InputElement.js +68 -0
  46. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/MParameters.js +67 -0
  47. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/MUploadButton.js +40 -0
  48. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadButton.js +35 -0
  49. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadMgr.js +301 -0
  50. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadToolbarButton.js +35 -0
  51. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/XhrHandler.js +176 -0
  52. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/simulation/DemoSimulation.js +44 -0
  53. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/test/DemoTest.js +55 -0
  54. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Appearance.js +18 -0
  55. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Color.js +18 -0
  56. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Decoration.js +18 -0
  57. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Font.js +18 -0
  58. data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Theme.js +21 -0
  59. data/lib/qooxview/frontend/UploadMgr/source/index.html +9 -0
  60. data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/banner-bg.png +0 -0
  61. data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/banner.png +0 -0
  62. data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/logo.gif +0 -0
  63. data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/test.png +0 -0
  64. data/lib/qooxview/frontend/UploadMgr/source/translation/readme.txt +3 -0
  65. data/lib/qooxview/frontend/build/index.html +11 -0
  66. data/lib/qooxview/frontend/build/resource/frontend/test.png +0 -0
  67. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/app-header.png +0 -0
  68. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-invert.png +0 -0
  69. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-small-invert.png +0 -0
  70. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-small.png +0 -0
  71. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down.png +0 -0
  72. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/forward.png +0 -0
  73. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/left-invert.png +0 -0
  74. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/left.png +0 -0
  75. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/rewind.png +0 -0
  76. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/right-invert.png +0 -0
  77. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/right.png +0 -0
  78. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up-invert.png +0 -0
  79. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up-small.png +0 -0
  80. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up.png +0 -0
  81. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows-combined.png +0 -0
  82. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/button-lr-combined.png +0 -0
  83. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/button-tb-combined.png +0 -0
  84. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/checkradio-combined.png +0 -0
  85. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/brightness-field.png +0 -0
  86. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/brightness-handle.gif +0 -0
  87. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/huesaturation-field.jpg +0 -0
  88. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/huesaturation-handle.gif +0 -0
  89. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector-combined.gif +0 -0
  90. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/alias.gif +0 -0
  91. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/copy.gif +0 -0
  92. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/move.gif +0 -0
  93. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/nodrop.gif +0 -0
  94. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors-combined.gif +0 -0
  95. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-b.png +0 -0
  96. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-bl.png +0 -0
  97. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-br.png +0 -0
  98. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-c.png +0 -0
  99. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-b.png +0 -0
  100. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-bl.png +0 -0
  101. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-br.png +0 -0
  102. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-c.png +0 -0
  103. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-b.png +0 -0
  104. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-bl.png +0 -0
  105. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-br.png +0 -0
  106. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-c.png +0 -0
  107. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-l.png +0 -0
  108. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-r.png +0 -0
  109. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-t.png +0 -0
  110. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-tl.png +0 -0
  111. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-tr.png +0 -0
  112. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused.png +0 -0
  113. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-l.png +0 -0
  114. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-r.png +0 -0
  115. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-t.png +0 -0
  116. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-tl.png +0 -0
  117. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-tr.png +0 -0
  118. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked.png +0 -0
  119. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-b.png +0 -0
  120. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-bl.png +0 -0
  121. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-br.png +0 -0
  122. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-c.png +0 -0
  123. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-l.png +0 -0
  124. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-r.png +0 -0
  125. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-t.png +0 -0
  126. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-tl.png +0 -0
  127. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-tr.png +0 -0
  128. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled.png +0 -0
  129. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-b.png +0 -0
  130. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-bl.png +0 -0
  131. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-br.png +0 -0
  132. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-c.png +0 -0
  133. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-l.png +0 -0
  134. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-r.png +0 -0
  135. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-t.png +0 -0
  136. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-tl.png +0 -0
  137. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-tr.png +0 -0
  138. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused.png +0 -0
  139. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-b.png +0 -0
  140. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-bl.png +0 -0
  141. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-br.png +0 -0
  142. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-c.png +0 -0
  143. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-l.png +0 -0
  144. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-r.png +0 -0
  145. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-t.png +0 -0
  146. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-tl.png +0 -0
  147. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-tr.png +0 -0
  148. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered.png +0 -0
  149. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-l.png +0 -0
  150. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-b.png +0 -0
  151. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-bl.png +0 -0
  152. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-br.png +0 -0
  153. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-c.png +0 -0
  154. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-b.png +0 -0
  155. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-bl.png +0 -0
  156. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-br.png +0 -0
  157. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-c.png +0 -0
  158. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-l.png +0 -0
  159. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-r.png +0 -0
  160. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-t.png +0 -0
  161. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-tl.png +0 -0
  162. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-tr.png +0 -0
  163. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused.png +0 -0
  164. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-l.png +0 -0
  165. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-r.png +0 -0
  166. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-t.png +0 -0
  167. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-tl.png +0 -0
  168. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-tr.png +0 -0
  169. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected.png +0 -0
  170. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-b.png +0 -0
  171. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-bl.png +0 -0
  172. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-br.png +0 -0
  173. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-c.png +0 -0
  174. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-l.png +0 -0
  175. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-r.png +0 -0
  176. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-t.png +0 -0
  177. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-tl.png +0 -0
  178. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-tr.png +0 -0
  179. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed.png +0 -0
  180. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-r.png +0 -0
  181. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-t.png +0 -0
  182. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-tl.png +0 -0
  183. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-tr.png +0 -0
  184. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button.png +0 -0
  185. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-disabled.png +0 -0
  186. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-focused-invalid.png +0 -0
  187. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-focused.png +0 -0
  188. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-hovered-invalid.png +0 -0
  189. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-hovered.png +0 -0
  190. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-invalid.png +0 -0
  191. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-pressed-invalid.png +0 -0
  192. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-pressed.png +0 -0
  193. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked.png +0 -0
  194. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-disabled.png +0 -0
  195. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-focused-invalid.png +0 -0
  196. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-focused.png +0 -0
  197. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-hovered-invalid.png +0 -0
  198. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-hovered.png +0 -0
  199. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-invalid.png +0 -0
  200. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-pressed-invalid.png +0 -0
  201. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-pressed.png +0 -0
  202. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-disabled.png +0 -0
  203. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-focused-invalid.png +0 -0
  204. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-focused.png +0 -0
  205. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-hovered-invalid.png +0 -0
  206. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-hovered.png +0 -0
  207. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-invalid.png +0 -0
  208. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined.png +0 -0
  209. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox.png +0 -0
  210. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checked-disabled.png +0 -0
  211. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checked.png +0 -0
  212. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/input-focused.png +0 -0
  213. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/input.png +0 -0
  214. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-disabled.png +0 -0
  215. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-focused-invalid.png +0 -0
  216. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-focused.png +0 -0
  217. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-hovered-invalid.png +0 -0
  218. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-hovered.png +0 -0
  219. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-invalid.png +0 -0
  220. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-pressed-invalid.png +0 -0
  221. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-pressed.png +0 -0
  222. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked.png +0 -0
  223. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-disabled.png +0 -0
  224. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-focused-invalid.png +0 -0
  225. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-focused.png +0 -0
  226. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-hovered-invalid.png +0 -0
  227. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-hovered.png +0 -0
  228. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-invalid.png +0 -0
  229. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-pressed-invalid.png +0 -0
  230. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-pressed.png +0 -0
  231. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton.png +0 -0
  232. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-arrow-right.png +0 -0
  233. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-arrow.png +0 -0
  234. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-b.png +0 -0
  235. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-bl.png +0 -0
  236. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-br.png +0 -0
  237. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-c.png +0 -0
  238. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-l.png +0 -0
  239. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-r.png +0 -0
  240. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-t.png +0 -0
  241. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-tl.png +0 -0
  242. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-tr.png +0 -0
  243. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error.png +0 -0
  244. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/undetermined-disabled.png +0 -0
  245. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/undetermined.png +0 -0
  246. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/group-item.png +0 -0
  247. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-b.png +0 -0
  248. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-bl.png +0 -0
  249. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-br.png +0 -0
  250. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-c.png +0 -0
  251. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-l.png +0 -0
  252. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-r.png +0 -0
  253. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-t.png +0 -0
  254. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-tl.png +0 -0
  255. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-tr.png +0 -0
  256. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox.png +0 -0
  257. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox-lr-combined.png +0 -0
  258. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox-tb-combined.png +0 -0
  259. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/background.png +0 -0
  260. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/bar-background.png +0 -0
  261. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/checkbox-invert.gif +0 -0
  262. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/checkbox.gif +0 -0
  263. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/radiobutton-invert.gif +0 -0
  264. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/radiobutton.gif +0 -0
  265. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu-background-combined.png +0 -0
  266. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu-checkradio-combined.gif +0 -0
  267. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-b.png +0 -0
  268. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-bl.png +0 -0
  269. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-br.png +0 -0
  270. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-c.png +0 -0
  271. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-l.png +0 -0
  272. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-r.png +0 -0
  273. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-t.png +0 -0
  274. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-tl.png +0 -0
  275. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-tr.png +0 -0
  276. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane.png +0 -0
  277. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane-lr-combined.png +0 -0
  278. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane-tb-combined.png +0 -0
  279. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-horizontal.png +0 -0
  280. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-pressed-horizontal.png +0 -0
  281. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-pressed-vertical.png +0 -0
  282. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-vertical.png +0 -0
  283. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-button-bg-horizontal.png +0 -0
  284. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-button-bg-vertical.png +0 -0
  285. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-down.png +0 -0
  286. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-left.png +0 -0
  287. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-right.png +0 -0
  288. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-up.png +0 -0
  289. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/slider-knob-background.png +0 -0
  290. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar-combined.png +0 -0
  291. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/selection.png +0 -0
  292. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-b.png +0 -0
  293. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-bl.png +0 -0
  294. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-br.png +0 -0
  295. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-c.png +0 -0
  296. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-l.png +0 -0
  297. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-r.png +0 -0
  298. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-b.png +0 -0
  299. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-bl.png +0 -0
  300. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-br.png +0 -0
  301. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-c.png +0 -0
  302. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-l.png +0 -0
  303. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-r.png +0 -0
  304. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-t.png +0 -0
  305. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-tl.png +0 -0
  306. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-tr.png +0 -0
  307. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small.png +0 -0
  308. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-t.png +0 -0
  309. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-tl.png +0 -0
  310. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-tr.png +0 -0
  311. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow.png +0 -0
  312. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-lr-combined.png +0 -0
  313. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-small-lr-combined.png +0 -0
  314. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-small-tb-combined.png +0 -0
  315. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-tb-combined.png +0 -0
  316. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane/knob-horizontal.png +0 -0
  317. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane/knob-vertical.png +0 -0
  318. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane-knobs-combined.png +0 -0
  319. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/ascending.png +0 -0
  320. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/boolean-false.png +0 -0
  321. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/boolean-true.png +0 -0
  322. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/descending.png +0 -0
  323. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/header-cell.png +0 -0
  324. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/select-column-order.png +0 -0
  325. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table-combined.png +0 -0
  326. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-b.png +0 -0
  327. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-bl.png +0 -0
  328. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-br.png +0 -0
  329. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-c.png +0 -0
  330. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-l.png +0 -0
  331. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-r.png +0 -0
  332. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-t.png +0 -0
  333. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-tl.png +0 -0
  334. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-tr.png +0 -0
  335. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active.png +0 -0
  336. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-b.png +0 -0
  337. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-bl.png +0 -0
  338. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-br.png +0 -0
  339. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-c.png +0 -0
  340. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-l.png +0 -0
  341. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-r.png +0 -0
  342. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-t.png +0 -0
  343. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-tl.png +0 -0
  344. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-tr.png +0 -0
  345. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive.png +0 -0
  346. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-b.png +0 -0
  347. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-bl.png +0 -0
  348. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-br.png +0 -0
  349. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-c.png +0 -0
  350. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-l.png +0 -0
  351. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-r.png +0 -0
  352. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-t.png +0 -0
  353. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-tl.png +0 -0
  354. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-tr.png +0 -0
  355. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active.png +0 -0
  356. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-b.png +0 -0
  357. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-bl.png +0 -0
  358. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-br.png +0 -0
  359. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-c.png +0 -0
  360. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-l.png +0 -0
  361. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-r.png +0 -0
  362. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-t.png +0 -0
  363. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-tl.png +0 -0
  364. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-tr.png +0 -0
  365. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive.png +0 -0
  366. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-b.png +0 -0
  367. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-bl.png +0 -0
  368. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-br.png +0 -0
  369. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-c.png +0 -0
  370. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-l.png +0 -0
  371. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-r.png +0 -0
  372. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-t.png +0 -0
  373. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-tl.png +0 -0
  374. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-tr.png +0 -0
  375. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active.png +0 -0
  376. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-b.png +0 -0
  377. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-bl.png +0 -0
  378. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-br.png +0 -0
  379. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-c.png +0 -0
  380. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-l.png +0 -0
  381. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-r.png +0 -0
  382. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-t.png +0 -0
  383. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-tl.png +0 -0
  384. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-tr.png +0 -0
  385. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive.png +0 -0
  386. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-b.png +0 -0
  387. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-bl.png +0 -0
  388. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-br.png +0 -0
  389. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-c.png +0 -0
  390. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-l.png +0 -0
  391. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-r.png +0 -0
  392. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-t.png +0 -0
  393. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-tl.png +0 -0
  394. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-tr.png +0 -0
  395. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active.png +0 -0
  396. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-b.png +0 -0
  397. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-bl.png +0 -0
  398. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-br.png +0 -0
  399. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-c.png +0 -0
  400. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-l.png +0 -0
  401. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-r.png +0 -0
  402. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-t.png +0 -0
  403. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-tl.png +0 -0
  404. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-tr.png +0 -0
  405. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive.png +0 -0
  406. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-b.png +0 -0
  407. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-bl.png +0 -0
  408. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-br.png +0 -0
  409. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-c.png +0 -0
  410. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-l.png +0 -0
  411. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-r.png +0 -0
  412. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-t.png +0 -0
  413. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-tl.png +0 -0
  414. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-tr.png +0 -0
  415. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane.png +0 -0
  416. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-active-lr-combined.png +0 -0
  417. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-active-tb-combined.png +0 -0
  418. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-b-combined.png +0 -0
  419. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-lr-combined.png +0 -0
  420. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-t-combined.png +0 -0
  421. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-active-lr-combined.png +0 -0
  422. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-active-tb-combined.png +0 -0
  423. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-b-combined.png +0 -0
  424. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-lr-combined.png +0 -0
  425. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-t-combined.png +0 -0
  426. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-active-lr-combined.png +0 -0
  427. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-active-tb-combined.png +0 -0
  428. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-b-combined.png +0 -0
  429. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-lr-combined.png +0 -0
  430. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-t-combined.png +0 -0
  431. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-active-lr-combined.png +0 -0
  432. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-active-tb-combined.png +0 -0
  433. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-b-combined.png +0 -0
  434. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-lr-combined.png +0 -0
  435. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-t-combined.png +0 -0
  436. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-pane-lr-combined.png +0 -0
  437. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-pane-tb-combined.png +0 -0
  438. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-gradient-blue.png +0 -0
  439. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-gradient.png +0 -0
  440. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-handle-knob.gif +0 -0
  441. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-part.gif +0 -0
  442. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar-combined.png +0 -0
  443. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tooltip-error-lr-combined.png +0 -0
  444. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tooltip-error-tb-combined.png +0 -0
  445. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/closed-selected.png +0 -0
  446. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/closed.png +0 -0
  447. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/open-selected.png +0 -0
  448. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/open.png +0 -0
  449. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree-combined.png +0 -0
  450. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-b.png +0 -0
  451. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-bl.png +0 -0
  452. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-br.png +0 -0
  453. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-c.png +0 -0
  454. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-l.png +0 -0
  455. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-r.png +0 -0
  456. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-t.png +0 -0
  457. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-tl.png +0 -0
  458. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-tr.png +0 -0
  459. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active.png +0 -0
  460. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-b.png +0 -0
  461. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-bl.png +0 -0
  462. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-br.png +0 -0
  463. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-c.png +0 -0
  464. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-l.png +0 -0
  465. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-r.png +0 -0
  466. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-t.png +0 -0
  467. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-tl.png +0 -0
  468. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-tr.png +0 -0
  469. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive.png +0 -0
  470. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-active-hovered.png +0 -0
  471. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-active.png +0 -0
  472. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-inactive.png +0 -0
  473. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-active-hovered.png +0 -0
  474. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-active.png +0 -0
  475. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-inactive.png +0 -0
  476. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-active-hovered.png +0 -0
  477. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-active.png +0 -0
  478. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-inactive.png +0 -0
  479. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-active-hovered.png +0 -0
  480. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-active.png +0 -0
  481. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-inactive.png +0 -0
  482. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-b.png +0 -0
  483. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-bl.png +0 -0
  484. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-br.png +0 -0
  485. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-c.png +0 -0
  486. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-l.png +0 -0
  487. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-r.png +0 -0
  488. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-t.png +0 -0
  489. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-tl.png +0 -0
  490. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-tr.png +0 -0
  491. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar.png +0 -0
  492. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-buttons-combined.png +0 -0
  493. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-lr-active-combined.png +0 -0
  494. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-lr-inactive-combined.png +0 -0
  495. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-tb-active-combined.png +0 -0
  496. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-tb-inactive-combined.png +0 -0
  497. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-statusbar-lr-combined.png +0 -0
  498. data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-statusbar-tb-combined.png +0 -0
  499. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/dialog-cancel.png +0 -0
  500. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/dialog-ok.png +0 -0
  501. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/view-refresh.png +0 -0
  502. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/window-close.png +0 -0
  503. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/apps/office-calendar.png +0 -0
  504. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/apps/utilities-color-chooser.png +0 -0
  505. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/mimetypes/office-document.png +0 -0
  506. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/places/folder-open.png +0 -0
  507. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/places/folder.png +0 -0
  508. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/mimetypes/office-document.png +0 -0
  509. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/places/folder-open.png +0 -0
  510. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/places/folder.png +0 -0
  511. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/mimetypes/office-document.png +0 -0
  512. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/places/folder-open.png +0 -0
  513. data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/places/folder.png +0 -0
  514. data/lib/qooxview/frontend/build/resource/qx/static/blank.gif +0 -0
  515. data/lib/qooxview/frontend/build/resource/qx/static/blank.png +0 -0
  516. data/lib/qooxview/frontend/build/script/frontend.js +213 -0
  517. data/lib/qooxview/frontend/config.json +58 -0
  518. data/lib/qooxview/frontend/generate.py +149 -0
  519. data/lib/qooxview/frontend/mklink +2 -0
  520. data/lib/qooxview/frontend/readme.txt +11 -0
  521. data/lib/qooxview/frontend/source/class/frontend/Application.js +84 -0
  522. data/lib/qooxview/frontend/source/class/frontend/LAYOUT +120 -0
  523. data/lib/qooxview/frontend/source/class/frontend/Lib/Fields.js +1486 -0
  524. data/lib/qooxview/frontend/source/class/frontend/Lib/RPC.js +104 -0
  525. data/lib/qooxview/frontend/source/class/frontend/Lib/TimerF.js +63 -0
  526. data/lib/qooxview/frontend/source/class/frontend/Views/Form.js +150 -0
  527. data/lib/qooxview/frontend/source/class/frontend/Views/Ltab.js +633 -0
  528. data/lib/qooxview/frontend/source/class/frontend/__init__.js +6 -0
  529. data/lib/qooxview/frontend/source/class/frontend/globals.js +51 -0
  530. data/lib/qooxview/frontend/source/class/frontend/simulation/DemoSimulation.js +42 -0
  531. data/lib/qooxview/frontend/source/class/frontend/test/DemoTest.js +55 -0
  532. data/lib/qooxview/frontend/source/class/frontend/theme/Appearance.js +18 -0
  533. data/lib/qooxview/frontend/source/class/frontend/theme/Color.js +18 -0
  534. data/lib/qooxview/frontend/source/class/frontend/theme/Decoration.js +18 -0
  535. data/lib/qooxview/frontend/source/class/frontend/theme/Font.js +18 -0
  536. data/lib/qooxview/frontend/source/class/frontend/theme/Theme.js +21 -0
  537. data/lib/qooxview/frontend/source/index.html +11 -0
  538. data/lib/qooxview/frontend/source/resource/frontend/test.png +0 -0
  539. data/lib/qooxview/frontend/source/translation/readme.txt +3 -0
  540. data/lib/qooxview/helpers/config_base.rb +264 -0
  541. data/lib/qooxview/helpers/icc.rb +222 -0
  542. data/lib/qooxview/helpers/make_steps.rb +77 -0
  543. data/lib/qooxview/helpers/migration_version.rb +18 -0
  544. data/lib/qooxview/helpers/open_print.rb +286 -0
  545. data/lib/qooxview/helpers/permission.rb +146 -0
  546. data/lib/qooxview/helpers/qoox_parser.rb +54 -0
  547. data/lib/qooxview/helpers/session.rb +68 -0
  548. data/lib/qooxview/helpers/static.rb +23 -0
  549. data/lib/qooxview/helpers/upload_files.rb +27 -0
  550. data/lib/qooxview/helpers/vtlist_pane.rb +158 -0
  551. data/lib/qooxview/helpers/welcome.rb +55 -0
  552. data/lib/qooxview/qooxview.rb +175 -0
  553. data/lib/qooxview/rpcqooxdoo.rb +395 -0
  554. data/lib/qooxview/storage_handler.rb +455 -0
  555. data/lib/qooxview/storage_type.rb +129 -0
  556. data/lib/qooxview/storages/csv.rb +170 -0
  557. data/lib/qooxview/storages/ldap.rb +238 -0
  558. data/lib/qooxview/storages/sqlite.rb +198 -0
  559. data/lib/qooxview/value.rb +202 -0
  560. data/lib/qooxview/version.rb +3 -0
  561. data/lib/qooxview/view.rb +904 -0
  562. data/lib/qooxview.rb +83 -0
  563. data/qooxview.gemspec +50 -0
  564. data/test/benchmark_creation.rb +37 -0
  565. data/test/config.yaml +36 -0
  566. data/test/entities/config.rb +33 -0
  567. data/test/entities/course.rb +28 -0
  568. data/test/entities/databases.rb +17 -0
  569. data/test/entities/doubleCase.rb +12 -0
  570. data/test/entities/dummies.rb +24 -0
  571. data/test/entities/inventory.rb +6 -0
  572. data/test/entities/needs.rb +20 -0
  573. data/test/entities/person.rb +73 -0
  574. data/test/file_binary.bin +0 -0
  575. data/test/files/print_formulas.ods +0 -0
  576. data/test/files/print_formulas_2.ods +0 -0
  577. data/test/files/student_card.odg +0 -0
  578. data/test/gettext.po +24 -0
  579. data/test/gettext.pot +0 -0
  580. data/test/messages.mo +0 -0
  581. data/test/po/fr/LC_MESSAGES/gettext.mo +0 -0
  582. data/test/qooxdoo-layout-frontend.js +49 -0
  583. data/test/qv_configbase.rb +98 -0
  584. data/test/qv_entity.rb +271 -0
  585. data/test/qv_gettext.rb +28 -0
  586. data/test/qv_helpers.rb +173 -0
  587. data/test/qv_icc.rb +60 -0
  588. data/test/qv_migration.rb +130 -0
  589. data/test/qv_permission.rb +34 -0
  590. data/test/qv_print.rb +73 -0
  591. data/test/qv_session.rb +29 -0
  592. data/test/qv_sqlite.rb +73 -0
  593. data/test/qv_store_csv.rb +86 -0
  594. data/test/qv_stype.rb +41 -0
  595. data/test/qv_view.rb +204 -0
  596. data/test/st_dummy.rb +30 -0
  597. data/test/test.rb +49 -0
  598. data/test/views/aview.rb +24 -0
  599. data/test/views/bview.rb +10 -0
  600. data/test/views/configviews.rb +19 -0
  601. data/test/views/courseshow.rb +11 -0
  602. data/test/views/cview.rb +22 -0
  603. data/test/views/login.rb +15 -0
  604. data/test/views/print.rb +10 -0
  605. metadata +1068 -0
@@ -0,0 +1,213 @@
1
+ (function(){
2
+
3
+ if (!window.qx) window.qx = {};
4
+
5
+ qx.$$start = new Date();
6
+
7
+ if (!qx.$$environment) qx.$$environment = {};
8
+ var envinfo = {"qx.application":"frontend.Application","qx.debug":false,"qx.debug.databinding":false,"qx.debug.dispose":false,"qx.debug.io":false,"qx.debug.ui.queue":false,"qx.optimization.basecalls":true,"qx.optimization.comments":true,"qx.optimization.privates":true,"qx.optimization.strings":true,"qx.optimization.variables":true,"qx.optimization.variants":true,"qx.optimization.whitespace":true,"qx.revision":"","qx.theme":"frontend.theme.Theme","qx.version":"3.0.1"};
9
+ for (var k in envinfo) qx.$$environment[k] = envinfo[k];
10
+
11
+ if (!qx.$$libraries) qx.$$libraries = {};
12
+ var libinfo = {"__out__":{"sourceUri":"script"},"com.zenesis.qx.upload":{"resourceUri":"resource","sourceUri":"script"},"frontend":{"resourceUri":"resource","sourceUri":"script"},"qx":{"resourceUri":"resource","sourceUri":"script","sourceViewUri":"https://github.com/qooxdoo/qooxdoo/blob/%{qxGitBranch}/framework/source/class/%{classFilePath}#L%{lineNumber}"}};
13
+ for (var k in libinfo) qx.$$libraries[k] = libinfo[k];
14
+
15
+ qx.$$resources = {};
16
+ qx.$$translations = {"C":null,"en":null};
17
+ qx.$$locales = {"C":null,"en":null};
18
+ qx.$$packageData = {};
19
+ qx.$$g = {}
20
+
21
+ qx.$$loader = {
22
+ parts : {"boot":[0]},
23
+ packages : {"0":{"uris":["__out__:frontend.5e80abf1b418.js"]}},
24
+ urisBefore : [],
25
+ cssBefore : [],
26
+ boot : "boot",
27
+ closureParts : {},
28
+ bootIsInline : true,
29
+ addNoCacheParam : false,
30
+
31
+ decodeUris : function(compressedUris)
32
+ {
33
+ var libs = qx.$$libraries;
34
+ var uris = [];
35
+ for (var i=0; i<compressedUris.length; i++)
36
+ {
37
+ var uri = compressedUris[i].split(":");
38
+ var euri;
39
+ if (uri.length==2 && uri[0] in libs) {
40
+ var prefix = libs[uri[0]].sourceUri;
41
+ euri = prefix + "/" + uri[1];
42
+ } else {
43
+ euri = compressedUris[i];
44
+ }
45
+ if (qx.$$loader.addNoCacheParam) {
46
+ euri += "?nocache=" + Math.random();
47
+ }
48
+
49
+ uris.push(euri);
50
+ }
51
+ return uris;
52
+ }
53
+ };
54
+
55
+ var readyStateValue = {"complete" : true};
56
+ if (document.documentMode && document.documentMode < 10 ||
57
+ (typeof window.ActiveXObject !== "undefined" && !document.documentMode)) {
58
+ readyStateValue["loaded"] = true;
59
+ }
60
+
61
+ function loadScript(uri, callback) {
62
+ var elem = document.createElement("script");
63
+ elem.charset = "utf-8";
64
+ elem.src = uri;
65
+ elem.onreadystatechange = elem.onload = function() {
66
+ if (!this.readyState || readyStateValue[this.readyState]) {
67
+ elem.onreadystatechange = elem.onload = null;
68
+ if (typeof callback === "function") {
69
+ callback();
70
+ }
71
+ }
72
+ };
73
+
74
+ if (isLoadParallel) {
75
+ elem.async = null;
76
+ }
77
+
78
+ var head = document.getElementsByTagName("head")[0];
79
+ head.appendChild(elem);
80
+ }
81
+
82
+ function loadCss(uri) {
83
+ var elem = document.createElement("link");
84
+ elem.rel = "stylesheet";
85
+ elem.type= "text/css";
86
+ elem.href= uri;
87
+ var head = document.getElementsByTagName("head")[0];
88
+ head.appendChild(elem);
89
+ }
90
+
91
+ var isWebkit = /AppleWebKit\/([^ ]+)/.test(navigator.userAgent);
92
+ var isLoadParallel = 'async' in document.createElement('script');
93
+
94
+ function loadScriptList(list, callback) {
95
+ if (list.length == 0) {
96
+ callback();
97
+ return;
98
+ }
99
+
100
+ var item;
101
+
102
+ if (isLoadParallel) {
103
+ while (list.length) {
104
+ item = list.shift();
105
+ if (list.length) {
106
+ loadScript(item);
107
+ } else {
108
+ loadScript(item, callback);
109
+ }
110
+ }
111
+ } else {
112
+ item = list.shift();
113
+ loadScript(item, function() {
114
+ if (isWebkit) {
115
+ // force async, else Safari fails with a "maximum recursion depth exceeded"
116
+ window.setTimeout(function() {
117
+ loadScriptList(list, callback);
118
+ }, 0);
119
+ } else {
120
+ loadScriptList(list, callback);
121
+ }
122
+ });
123
+ }
124
+ }
125
+
126
+ var fireContentLoadedEvent = function() {
127
+ qx.$$domReady = true;
128
+ document.removeEventListener('DOMContentLoaded', fireContentLoadedEvent, false);
129
+ };
130
+ if (document.addEventListener) {
131
+ document.addEventListener('DOMContentLoaded', fireContentLoadedEvent, false);
132
+ }
133
+
134
+ qx.$$loader.importPackageData = function (dataMap, callback) {
135
+ if (dataMap["resources"]){
136
+ var resMap = dataMap["resources"];
137
+ for (var k in resMap) qx.$$resources[k] = resMap[k];
138
+ }
139
+ if (dataMap["locales"]){
140
+ var locMap = dataMap["locales"];
141
+ var qxlocs = qx.$$locales;
142
+ for (var lang in locMap){
143
+ if (!qxlocs[lang]) qxlocs[lang] = locMap[lang];
144
+ else
145
+ for (var k in locMap[lang]) qxlocs[lang][k] = locMap[lang][k];
146
+ }
147
+ }
148
+ if (dataMap["translations"]){
149
+ var trMap = dataMap["translations"];
150
+ var qxtrans = qx.$$translations;
151
+ for (var lang in trMap){
152
+ if (!qxtrans[lang]) qxtrans[lang] = trMap[lang];
153
+ else
154
+ for (var k in trMap[lang]) qxtrans[lang][k] = trMap[lang][k];
155
+ }
156
+ }
157
+ if (callback){
158
+ callback(dataMap);
159
+ }
160
+ }
161
+
162
+ qx.$$loader.signalStartup = function ()
163
+ {
164
+ qx.$$loader.scriptLoaded = true;
165
+ if (window.qx && qx.event && qx.event.handler && qx.event.handler.Application) {
166
+ qx.event.handler.Application.onScriptLoaded();
167
+ qx.$$loader.applicationHandlerReady = true;
168
+ } else {
169
+ qx.$$loader.applicationHandlerReady = false;
170
+ }
171
+ }
172
+
173
+ // Load all stuff
174
+ qx.$$loader.init = function(){
175
+ var l=qx.$$loader;
176
+ if (l.cssBefore.length>0) {
177
+ for (var i=0, m=l.cssBefore.length; i<m; i++) {
178
+ loadCss(l.cssBefore[i]);
179
+ }
180
+ }
181
+ if (l.urisBefore.length>0){
182
+ loadScriptList(l.urisBefore, function(){
183
+ l.initUris();
184
+ });
185
+ } else {
186
+ l.initUris();
187
+ }
188
+ }
189
+
190
+ // Load qooxdoo boot stuff
191
+ qx.$$loader.initUris = function(){
192
+ var l=qx.$$loader;
193
+ var bootPackageHash=l.parts[l.boot][0];
194
+ if (l.bootIsInline){
195
+ l.importPackageData(qx.$$packageData[bootPackageHash]);
196
+ l.signalStartup();
197
+ } else {
198
+ loadScriptList(l.decodeUris(l.packages[l.parts[l.boot][0]].uris), function(){
199
+ // Opera needs this extra time to parse the scripts
200
+ window.setTimeout(function(){
201
+ l.importPackageData(qx.$$packageData[bootPackageHash] || {});
202
+ l.signalStartup();
203
+ }, 0);
204
+ });
205
+ }
206
+ }
207
+ })();
208
+
209
+ qx.$$packageData['0']={"locales":{"C":{"alternateQuotationEnd":"’","alternateQuotationStart":"‘","cldr_am":"AM","cldr_date_format_full":"EEEE, MMMM d, y","cldr_date_format_long":"MMMM d, y","cldr_date_format_medium":"MMM d, y","cldr_date_format_short":"M/d/yy","cldr_date_time_format_EHm":"E HH:mm","cldr_date_time_format_EHms":"E HH:mm:ss","cldr_date_time_format_Ed":"d E","cldr_date_time_format_Ehm":"E h:mm a","cldr_date_time_format_Ehms":"E h:mm:ss a","cldr_date_time_format_Gy":"y G","cldr_date_time_format_GyMMM":"MMM y G","cldr_date_time_format_GyMMMEd":"E, MMM d, y G","cldr_date_time_format_GyMMMd":"MMM d, y G","cldr_date_time_format_H":"HH","cldr_date_time_format_Hm":"HH:mm","cldr_date_time_format_Hms":"HH:mm:ss","cldr_date_time_format_M":"L","cldr_date_time_format_MEd":"E, M/d","cldr_date_time_format_MMM":"LLL","cldr_date_time_format_MMMEd":"E, MMM d","cldr_date_time_format_MMMd":"MMM d","cldr_date_time_format_Md":"M/d","cldr_date_time_format_d":"d","cldr_date_time_format_h":"h a","cldr_date_time_format_hm":"h:mm a","cldr_date_time_format_hms":"h:mm:ss a","cldr_date_time_format_ms":"mm:ss","cldr_date_time_format_y":"y","cldr_date_time_format_yM":"M/y","cldr_date_time_format_yMEd":"E, M/d/y","cldr_date_time_format_yMMM":"MMM y","cldr_date_time_format_yMMMEd":"E, MMM d, y","cldr_date_time_format_yMMMd":"MMM d, y","cldr_date_time_format_yMd":"M/d/y","cldr_date_time_format_yQQQ":"QQQ y","cldr_date_time_format_yQQQQ":"QQQQ y","cldr_day_format_abbreviated_fri":"Fri","cldr_day_format_abbreviated_mon":"Mon","cldr_day_format_abbreviated_sat":"Sat","cldr_day_format_abbreviated_sun":"Sun","cldr_day_format_abbreviated_thu":"Thu","cldr_day_format_abbreviated_tue":"Tue","cldr_day_format_abbreviated_wed":"Wed","cldr_day_format_short_fri":"Fr","cldr_day_format_short_mon":"Mo","cldr_day_format_short_sat":"Sa","cldr_day_format_short_sun":"Su","cldr_day_format_short_thu":"Th","cldr_day_format_short_tue":"Tu","cldr_day_format_short_wed":"We","cldr_day_format_wide_fri":"Friday","cldr_day_format_wide_mon":"Monday","cldr_day_format_wide_sat":"Saturday","cldr_day_format_wide_sun":"Sunday","cldr_day_format_wide_thu":"Thursday","cldr_day_format_wide_tue":"Tuesday","cldr_day_format_wide_wed":"Wednesday","cldr_day_stand-alone_narrow_fri":"F","cldr_day_stand-alone_narrow_mon":"M","cldr_day_stand-alone_narrow_sat":"S","cldr_day_stand-alone_narrow_sun":"S","cldr_day_stand-alone_narrow_thu":"T","cldr_day_stand-alone_narrow_tue":"T","cldr_day_stand-alone_narrow_wed":"W","cldr_month_format_abbreviated_1":"Jan","cldr_month_format_abbreviated_10":"Oct","cldr_month_format_abbreviated_11":"Nov","cldr_month_format_abbreviated_12":"Dec","cldr_month_format_abbreviated_2":"Feb","cldr_month_format_abbreviated_3":"Mar","cldr_month_format_abbreviated_4":"Apr","cldr_month_format_abbreviated_5":"May","cldr_month_format_abbreviated_6":"Jun","cldr_month_format_abbreviated_7":"Jul","cldr_month_format_abbreviated_8":"Aug","cldr_month_format_abbreviated_9":"Sep","cldr_month_format_wide_1":"January","cldr_month_format_wide_10":"October","cldr_month_format_wide_11":"November","cldr_month_format_wide_12":"December","cldr_month_format_wide_2":"February","cldr_month_format_wide_3":"March","cldr_month_format_wide_4":"April","cldr_month_format_wide_5":"May","cldr_month_format_wide_6":"June","cldr_month_format_wide_7":"July","cldr_month_format_wide_8":"August","cldr_month_format_wide_9":"September","cldr_month_stand-alone_narrow_1":"J","cldr_month_stand-alone_narrow_10":"O","cldr_month_stand-alone_narrow_11":"N","cldr_month_stand-alone_narrow_12":"D","cldr_month_stand-alone_narrow_2":"F","cldr_month_stand-alone_narrow_3":"M","cldr_month_stand-alone_narrow_4":"A","cldr_month_stand-alone_narrow_5":"M","cldr_month_stand-alone_narrow_6":"J","cldr_month_stand-alone_narrow_7":"J","cldr_month_stand-alone_narrow_8":"A","cldr_month_stand-alone_narrow_9":"S","cldr_number_decimal_separator":".","cldr_number_group_separator":",","cldr_number_percent_format":"#,##0%","cldr_pm":"PM","cldr_time_format_full":"h:mm:ss a zzzz","cldr_time_format_long":"h:mm:ss a z","cldr_time_format_medium":"h:mm:ss a","cldr_time_format_short":"h:mm a","quotationEnd":"”","quotationStart":"“"},"en":{"alternateQuotationEnd":"’","alternateQuotationStart":"‘","cldr_am":"AM","cldr_date_format_full":"EEEE, MMMM d, y","cldr_date_format_long":"MMMM d, y","cldr_date_format_medium":"MMM d, y","cldr_date_format_short":"M/d/yy","cldr_date_time_format_EHm":"E HH:mm","cldr_date_time_format_EHms":"E HH:mm:ss","cldr_date_time_format_Ed":"d E","cldr_date_time_format_Ehm":"E h:mm a","cldr_date_time_format_Ehms":"E h:mm:ss a","cldr_date_time_format_Gy":"y G","cldr_date_time_format_GyMMM":"MMM y G","cldr_date_time_format_GyMMMEd":"E, MMM d, y G","cldr_date_time_format_GyMMMd":"MMM d, y G","cldr_date_time_format_H":"HH","cldr_date_time_format_Hm":"HH:mm","cldr_date_time_format_Hms":"HH:mm:ss","cldr_date_time_format_M":"L","cldr_date_time_format_MEd":"E, M/d","cldr_date_time_format_MMM":"LLL","cldr_date_time_format_MMMEd":"E, MMM d","cldr_date_time_format_MMMd":"MMM d","cldr_date_time_format_Md":"M/d","cldr_date_time_format_d":"d","cldr_date_time_format_h":"h a","cldr_date_time_format_hm":"h:mm a","cldr_date_time_format_hms":"h:mm:ss a","cldr_date_time_format_ms":"mm:ss","cldr_date_time_format_y":"y","cldr_date_time_format_yM":"M/y","cldr_date_time_format_yMEd":"E, M/d/y","cldr_date_time_format_yMMM":"MMM y","cldr_date_time_format_yMMMEd":"E, MMM d, y","cldr_date_time_format_yMMMd":"MMM d, y","cldr_date_time_format_yMd":"M/d/y","cldr_date_time_format_yQQQ":"QQQ y","cldr_date_time_format_yQQQQ":"QQQQ y","cldr_day_format_abbreviated_fri":"Fri","cldr_day_format_abbreviated_mon":"Mon","cldr_day_format_abbreviated_sat":"Sat","cldr_day_format_abbreviated_sun":"Sun","cldr_day_format_abbreviated_thu":"Thu","cldr_day_format_abbreviated_tue":"Tue","cldr_day_format_abbreviated_wed":"Wed","cldr_day_format_short_fri":"Fr","cldr_day_format_short_mon":"Mo","cldr_day_format_short_sat":"Sa","cldr_day_format_short_sun":"Su","cldr_day_format_short_thu":"Th","cldr_day_format_short_tue":"Tu","cldr_day_format_short_wed":"We","cldr_day_format_wide_fri":"Friday","cldr_day_format_wide_mon":"Monday","cldr_day_format_wide_sat":"Saturday","cldr_day_format_wide_sun":"Sunday","cldr_day_format_wide_thu":"Thursday","cldr_day_format_wide_tue":"Tuesday","cldr_day_format_wide_wed":"Wednesday","cldr_day_stand-alone_narrow_fri":"F","cldr_day_stand-alone_narrow_mon":"M","cldr_day_stand-alone_narrow_sat":"S","cldr_day_stand-alone_narrow_sun":"S","cldr_day_stand-alone_narrow_thu":"T","cldr_day_stand-alone_narrow_tue":"T","cldr_day_stand-alone_narrow_wed":"W","cldr_month_format_abbreviated_1":"Jan","cldr_month_format_abbreviated_10":"Oct","cldr_month_format_abbreviated_11":"Nov","cldr_month_format_abbreviated_12":"Dec","cldr_month_format_abbreviated_2":"Feb","cldr_month_format_abbreviated_3":"Mar","cldr_month_format_abbreviated_4":"Apr","cldr_month_format_abbreviated_5":"May","cldr_month_format_abbreviated_6":"Jun","cldr_month_format_abbreviated_7":"Jul","cldr_month_format_abbreviated_8":"Aug","cldr_month_format_abbreviated_9":"Sep","cldr_month_format_wide_1":"January","cldr_month_format_wide_10":"October","cldr_month_format_wide_11":"November","cldr_month_format_wide_12":"December","cldr_month_format_wide_2":"February","cldr_month_format_wide_3":"March","cldr_month_format_wide_4":"April","cldr_month_format_wide_5":"May","cldr_month_format_wide_6":"June","cldr_month_format_wide_7":"July","cldr_month_format_wide_8":"August","cldr_month_format_wide_9":"September","cldr_month_stand-alone_narrow_1":"J","cldr_month_stand-alone_narrow_10":"O","cldr_month_stand-alone_narrow_11":"N","cldr_month_stand-alone_narrow_12":"D","cldr_month_stand-alone_narrow_2":"F","cldr_month_stand-alone_narrow_3":"M","cldr_month_stand-alone_narrow_4":"A","cldr_month_stand-alone_narrow_5":"M","cldr_month_stand-alone_narrow_6":"J","cldr_month_stand-alone_narrow_7":"J","cldr_month_stand-alone_narrow_8":"A","cldr_month_stand-alone_narrow_9":"S","cldr_number_decimal_separator":".","cldr_number_group_separator":",","cldr_number_percent_format":"#,##0%","cldr_pm":"PM","cldr_time_format_full":"h:mm:ss a zzzz","cldr_time_format_long":"h:mm:ss a z","cldr_time_format_medium":"h:mm:ss a","cldr_time_format_short":"h:mm a","quotationEnd":"”","quotationStart":"“"}},"resources":{"frontend/test.png":[32,32,"png","frontend"],"qx/decoration/Modern/arrows-combined.png":[87,8,"png","qx"],"qx/decoration/Modern/arrows/down-invert.png":[8,5,"png","qx","qx/decoration/Modern/arrows-combined.png",-74,0],"qx/decoration/Modern/arrows/down-small.png":[5,3,"png","qx","qx/decoration/Modern/arrows-combined.png",-49,0],"qx/decoration/Modern/arrows/down.png":[8,5,"png","qx","qx/decoration/Modern/arrows-combined.png",-20,0],"qx/decoration/Modern/arrows/forward.png":[10,8,"png","qx","qx/decoration/Modern/arrows-combined.png",-59,0],"qx/decoration/Modern/arrows/left.png":[5,8,"png","qx","qx/decoration/Modern/arrows-combined.png",-44,0],"qx/decoration/Modern/arrows/rewind.png":[10,8,"png","qx","qx/decoration/Modern/arrows-combined.png",-10,0],"qx/decoration/Modern/arrows/right-invert.png":[5,8,"png","qx","qx/decoration/Modern/arrows-combined.png",-5,0],"qx/decoration/Modern/arrows/right.png":[5,8,"png","qx","qx/decoration/Modern/arrows-combined.png",-54,0],"qx/decoration/Modern/arrows/up-invert.png":[8,5,"png","qx","qx/decoration/Modern/arrows-combined.png",-28,0],"qx/decoration/Modern/arrows/up-small.png":[5,3,"png","qx","qx/decoration/Modern/arrows-combined.png",-82,0],"qx/decoration/Modern/arrows/up.png":[8,5,"png","qx","qx/decoration/Modern/arrows-combined.png",-36,0],"qx/decoration/Modern/colorselector-combined.gif":[46,11,"gif","qx"],"qx/decoration/Modern/colorselector/brightness-field.png":[19,256,"png","qx"],"qx/decoration/Modern/colorselector/brightness-handle.gif":[35,11,"gif","qx","qx/decoration/Modern/colorselector-combined.gif",0,0],"qx/decoration/Modern/colorselector/huesaturation-field.jpg":[256,256,"jpeg","qx"],"qx/decoration/Modern/colorselector/huesaturation-handle.gif":[11,11,"gif","qx","qx/decoration/Modern/colorselector-combined.gif",-35,0],"qx/decoration/Modern/cursors-combined.gif":[71,20,"gif","qx"],"qx/decoration/Modern/cursors/alias.gif":[19,15,"gif","qx","qx/decoration/Modern/cursors-combined.gif",-52,0],"qx/decoration/Modern/cursors/copy.gif":[19,15,"gif","qx","qx/decoration/Modern/cursors-combined.gif",-33,0],"qx/decoration/Modern/cursors/move.gif":[13,9,"gif","qx","qx/decoration/Modern/cursors-combined.gif",-20,0],"qx/decoration/Modern/cursors/nodrop.gif":[20,20,"gif","qx","qx/decoration/Modern/cursors-combined.gif",0,0],"qx/decoration/Modern/form/checked.png":[6,6,"png","qx"],"qx/decoration/Modern/form/tooltip-error-arrow-right.png":[11,14,"png","qx"],"qx/decoration/Modern/form/tooltip-error-arrow.png":[11,14,"png","qx"],"qx/decoration/Modern/form/undetermined.png":[6,2,"png","qx"],"qx/decoration/Modern/menu-checkradio-combined.gif":[64,7,"gif","qx"],"qx/decoration/Modern/menu/checkbox-invert.gif":[16,7,"gif","qx","qx/decoration/Modern/menu-checkradio-combined.gif",-16,0],"qx/decoration/Modern/menu/checkbox.gif":[16,7,"gif","qx","qx/decoration/Modern/menu-checkradio-combined.gif",-48,0],"qx/decoration/Modern/menu/radiobutton-invert.gif":[16,5,"gif","qx","qx/decoration/Modern/menu-checkradio-combined.gif",-32,0],"qx/decoration/Modern/menu/radiobutton.gif":[16,5,"gif","qx","qx/decoration/Modern/menu-checkradio-combined.gif",0,0],"qx/decoration/Modern/scrollbar-combined.png":[54,12,"png","qx"],"qx/decoration/Modern/scrollbar/scrollbar-down.png":[6,4,"png","qx","qx/decoration/Modern/scrollbar-combined.png",-28,0],"qx/decoration/Modern/scrollbar/scrollbar-left.png":[4,6,"png","qx","qx/decoration/Modern/scrollbar-combined.png",-50,0],"qx/decoration/Modern/scrollbar/scrollbar-right.png":[4,6,"png","qx","qx/decoration/Modern/scrollbar-combined.png",-46,0],"qx/decoration/Modern/scrollbar/scrollbar-up.png":[6,4,"png","qx","qx/decoration/Modern/scrollbar-combined.png",0,0],"qx/decoration/Modern/splitpane-knobs-combined.png":[8,9,"png","qx"],"qx/decoration/Modern/splitpane/knob-horizontal.png":[1,8,"png","qx","qx/decoration/Modern/splitpane-knobs-combined.png",0,-1],"qx/decoration/Modern/splitpane/knob-vertical.png":[8,1,"png","qx","qx/decoration/Modern/splitpane-knobs-combined.png",0,0],"qx/decoration/Modern/table-combined.png":[94,18,"png","qx"],"qx/decoration/Modern/table/ascending.png":[8,5,"png","qx","qx/decoration/Modern/table-combined.png",0,0],"qx/decoration/Modern/table/boolean-false.png":[14,14,"png","qx","qx/decoration/Modern/table-combined.png",-80,0],"qx/decoration/Modern/table/boolean-true.png":[14,14,"png","qx","qx/decoration/Modern/table-combined.png",-26,0],"qx/decoration/Modern/table/descending.png":[8,5,"png","qx","qx/decoration/Modern/table-combined.png",-18,0],"qx/decoration/Modern/table/select-column-order.png":[10,9,"png","qx","qx/decoration/Modern/table-combined.png",-8,0],"qx/decoration/Modern/toolbar/toolbar-handle-knob.gif":[1,8,"gif","qx"],"qx/decoration/Modern/toolbar/toolbar-part.gif":[7,1,"gif","qx"],"qx/decoration/Modern/tree-combined.png":[32,8,"png","qx"],"qx/decoration/Modern/tree/closed-selected.png":[8,8,"png","qx","qx/decoration/Modern/tree-combined.png",-24,0],"qx/decoration/Modern/tree/closed.png":[8,8,"png","qx","qx/decoration/Modern/tree-combined.png",-16,0],"qx/decoration/Modern/tree/open-selected.png":[8,8,"png","qx","qx/decoration/Modern/tree-combined.png",-8,0],"qx/decoration/Modern/tree/open.png":[8,8,"png","qx","qx/decoration/Modern/tree-combined.png",0,0],"qx/decoration/Modern/window-captionbar-buttons-combined.png":[108,9,"png","qx"],"qx/decoration/Modern/window/close-active-hovered.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-27,0],"qx/decoration/Modern/window/close-active.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-9,0],"qx/decoration/Modern/window/close-inactive.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-90,0],"qx/decoration/Modern/window/maximize-active-hovered.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-18,0],"qx/decoration/Modern/window/maximize-active.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-81,0],"qx/decoration/Modern/window/maximize-inactive.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-54,0],"qx/decoration/Modern/window/minimize-active-hovered.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-63,0],"qx/decoration/Modern/window/minimize-active.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-72,0],"qx/decoration/Modern/window/minimize-inactive.png":[9,9,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-36,0],"qx/decoration/Modern/window/restore-active-hovered.png":[9,8,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",0,0],"qx/decoration/Modern/window/restore-active.png":[9,8,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-99,0],"qx/decoration/Modern/window/restore-inactive.png":[9,8,"png","qx","qx/decoration/Modern/window-captionbar-buttons-combined.png",-45,0],"qx/icon/Tango/16/actions/dialog-cancel.png":[16,16,"png","qx"],"qx/icon/Tango/16/actions/dialog-ok.png":[16,16,"png","qx"],"qx/icon/Tango/16/actions/view-refresh.png":[16,16,"png","qx"],"qx/icon/Tango/16/actions/window-close.png":[16,16,"png","qx"],"qx/icon/Tango/16/apps/office-calendar.png":[16,16,"png","qx"],"qx/icon/Tango/16/apps/utilities-color-chooser.png":[16,16,"png","qx"],"qx/icon/Tango/16/mimetypes/office-document.png":[16,16,"png","qx"],"qx/icon/Tango/16/places/folder-open.png":[16,16,"png","qx"],"qx/icon/Tango/16/places/folder.png":[16,16,"png","qx"],"qx/icon/Tango/22/mimetypes/office-document.png":[22,22,"png","qx"],"qx/icon/Tango/22/places/folder-open.png":[22,22,"png","qx"],"qx/icon/Tango/22/places/folder.png":[22,22,"png","qx"],"qx/icon/Tango/32/mimetypes/office-document.png":[32,32,"png","qx"],"qx/icon/Tango/32/places/folder-open.png":[32,32,"png","qx"],"qx/icon/Tango/32/places/folder.png":[32,32,"png","qx"],"qx/static/blank.gif":[1,1,"gif","qx"]},"translations":{"C":{},"en":{}}};
210
+ (function(){var b=".prototype",c="function",d="Boolean",e="Error",f="Object.keys requires an object as argument.",g="constructor",h="warn",j="default",k="hasOwnProperty",m="string",n="Object",o="toLocaleString",p="error",q="toString",r="qx.debug",s="()",t="RegExp",u="String",v="info",w="BROKEN_IE",x="isPrototypeOf",y="Date",z="",A="qx.Bootstrap",B="Function",C="]",D="Class",E="Array",F="[Class ",G="valueOf",H="Number",I="debug",J="ES5",K=".",L="propertyIsEnumerable",M="object";if(!window.qx){window.qx={};};qx.Bootstrap={genericToString:function(){return F+this.classname+C;},createNamespace:function(name,N){var Q=name.split(K);var P=Q[0];var parent=this.__a&&this.__a[P]?this.__a:window;for(var i=0,O=Q.length-1;i<O;i++ ,P=Q[i]){if(!parent[P]){parent=parent[P]={};}else {parent=parent[P];};};parent[P]=N;return P;},setDisplayName:function(S,R,name){S.displayName=R+K+name+s;},setDisplayNames:function(U,T){for(var name in U){var V=U[name];if(V instanceof Function){V.displayName=T+K+name+s;};};},base:function(W,X){{};if(arguments.length===1){return W.callee.base.call(this);}else {return W.callee.base.apply(this,Array.prototype.slice.call(arguments,1));};},define:function(name,bj){if(!bj){var bj={statics:{}};};var bf;var bb=null;qx.Bootstrap.setDisplayNames(bj.statics,name);if(bj.members||bj.extend){qx.Bootstrap.setDisplayNames(bj.members,name+b);bf=bj.construct||new Function;if(bj.extend){this.extendClass(bf,bf,bj.extend,name,bd);};var ba=bj.statics||{};for(var i=0,bc=qx.Bootstrap.keys(ba),l=bc.length;i<l;i++ ){var Y=bc[i];bf[Y]=ba[Y];};bb=bf.prototype;bb.base=qx.Bootstrap.base;var bh=bj.members||{};var Y,bg;for(var i=0,bc=qx.Bootstrap.keys(bh),l=bc.length;i<l;i++ ){Y=bc[i];bg=bh[Y];if(bg instanceof Function&&bb[Y]){bg.base=bb[Y];};bb[Y]=bg;};}else {bf=bj.statics||{};if(qx.Bootstrap.$$registry&&qx.Bootstrap.$$registry[name]){var bi=qx.Bootstrap.$$registry[name];if(this.keys(bf).length!==0){if(bj.defer){bj.defer(bf,bb);};for(var be in bf){bi[be]=bf[be];};return;};};};bf.$$type=D;if(!bf.hasOwnProperty(q)){bf.toString=this.genericToString;};var bd=name?this.createNamespace(name,bf):z;bf.name=bf.classname=name;bf.basename=bd;if(bj.defer){bj.defer(bf,bb);};qx.Bootstrap.$$registry[name]=bf;return bf;}};qx.Bootstrap.define(A,{statics:{__a:null,LOADSTART:qx.$$start||new Date(),DEBUG:(function(){var bk=true;if(qx.$$environment&&qx.$$environment[r]===false){bk=false;};return bk;})(),getEnvironmentSetting:function(bl){if(qx.$$environment){return qx.$$environment[bl];};},setEnvironmentSetting:function(bm,bn){if(!qx.$$environment){qx.$$environment={};};if(qx.$$environment[bm]===undefined){qx.$$environment[bm]=bn;};},createNamespace:qx.Bootstrap.createNamespace,setRoot:function(bo){this.__a=bo;},base:qx.Bootstrap.base,define:qx.Bootstrap.define,setDisplayName:qx.Bootstrap.setDisplayName,setDisplayNames:qx.Bootstrap.setDisplayNames,genericToString:qx.Bootstrap.genericToString,extendClass:function(clazz,construct,superClass,name,basename){var superproto=superClass.prototype;var helper=new Function();helper.prototype=superproto;var proto=new helper();clazz.prototype=proto;proto.name=proto.classname=name;proto.basename=basename;construct.base=superClass;clazz.superclass=superClass;construct.self=clazz.constructor=proto.constructor=clazz;},getByName:function(name){return qx.Bootstrap.$$registry[name];},$$registry:{},objectGetLength:function(bp){return qx.Bootstrap.keys(bp).length;},objectMergeWith:function(br,bq,bt){if(bt===undefined){bt=true;};for(var bs in bq){if(bt||br[bs]===undefined){br[bs]=bq[bs];};};return br;},__b:[x,k,o,q,G,L,g],keys:({"ES5":Object.keys,"BROKEN_IE":function(bu){if(bu===null||(typeof bu!=M&&typeof bu!=c)){throw new TypeError(f);};var bv=[];var bx=Object.prototype.hasOwnProperty;for(var by in bu){if(bx.call(bu,by)){bv.push(by);};};var bw=qx.Bootstrap.__b;for(var i=0,a=bw,l=a.length;i<l;i++ ){if(bx.call(bu,a[i])){bv.push(a[i]);};};return bv;},"default":function(bz){if(bz===null||(typeof bz!=M&&typeof bz!=c)){throw new TypeError(f);};var bA=[];var bB=Object.prototype.hasOwnProperty;for(var bC in bz){if(bB.call(bz,bC)){bA.push(bC);};};return bA;}})[typeof (Object.keys)==c?J:(function(){for(var bD in {toString:1}){return bD;};})()!==q?w:j],__c:{"[object String]":u,"[object Array]":E,"[object Object]":n,"[object RegExp]":t,"[object Number]":H,"[object Boolean]":d,"[object Date]":y,"[object Function]":B,"[object Error]":e},bind:function(bF,self,bG){var bE=Array.prototype.slice.call(arguments,2,arguments.length);return function(){var bH=Array.prototype.slice.call(arguments,0,arguments.length);return bF.apply(self,bE.concat(bH));};},firstUp:function(bI){return bI.charAt(0).toUpperCase()+bI.substr(1);},firstLow:function(bJ){return bJ.charAt(0).toLowerCase()+bJ.substr(1);},getClass:function(bL){var bK=Object.prototype.toString.call(bL);return (qx.Bootstrap.__c[bK]||bK.slice(8,-1));},isString:function(bM){return (bM!==null&&(typeof bM===m||qx.Bootstrap.getClass(bM)==u||bM instanceof String||(!!bM&&!!bM.$$isString)));},isArray:function(bN){return (bN!==null&&(bN instanceof Array||(bN&&qx.data&&qx.data.IListData&&qx.util.OOUtil.hasInterface(bN.constructor,qx.data.IListData))||qx.Bootstrap.getClass(bN)==E||(!!bN&&!!bN.$$isArray)));},isObject:function(bO){return (bO!==undefined&&bO!==null&&qx.Bootstrap.getClass(bO)==n);},isFunction:function(bP){return qx.Bootstrap.getClass(bP)==B;},$$logs:[],debug:function(bR,bQ){qx.Bootstrap.$$logs.push([I,arguments]);},info:function(bT,bS){qx.Bootstrap.$$logs.push([v,arguments]);},warn:function(bV,bU){qx.Bootstrap.$$logs.push([h,arguments]);},error:function(bX,bW){qx.Bootstrap.$$logs.push([p,arguments]);},trace:function(bY){}}});})();(function(){var a="qx.util.OOUtil";qx.Bootstrap.define(a,{statics:{classIsDefined:function(name){return qx.Bootstrap.getByName(name)!==undefined;},getPropertyDefinition:function(b,name){while(b){if(b.$$properties&&b.$$properties[name]){return b.$$properties[name];};b=b.superclass;};return null;},hasProperty:function(c,name){return !!qx.util.OOUtil.getPropertyDefinition(c,name);},getEventType:function(d,name){var d=d.constructor;while(d.superclass){if(d.$$events&&d.$$events[name]!==undefined){return d.$$events[name];};d=d.superclass;};return null;},supportsEvent:function(e,name){return !!qx.util.OOUtil.getEventType(e,name);},getByInterface:function(h,f){var g,i,l;while(h){if(h.$$implements){g=h.$$flatImplements;for(i=0,l=g.length;i<l;i++ ){if(g[i]===f){return h;};};};h=h.superclass;};return null;},hasInterface:function(k,j){return !!qx.util.OOUtil.getByInterface(k,j);},getMixins:function(n){var m=[];while(n){if(n.$$includes){m.push.apply(m,n.$$flatIncludes);};n=n.superclass;};return m;}}});})();(function(){var a="qx.bom.client.Xml.getSelectSingleNode",b="qx.bom.client.Stylesheet.getInsertRule",c="qx.bom.client.Html.getDataset",d="qx.bom.client.PhoneGap.getPhoneGap",e="qx.bom.client.EcmaScript.getArrayReduce",f="qx.core.Environment for a list of predefined keys.",g='] found, and no default ("default") given',h="qx.bom.client.Html.getAudioAif",j="qx.bom.client.CssTransform.get3D",k="qx.bom.client.EcmaScript.getArrayLastIndexOf",l=" is not a valid key. Please see the API-doc of ",m=' type)',n="qx.bom.client.EcmaScript.getArrayForEach",o="qx.bom.client.Xml.getAttributeNS",p="qx.bom.client.Stylesheet.getRemoveImport",q="qx.bom.client.Css.getUserModify",r="qx.bom.client.Css.getBoxShadow",s="qx.bom.client.Html.getXul",t="qx.bom.client.Plugin.getWindowsMedia",u=":",v="qx.blankpage",w="qx.bom.client.Html.getVideo",x="qx.bom.client.Device.getName",y="qx.bom.client.Event.getTouch",z="qx.optimization.strings",A="qx.debug.property.level",B="qx.bom.client.EcmaScript.getArrayFilter",C="qx.bom.client.EcmaScript.getStringTrim",D="qx.optimization.variables",E="qx.bom.client.EcmaScript.getStackTrace",F="qx.bom.client.EcmaScript.getDateNow",G="qx.bom.client.EcmaScript.getArrayEvery",H="qx.bom.client.Xml.getImplementation",I="qx.bom.client.Html.getConsole",J="qx.bom.client.Engine.getVersion",K="qx.bom.client.Device.getType",L="qx.bom.client.Plugin.getQuicktime",M="qx.bom.client.Html.getNaturalDimensions",N="qx.bom.client.Xml.getSelectNodes",O="qx.bom.client.Xml.getElementsByTagNameNS",P="qx.nativeScrollBars",Q="qx.bom.client.Html.getDataUrl",R="qx.bom.client.Flash.isAvailable",S="qx.bom.client.Html.getCanvas",T="qx.dyntheme",U="qx.bom.client.Device.getPixelRatio",V="qx.bom.client.Css.getBoxModel",W="qx.bom.client.Plugin.getSilverlight",X="qx/static/blank.html",Y="qx.bom.client.EcmaScript.getArrayMap",ej="qx.bom.client.Css.getUserSelect",ee="qx.bom.client.Css.getRadialGradient",ek="module.property",eg="qx.bom.client.Plugin.getWindowsMediaVersion",eh="qx.bom.client.Stylesheet.getCreateStyleSheet",ed='No match for variant "',ei="qx.bom.client.Locale.getLocale",eo="module.events",ep="qx.bom.client.Plugin.getSkype",eq="module.databinding",er="qx.bom.client.Html.getFileReader",el="qx.bom.client.Css.getBorderImage",em="qx.bom.client.Stylesheet.getDeleteRule",ef="qx.bom.client.EcmaScript.getErrorToString",en="qx.bom.client.Plugin.getDivXVersion",ev="qx.bom.client.Scroll.scrollBarOverlayed",eX="qx.bom.client.Plugin.getPdfVersion",ew="qx.bom.client.Xml.getCreateNode",ex="qx.bom.client.Css.getAlphaImageLoaderNeeded",es="qx.bom.client.Css.getLinearGradient",et="qx.bom.client.Transport.getXmlHttpRequest",fY="qx.bom.client.Css.getBorderImageSyntax",eu="qx.bom.client.Html.getClassList",ey="qx.bom.client.Event.getHelp",ez="qx.optimization.comments",eA="qx.bom.client.Locale.getVariant",eF="qx.bom.client.Css.getBoxSizing",eG="qx.bom.client.OperatingSystem.getName",eH="module.logger",eB="qx.mobile.emulatetouch",eC="qx.bom.client.Html.getAudioWav",eD="qx.bom.client.Browser.getName",eE="qx.bom.client.Css.getInlineBlock",eL="qx.bom.client.Plugin.getPdf",eM="please use 'css.pointerevents' instead.",eN="qx.dynlocale",eO="qx.bom.client.Device.getTouch",eI="The environment key 'event.pointer' is deprecated, ",eJ="qx.emulatemouse",ga='" (',eK="qx.bom.client.Html.getAudio",eS="qx.core.Environment",eT="qx.bom.client.EcmaScript.getFunctionBind",ge="qx.bom.client.CssTransform.getSupport",eU="qx.bom.client.Html.getTextContent",eP="qx.bom.client.Css.getPlaceholder",eQ="qx.bom.client.Css.getFloat",gc="default",eR=' in variants [',eV="false",eW="qx.bom.client.Css.getFilterGradient",fj="qx.bom.client.Html.getHistoryState",fi="qxenv",fh="qx.bom.client.Html.getSessionStorage",fn="qx.bom.client.Html.getAudioAu",fm="qx.bom.client.Css.getOpacity",fl="qx.bom.client.Css.getFilterTextShadow",fk="qx.bom.client.Html.getVml",fc="qx.bom.client.Transport.getMaxConcurrentRequestCount",fb="qx.bom.client.Event.getHashChange",fa="qx.bom.client.Css.getRgba",eY="qx.bom.client.Css.getBorderRadius",fg="qx.bom.client.EcmaScript.getArraySome",ff="qx.bom.client.Transport.getSsl",fe="qx.bom.client.Html.getWebWorker",fd="qx.bom.client.Json.getJson",fu="qx.bom.client.Browser.getQuirksMode",ft="qx.debug.dispose",fs="qx.bom.client.Css.getTextOverflow",fr="qx.bom.client.EcmaScript.getArrayIndexOf",fy="qx.bom.client.Xml.getQualifiedItem",fx="qx.bom.client.Html.getVideoOgg",fw="&",fv="qx.bom.client.EcmaScript.getArrayReduceRight",fq="qx.bom.client.Engine.getMsPointer",fp="qx.bom.client.Browser.getDocumentMode",fo="qx.allowUrlVariants",fJ="qx.debug.ui.queue",fI="|",fH="qx.bom.client.Html.getContains",fN="qx.bom.client.Plugin.getActiveX",fM=".",fL="qx.bom.client.Xml.getDomProperties",fK="qx.bom.client.CssAnimation.getSupport",fC="qx.debug.databinding",fB="qx.optimization.basecalls",fA="qx.bom.client.Browser.getVersion",fz="qx.bom.client.Css.getUserSelectNone",fG="true",fF="qx.bom.client.Html.getSvg",fE="qx.bom.client.EcmaScript.getObjectKeys",fD="qx.bom.client.Plugin.getDivX",fT="qx.bom.client.Runtime.getName",fS="qx.bom.client.Html.getLocalStorage",fR="css.pointerevents",fQ="qx.allowUrlSettings",fX="qx.bom.client.Flash.getStrictSecurityModel",fW="qx.aspects",fV="qx.debug",fU="qx.bom.client.Css.getPointerEvents",fP="qx.dynamicmousewheel",fO="qx.bom.client.Html.getAudioMp3",dO="qx.bom.client.Engine.getName",dN="qx.bom.client.Html.getUserDataStorage",gf="qx.bom.client.Plugin.getGears",dL="qx.bom.client.Plugin.getQuicktimeVersion",dM="qx.bom.client.Html.getAudioOgg",dK="event.pointer",gd="qx.bom.client.Css.getTextShadow",dI="qx.bom.client.Plugin.getSilverlightVersion",dJ="qx.bom.client.Html.getCompareDocumentPosition",dH="qx.bom.client.Flash.getExpressInstall",gb="qx.bom.client.Html.getSelection",dF="qx.bom.client.OperatingSystem.getVersion",dG="qx.bom.client.Html.getXPath",dE="qx.bom.client.Html.getGeoLocation",dX="qx.optimization.privates",dY="qx.bom.client.Scroll.getNativeScroll",dV="qx.bom.client.Css.getAppearance",dW="qx.bom.client.CssTransition.getSupport",dT="qx.bom.client.Stylesheet.getAddImport",dU="qx.optimization.variants",dS="qx.bom.client.Html.getVideoWebm",dD="qx.bom.client.Flash.getVersion",dQ="qx.bom.client.CssAnimation.getRequestAnimationFrame",dR="qx.bom.client.Css.getLegacyWebkitGradient",dP="qx.bom.client.PhoneGap.getNotification",ec="qx.bom.client.Html.getVideoH264",ea="qx.bom.client.Xml.getCreateElementNS",eb="qx.bom.client.Xml.getDomParser";qx.Bootstrap.define(eS,{statics:{_checks:{},_asyncChecks:{},__d:{},_checksMap:{"engine.version":J,"engine.name":dO,"browser.name":eD,"browser.version":fA,"browser.documentmode":fp,"browser.quirksmode":fu,"runtime.name":fT,"device.name":x,"device.type":K,"device.pixelRatio":U,"device.touch":eO,"locale":ei,"locale.variant":eA,"os.name":eG,"os.version":dF,"os.scrollBarOverlayed":ev,"plugin.gears":gf,"plugin.activex":fN,"plugin.skype":ep,"plugin.quicktime":L,"plugin.quicktime.version":dL,"plugin.windowsmedia":t,"plugin.windowsmedia.version":eg,"plugin.divx":fD,"plugin.divx.version":en,"plugin.silverlight":W,"plugin.silverlight.version":dI,"plugin.flash":R,"plugin.flash.version":dD,"plugin.flash.express":dH,"plugin.flash.strictsecurity":fX,"plugin.pdf":eL,"plugin.pdf.version":eX,"io.maxrequests":fc,"io.ssl":ff,"io.xhr":et,"event.touch":y,"event.mspointer":fq,"event.help":ey,"event.hashchange":fb,"ecmascript.error.stacktrace":E,"ecmascript.array.indexof":fr,"ecmascript.array.lastindexof":k,"ecmascript.array.foreach":n,"ecmascript.array.filter":B,"ecmascript.array.map":Y,"ecmascript.array.some":fg,"ecmascript.array.every":G,"ecmascript.array.reduce":e,"ecmascript.array.reduceright":fv,"ecmascript.function.bind":eT,"ecmascript.object.keys":fE,"ecmascript.date.now":F,"ecmascript.error.toString":ef,"ecmascript.string.trim":C,"html.webworker":fe,"html.filereader":er,"html.geolocation":dE,"html.audio":eK,"html.audio.ogg":dM,"html.audio.mp3":fO,"html.audio.wav":eC,"html.audio.au":fn,"html.audio.aif":h,"html.video":w,"html.video.ogg":fx,"html.video.h264":ec,"html.video.webm":dS,"html.storage.local":fS,"html.storage.session":fh,"html.storage.userdata":dN,"html.classlist":eu,"html.xpath":dG,"html.xul":s,"html.canvas":S,"html.svg":fF,"html.vml":fk,"html.dataset":c,"html.dataurl":Q,"html.console":I,"html.stylesheet.createstylesheet":eh,"html.stylesheet.insertrule":b,"html.stylesheet.deleterule":em,"html.stylesheet.addimport":dT,"html.stylesheet.removeimport":p,"html.element.contains":fH,"html.element.compareDocumentPosition":dJ,"html.element.textcontent":eU,"html.image.naturaldimensions":M,"html.history.state":fj,"html.selection":gb,"json":fd,"css.textoverflow":fs,"css.placeholder":eP,"css.borderradius":eY,"css.borderimage":el,"css.borderimage.standardsyntax":fY,"css.boxshadow":r,"css.gradient.linear":es,"css.gradient.filter":eW,"css.gradient.radial":ee,"css.gradient.legacywebkit":dR,"css.boxmodel":V,"css.rgba":fa,"css.userselect":ej,"css.userselect.none":fz,"css.usermodify":q,"css.appearance":dV,"css.float":eQ,"css.boxsizing":eF,"css.animation":fK,"css.animation.requestframe":dQ,"css.transform":ge,"css.transform.3d":j,"css.transition":dW,"css.inlineblock":eE,"css.opacity":fm,"css.textShadow":gd,"css.textShadow.filter":fl,"css.alphaimageloaderneeded":ex,"css.pointerevents":fU,"phonegap":d,"phonegap.notification":dP,"xml.implementation":H,"xml.domparser":eb,"xml.selectsinglenode":a,"xml.selectnodes":N,"xml.getelementsbytagnamens":O,"xml.domproperties":fL,"xml.attributens":o,"xml.createnode":ew,"xml.getqualifieditem":fy,"xml.createelementns":ea,"qx.mobile.nativescroll":dY},get:function(gj){if(qx.Bootstrap.DEBUG){if(gj===dK){gj=fR;qx.Bootstrap.warn(eI+eM);};};if(this.__d[gj]!=undefined){return this.__d[gj];};var gl=this._checks[gj];if(gl){var gh=gl();this.__d[gj]=gh;return gh;};var gg=this._getClassNameFromEnvKey(gj);if(gg[0]!=undefined){var gk=gg[0];var gi=gg[1];var gh=gk[gi]();this.__d[gj]=gh;return gh;};if(qx.Bootstrap.DEBUG){qx.Bootstrap.warn(gj+l+f);qx.Bootstrap.trace(this);};},_getClassNameFromEnvKey:function(gq){var gs=this._checksMap;if(gs[gq]!=undefined){var gn=gs[gq];var gr=gn.lastIndexOf(fM);if(gr>-1){var gp=gn.slice(0,gr);var gm=gn.slice(gr+1);var go=qx.Bootstrap.getByName(gp);if(go!=undefined){return [go,gm];};};};return [undefined,undefined];},getAsync:function(gu,gx,self){var gy=this;if(this.__d[gu]!=undefined){window.setTimeout(function(){gx.call(self,gy.__d[gu]);},0);return;};var gv=this._asyncChecks[gu];if(gv){gv(function(gA){gy.__d[gu]=gA;gx.call(self,gA);});return;};var gt=this._getClassNameFromEnvKey(gu);if(gt[0]!=undefined){var gw=gt[0];var gz=gt[1];gw[gz](function(gB){gy.__d[gu]=gB;gx.call(self,gB);});return;};if(qx.Bootstrap.DEBUG){qx.Bootstrap.warn(gu+l+f);qx.Bootstrap.trace(this);};},select:function(gD,gC){return this.__e(this.get(gD),gC);},selectAsync:function(gF,gE,self){this.getAsync(gF,function(gG){var gH=this.__e(gF,gE);gH.call(self,gG);},this);},__e:function(gL,gK){var gJ=gK[gL];if(gK.hasOwnProperty(gL)){return gJ;};for(var gM in gK){if(gM.indexOf(fI)!=-1){var gI=gM.split(fI);for(var i=0;i<gI.length;i++ ){if(gI[i]==gL){return gK[gM];};};};};if(gK[gc]!==undefined){return gK[gc];};if(qx.Bootstrap.DEBUG){throw new Error(ed+gL+ga+(typeof gL)+m+eR+qx.Bootstrap.keys(gK)+g);};},filter:function(gN){var gP=[];for(var gO in gN){if(this.get(gO)){gP.push(gN[gO]);};};return gP;},invalidateCacheKey:function(gQ){delete this.__d[gQ];},add:function(gS,gR){if(this._checks[gS]==undefined){if(gR instanceof Function){this._checks[gS]=gR;}else {this._checks[gS]=this.__h(gR);};};},addAsync:function(gU,gT){if(this._checks[gU]==undefined){this._asyncChecks[gU]=gT;};},getChecks:function(){return this._checks;},getAsyncChecks:function(){return this._asyncChecks;},_initDefaultQxValues:function(){this.add(fG,function(){return true;});this.add(fQ,function(){return false;});this.add(fo,function(){return false;});this.add(A,function(){return 0;});this.add(fV,function(){return true;});this.add(fJ,function(){return true;});this.add(fW,function(){return false;});this.add(eN,function(){return true;});this.add(T,function(){return true;});this.add(eB,function(){return false;});this.add(eJ,function(){return false;});this.add(v,function(){return X;});this.add(fP,function(){return true;});this.add(fC,function(){return false;});this.add(ft,function(){return false;});this.add(fB,function(){return false;});this.add(ez,function(){return false;});this.add(dX,function(){return false;});this.add(z,function(){return false;});this.add(D,function(){return false;});this.add(dU,function(){return false;});this.add(eq,function(){return true;});this.add(eH,function(){return true;});this.add(ek,function(){return true;});this.add(eo,function(){return true;});this.add(P,function(){return false;});},__f:function(){if(qx&&qx.$$environment){for(var gV in qx.$$environment){var gW=qx.$$environment[gV];this._checks[gV]=this.__h(gW);};};},__g:function(){if(window.document&&window.document.location){var gX=window.document.location.search.slice(1).split(fw);for(var i=0;i<gX.length;i++ ){var hb=gX[i].split(u);if(hb.length!=3||hb[0]!=fi){continue;};var gY=hb[1];var ha=decodeURIComponent(hb[2]);if(ha==fG){ha=true;}else if(ha==eV){ha=false;}else if(/^(\d|\.)+$/.test(ha)){ha=parseFloat(ha);};this._checks[gY]=this.__h(ha);};};},__h:function(hc){return qx.Bootstrap.bind(function(hd){return hd;},null,hc);}},defer:function(he){he._initDefaultQxValues();he.__f();if(he.get(fQ)===true){he.__g();};}});})();(function(){var a="ecmascript.array.lastindexof",b="function",c="stack",d="ecmascript.array.map",f="ecmascript.date.now",g="ecmascript.array.reduce",h="e",i="qx.bom.client.EcmaScript",j="ecmascript.object.keys",k="ecmascript.error.stacktrace",l="ecmascript.string.trim",m="ecmascript.array.indexof",n="stacktrace",o="ecmascript.error.toString",p="[object Error]",q="ecmascript.array.foreach",r="ecmascript.function.bind",s="ecmascript.array.reduceright",t="ecmascript.array.some",u="ecmascript.array.filter",v="ecmascript.array.every";qx.Bootstrap.define(i,{statics:{getStackTrace:function(){var w;var e=new Error(h);w=e.stack?c:e.stacktrace?n:null;if(!w){try{throw e;}catch(x){e=x;};};return e.stacktrace?n:e.stack?c:null;},getArrayIndexOf:function(){return !!Array.prototype.indexOf;},getArrayLastIndexOf:function(){return !!Array.prototype.lastIndexOf;},getArrayForEach:function(){return !!Array.prototype.forEach;},getArrayFilter:function(){return !!Array.prototype.filter;},getArrayMap:function(){return !!Array.prototype.map;},getArraySome:function(){return !!Array.prototype.some;},getArrayEvery:function(){return !!Array.prototype.every;},getArrayReduce:function(){return !!Array.prototype.reduce;},getArrayReduceRight:function(){return !!Array.prototype.reduceRight;},getErrorToString:function(){return typeof Error.prototype.toString==b&&Error.prototype.toString()!==p;},getFunctionBind:function(){return typeof Function.prototype.bind===b;},getObjectKeys:function(){return !!Object.keys;},getDateNow:function(){return !!Date.now;},getStringTrim:function(){return typeof String.prototype.trim===b;}},defer:function(y){qx.core.Environment.add(m,y.getArrayIndexOf);qx.core.Environment.add(a,y.getArrayLastIndexOf);qx.core.Environment.add(q,y.getArrayForEach);qx.core.Environment.add(u,y.getArrayFilter);qx.core.Environment.add(d,y.getArrayMap);qx.core.Environment.add(t,y.getArraySome);qx.core.Environment.add(v,y.getArrayEvery);qx.core.Environment.add(g,y.getArrayReduce);qx.core.Environment.add(s,y.getArrayReduceRight);qx.core.Environment.add(f,y.getDateNow);qx.core.Environment.add(o,y.getErrorToString);qx.core.Environment.add(k,y.getStackTrace);qx.core.Environment.add(r,y.getFunctionBind);qx.core.Environment.add(j,y.getObjectKeys);qx.core.Environment.add(l,y.getStringTrim);}});})();(function(){var a="qx.lang.normalize.Function",b="ecmascript.function.bind",c="function",d="Function.prototype.bind called on incompatible ";qx.Bootstrap.define(a,{defer:function(){if(!qx.core.Environment.get(b)){var e=Array.prototype.slice;Function.prototype.bind=function(i){var h=this;if(typeof h!=c){throw new TypeError(d+h);};var f=e.call(arguments,1);var g=function(){if(this instanceof g){var F=function(){};F.prototype=h.prototype;var self=new F;var j=h.apply(self,f.concat(e.call(arguments)));if(Object(j)===j){return j;};return self;}else {return h.apply(i,f.concat(e.call(arguments)));};};return g;};};}});})();(function(){var a="function",b="ecmascript.array.lastindexof",c="ecmascript.array.map",d="ecmascript.array.filter",e="Length is 0 and no second argument given",f="qx.lang.normalize.Array",g="ecmascript.array.indexof",h="First argument is not callable",j="ecmascript.array.reduce",k="ecmascript.array.foreach",m="ecmascript.array.reduceright",n="ecmascript.array.some",o="ecmascript.array.every";qx.Bootstrap.define(f,{defer:function(){if(!qx.core.Environment.get(g)){Array.prototype.indexOf=function(p,q){if(q==null){q=0;}else if(q<0){q=Math.max(0,this.length+q);};for(var i=q;i<this.length;i++ ){if(this[i]===p){return i;};};return -1;};};if(!qx.core.Environment.get(b)){Array.prototype.lastIndexOf=function(r,s){if(s==null){s=this.length-1;}else if(s<0){s=Math.max(0,this.length+s);};for(var i=s;i>=0;i-- ){if(this[i]===r){return i;};};return -1;};};if(!qx.core.Environment.get(k)){Array.prototype.forEach=function(t,u){var l=this.length;for(var i=0;i<l;i++ ){var v=this[i];if(v!==undefined){t.call(u||window,v,i,this);};};};};if(!qx.core.Environment.get(d)){Array.prototype.filter=function(z,w){var x=[];var l=this.length;for(var i=0;i<l;i++ ){var y=this[i];if(y!==undefined){if(z.call(w||window,y,i,this)){x.push(this[i]);};};};return x;};};if(!qx.core.Environment.get(c)){Array.prototype.map=function(D,A){var B=[];var l=this.length;for(var i=0;i<l;i++ ){var C=this[i];if(C!==undefined){B[i]=D.call(A||window,C,i,this);};};return B;};};if(!qx.core.Environment.get(n)){Array.prototype.some=function(E,F){var l=this.length;for(var i=0;i<l;i++ ){var G=this[i];if(G!==undefined){if(E.call(F||window,G,i,this)){return true;};};};return false;};};if(!qx.core.Environment.get(o)){Array.prototype.every=function(H,I){var l=this.length;for(var i=0;i<l;i++ ){var J=this[i];if(J!==undefined){if(!H.call(I||window,J,i,this)){return false;};};};return true;};};if(!qx.core.Environment.get(j)){Array.prototype.reduce=function(K,L){if(typeof K!==a){throw new TypeError(h);};if(L===undefined&&this.length===0){throw new TypeError(e);};var M=L===undefined?this[0]:L;for(var i=L===undefined?1:0;i<this.length;i++ ){if(i in this){M=K.call(undefined,M,this[i],i,this);};};return M;};};if(!qx.core.Environment.get(m)){Array.prototype.reduceRight=function(N,O){if(typeof N!==a){throw new TypeError(h);};if(O===undefined&&this.length===0){throw new TypeError(e);};var P=O===undefined?this[this.length-1]:O;for(var i=O===undefined?this.length-2:this.length-1;i>=0;i-- ){if(i in this){P=N.call(undefined,P,this[i],i,this);};};return P;};};}});})();(function(){var a="qx.Mixin",b=".prototype",c="]",d='Conflict between mixin "',e="constructor",f="Array",g='"!',h='" and "',j="destruct",k='" in property "',m="Mixin",n='" in member "',o="[Mixin ";qx.Bootstrap.define(a,{statics:{define:function(name,q){if(q){if(q.include&&!(qx.Bootstrap.getClass(q.include)===f)){q.include=[q.include];};{};var r=q.statics?q.statics:{};qx.Bootstrap.setDisplayNames(r,name);for(var p in r){if(r[p] instanceof Function){r[p].$$mixin=r;};};if(q.construct){r.$$constructor=q.construct;qx.Bootstrap.setDisplayName(q.construct,name,e);};if(q.include){r.$$includes=q.include;};if(q.properties){r.$$properties=q.properties;};if(q.members){r.$$members=q.members;qx.Bootstrap.setDisplayNames(q.members,name+b);};for(var p in r.$$members){if(r.$$members[p] instanceof Function){r.$$members[p].$$mixin=r;};};if(q.events){r.$$events=q.events;};if(q.destruct){r.$$destructor=q.destruct;qx.Bootstrap.setDisplayName(q.destruct,name,j);};}else {var r={};};r.$$type=m;r.name=name;r.toString=this.genericToString;r.basename=qx.Bootstrap.createNamespace(name,r);this.$$registry[name]=r;return r;},checkCompatibility:function(t){var u=this.flatten(t);var v=u.length;if(v<2){return true;};var w={};var x={};var z={};var y;for(var i=0;i<v;i++ ){y=u[i];for(var s in y.events){if(z[s]){throw new Error(d+y.name+h+z[s]+n+s+g);};z[s]=y.name;};for(var s in y.properties){if(w[s]){throw new Error(d+y.name+h+w[s]+k+s+g);};w[s]=y.name;};for(var s in y.members){if(x[s]){throw new Error(d+y.name+h+x[s]+n+s+g);};x[s]=y.name;};};return true;},isCompatible:function(B,C){var A=qx.util.OOUtil.getMixins(C);A.push(B);return qx.Mixin.checkCompatibility(A);},getByName:function(name){return this.$$registry[name];},isDefined:function(name){return this.getByName(name)!==undefined;},getTotalNumber:function(){return qx.Bootstrap.objectGetLength(this.$$registry);},flatten:function(D){if(!D){return [];};var E=D.concat();for(var i=0,l=D.length;i<l;i++ ){if(D[i].$$includes){E.push.apply(E,this.flatten(D[i].$$includes));};};return E;},genericToString:function(){return o+this.name+c;},$$registry:{},__i:null,__j:function(name,F){}}});})();(function(){var a="qx.core.Aspect",b="before",c="*",d="static";qx.Bootstrap.define(a,{statics:{__k:[],wrap:function(h,l,j){var m=[];var e=[];var k=this.__k;var g;for(var i=0;i<k.length;i++ ){g=k[i];if((g.type==null||j==g.type||g.type==c)&&(g.name==null||h.match(g.name))){g.pos==-1?m.push(g.fcn):e.push(g.fcn);};};if(m.length===0&&e.length===0){return l;};var f=function(){for(var i=0;i<m.length;i++ ){m[i].call(this,h,l,j,arguments);};var n=l.apply(this,arguments);for(var i=0;i<e.length;i++ ){e[i].call(this,h,l,j,arguments,n);};return n;};if(j!==d){f.self=l.self;f.base=l.base;};l.wrapper=f;f.original=l;return f;},addAdvice:function(q,o,p,name){this.__k.push({fcn:q,pos:o===b?-1:1,type:p,name:name});}}});})();(function(){var a='',b="ecmascript.string.trim",c="qx.lang.normalize.String";qx.Bootstrap.define(c,{defer:function(){if(!qx.core.Environment.get(b)){String.prototype.trim=function(d){return this.replace(/^\s+|\s+$/g,a);};};}});})();(function(){var a="ecmascript.object.keys",b="qx.lang.normalize.Object";qx.Bootstrap.define(b,{defer:function(){if(!qx.core.Environment.get(a)){Object.keys=qx.Bootstrap.keys;};}});})();(function(){var a='Implementation of method "',b='"',c="function",d='" is not supported by Class "',e="Boolean",f="qx.Interface",g='The event "',h='" required by interface "',j='" is missing in class "',k='"!',m='The property "',n="Interface",o="toggle",p="]",q="[Interface ",r="is",s="Array",t='Implementation of member "';qx.Bootstrap.define(f,{statics:{define:function(name,v){if(v){if(v.extend&&!(qx.Bootstrap.getClass(v.extend)===s)){v.extend=[v.extend];};{};var u=v.statics?v.statics:{};if(v.extend){u.$$extends=v.extend;};if(v.properties){u.$$properties=v.properties;};if(v.members){u.$$members=v.members;};if(v.events){u.$$events=v.events;};}else {var u={};};u.$$type=n;u.name=name;u.toString=this.genericToString;u.basename=qx.Bootstrap.createNamespace(name,u);qx.Interface.$$registry[name]=u;return u;},getByName:function(name){return this.$$registry[name];},isDefined:function(name){return this.getByName(name)!==undefined;},getTotalNumber:function(){return qx.Bootstrap.objectGetLength(this.$$registry);},flatten:function(x){if(!x){return [];};var w=x.concat();for(var i=0,l=x.length;i<l;i++ ){if(x[i].$$extends){w.push.apply(w,this.flatten(x[i].$$extends));};};return w;},__l:function(B,C,y,F,D){var z=y.$$members;if(z){for(var E in z){if(qx.Bootstrap.isFunction(z[E])){var H=this.__m(C,E);var A=H||qx.Bootstrap.isFunction(B[E]);if(!A){if(D){throw new Error(a+E+j+C.classname+h+y.name+b);}else {return false;};};var G=F===true&&!H&&!qx.util.OOUtil.hasInterface(C,y);if(G){B[E]=this.__p(y,B[E],E,z[E]);};}else {if(typeof B[E]===undefined){if(typeof B[E]!==c){if(D){throw new Error(t+E+j+C.classname+h+y.name+b);}else {return false;};};};};};};if(!D){return true;};},__m:function(L,I){var N=I.match(/^(is|toggle|get|set|reset)(.*)$/);if(!N){return false;};var K=qx.Bootstrap.firstLow(N[2]);var M=qx.util.OOUtil.getPropertyDefinition(L,K);if(!M){return false;};var J=N[0]==r||N[0]==o;if(J){return qx.util.OOUtil.getPropertyDefinition(L,K).check==e;};return true;},__n:function(R,O,P){if(O.$$properties){for(var Q in O.$$properties){if(!qx.util.OOUtil.getPropertyDefinition(R,Q)){if(P){throw new Error(m+Q+d+R.classname+k);}else {return false;};};};};if(!P){return true;};},__o:function(V,S,T){if(S.$$events){for(var U in S.$$events){if(!qx.util.OOUtil.supportsEvent(V,U)){if(T){throw new Error(g+U+d+V.classname+k);}else {return false;};};};};if(!T){return true;};},assertObject:function(Y,W){var ba=Y.constructor;this.__l(Y,ba,W,false,true);this.__n(ba,W,true);this.__o(ba,W,true);var X=W.$$extends;if(X){for(var i=0,l=X.length;i<l;i++ ){this.assertObject(Y,X[i]);};};},assert:function(bd,bb,be){this.__l(bd.prototype,bd,bb,be,true);this.__n(bd,bb,true);this.__o(bd,bb,true);var bc=bb.$$extends;if(bc){for(var i=0,l=bc.length;i<l;i++ ){this.assert(bd,bc[i],be);};};},objectImplements:function(bh,bf){var bi=bh.constructor;if(!this.__l(bh,bi,bf)||!this.__n(bi,bf)||!this.__o(bi,bf)){return false;};var bg=bf.$$extends;if(bg){for(var i=0,l=bg.length;i<l;i++ ){if(!this.objectImplements(bh,bg[i])){return false;};};};return true;},classImplements:function(bl,bj){if(!this.__l(bl.prototype,bl,bj)||!this.__n(bl,bj)||!this.__o(bl,bj)){return false;};var bk=bj.$$extends;if(bk){for(var i=0,l=bk.length;i<l;i++ ){if(!this.has(bl,bk[i])){return false;};};};return true;},genericToString:function(){return q+this.name+p;},$$registry:{},__p:function(bo,bn,bp,bm){},__i:null,__j:function(name,bq){}}});})();(function(){var a="",b="qx.lang.normalize.Error",c=": ",d="Error",e="ecmascript.error.toString";qx.Bootstrap.define(b,{defer:function(){if(!qx.core.Environment.get(e)){Error.prototype.toString=function(){var name=this.name||d;var f=this.message||a;if(name===a&&f===a){return d;};if(name===a){return f;};if(f===a){return name;};return name+c+f;};};}});})();(function(){var a="qx.lang.normalize.Date",b="ecmascript.date.now";qx.Bootstrap.define(a,{defer:function(){if(!qx.core.Environment.get(b)){Date.now=function(){return +new Date();};};}});})();(function(){var b='!==inherit){',c='qx.lang.Type.isString(value) && qx.util.ColorUtil.isValidPropertyValue(value)',d='value !== null && qx.theme.manager.Font.getInstance().isDynamic(value)',e="set",f=';',g="resetThemed",h='value !== null && value.nodeType === 9 && value.documentElement',j='===value)return value;',k='value !== null && value.$$type === "Mixin"',m='return init;',n='var init=this.',o='value !== null && value.nodeType === 1 && value.attributes',p="var parent = this.getLayoutParent();",q="Error in property ",r='var a=this._getChildren();if(a)for(var i=0,l=a.length;i<l;i++){',s="property",t="();",u='.validate.call(this, value);',v='qx.core.Assert.assertInstance(value, Date, msg) || true',w='else{',x="if (!parent) return;",y=" in method ",z='qx.core.Assert.assertInstance(value, Error, msg) || true',A='=computed;',B='Undefined value is not allowed!',C='(backup);',D='else ',E='=true;',F='if(old===undefined)old=this.',G='if(computed===inherit){',H='old=computed=this.',I="inherit",J='if(this.',K='return this.',L='else if(this.',M='Is invalid!',N='if(value===undefined)prop.error(this,2,"',O='", "',P='var computed, old=this.',Q='else if(computed===undefined)',R='delete this.',S="resetRuntime",T="': ",U=" of class ",V='value !== null && value.nodeType !== undefined',W='===undefined)return;',X='value !== null && qx.theme.manager.Decoration.getInstance().isValidPropertyValue(value)',Y="reset",ba="string",bb="')){",bc="module.events",bd="return this.",be='qx.core.Assert.assertPositiveInteger(value, msg) || true',bf='else this.',bg='value=this.',bh='","',bi='if(init==qx.core.Property.$$inherit)init=null;',bj="get",bk='value !== null && value.$$type === "Interface"',bl='var inherit=prop.$$inherit;',bm="', qx.event.type.Data, [computed, old]",bn="var value = parent.",bo="$$useinit_",bp='computed=undefined;delete this.',bq="(value);",br='this.',bs='Requires exactly one argument!',bt='",value);',bu='computed=value;',bv='}else{',bw="$$runtime_",bx="setThemed",by=';}',bz='(value);',bA="$$user_",bB='!==undefined)',bC='){',bD='qx.core.Assert.assertArray(value, msg) || true',bE='if(computed===undefined||computed===inherit){',bF=";",bG='qx.core.Assert.assertPositiveNumber(value, msg) || true',bH=".prototype",bI="Boolean",bJ=")}",bK="(a[",bL='(computed, old, "',bM="setRuntime",bN='return value;',bO="this.",bP='if(init==qx.core.Property.$$inherit)throw new Error("Inheritable property ',bQ="if(reg.hasListener(this, '",bR='Does not allow any arguments!',bS=')a[i].',bT="()",bU="var a=arguments[0] instanceof Array?arguments[0]:arguments;",bV='.$$properties.',bW='value !== null && value.$$type === "Theme"',bX='old=this.',bY="var reg=qx.event.Registration;",ca="())",cb='=value;',cc='return null;',cd='qx.core.Assert.assertObject(value, msg) || true',ce='");',cf='if(old===computed)return value;',cg='qx.core.Assert.assertString(value, msg) || true',ch='if(old===undefined)old=null;',ci='var pa=this.getLayoutParent();if(pa)computed=pa.',cj="if (value===undefined) value = parent.",ck='value !== null && value.$$type === "Class"',cl='qx.core.Assert.assertFunction(value, msg) || true',cm='!==undefined&&',cn='var computed, old;',co='var backup=computed;',cp=".",cq='}',cr="object",cs="$$init_",ct="$$theme_",cu='!==undefined){',cv='if(computed===undefined)computed=null;',cw="Unknown reason: ",cx="init",cy='qx.core.Assert.assertMap(value, msg) || true',cz="qx.aspects",cA='qx.core.Assert.assertNumber(value, msg) || true',cB='if((computed===undefined||computed===inherit)&&',cC="reg.fireEvent(this, '",cD='Null value is not allowed!',cE='qx.core.Assert.assertInteger(value, msg) || true',cF="value",cG="shorthand",cH='computed=this.',cI='qx.core.Assert.assertInstance(value, RegExp, msg) || true',cJ='value !== null && value.type !== undefined',cK='value !== null && value.document',cL="",cM='throw new Error("Property ',cN="(!this.",cO='qx.core.Assert.assertBoolean(value, msg) || true',cP='if(a[i].',cQ=' of an instance of ',cR="toggle",cS="refresh",cT="$$inherit_",cU='var prop=qx.core.Property;',cV="boolean",cW=" with incoming value '",cX="a=qx.lang.Array.fromShortHand(qx.lang.Array.fromArguments(a));",cY='if(computed===undefined||computed==inherit)computed=null;',da="qx.core.Property",db="is",dc=' is not (yet) ready!");',dd="]);",de='Could not change or apply init value after constructing phase!';qx.Bootstrap.define(da,{statics:{__q:function(){if(qx.core.Environment.get(bc)){qx.event.type.Data;qx.event.dispatch.Direct;};},__r:{"Boolean":cO,"String":cg,"Number":cA,"Integer":cE,"PositiveNumber":bG,"PositiveInteger":be,"Error":z,"RegExp":cI,"Object":cd,"Array":bD,"Map":cy,"Function":cl,"Date":v,"Node":V,"Element":o,"Document":h,"Window":cK,"Event":cJ,"Class":ck,"Mixin":k,"Interface":bk,"Theme":bW,"Color":c,"Decorator":X,"Font":d},__s:{"Node":true,"Element":true,"Document":true,"Window":true,"Event":true},$$inherit:I,$$store:{runtime:{},user:{},theme:{},inherit:{},init:{},useinit:{}},$$method:{get:{},set:{},reset:{},init:{},refresh:{},setRuntime:{},resetRuntime:{},setThemed:{},resetThemed:{}},$$allowedKeys:{name:ba,dereference:cV,inheritable:cV,nullable:cV,themeable:cV,refine:cV,init:null,apply:ba,event:ba,check:null,transform:ba,deferredInit:cV,validate:null},$$allowedGroupKeys:{name:ba,group:cr,mode:ba,themeable:cV},$$inheritable:{},__t:function(dh){var df=this.__u(dh);if(!df.length){var dg=function(){};}else {dg=this.__v(df);};dh.prototype.$$refreshInheritables=dg;},__u:function(di){var dj=[];while(di){var dk=di.$$properties;if(dk){for(var name in this.$$inheritable){if(dk[name]&&dk[name].inheritable){dj.push(name);};};};di=di.superclass;};return dj;},__v:function(inheritables){var inherit=this.$$store.inherit;var init=this.$$store.init;var refresh=this.$$method.refresh;var code=[p,x];for(var i=0,l=inheritables.length;i<l;i++ ){var name=inheritables[i];code.push(bn,inherit[name],bF,cj,init[name],bF,bO,refresh[name],bq);};return new Function(code.join(cL));},attachRefreshInheritables:function(dl){dl.prototype.$$refreshInheritables=function(){qx.core.Property.__t(dl);return this.$$refreshInheritables();};},attachMethods:function(dn,name,dm){dm.group?this.__w(dn,dm,name):this.__x(dn,dm,name);},__w:function(clazz,config,name){var upname=qx.Bootstrap.firstUp(name);var members=clazz.prototype;var themeable=config.themeable===true;{};var setter=[];var resetter=[];if(themeable){var styler=[];var unstyler=[];};var argHandler=bU;setter.push(argHandler);if(themeable){styler.push(argHandler);};if(config.mode==cG){var shorthand=cX;setter.push(shorthand);if(themeable){styler.push(shorthand);};};for(var i=0,a=config.group,l=a.length;i<l;i++ ){{};setter.push(bO,this.$$method.set[a[i]],bK,i,dd);resetter.push(bO,this.$$method.reset[a[i]],t);if(themeable){{};styler.push(bO,this.$$method.setThemed[a[i]],bK,i,dd);unstyler.push(bO,this.$$method.resetThemed[a[i]],t);};};this.$$method.set[name]=e+upname;members[this.$$method.set[name]]=new Function(setter.join(cL));this.$$method.reset[name]=Y+upname;members[this.$$method.reset[name]]=new Function(resetter.join(cL));if(themeable){this.$$method.setThemed[name]=bx+upname;members[this.$$method.setThemed[name]]=new Function(styler.join(cL));this.$$method.resetThemed[name]=g+upname;members[this.$$method.resetThemed[name]]=new Function(unstyler.join(cL));};},__x:function(clazz,config,name){var upname=qx.Bootstrap.firstUp(name);var members=clazz.prototype;{};if(config.dereference===undefined&&typeof config.check===ba){config.dereference=this.__y(config.check);};var method=this.$$method;var store=this.$$store;store.runtime[name]=bw+name;store.user[name]=bA+name;store.theme[name]=ct+name;store.init[name]=cs+name;store.inherit[name]=cT+name;store.useinit[name]=bo+name;method.get[name]=bj+upname;members[method.get[name]]=function(){return qx.core.Property.executeOptimizedGetter(this,clazz,name,bj);};method.set[name]=e+upname;members[method.set[name]]=function(dp){return qx.core.Property.executeOptimizedSetter(this,clazz,name,e,arguments);};method.reset[name]=Y+upname;members[method.reset[name]]=function(){return qx.core.Property.executeOptimizedSetter(this,clazz,name,Y);};if(config.inheritable||config.apply||config.event||config.deferredInit){method.init[name]=cx+upname;members[method.init[name]]=function(dq){return qx.core.Property.executeOptimizedSetter(this,clazz,name,cx,arguments);};{};};if(config.inheritable){method.refresh[name]=cS+upname;members[method.refresh[name]]=function(dr){return qx.core.Property.executeOptimizedSetter(this,clazz,name,cS,arguments);};{};};method.setRuntime[name]=bM+upname;members[method.setRuntime[name]]=function(ds){return qx.core.Property.executeOptimizedSetter(this,clazz,name,bM,arguments);};method.resetRuntime[name]=S+upname;members[method.resetRuntime[name]]=function(){return qx.core.Property.executeOptimizedSetter(this,clazz,name,S);};if(config.themeable){method.setThemed[name]=bx+upname;members[method.setThemed[name]]=function(dt){return qx.core.Property.executeOptimizedSetter(this,clazz,name,bx,arguments);};method.resetThemed[name]=g+upname;members[method.resetThemed[name]]=function(){return qx.core.Property.executeOptimizedSetter(this,clazz,name,g);};{};};if(config.check===bI){members[cR+upname]=new Function(bd+method.set[name]+cN+method.get[name]+ca);members[db+upname]=new Function(bd+method.get[name]+bT);{};};{};},__y:function(du){return !!this.__s[du];},__z:{'0':de,'1':bs,'2':B,'3':bR,'4':cD,'5':M},error:function(dv,dB,dA,dw,dx){var dy=dv.constructor.classname;var dz=q+dA+U+dy+y+this.$$method[dw][dA]+cW+dx+T;throw new Error(dz+(this.__z[dB]||cw+dB));},__A:function(instance,members,name,variant,code,args){var store=this.$$method[variant][name];{members[store]=new Function(cF,code.join(cL));};if(qx.core.Environment.get(cz)){members[store]=qx.core.Aspect.wrap(instance.classname+cp+store,members[store],s);};qx.Bootstrap.setDisplayName(members[store],instance.classname+bH,store);if(args===undefined){return instance[store]();}else {return instance[store](args[0]);};},executeOptimizedGetter:function(dF,dE,name,dD){var dH=dE.$$properties[name];var dG=dE.prototype;var dC=[];var dI=this.$$store;dC.push(J,dI.runtime[name],bB);dC.push(K,dI.runtime[name],f);if(dH.inheritable){dC.push(L,dI.inherit[name],bB);dC.push(K,dI.inherit[name],f);dC.push(D);};dC.push(J,dI.user[name],bB);dC.push(K,dI.user[name],f);if(dH.themeable){dC.push(L,dI.theme[name],bB);dC.push(K,dI.theme[name],f);};if(dH.deferredInit&&dH.init===undefined){dC.push(L,dI.init[name],bB);dC.push(K,dI.init[name],f);};dC.push(D);if(dH.init!==undefined){if(dH.inheritable){dC.push(n,dI.init[name],f);if(dH.nullable){dC.push(bi);}else if(dH.init!==undefined){dC.push(K,dI.init[name],f);}else {dC.push(bP,name,cQ,dE.classname,dc);};dC.push(m);}else {dC.push(K,dI.init[name],f);};}else if(dH.inheritable||dH.nullable){dC.push(cc);}else {dC.push(cM,name,cQ,dE.classname,dc);};return this.__A(dF,dG,name,dD,dC);},executeOptimizedSetter:function(dP,dO,name,dN,dM){var dR=dO.$$properties[name];var dQ=dO.prototype;var dK=[];var dJ=dN===e||dN===bx||dN===bM||(dN===cx&&dR.init===undefined);var dL=dR.apply||dR.event||dR.inheritable;var dS=this.__B(dN,name);this.__C(dK,dR,name,dN,dJ);if(dJ){this.__D(dK,dO,dR,name);};if(dL){this.__E(dK,dJ,dS,dN);};if(dR.inheritable){dK.push(bl);};{};if(!dL){this.__G(dK,name,dN,dJ);}else {this.__H(dK,dR,name,dN,dJ);};if(dR.inheritable){this.__I(dK,dR,name,dN);}else if(dL){this.__J(dK,dR,name,dN);};if(dL){this.__K(dK,dR,name,dN);if(dR.inheritable&&dQ._getChildren){this.__L(dK,name);};};if(dJ){dK.push(bN);};return this.__A(dP,dQ,name,dN,dK,dM);},__B:function(dT,name){if(dT===bM||dT===S){var dU=this.$$store.runtime[name];}else if(dT===bx||dT===g){dU=this.$$store.theme[name];}else if(dT===cx){dU=this.$$store.init[name];}else {dU=this.$$store.user[name];};return dU;},__C:function(dX,dV,name,dY,dW){{if(!dV.nullable||dV.check||dV.inheritable){dX.push(cU);};if(dY===e){dX.push(N,name,bh,dY,bt);};};},__D:function(ea,ec,eb,name){if(eb.transform){ea.push(bg,eb.transform,bz);};if(eb.validate){if(typeof eb.validate===ba){ea.push(br,eb.validate,bz);}else if(eb.validate instanceof Function){ea.push(ec.classname,bV,name);ea.push(u);};};},__E:function(ee,ed,eg,ef){var eh=(ef===Y||ef===g||ef===S);if(ed){ee.push(J,eg,j);}else if(eh){ee.push(J,eg,W);};},__F:undefined,__G:function(ej,name,ek,ei){if(ek===bM){ej.push(br,this.$$store.runtime[name],cb);}else if(ek===S){ej.push(J,this.$$store.runtime[name],bB);ej.push(R,this.$$store.runtime[name],f);}else if(ek===e){ej.push(br,this.$$store.user[name],cb);}else if(ek===Y){ej.push(J,this.$$store.user[name],bB);ej.push(R,this.$$store.user[name],f);}else if(ek===bx){ej.push(br,this.$$store.theme[name],cb);}else if(ek===g){ej.push(J,this.$$store.theme[name],bB);ej.push(R,this.$$store.theme[name],f);}else if(ek===cx&&ei){ej.push(br,this.$$store.init[name],cb);};},__H:function(en,el,name,eo,em){if(el.inheritable){en.push(P,this.$$store.inherit[name],f);}else {en.push(cn);};en.push(J,this.$$store.runtime[name],cu);if(eo===bM){en.push(cH,this.$$store.runtime[name],cb);}else if(eo===S){en.push(R,this.$$store.runtime[name],f);en.push(J,this.$$store.user[name],bB);en.push(cH,this.$$store.user[name],f);en.push(L,this.$$store.theme[name],bB);en.push(cH,this.$$store.theme[name],f);en.push(L,this.$$store.init[name],cu);en.push(cH,this.$$store.init[name],f);en.push(br,this.$$store.useinit[name],E);en.push(cq);}else {en.push(H,this.$$store.runtime[name],f);if(eo===e){en.push(br,this.$$store.user[name],cb);}else if(eo===Y){en.push(R,this.$$store.user[name],f);}else if(eo===bx){en.push(br,this.$$store.theme[name],cb);}else if(eo===g){en.push(R,this.$$store.theme[name],f);}else if(eo===cx&&em){en.push(br,this.$$store.init[name],cb);};};en.push(cq);en.push(L,this.$$store.user[name],cu);if(eo===e){if(!el.inheritable){en.push(bX,this.$$store.user[name],f);};en.push(cH,this.$$store.user[name],cb);}else if(eo===Y){if(!el.inheritable){en.push(bX,this.$$store.user[name],f);};en.push(R,this.$$store.user[name],f);en.push(J,this.$$store.runtime[name],bB);en.push(cH,this.$$store.runtime[name],f);en.push(J,this.$$store.theme[name],bB);en.push(cH,this.$$store.theme[name],f);en.push(L,this.$$store.init[name],cu);en.push(cH,this.$$store.init[name],f);en.push(br,this.$$store.useinit[name],E);en.push(cq);}else {if(eo===bM){en.push(cH,this.$$store.runtime[name],cb);}else if(el.inheritable){en.push(cH,this.$$store.user[name],f);}else {en.push(H,this.$$store.user[name],f);};if(eo===bx){en.push(br,this.$$store.theme[name],cb);}else if(eo===g){en.push(R,this.$$store.theme[name],f);}else if(eo===cx&&em){en.push(br,this.$$store.init[name],cb);};};en.push(cq);if(el.themeable){en.push(L,this.$$store.theme[name],cu);if(!el.inheritable){en.push(bX,this.$$store.theme[name],f);};if(eo===bM){en.push(cH,this.$$store.runtime[name],cb);}else if(eo===e){en.push(cH,this.$$store.user[name],cb);}else if(eo===bx){en.push(cH,this.$$store.theme[name],cb);}else if(eo===g){en.push(R,this.$$store.theme[name],f);en.push(J,this.$$store.init[name],cu);en.push(cH,this.$$store.init[name],f);en.push(br,this.$$store.useinit[name],E);en.push(cq);}else if(eo===cx){if(em){en.push(br,this.$$store.init[name],cb);};en.push(cH,this.$$store.theme[name],f);}else if(eo===cS){en.push(cH,this.$$store.theme[name],f);};en.push(cq);};en.push(L,this.$$store.useinit[name],bC);if(!el.inheritable){en.push(bX,this.$$store.init[name],f);};if(eo===cx){if(em){en.push(cH,this.$$store.init[name],cb);}else {en.push(cH,this.$$store.init[name],f);};}else if(eo===e||eo===bM||eo===bx||eo===cS){en.push(R,this.$$store.useinit[name],f);if(eo===bM){en.push(cH,this.$$store.runtime[name],cb);}else if(eo===e){en.push(cH,this.$$store.user[name],cb);}else if(eo===bx){en.push(cH,this.$$store.theme[name],cb);}else if(eo===cS){en.push(cH,this.$$store.init[name],f);};};en.push(cq);if(eo===e||eo===bM||eo===bx||eo===cx){en.push(w);if(eo===bM){en.push(cH,this.$$store.runtime[name],cb);}else if(eo===e){en.push(cH,this.$$store.user[name],cb);}else if(eo===bx){en.push(cH,this.$$store.theme[name],cb);}else if(eo===cx){if(em){en.push(cH,this.$$store.init[name],cb);}else {en.push(cH,this.$$store.init[name],f);};en.push(br,this.$$store.useinit[name],E);};en.push(cq);};},__I:function(eq,ep,name,er){eq.push(bE);if(er===cS){eq.push(bu);}else {eq.push(ci,this.$$store.inherit[name],f);};eq.push(cB);eq.push(br,this.$$store.init[name],cm);eq.push(br,this.$$store.init[name],b);eq.push(cH,this.$$store.init[name],f);eq.push(br,this.$$store.useinit[name],E);eq.push(bv);eq.push(R,this.$$store.useinit[name],by);eq.push(cq);eq.push(cf);eq.push(G);eq.push(bp,this.$$store.inherit[name],f);eq.push(cq);eq.push(Q);eq.push(R,this.$$store.inherit[name],f);eq.push(bf,this.$$store.inherit[name],A);eq.push(co);if(ep.init!==undefined&&er!==cx){eq.push(F,this.$$store.init[name],bF);}else {eq.push(ch);};eq.push(cY);},__J:function(et,es,name,eu){if(eu!==e&&eu!==bM&&eu!==bx){et.push(cv);};et.push(cf);if(es.init!==undefined&&eu!==cx){et.push(F,this.$$store.init[name],bF);}else {et.push(ch);};},__K:function(ew,ev,name,ex){if(ev.apply){ew.push(br,ev.apply,bL,name,O,ex,ce);};if(ev.event){ew.push(bY,bQ,ev.event,bb,cC,ev.event,bm,bJ);};},__L:function(ey,name){ey.push(r);ey.push(cP,this.$$method.refresh[name],bS,this.$$method.refresh[name],C);ey.push(cq);}}});})();(function(){var b=".prototype",c="$$init_",d="constructor",e="Property module disabled.",f="extend",g="module.property",h="singleton",j="qx.event.type.Data",k="module.events",m="qx.aspects",n="toString",o='extend',p="Array",q="static",r="",s="Events module not enabled.",t="]",u="Class",v="qx.Class",w='"extend" parameter is null or undefined',x="[Class ",y="destructor",z="destruct",A=".",B="member";qx.Bootstrap.define(v,{statics:{__M:qx.core.Environment.get(g)?qx.core.Property:null,define:function(name,F){if(!F){F={};};if(F.include&&!(qx.Bootstrap.getClass(F.include)===p)){F.include=[F.include];};if(F.implement&&!(qx.Bootstrap.getClass(F.implement)===p)){F.implement=[F.implement];};var C=false;if(!F.hasOwnProperty(f)&&!F.type){F.type=q;C=true;};{};var D=this.__P(name,F.type,F.extend,F.statics,F.construct,F.destruct,F.include);if(F.extend){if(F.properties){this.__R(D,F.properties,true);};if(F.members){this.__T(D,F.members,true,true,false);};if(F.events){this.__Q(D,F.events,true);};if(F.include){for(var i=0,l=F.include.length;i<l;i++ ){this.__X(D,F.include[i],false);};};}else if(F.hasOwnProperty(o)&&false){throw new Error(w);};if(F.environment){for(var E in F.environment){qx.core.Environment.add(E,F.environment[E]);};};if(F.implement){for(var i=0,l=F.implement.length;i<l;i++ ){this.__V(D,F.implement[i]);};};{};if(F.defer){F.defer.self=D;F.defer(D,D.prototype,{add:function(name,G){var H={};H[name]=G;qx.Class.__R(D,H,true);}});};return D;},undefine:function(name){delete this.$$registry[name];var K=name.split(A);var J=[window];for(var i=0;i<K.length;i++ ){J.push(J[i][K[i]]);};for(var i=J.length-1;i>=1;i-- ){var I=J[i];var parent=J[i-1];if(qx.Bootstrap.isFunction(I)||qx.Bootstrap.objectGetLength(I)===0){delete parent[K[i-1]];}else {break;};};},isDefined:qx.util.OOUtil.classIsDefined,getTotalNumber:function(){return qx.Bootstrap.objectGetLength(this.$$registry);},getByName:qx.Bootstrap.getByName,include:function(M,L){{};qx.Class.__X(M,L,false);},patch:function(O,N){{};qx.Class.__X(O,N,true);},isSubClassOf:function(Q,P){if(!Q){return false;};if(Q==P){return true;};if(Q.prototype instanceof P){return true;};return false;},getPropertyDefinition:qx.util.OOUtil.getPropertyDefinition,getProperties:function(S){var R=[];while(S){if(S.$$properties){R.push.apply(R,Object.keys(S.$$properties));};S=S.superclass;};return R;},getByProperty:function(T,name){while(T){if(T.$$properties&&T.$$properties[name]){return T;};T=T.superclass;};return null;},hasProperty:qx.util.OOUtil.hasProperty,getEventType:qx.util.OOUtil.getEventType,supportsEvent:qx.util.OOUtil.supportsEvent,hasOwnMixin:function(V,U){return V.$$includes&&V.$$includes.indexOf(U)!==-1;},getByMixin:function(Y,X){var W,i,l;while(Y){if(Y.$$includes){W=Y.$$flatIncludes;for(i=0,l=W.length;i<l;i++ ){if(W[i]===X){return Y;};};};Y=Y.superclass;};return null;},getMixins:qx.util.OOUtil.getMixins,hasMixin:function(bb,ba){return !!this.getByMixin(bb,ba);},hasOwnInterface:function(bd,bc){return bd.$$implements&&bd.$$implements.indexOf(bc)!==-1;},getByInterface:qx.util.OOUtil.getByInterface,getInterfaces:function(bf){var be=[];while(bf){if(bf.$$implements){be.push.apply(be,bf.$$flatImplements);};bf=bf.superclass;};return be;},hasInterface:qx.util.OOUtil.hasInterface,implementsInterface:function(bh,bg){var bi=bh.constructor;if(this.hasInterface(bi,bg)){return true;};if(qx.Interface.objectImplements(bh,bg)){return true;};if(qx.Interface.classImplements(bi,bg)){return true;};return false;},getInstance:function(){if(!this.$$instance){this.$$allowconstruct=true;this.$$instance=new this();delete this.$$allowconstruct;};return this.$$instance;},genericToString:function(){return x+this.classname+t;},$$registry:qx.Bootstrap.$$registry,__i:null,__N:null,__j:function(name,bj){},__O:function(bk){},__P:function(name,bu,bt,bl,br,bp,bo){var bq;if(!bt&&qx.core.Environment.get(m)==false){bq=bl||{};qx.Bootstrap.setDisplayNames(bq,name);}else {bq={};if(bt){if(!br){br=this.__Y();};if(this.__bb(bt,bo)){bq=this.__bc(br,name,bu);}else {bq=br;};if(bu===h){bq.getInstance=this.getInstance;};qx.Bootstrap.setDisplayName(br,name,d);};if(bl){qx.Bootstrap.setDisplayNames(bl,name);var bs;for(var i=0,a=Object.keys(bl),l=a.length;i<l;i++ ){bs=a[i];var bm=bl[bs];if(qx.core.Environment.get(m)){if(bm instanceof Function){bm=qx.core.Aspect.wrap(name+A+bs,bm,q);};bq[bs]=bm;}else {bq[bs]=bm;};};};};var bn=name?qx.Bootstrap.createNamespace(name,bq):r;bq.name=bq.classname=name;bq.basename=bn;bq.$$type=u;if(bu){bq.$$classtype=bu;};if(!bq.hasOwnProperty(n)){bq.toString=this.genericToString;};if(bt){qx.Bootstrap.extendClass(bq,br,bt,name,bn);if(bp){if(qx.core.Environment.get(m)){bp=qx.core.Aspect.wrap(name,bp,y);};bq.$$destructor=bp;qx.Bootstrap.setDisplayName(bp,name,z);};};this.$$registry[name]=bq;return bq;},__Q:function(bv,bw,by){{var bx,bx;};if(bv.$$events){for(var bx in bw){bv.$$events[bx]=bw[bx];};}else {bv.$$events=bw;};},__R:function(bA,bD,bB){if(!qx.core.Environment.get(g)){throw new Error(e);};var bC;if(bB===undefined){bB=false;};var bz=bA.prototype;for(var name in bD){bC=bD[name];{};bC.name=name;if(!bC.refine){if(bA.$$properties===undefined){bA.$$properties={};};bA.$$properties[name]=bC;};if(bC.init!==undefined){bA.prototype[c+name]=bC.init;};if(bC.event!==undefined){if(!qx.core.Environment.get(k)){throw new Error(s);};var event={};event[bC.event]=j;this.__Q(bA,event,bB);};if(bC.inheritable){this.__M.$$inheritable[name]=true;if(!bz.$$refreshInheritables){this.__M.attachRefreshInheritables(bA);};};if(!bC.refine){this.__M.attachMethods(bA,name,bC);};};},__S:null,__T:function(bL,bE,bG,bI,bK){var bF=bL.prototype;var bJ,bH;qx.Bootstrap.setDisplayNames(bE,bL.classname+b);for(var i=0,a=Object.keys(bE),l=a.length;i<l;i++ ){bJ=a[i];bH=bE[bJ];{};if(bI!==false&&bH instanceof Function&&bH.$$type==null){if(bK==true){bH=this.__U(bH,bF[bJ]);}else {if(bF[bJ]){bH.base=bF[bJ];};bH.self=bL;};if(qx.core.Environment.get(m)){bH=qx.core.Aspect.wrap(bL.classname+A+bJ,bH,B);};};bF[bJ]=bH;};},__U:function(bM,bN){if(bN){return function(){var bP=bM.base;bM.base=bN;var bO=bM.apply(this,arguments);bM.base=bP;return bO;};}else {return bM;};},__V:function(bS,bQ){{};var bR=qx.Interface.flatten([bQ]);if(bS.$$implements){bS.$$implements.push(bQ);bS.$$flatImplements.push.apply(bS.$$flatImplements,bR);}else {bS.$$implements=[bQ];bS.$$flatImplements=bR;};},__W:function(bU){var name=bU.classname;var bT=this.__bc(bU,name,bU.$$classtype);for(var i=0,a=Object.keys(bU),l=a.length;i<l;i++ ){bV=a[i];bT[bV]=bU[bV];};bT.prototype=bU.prototype;var bX=bU.prototype;for(var i=0,a=Object.keys(bX),l=a.length;i<l;i++ ){bV=a[i];var bY=bX[bV];if(bY&&bY.self==bU){bY.self=bT;};};for(var bV in this.$$registry){var bW=this.$$registry[bV];if(!bW){continue;};if(bW.base==bU){bW.base=bT;};if(bW.superclass==bU){bW.superclass=bT;};if(bW.$$original){if(bW.$$original.base==bU){bW.$$original.base=bT;};if(bW.$$original.superclass==bU){bW.$$original.superclass=bT;};};};qx.Bootstrap.createNamespace(name,bT);this.$$registry[name]=bT;return bT;},__X:function(cf,cd,cc){{};if(this.hasMixin(cf,cd)){return;};var ca=cf.$$original;if(cd.$$constructor&&!ca){cf=this.__W(cf);};var cb=qx.Mixin.flatten([cd]);var ce;for(var i=0,l=cb.length;i<l;i++ ){ce=cb[i];if(ce.$$events){this.__Q(cf,ce.$$events,cc);};if(ce.$$properties){this.__R(cf,ce.$$properties,cc);};if(ce.$$members){this.__T(cf,ce.$$members,cc,cc,cc);};};if(cf.$$includes){cf.$$includes.push(cd);cf.$$flatIncludes.push.apply(cf.$$flatIncludes,cb);}else {cf.$$includes=[cd];cf.$$flatIncludes=cb;};},__Y:function(){function cg(){cg.base.apply(this,arguments);};return cg;},__ba:function(){return function(){};},__bb:function(ci,ch){{};if(ci&&ci.$$includes){var cj=ci.$$flatIncludes;for(var i=0,l=cj.length;i<l;i++ ){if(cj[i].$$constructor){return true;};};};if(ch){var ck=qx.Mixin.flatten(ch);for(var i=0,l=ck.length;i<l;i++ ){if(ck[i].$$constructor){return true;};};};return false;},__bc:function(cm,name,cl){var co=function(){var cr=co;{};var cp=cr.$$original.apply(this,arguments);if(cr.$$includes){var cq=cr.$$flatIncludes;for(var i=0,l=cq.length;i<l;i++ ){if(cq[i].$$constructor){cq[i].$$constructor.apply(this,arguments);};};};{};return cp;};if(qx.core.Environment.get(m)){var cn=qx.core.Aspect.wrap(name,co,d);co.$$original=cm;co.constructor=cn;co=cn;};co.$$original=cm;cm.wrapper=co;return co;}},defer:function(){if(qx.core.Environment.get(m)){for(var cs in qx.Bootstrap.$$registry){var ct=qx.Bootstrap.$$registry[cs];for(var cu in ct){if(ct[cu] instanceof Function){ct[cu]=qx.core.Aspect.wrap(cs+A+cu,ct[cu],q);};};};};}});})();(function(){var a="qx.data.MBinding";qx.Mixin.define(a,{members:{bind:function(b,e,c,d){return qx.data.SingleValueBinding.bind(this,b,e,c,d);},removeBinding:function(f){qx.data.SingleValueBinding.removeBindingFromObject(this,f);},removeAllBindings:function(){qx.data.SingleValueBinding.removeAllBindingsForObject(this);},getBindings:function(){return qx.data.SingleValueBinding.getAllBindingsForObject(this);}}});})();(function(){var a=". Error message: ",b="Boolean",c="set",d="deepBinding",f=") to the object '",g="item",h="Please use only one array at a time: ",k="Integer",l="reset",m=" of object ",n="qx.data.SingleValueBinding",p="Binding property ",q="Failed so set value ",r="change",s="Binding could not be found!",t="get",u="^",v=" does not work.",w="String",x="Binding from '",y="",z="PositiveNumber",A="]",B="[",C=".",D="PositiveInteger",E='No number or \'last\' value hast been given in an array binding: ',F="' (",G=" on ",H="Binding does not exist!",I="Number",J=").",K="Date",L=" not possible: No event available. ",M="last";qx.Class.define(n,{statics:{__bd:{},bind:function(Q,be,bc,S,bb){var bf=this.__bf(Q,be,bc,S,bb);var U=be.split(C);var P=this.__bl(U);var Y=[];var T=[];var V=[];var ba=[];var R=Q;try{for(var i=0;i<U.length;i++ ){if(P[i]!==y){ba.push(r);}else {ba.push(this.__bg(R,U[i]));};Y[i]=R;if(i==U.length-1){if(P[i]!==y){var bh=P[i]===M?R.length-1:P[i];var O=R.getItem(bh);this.__bk(O,bc,S,bb,Q);V[i]=this.__bm(R,ba[i],bc,S,bb,P[i]);}else {if(U[i]!=null&&R[t+qx.lang.String.firstUp(U[i])]!=null){var O=R[t+qx.lang.String.firstUp(U[i])]();this.__bk(O,bc,S,bb,Q);};V[i]=this.__bm(R,ba[i],bc,S,bb);};}else {var N={index:i,propertyNames:U,sources:Y,listenerIds:V,arrayIndexValues:P,targetObject:bc,targetPropertyChain:S,options:bb,listeners:T};var X=qx.lang.Function.bind(this.__be,this,N);T.push(X);V[i]=R.addListener(ba[i],X);};if(R[t+qx.lang.String.firstUp(U[i])]==null){R=null;}else if(P[i]!==y){R=R[t+qx.lang.String.firstUp(U[i])](P[i]);}else {R=R[t+qx.lang.String.firstUp(U[i])]();};if(!R){break;};};}catch(bi){for(var i=0;i<Y.length;i++ ){if(Y[i]&&V[i]){Y[i].removeListenerById(V[i]);};};var W=bf.targets;var bd=bf.listenerIds;for(var i=0;i<W.length;i++ ){if(W[i]&&bd[i]){W[i].removeListenerById(bd[i]);};};throw bi;};var bg={type:d,listenerIds:V,sources:Y,targetListenerIds:bf.listenerIds,targets:bf.targets};this.__bn(bg,Q,be,bc,S);return bg;},__be:function(bp){if(bp.options&&bp.options.onUpdate){bp.options.onUpdate(bp.sources[bp.index],bp.targetObject);};for(var j=bp.index+1;j<bp.propertyNames.length;j++ ){var bn=bp.sources[j];bp.sources[j]=null;if(!bn){continue;};bn.removeListenerById(bp.listenerIds[j]);};var bn=bp.sources[bp.index];for(var j=bp.index+1;j<bp.propertyNames.length;j++ ){if(bp.arrayIndexValues[j-1]!==y){bn=bn[t+qx.lang.String.firstUp(bp.propertyNames[j-1])](bp.arrayIndexValues[j-1]);}else {bn=bn[t+qx.lang.String.firstUp(bp.propertyNames[j-1])]();};bp.sources[j]=bn;if(!bn){if(bp.options&&bp.options.converter){var bj=false;if(bp.options.ignoreConverter){var bq=bp.propertyNames.slice(0,j).join(C);var bo=bq.match(new RegExp(u+bp.options.ignoreConverter));bj=bo?bo.length>0:false;};var br=null;if(!bj){br=bp.options.converter();};this.__bi(bp.targetObject,bp.targetPropertyChain,br);}else {this.__bh(bp.targetObject,bp.targetPropertyChain);};break;};if(j==bp.propertyNames.length-1){if(qx.Class.implementsInterface(bn,qx.data.IListData)){var bs=bp.arrayIndexValues[j]===M?bn.length-1:bp.arrayIndexValues[j];var bk=bn.getItem(bs);this.__bk(bk,bp.targetObject,bp.targetPropertyChain,bp.options,bp.sources[bp.index]);bp.listenerIds[j]=this.__bm(bn,r,bp.targetObject,bp.targetPropertyChain,bp.options,bp.arrayIndexValues[j]);}else {if(bp.propertyNames[j]!=null&&bn[t+qx.lang.String.firstUp(bp.propertyNames[j])]!=null){var bk=bn[t+qx.lang.String.firstUp(bp.propertyNames[j])]();this.__bk(bk,bp.targetObject,bp.targetPropertyChain,bp.options,bp.sources[bp.index]);};var bl=this.__bg(bn,bp.propertyNames[j]);bp.listenerIds[j]=this.__bm(bn,bl,bp.targetObject,bp.targetPropertyChain,bp.options);};}else {if(bp.listeners[j]==null){var bm=qx.lang.Function.bind(this.__be,this,bp);bp.listeners.push(bm);};if(qx.Class.implementsInterface(bn,qx.data.IListData)){var bl=r;}else {var bl=this.__bg(bn,bp.propertyNames[j]);};bp.listenerIds[j]=bn.addListener(bl,bp.listeners[j]);};};},__bf:function(bu,bC,bG,by,bA){var bx=by.split(C);var bv=this.__bl(bx);var bF=[];var bE=[];var bz=[];var bD=[];var bw=bG;for(var i=0;i<bx.length-1;i++ ){if(bv[i]!==y){bD.push(r);}else {try{bD.push(this.__bg(bw,bx[i]));}catch(e){break;};};bF[i]=bw;var bB=function(){for(var j=i+1;j<bx.length-1;j++ ){var bJ=bF[j];bF[j]=null;if(!bJ){continue;};bJ.removeListenerById(bz[j]);};var bJ=bF[i];for(var j=i+1;j<bx.length-1;j++ ){var bH=qx.lang.String.firstUp(bx[j-1]);if(bv[j-1]!==y){var bK=bv[j-1]===M?bJ.getLength()-1:bv[j-1];bJ=bJ[t+bH](bK);}else {bJ=bJ[t+bH]();};bF[j]=bJ;if(bE[j]==null){bE.push(bB);};if(qx.Class.implementsInterface(bJ,qx.data.IListData)){var bI=r;}else {try{var bI=qx.data.SingleValueBinding.__bg(bJ,bx[j]);}catch(e){break;};};bz[j]=bJ.addListener(bI,bE[j]);};qx.data.SingleValueBinding.updateTarget(bu,bC,bG,by,bA);};bE.push(bB);bz[i]=bw.addListener(bD[i],bB);var bt=qx.lang.String.firstUp(bx[i]);if(bw[t+bt]==null){bw=null;}else if(bv[i]!==y){bw=bw[t+bt](bv[i]);}else {bw=bw[t+bt]();};if(!bw){break;};};return {listenerIds:bz,targets:bF};},updateTarget:function(bL,bO,bQ,bM,bP){var bN=this.resolvePropertyChain(bL,bO);bN=qx.data.SingleValueBinding.__bo(bN,bQ,bM,bP,bL);this.__bi(bQ,bM,bN);},resolvePropertyChain:function(o,bU){var bT=this.__bj(o,bU);var bV;if(bT!=null){var bX=bU.substring(bU.lastIndexOf(C)+1,bU.length);if(bX.charAt(bX.length-1)==A){var bR=bX.substring(bX.lastIndexOf(B)+1,bX.length-1);var bS=bX.substring(0,bX.lastIndexOf(B));var bW=bT[t+qx.lang.String.firstUp(bS)]();if(bR==M){bR=bW.length-1;};if(bW!=null){bV=bW.getItem(bR);};}else {bV=bT[t+qx.lang.String.firstUp(bX)]();};};return bV;},__bg:function(ca,cb){var bY=this.__bp(ca,cb);if(bY==null){if(qx.Class.supportsEvent(ca.constructor,cb)){bY=cb;}else if(qx.Class.supportsEvent(ca.constructor,r+qx.lang.String.firstUp(cb))){bY=r+qx.lang.String.firstUp(cb);}else {throw new qx.core.AssertionError(p+cb+m+ca+L);};};return bY;},__bh:function(ce,cc){var cd=this.__bj(ce,cc);if(cd!=null){var cf=cc.substring(cc.lastIndexOf(C)+1,cc.length);if(cf.charAt(cf.length-1)==A){this.__bi(ce,cc,null);return;};if(cd[l+qx.lang.String.firstUp(cf)]!=undefined){cd[l+qx.lang.String.firstUp(cf)]();}else {cd[c+qx.lang.String.firstUp(cf)](null);};};},__bi:function(cm,ci,cj){var ch=this.__bj(cm,ci);if(ch!=null){var cn=ci.substring(ci.lastIndexOf(C)+1,ci.length);if(cn.charAt(cn.length-1)==A){var cg=cn.substring(cn.lastIndexOf(B)+1,cn.length-1);var ck=cn.substring(0,cn.lastIndexOf(B));var cl=cm;if(!qx.Class.implementsInterface(cl,qx.data.IListData)){cl=ch[t+qx.lang.String.firstUp(ck)]();};if(cg==M){cg=cl.length-1;};if(cl!=null){cl.setItem(cg,cj);};}else {ch[c+qx.lang.String.firstUp(cn)](cj);};};},__bj:function(ct,cq){var cs=cq.split(C);var cp=ct;for(var i=0;i<cs.length-1;i++ ){try{var cr=cs[i];if(cr.indexOf(A)==cr.length-1){var co=cr.substring(cr.indexOf(B)+1,cr.length-1);cr=cr.substring(0,cr.indexOf(B));};if(cr!=y){cp=cp[t+qx.lang.String.firstUp(cr)]();};if(co!=null){if(co==M){co=cp.length-1;};cp=cp.getItem(co);co=null;};}catch(cu){return null;};};return cp;},__bk:function(cz,cv,cx,cy,cw){cz=this.__bo(cz,cv,cx,cy,cw);if(cz===undefined){this.__bh(cv,cx);};if(cz!==undefined){try{this.__bi(cv,cx,cz);if(cy&&cy.onUpdate){cy.onUpdate(cw,cv,cz);};}catch(e){if(!(e instanceof qx.core.ValidationError)){throw e;};if(cy&&cy.onSetFail){cy.onSetFail(e);}else {qx.log.Logger.warn(q+cz+G+cv+a+e);};};};},__bl:function(cA){var cB=[];for(var i=0;i<cA.length;i++ ){var name=cA[i];if(qx.lang.String.endsWith(name,A)){var cC=name.substring(name.indexOf(B)+1,name.indexOf(A));if(name.indexOf(A)!=name.length-1){throw new Error(h+name+v);};if(cC!==M){if(cC==y||isNaN(parseInt(cC,10))){throw new Error(E+name+v);};};if(name.indexOf(B)!=0){cA[i]=name.substring(0,name.indexOf(B));cB[i]=y;cB[i+1]=cC;cA.splice(i+1,0,g);i++ ;}else {cB[i]=cC;cA.splice(i,1,g);};}else {cB[i]=y;};};return cB;},__bm:function(cD,cG,cL,cJ,cH,cF){{var cE;};var cI=function(cO,e){if(cO!==y){if(cO===M){cO=cD.length-1;};var cP=cD.getItem(cO);if(cP===undefined){qx.data.SingleValueBinding.__bh(cL,cJ);};var cN=e.getData().start;var cM=e.getData().end;if(cO<cN||cO>cM){return;};}else {var cP=e.getData();};{};cP=qx.data.SingleValueBinding.__bo(cP,cL,cJ,cH,cD);{};try{if(cP!==undefined){qx.data.SingleValueBinding.__bi(cL,cJ,cP);}else {qx.data.SingleValueBinding.__bh(cL,cJ);};if(cH&&cH.onUpdate){cH.onUpdate(cD,cL,cP);};}catch(cQ){if(!(cQ instanceof qx.core.ValidationError)){throw cQ;};if(cH&&cH.onSetFail){cH.onSetFail(cQ);}else {qx.log.Logger.warn(q+cP+G+cL+a+cQ);};};};if(!cF){cF=y;};cI=qx.lang.Function.bind(cI,cD,cF);var cK=cD.addListener(cG,cI);return cK;},__bn:function(cV,cR,cU,cS,cT){if(this.__bd[cR.toHashCode()]===undefined){this.__bd[cR.toHashCode()]=[];};this.__bd[cR.toHashCode()].push([cV,cR,cU,cS,cT]);},__bo:function(da,df,cY,db,cW){if(db&&db.converter){var dc;if(df.getModel){dc=df.getModel();};return db.converter(da,dc,cW,df);}else {var cX=this.__bj(df,cY);var dg=cY.substring(cY.lastIndexOf(C)+1,cY.length);if(cX==null){return da;};var dd=qx.Class.getPropertyDefinition(cX.constructor,dg);var de=dd==null?y:dd.check;return this.__bq(da,de);};},__bp:function(dh,dj){var di=qx.Class.getPropertyDefinition(dh.constructor,dj);if(di==null){return null;};return di.event;},__bq:function(dm,dl){var dk=qx.lang.Type.getClass(dm);if((dk==I||dk==w)&&(dl==k||dl==D)){dm=parseInt(dm,10);};if((dk==b||dk==I||dk==K)&&dl==w){dm=dm+y;};if((dk==I||dk==w)&&(dl==I||dl==z)){dm=parseFloat(dm);};return dm;},removeBindingFromObject:function(dn,dq){if(dq.type==d){for(var i=0;i<dq.sources.length;i++ ){if(dq.sources[i]){dq.sources[i].removeListenerById(dq.listenerIds[i]);};};for(var i=0;i<dq.targets.length;i++ ){if(dq.targets[i]){dq.targets[i].removeListenerById(dq.targetListenerIds[i]);};};}else {dn.removeListenerById(dq);};var dp=this.__bd[dn.toHashCode()];if(dp!=undefined){for(var i=0;i<dp.length;i++ ){if(dp[i][0]==dq){qx.lang.Array.remove(dp,dp[i]);return;};};};throw new Error(s);},removeAllBindingsForObject:function(ds){{};var dr=this.__bd[ds.toHashCode()];if(dr!=undefined){for(var i=dr.length-1;i>=0;i-- ){this.removeBindingFromObject(ds,dr[i][0]);};};},getAllBindingsForObject:function(dt){if(this.__bd[dt.toHashCode()]===undefined){this.__bd[dt.toHashCode()]=[];};return this.__bd[dt.toHashCode()];},removeAllBindings:function(){for(var dv in this.__bd){var du=qx.core.ObjectRegistry.fromHashCode(dv);if(du==null){delete this.__bd[dv];continue;};this.removeAllBindingsForObject(du);};this.__bd={};},getAllBindings:function(){return this.__bd;},showBindingInLog:function(dx,dz){var dy;for(var i=0;i<this.__bd[dx.toHashCode()].length;i++ ){if(this.__bd[dx.toHashCode()][i][0]==dz){dy=this.__bd[dx.toHashCode()][i];break;};};if(dy===undefined){var dw=H;}else {var dw=x+dy[1]+F+dy[2]+f+dy[3]+F+dy[4]+J;};qx.log.Logger.debug(dw);},showAllBindingsInLog:function(){for(var dB in this.__bd){var dA=qx.core.ObjectRegistry.fromHashCode(dB);for(var i=0;i<this.__bd[dB].length;i++ ){this.showBindingInLog(dA,this.__bd[dB][i][0]);};};}}});})();(function(){var a="-",b="]",c='\\u',d="undefined",e="",f='\\$1',g="0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",h="\\\\",j='-',k="g",l="\\\"",m="qx.lang.String",n="(^|[^",o="0",p="%",q='"',r=' ',s='\n',t="])[";qx.Bootstrap.define(m,{statics:{__br:g,__bs:null,__bt:{},camelCase:function(v){var u=this.__bt[v];if(!u){u=v.replace(/\-([a-z])/g,function(x,w){return w.toUpperCase();});if(v.indexOf(a)>=0){this.__bt[v]=u;};};return u;},hyphenate:function(z){var y=this.__bt[z];if(!y){y=z.replace(/[A-Z]/g,function(A){return (j+A.charAt(0).toLowerCase());});if(z.indexOf(a)==-1){this.__bt[z]=y;};};return y;},capitalize:function(C){if(this.__bs===null){var B=c;this.__bs=new RegExp(n+this.__br.replace(/[0-9A-F]{4}/g,function(D){return B+D;})+t+this.__br.replace(/[0-9A-F]{4}/g,function(E){return B+E;})+b,k);};return C.replace(this.__bs,function(F){return F.toUpperCase();});},clean:function(G){return G.replace(/\s+/g,r).trim();},trimLeft:function(H){return H.replace(/^\s+/,e);},trimRight:function(I){return I.replace(/\s+$/,e);},startsWith:function(K,J){return K.indexOf(J)===0;},endsWith:function(M,L){return M.substring(M.length-L.length,M.length)===L;},repeat:function(N,O){return N.length>0?new Array(O+1).join(N):e;},pad:function(Q,length,P){var R=length-Q.length;if(R>0){if(typeof P===d){P=o;};return this.repeat(P,R)+Q;}else {return Q;};},firstUp:qx.Bootstrap.firstUp,firstLow:qx.Bootstrap.firstLow,contains:function(T,S){return T.indexOf(S)!=-1;},format:function(U,V){var W=U;var i=V.length;while(i-- ){W=W.replace(new RegExp(p+(i+1),k),V[i]+e);};return W;},escapeRegexpChars:function(X){return X.replace(/([.*+?^${}()|[\]\/\\])/g,f);},toArray:function(Y){return Y.split(/\B|\b/g);},stripTags:function(ba){return ba.replace(/<\/?[^>]+>/gi,e);},stripScripts:function(bd,bc){var be=e;var bb=bd.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){be+=arguments[1]+s;return e;});if(bc===true){qx.lang.Function.globalEval(be);};return bb;},quote:function(bf){return q+bf.replace(/\\/g,h).replace(/\"/g,l)+q;}}});})();(function(){var a="mshtml",b="engine.name",c="[object Array]",d="qx.lang.Array",e="Cannot clean-up map entry doneObjects[",f="]",g="qx",h="number",j="][",k="string";qx.Bootstrap.define(d,{statics:{cast:function(m,o,p){if(m.constructor===o){return m;};if(qx.data&&qx.data.IListData){if(qx.Class&&qx.Class.hasInterface(m,qx.data.IListData)){var m=m.toArray();};};var n=new o;if((qx.core.Environment.get(b)==a)){if(m.item){for(var i=p||0,l=m.length;i<l;i++ ){n.push(m[i]);};return n;};};if(Object.prototype.toString.call(m)===c&&p==null){n.push.apply(n,m);}else {n.push.apply(n,Array.prototype.slice.call(m,p||0));};return n;},fromArguments:function(q,r){return Array.prototype.slice.call(q,r||0);},fromCollection:function(t){if((qx.core.Environment.get(b)==a)){if(t.item){var s=[];for(var i=0,l=t.length;i<l;i++ ){s[i]=t[i];};return s;};};return Array.prototype.slice.call(t,0);},fromShortHand:function(u){var w=u.length;var v=qx.lang.Array.clone(u);switch(w){case 1:v[1]=v[2]=v[3]=v[0];break;case 2:v[2]=v[0];case 3:v[3]=v[1];};return v;},clone:function(x){return x.concat();},insertAt:function(y,z,i){y.splice(i,0,z);return y;},insertBefore:function(A,C,B){var i=A.indexOf(B);if(i==-1){A.push(C);}else {A.splice(i,0,C);};return A;},insertAfter:function(D,F,E){var i=D.indexOf(E);if(i==-1||i==(D.length-1)){D.push(F);}else {D.splice(i+1,0,F);};return D;},removeAt:function(G,i){return G.splice(i,1)[0];},removeAll:function(H){H.length=0;return this;},append:function(J,I){{};Array.prototype.push.apply(J,I);return J;},exclude:function(M,L){{};for(var i=0,N=L.length,K;i<N;i++ ){K=M.indexOf(L[i]);if(K!=-1){M.splice(K,1);};};return M;},remove:function(O,P){var i=O.indexOf(P);if(i!=-1){O.splice(i,1);return P;};},contains:function(Q,R){return Q.indexOf(R)!==-1;},equals:function(T,S){var length=T.length;if(length!==S.length){return false;};for(var i=0;i<length;i++ ){if(T[i]!==S[i]){return false;};};return true;},sum:function(U){var V=0;for(var i=0,l=U.length;i<l;i++ ){V+=U[i];};return V;},max:function(W){{};var i,Y=W.length,X=W[0];for(i=1;i<Y;i++ ){if(W[i]>X){X=W[i];};};return X===undefined?null:X;},min:function(ba){{};var i,bc=ba.length,bb=ba[0];for(i=1;i<bc;i++ ){if(ba[i]<bb){bb=ba[i];};};return bb===undefined?null:bb;},unique:function(bf){var bp=[],be={},bi={},bk={};var bj,bd=0;var bn=g+Date.now();var bg=false,bl=false,bo=false;for(var i=0,bm=bf.length;i<bm;i++ ){bj=bf[i];if(bj===null){if(!bg){bg=true;bp.push(bj);};}else if(bj===undefined){}else if(bj===false){if(!bl){bl=true;bp.push(bj);};}else if(bj===true){if(!bo){bo=true;bp.push(bj);};}else if(typeof bj===k){if(!be[bj]){be[bj]=1;bp.push(bj);};}else if(typeof bj===h){if(!bi[bj]){bi[bj]=1;bp.push(bj);};}else {var bh=bj[bn];if(bh==null){bh=bj[bn]=bd++ ;};if(!bk[bh]){bk[bh]=bj;bp.push(bj);};};};for(var bh in bk){try{delete bk[bh][bn];}catch(bq){try{bk[bh][bn]=null;}catch(br){throw new Error(e+bh+j+bn+f);};};};return bp;}}});})();(function(){var a="[object Opera]",b="function",c="[^\\.0-9]",d="4.0",e="gecko",f="1.9.0.0",g="Version/",h="9.0",i="8.0",j="Gecko",k="Maple",l="AppleWebKit/",m="Trident",n="Unsupported client: ",o="",p="opera",q="engine.version",r="! Assumed gecko version 1.9.0.0 (Firefox 3.0).",s="mshtml",t="engine.name",u="webkit",v="5.0",w=".",x="qx.bom.client.Engine";qx.Bootstrap.define(x,{statics:{getVersion:function(){var A=window.navigator.userAgent;var B=o;if(qx.bom.client.Engine.__bu()){if(/Opera[\s\/]([0-9]+)\.([0-9])([0-9]*)/.test(A)){if(A.indexOf(g)!=-1){var D=A.match(/Version\/(\d+)\.(\d+)/);B=D[1]+w+D[2].charAt(0)+w+D[2].substring(1,D[2].length);}else {B=RegExp.$1+w+RegExp.$2;if(RegExp.$3!=o){B+=w+RegExp.$3;};};};}else if(qx.bom.client.Engine.__bv()){if(/AppleWebKit\/([^ ]+)/.test(A)){B=RegExp.$1;var C=RegExp(c).exec(B);if(C){B=B.slice(0,C.index);};};}else if(qx.bom.client.Engine.__bx()||qx.bom.client.Engine.__bw()){if(/rv\:([^\);]+)(\)|;)/.test(A)){B=RegExp.$1;};}else if(qx.bom.client.Engine.__by()){var z=/Trident\/([^\);]+)(\)|;)/.test(A);if(/MSIE\s+([^\);]+)(\)|;)/.test(A)){B=RegExp.$1;if(B<8&&z){if(RegExp.$1==d){B=i;}else if(RegExp.$1==v){B=h;};};}else if(z){var D=/\brv\:(\d+?\.\d+?)\b/.exec(A);if(D){B=D[1];};};}else {var y=window.qxFail;if(y&&typeof y===b){B=y().FULLVERSION;}else {B=f;qx.Bootstrap.warn(n+A+r);};};return B;},getName:function(){var name;if(qx.bom.client.Engine.__bu()){name=p;}else if(qx.bom.client.Engine.__bv()){name=u;}else if(qx.bom.client.Engine.__bx()||qx.bom.client.Engine.__bw()){name=e;}else if(qx.bom.client.Engine.__by()){name=s;}else {var E=window.qxFail;if(E&&typeof E===b){name=E().NAME;}else {name=e;qx.Bootstrap.warn(n+window.navigator.userAgent+r);};};return name;},__bu:function(){return window.opera&&Object.prototype.toString.call(window.opera)==a;},__bv:function(){return window.navigator.userAgent.indexOf(l)!=-1;},__bw:function(){return window.navigator.userAgent.indexOf(k)!=-1;},__bx:function(){return window.controllers&&window.navigator.product===j&&window.navigator.userAgent.indexOf(k)==-1&&window.navigator.userAgent.indexOf(m)==-1;},__by:function(){return window.navigator.cpuClass&&(/MSIE\s+([^\);]+)(\)|;)/.test(window.navigator.userAgent)||/Trident\/\d+?\.\d+?/.test(window.navigator.userAgent));}},defer:function(F){qx.core.Environment.add(q,F.getVersion);qx.core.Environment.add(t,F.getName);}});})();(function(){var a='anonymous()',b="()",c="qx.globalErrorHandling",d="qx.lang.Function",e=".",f=".prototype.",g=".constructor()";qx.Bootstrap.define(d,{statics:{getCaller:function(h){return h.caller?h.caller.callee:h.callee.caller;},getName:function(i){if(i.displayName){return i.displayName;};if(i.$$original||i.wrapper||i.classname){return i.classname+g;};if(i.$$mixin){for(var j in i.$$mixin.$$members){if(i.$$mixin.$$members[j]==i){return i.$$mixin.name+f+j+b;};};for(var j in i.$$mixin){if(i.$$mixin[j]==i){return i.$$mixin.name+e+j+b;};};};if(i.self){var l=i.self.constructor;if(l){for(var j in l.prototype){if(l.prototype[j]==i){return l.classname+f+j+b;};};for(var j in l){if(l[j]==i){return l.classname+e+j+b;};};};};var k=i.toString().match(/function\s*(\w*)\s*\(.*/);if(k&&k.length>=1&&k[1]){return k[1]+b;};return a;},globalEval:function(data){if(window.execScript){return window.execScript(data);}else {return eval.call(window,data);};},create:function(n,m){{};if(!m){return n;};if(!(m.self||m.args||m.delay!=null||m.periodical!=null||m.attempt)){return n;};return function(event){{};var p=qx.lang.Array.fromArguments(arguments);if(m.args){p=m.args.concat(p);};if(m.delay||m.periodical){var o=function(){return n.apply(m.self||this,p);};if(qx.core.Environment.get(c)){o=qx.event.GlobalError.observeMethod(o);};if(m.delay){return window.setTimeout(o,m.delay);};if(m.periodical){return window.setInterval(o,m.periodical);};}else if(m.attempt){var q=false;try{q=n.apply(m.self||this,p);}catch(r){};return q;}else {return n.apply(m.self||this,p);};};},bind:function(s,self,t){return this.create(s,{self:self,args:arguments.length>2?qx.lang.Array.fromArguments(arguments,2):null});},curry:function(u,v){return this.create(u,{args:arguments.length>1?qx.lang.Array.fromArguments(arguments,1):null});},listener:function(x,self,y){if(arguments.length<3){return function(event){return x.call(self||this,event||window.event);};}else {var w=qx.lang.Array.fromArguments(arguments,2);return function(event){var z=[event||window.event];z.push.apply(z,w);x.apply(self||this,z);};};},attempt:function(A,self,B){return this.create(A,{self:self,attempt:true,args:arguments.length>2?qx.lang.Array.fromArguments(arguments,2):null})();},delay:function(D,C,self,E){return this.create(D,{delay:C,self:self,args:arguments.length>3?qx.lang.Array.fromArguments(arguments,3):null})();},periodical:function(G,F,self,H){return this.create(G,{periodical:F,self:self,args:arguments.length>3?qx.lang.Array.fromArguments(arguments,3):null})();}}});})();(function(){var a="qx.globalErrorHandling",b="qx.event.GlobalError";qx.Bootstrap.define(b,{statics:{__bz:null,__bA:null,__bB:null,__bC:function(){if(qx.core&&qx.core.Environment){return qx.core.Environment.get(a);}else {return !!qx.Bootstrap.getEnvironmentSetting(a);};},setErrorHandler:function(c,d){this.__bz=c||null;this.__bB=d||window;if(this.__bC()){if(c&&window.onerror){var e=qx.Bootstrap.bind(this.__bD,this);if(this.__bA==null){this.__bA=window.onerror;};var self=this;window.onerror=function(f,g,h){self.__bA(f,g,h);e(f,g,h);};};if(c&&!window.onerror){window.onerror=qx.Bootstrap.bind(this.__bD,this);};if(this.__bz==null){if(this.__bA!=null){window.onerror=this.__bA;this.__bA=null;}else {window.onerror=null;};};};},__bD:function(i,j,k){if(this.__bz){this.handleError(new qx.core.WindowError(i,j,k));};},observeMethod:function(l){if(this.__bC()){var self=this;return function(){if(!self.__bz){return l.apply(this,arguments);};try{return l.apply(this,arguments);}catch(m){self.handleError(new qx.core.GlobalError(m,arguments));};};}else {return l;};},handleError:function(n){if(this.__bz){this.__bz.call(this.__bB,n);};}},defer:function(o){if(qx.core&&qx.core.Environment){qx.core.Environment.add(a,true);}else {qx.Bootstrap.setEnvironmentSetting(a,true);};o.setErrorHandler(null,null);}});})();(function(){var a="",b="qx.core.WindowError";qx.Bootstrap.define(b,{extend:Error,construct:function(c,e,f){var d=Error.call(this,c);if(d.stack){this.stack=d.stack;};if(d.stacktrace){this.stacktrace=d.stacktrace;};this.__bE=c;this.__bF=e||a;this.__bG=f===undefined?-1:f;},members:{__bE:null,__bF:null,__bG:null,toString:function(){return this.__bE;},getUri:function(){return this.__bF;},getLineNumber:function(){return this.__bG;}}});})();(function(){var a="GlobalError: ",b="qx.core.GlobalError";qx.Bootstrap.define(b,{extend:Error,construct:function(e,c){if(qx.Bootstrap.DEBUG){qx.core.Assert.assertNotUndefined(e);};this.__bE=a+(e&&e.message?e.message:e);var d=Error.call(this,this.__bE);if(d.stack){this.stack=d.stack;};if(d.stacktrace){this.stacktrace=d.stacktrace;};this.__bH=c;this.__bI=e;},members:{__bI:null,__bH:null,__bE:null,toString:function(){return this.__bE;},getArguments:function(){return this.__bH;},getSourceException:function(){return this.__bI;}},destruct:function(){this.__bI=null;this.__bH=null;this.__bE=null;}});})();(function(){var a="qx.lang.Type",b="Error",c="RegExp",d="Date",e="Number",f="Boolean";qx.Bootstrap.define(a,{statics:{getClass:qx.Bootstrap.getClass,isString:qx.Bootstrap.isString,isArray:qx.Bootstrap.isArray,isObject:qx.Bootstrap.isObject,isFunction:qx.Bootstrap.isFunction,isRegExp:function(g){return this.getClass(g)==c;},isNumber:function(h){return (h!==null&&(this.getClass(h)==e||h instanceof Number));},isBoolean:function(i){return (i!==null&&(this.getClass(i)==f||i instanceof Boolean));},isDate:function(j){return (j!==null&&(this.getClass(j)==d||j instanceof Date));},isError:function(k){return (k!==null&&(this.getClass(k)==b||k instanceof Error));}}});})();(function(){var a=" != ",b="qx.core.Object",c="Expected value to be an array but found ",d="' (rgb(",f=") was fired.",g="Expected value to be an integer >= 0 but found ",h="' to be not equal with '",j="' to '",k="Expected object '",m="Called assertTrue with '",n="Expected value to be a map but found ",o="The function did not raise an exception!",p="Expected value to be undefined but found ",q="Expected value to be a DOM element but found '",r="Expected value to be a regular expression but found ",s="' to implement the interface '",t="Expected value to be null but found ",u="Invalid argument 'type'",v="Called assert with 'false'",w="Assertion error! ",x="'",y="null",z="' but found '",A="'undefined'",B=",",C="' must must be a key of the map '",D="Expected '",E="The String '",F="Expected value to be a string but found ",G="Event (",H="Expected value to be the CSS color '",I="!",J="Expected value not to be undefined but found undefined!",K="qx.util.ColorUtil",L=": ",M="The raised exception does not have the expected type! ",N=") not fired.",O="'!",P="qx.core.Assert",Q="",R="Expected value to be typeof object but found ",S="' but found ",T="' (identical) but found '",U="' must have any of the values defined in the array '",V="Expected value to be a number but found ",W="Called assertFalse with '",X="qx.ui.core.Widget",Y="]",bJ="Expected value to be a qooxdoo object but found ",bK="' arguments.",bL="Expected value '%1' to be in the range '%2'..'%3'!",bF="Array[",bG="' does not match the regular expression '",bH="' to be not identical with '",bI="Expected [",bP="' arguments but found '",bQ="', which cannot be converted to a CSS color!",bR=", ",cg="qx.core.AssertionError",bM="Expected value to be a boolean but found ",bN="Expected value not to be null but found null!",bO="))!",bD="Expected value to be a qooxdoo widget but found ",bU="The value '",bE="Expected value to be typeof '",bV="\n Stack trace: \n",bW="Expected value to be typeof function but found ",cb="Expected value to be an integer but found ",bS="Called fail().",cf="The parameter 're' must be a string or a regular expression.",bT=")), but found value '",bX="qx.util.ColorUtil not available! Your code must have a dependency on 'qx.util.ColorUtil'",bY="Expected value to be a number >= 0 but found ",ca="Expected value to be instanceof '",cc="], but found [",cd="Wrong number of arguments given. Expected '",ce="object";qx.Class.define(P,{statics:{__bJ:true,__bK:function(ch,ci){var cm=Q;for(var i=1,l=arguments.length;i<l;i++ ){cm=cm+this.__bL(arguments[i]===undefined?A:arguments[i]);};var cl=Q;if(cm){cl=ch+L+cm;}else {cl=ch;};var ck=w+cl;if(qx.Class.isDefined(cg)){var cj=new qx.core.AssertionError(ch,cm);if(this.__bJ){qx.Bootstrap.error(ck+bV+cj.getStackTrace());};throw cj;}else {if(this.__bJ){qx.Bootstrap.error(ck);};throw new Error(ck);};},__bL:function(co){var cn;if(co===null){cn=y;}else if(qx.lang.Type.isArray(co)&&co.length>10){cn=bF+co.length+Y;}else if((co instanceof Object)&&(co.toString==null)){cn=qx.lang.Json.stringify(co,null,2);}else {try{cn=co.toString();}catch(e){cn=Q;};};return cn;},assert:function(cq,cp){cq==true||this.__bK(cp||Q,v);},fail:function(cr,cs){var ct=cs?Q:bS;this.__bK(cr||Q,ct);},assertTrue:function(cv,cu){(cv===true)||this.__bK(cu||Q,m,cv,x);},assertFalse:function(cx,cw){(cx===false)||this.__bK(cw||Q,W,cx,x);},assertEquals:function(cy,cz,cA){cy==cz||this.__bK(cA||Q,D,cy,z,cz,O);},assertNotEquals:function(cB,cC,cD){cB!=cC||this.__bK(cD||Q,D,cB,h,cC,O);},assertIdentical:function(cE,cF,cG){cE===cF||this.__bK(cG||Q,D,cE,T,cF,O);},assertNotIdentical:function(cH,cI,cJ){cH!==cI||this.__bK(cJ||Q,D,cH,bH,cI,O);},assertNotUndefined:function(cL,cK){cL!==undefined||this.__bK(cK||Q,J);},assertUndefined:function(cN,cM){cN===undefined||this.__bK(cM||Q,p,cN,I);},assertNotNull:function(cP,cO){cP!==null||this.__bK(cO||Q,bN);},assertNull:function(cR,cQ){cR===null||this.__bK(cQ||Q,t,cR,I);},assertJsonEquals:function(cS,cT,cU){this.assertEquals(qx.lang.Json.stringify(cS),qx.lang.Json.stringify(cT),cU);},assertMatch:function(cX,cW,cV){this.assertString(cX);this.assert(qx.lang.Type.isRegExp(cW)||qx.lang.Type.isString(cW),cf);cX.search(cW)>=0||this.__bK(cV||Q,E,cX,bG,cW.toString(),O);},assertArgumentsCount:function(db,dc,dd,cY){var da=db.length;(da>=dc&&da<=dd)||this.__bK(cY||Q,cd,dc,j,dd,bP,da,bK);},assertEventFired:function(de,event,dh,di,dj){var df=false;var dg=function(e){if(di){di.call(de,e);};df=true;};var dk;try{dk=de.addListener(event,dg,de);dh.call(de);}catch(dl){throw dl;}finally{try{de.removeListenerById(dk);}catch(dm){};};df===true||this.__bK(dj||Q,G,event,N);},assertEventNotFired:function(dn,event,dr,ds){var dp=false;var dq=function(e){dp=true;};var dt=dn.addListener(event,dq,dn);dr.call();dp===false||this.__bK(ds||Q,G,event,f);dn.removeListenerById(dt);},assertException:function(dx,dw,dv,du){var dw=dw||Error;var dy;try{this.__bJ=false;dx();}catch(dz){dy=dz;}finally{this.__bJ=true;};if(dy==null){this.__bK(du||Q,o);};dy instanceof dw||this.__bK(du||Q,M,dw,a,dy);if(dv){this.assertMatch(dy.toString(),dv,du);};},assertInArray:function(dC,dB,dA){dB.indexOf(dC)!==-1||this.__bK(dA||Q,bU,dC,U,dB,x);},assertArrayEquals:function(dD,dE,dF){this.assertArray(dD,dF);this.assertArray(dE,dF);dF=dF||bI+dD.join(bR)+cc+dE.join(bR)+Y;if(dD.length!==dE.length){this.fail(dF,true);};for(var i=0;i<dD.length;i++ ){if(dD[i]!==dE[i]){this.fail(dF,true);};};},assertKeyInMap:function(dI,dH,dG){dH[dI]!==undefined||this.__bK(dG||Q,bU,dI,C,dH,x);},assertFunction:function(dK,dJ){qx.lang.Type.isFunction(dK)||this.__bK(dJ||Q,bW,dK,I);},assertString:function(dM,dL){qx.lang.Type.isString(dM)||this.__bK(dL||Q,F,dM,I);},assertBoolean:function(dO,dN){qx.lang.Type.isBoolean(dO)||this.__bK(dN||Q,bM,dO,I);},assertNumber:function(dQ,dP){(qx.lang.Type.isNumber(dQ)&&isFinite(dQ))||this.__bK(dP||Q,V,dQ,I);},assertPositiveNumber:function(dS,dR){(qx.lang.Type.isNumber(dS)&&isFinite(dS)&&dS>=0)||this.__bK(dR||Q,bY,dS,I);},assertInteger:function(dU,dT){(qx.lang.Type.isNumber(dU)&&isFinite(dU)&&dU%1===0)||this.__bK(dT||Q,cb,dU,I);},assertPositiveInteger:function(dX,dV){var dW=(qx.lang.Type.isNumber(dX)&&isFinite(dX)&&dX%1===0&&dX>=0);dW||this.__bK(dV||Q,g,dX,I);},assertInRange:function(eb,ec,ea,dY){(eb>=ec&&eb<=ea)||this.__bK(dY||Q,qx.lang.String.format(bL,[eb,ec,ea]));},assertObject:function(ee,ed){var ef=ee!==null&&(qx.lang.Type.isObject(ee)||typeof ee===ce);ef||this.__bK(ed||Q,R,(ee),I);},assertArray:function(eh,eg){qx.lang.Type.isArray(eh)||this.__bK(eg||Q,c,eh,I);},assertMap:function(ej,ei){qx.lang.Type.isObject(ej)||this.__bK(ei||Q,n,ej,I);},assertRegExp:function(el,ek){qx.lang.Type.isRegExp(el)||this.__bK(ek||Q,r,el,I);},assertType:function(eo,en,em){this.assertString(en,u);typeof (eo)===en||this.__bK(em||Q,bE,en,S,eo,I);},assertInstance:function(er,es,ep){var eq=es.classname||es+Q;er instanceof es||this.__bK(ep||Q,ca,eq,S,er,I);},assertInterface:function(ev,eu,et){qx.Class.implementsInterface(ev,eu)||this.__bK(et||Q,k,ev,s,eu,O);},assertCssColor:function(eC,ez,eB){var ew=qx.Class.getByName(K);if(!ew){throw new Error(bX);};var ey=ew.stringToRgb(eC);try{var eA=ew.stringToRgb(ez);}catch(eE){this.__bK(eB||Q,H,eC,d,ey.join(B),bT,ez,bQ);};var eD=ey[0]==eA[0]&&ey[1]==eA[1]&&ey[2]==eA[2];eD||this.__bK(eB||Q,H,ey,d,ey.join(B),bT,ez,d,eA.join(B),bO);},assertElement:function(eG,eF){!!(eG&&eG.nodeType===1)||this.__bK(eF||Q,q,eG,O);},assertQxObject:function(eI,eH){this.__bM(eI,b)||this.__bK(eH||Q,bJ,eI,I);},assertQxWidget:function(eK,eJ){this.__bM(eK,X)||this.__bK(eJ||Q,bD,eK,I);},__bM:function(eM,eL){if(!eM){return false;};var eN=eM.constructor;while(eN){if(eN.classname===eL){return true;};eN=eN.superclass;};return false;}}});})();(function(){var a=": ",b="qx.type.BaseError",c="",d="error";qx.Class.define(b,{extend:Error,construct:function(e,f){var g=Error.call(this,f);if(g.stack){this.stack=g.stack;};if(g.stacktrace){this.stacktrace=g.stacktrace;};this.__bN=e||c;this.message=f||qx.type.BaseError.DEFAULTMESSAGE;},statics:{DEFAULTMESSAGE:d},members:{__bO:null,__bN:null,message:null,getComment:function(){return this.__bN;},toString:function(){return this.__bN+(this.message?a+this.message:c);}}});})();(function(){var a="qx.core.AssertionError";qx.Class.define(a,{extend:qx.type.BaseError,construct:function(b,c){qx.type.BaseError.call(this,b,c);this.__bP=qx.dev.StackTrace.getStackTrace();},members:{__bP:null,getStackTrace:function(){return this.__bP;}}});})();(function(){var a="anonymous",b="...",c="qx.dev.StackTrace",d="",e="\n",f="?",g="/source/class/",h="Error created at",j="ecmascript.error.stacktrace",k="Backtrace:",l="stack",m=":",n=".",o="function",p="prototype",q="stacktrace";qx.Bootstrap.define(c,{statics:{FILENAME_TO_CLASSNAME:null,FORMAT_STACKTRACE:null,getStackTrace:function(){var t=[];try{throw new Error();}catch(G){if(qx.dev.StackTrace.hasEnvironmentCheck&&qx.core.Environment.get(j)){var y=qx.dev.StackTrace.getStackTraceFromError(G);var B=qx.dev.StackTrace.getStackTraceFromCaller(arguments);qx.lang.Array.removeAt(y,0);t=B.length>y.length?B:y;for(var i=0;i<Math.min(B.length,y.length);i++ ){var w=B[i];if(w.indexOf(a)>=0){continue;};var s=null;var C=w.split(n);var v=/(.*?)\(/.exec(C[C.length-1]);if(v&&v.length==2){s=v[1];C.pop();};if(C[C.length-1]==p){C.pop();};var E=C.join(n);var u=y[i];var F=u.split(m);var A=F[0];var z=F[1];var r;if(F[2]){r=F[2];};var x=null;if(qx.Class.getByName(A)){x=A;}else {x=E;};var D=x;if(s){D+=n+s;};D+=m+z;if(r){D+=m+r;};t[i]=D;};}else {t=this.getStackTraceFromCaller(arguments);};};return t;},getStackTraceFromCaller:function(K){var J=[];var M=qx.lang.Function.getCaller(K);var H={};while(M){var L=qx.lang.Function.getName(M);J.push(L);try{M=M.caller;}catch(N){break;};if(!M){break;};var I=qx.core.ObjectRegistry.toHashCode(M);if(H[I]){J.push(b);break;};H[I]=M;};return J;},getStackTraceFromError:function(bd){var T=[];var R,S,ba,Q,P,bf,bb;var bc=qx.dev.StackTrace.hasEnvironmentCheck?qx.core.Environment.get(j):null;if(bc===l){if(!bd.stack){return T;};R=/@(.+):(\d+)$/gm;while((S=R.exec(bd.stack))!=null){bb=S[1];Q=S[2];ba=this.__bQ(bb);T.push(ba+m+Q);};if(T.length>0){return this.__bS(T);};R=/at (.*)/gm;var be=/\((.*?)(:[^\/].*)\)/;var Y=/(.*?)(:[^\/].*)/;while((S=R.exec(bd.stack))!=null){var X=be.exec(S[1]);if(!X){X=Y.exec(S[1]);};if(X){ba=this.__bQ(X[1]);T.push(ba+X[2]);}else {T.push(S[1]);};};}else if(bc===q){var U=bd.stacktrace;if(!U){return T;};if(U.indexOf(h)>=0){U=U.split(h)[0];};R=/line\ (\d+?),\ column\ (\d+?)\ in\ (?:.*?)\ in\ (.*?):[^\/]/gm;while((S=R.exec(U))!=null){Q=S[1];P=S[2];bb=S[3];ba=this.__bQ(bb);T.push(ba+m+Q+m+P);};if(T.length>0){return this.__bS(T);};R=/Line\ (\d+?)\ of\ linked\ script\ (.*?)$/gm;while((S=R.exec(U))!=null){Q=S[1];bb=S[2];ba=this.__bQ(bb);T.push(ba+m+Q);};}else if(bd.message&&bd.message.indexOf(k)>=0){var W=bd.message.split(k)[1].trim();var V=W.split(e);for(var i=0;i<V.length;i++ ){var O=V[i].match(/\s*Line ([0-9]+) of.* (\S.*)/);if(O&&O.length>=2){Q=O[1];bf=this.__bQ(O[2]);T.push(bf+m+Q);};};}else if(bd.sourceURL&&bd.line){T.push(this.__bQ(bd.sourceURL)+m+bd.line);};return this.__bS(T);},__bQ:function(bh){if(typeof qx.dev.StackTrace.FILENAME_TO_CLASSNAME==o){var bg=qx.dev.StackTrace.FILENAME_TO_CLASSNAME(bh);{};return bg;};return qx.dev.StackTrace.__bR(bh);},__bR:function(bk){var bl=g;var bi=bk.indexOf(bl);var bm=bk.indexOf(f);if(bm>=0){bk=bk.substring(0,bm);};var bj=(bi==-1)?bk:bk.substring(bi+bl.length).replace(/\//g,n).replace(/\.js$/,d);return bj;},__bS:function(bn){if(typeof qx.dev.StackTrace.FORMAT_STACKTRACE==o){bn=qx.dev.StackTrace.FORMAT_STACKTRACE(bn);{};};return bn;}},defer:function(bo){bo.hasEnvironmentCheck=qx.bom.client.EcmaScript&&qx.bom.client.EcmaScript.getStackTrace;}});})();(function(){var c="-",d="",e="qx.core.ObjectRegistry",f="Disposed ",g="$$hash",h="-0",j=" objects",k="Could not dispose object ",m=": ";qx.Bootstrap.define(e,{statics:{inShutDown:false,__k:{},__bT:0,__bU:[],__bV:d,__bW:{},register:function(n){var q=this.__k;if(!q){return;};var p=n.$$hash;if(p==null){var o=this.__bU;if(o.length>0&&true){p=o.pop();}else {p=(this.__bT++ )+this.__bV;};n.$$hash=p;{};};{};q[p]=n;},unregister:function(r){var s=r.$$hash;if(s==null){return;};var t=this.__k;if(t&&t[s]){delete t[s];this.__bU.push(s);};try{delete r.$$hash;}catch(u){if(r.removeAttribute){r.removeAttribute(g);};};},toHashCode:function(v){{};var x=v.$$hash;if(x!=null){return x;};var w=this.__bU;if(w.length>0){x=w.pop();}else {x=(this.__bT++ )+this.__bV;};return v.$$hash=x;},clearHashCode:function(y){{};var z=y.$$hash;if(z!=null){this.__bU.push(z);try{delete y.$$hash;}catch(A){if(y.removeAttribute){y.removeAttribute(g);};};};},fromHashCode:function(B){return this.__k[B]||null;},shutdown:function(){this.inShutDown=true;var D=this.__k;var F=[];for(var C in D){F.push(C);};F.sort(function(a,b){return parseInt(b,10)-parseInt(a,10);});var E,i=0,l=F.length;while(true){try{for(;i<l;i++ ){C=F[i];E=D[C];if(E&&E.dispose){E.dispose();};};}catch(G){qx.Bootstrap.error(this,k+E.toString()+m+G,G);if(i!==l){i++ ;continue;};};break;};qx.Bootstrap.debug(this,f+l+j);delete this.__k;},getRegistry:function(){return this.__k;},getNextHash:function(){return this.__bT;},getPostId:function(){return this.__bV;},getStackTraces:function(){return this.__bW;}},defer:function(H){if(window&&window.top){var frames=window.top.frames;for(var i=0;i<frames.length;i++ ){if(frames[i]===window){H.__bV=c+(i+1);return;};};};H.__bV=h;}});})();(function(){var b=': ',d='String',e='',f='Boolean',g='\\\\',h='object',l='\\f',m=']',o='\\t',p='function',q='{\n',r='[]',s="qx.lang.JsonImpl",t='Z',u=',',w='\\n',x='Object',y='{}',z='"',A='@',B='.',C='(',D='Array',E='T',F=':',G='\\r',H='{',I='JSON.parse',J=' ',K='\n',L='\\u',M=',\n',N='0000',O='null',P='string',Q="Cannot stringify a recursive object.",R='0',S='-',T='[',U='Number',V=')',W='[\n',X='\\"',Y='\\b',ba='}';qx.Bootstrap.define(s,{extend:Object,construct:function(){this.stringify=qx.lang.Function.bind(this.stringify,this);this.parse=qx.lang.Function.bind(this.parse,this);},members:{__bX:null,__bY:null,__ca:null,__cb:null,stringify:function(bc,bb,bd){this.__bX=e;this.__bY=e;this.__cb=[];if(qx.lang.Type.isNumber(bd)){var bd=Math.min(10,Math.floor(bd));for(var i=0;i<bd;i+=1){this.__bY+=J;};}else if(qx.lang.Type.isString(bd)){if(bd.length>10){bd=bd.slice(0,10);};this.__bY=bd;};if(bb&&(qx.lang.Type.isFunction(bb)||qx.lang.Type.isArray(bb))){this.__ca=bb;}else {this.__ca=null;};return this.__cc(e,{'':bc});},__cc:function(bi,bj){var bg=this.__bX,be,bh=bj[bi];if(bh&&qx.lang.Type.isFunction(bh.toJSON)){bh=bh.toJSON(bi);}else if(qx.lang.Type.isDate(bh)){bh=this.dateToJSON(bh);};if(typeof this.__ca===p){bh=this.__ca.call(bj,bi,bh);};if(bh===null){return O;};if(bh===undefined){return undefined;};switch(qx.lang.Type.getClass(bh)){case d:return this.__cd(bh);case U:return isFinite(bh)?String(bh):O;case f:return String(bh);case D:this.__bX+=this.__bY;be=[];if(this.__cb.indexOf(bh)!==-1){throw new TypeError(Q);};this.__cb.push(bh);var length=bh.length;for(var i=0;i<length;i+=1){be[i]=this.__cc(i,bh)||O;};this.__cb.pop();if(be.length===0){var bf=r;}else if(this.__bX){bf=W+this.__bX+be.join(M+this.__bX)+K+bg+m;}else {bf=T+be.join(u)+m;};this.__bX=bg;return bf;case x:this.__bX+=this.__bY;be=[];if(this.__cb.indexOf(bh)!==-1){throw new TypeError(Q);};this.__cb.push(bh);if(this.__ca&&typeof this.__ca===h){var length=this.__ca.length;for(var i=0;i<length;i+=1){var k=this.__ca[i];if(typeof k===P){var v=this.__cc(k,bh);if(v){be.push(this.__cd(k)+(this.__bX?b:F)+v);};};};}else {for(var k in bh){if(Object.hasOwnProperty.call(bh,k)){var v=this.__cc(k,bh);if(v){be.push(this.__cd(k)+(this.__bX?b:F)+v);};};};};this.__cb.pop();if(be.length===0){var bf=y;}else if(this.__bX){bf=q+this.__bX+be.join(M+this.__bX)+K+bg+ba;}else {bf=H+be.join(u)+ba;};this.__bX=bg;return bf;};},dateToJSON:function(bk){var bl=function(n){return n<10?R+n:n;};var bm=function(n){var bn=bl(n);return n<100?R+bn:bn;};return isFinite(bk.valueOf())?bk.getUTCFullYear()+S+bl(bk.getUTCMonth()+1)+S+bl(bk.getUTCDate())+E+bl(bk.getUTCHours())+F+bl(bk.getUTCMinutes())+F+bl(bk.getUTCSeconds())+B+bm(bk.getUTCMilliseconds())+t:null;},__cd:function(bp){var bo={'\b':Y,'\t':o,'\n':w,'\f':l,'\r':G,'"':X,'\\':g};var bq=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;bq.lastIndex=0;if(bq.test(bp)){return z+bp.replace(bq,function(a){var c=bo[a];return typeof c===P?c:L+(N+a.charCodeAt(0).toString(16)).slice(-4);})+z;}else {return z+bp+z;};},parse:function(text,reviver){var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g;cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return L+(N+a.charCodeAt(0).toString(16)).slice(-4);});};if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,A).replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,m).replace(/(?:^|:|,)(?:\s*\[)+/g,e))){var j=eval(C+text+V);return typeof reviver===p?this.__ce({'':j},e,reviver):j;};throw new SyntaxError(I);},__ce:function(bu,bt,bs){var br=bu[bt];if(br&&typeof br===h){for(var k in br){if(Object.hasOwnProperty.call(br,k)){var v=this.__ce(br,k,bs);if(v!==undefined){br[k]=v;}else {delete br[k];};};};};return bs.call(bu,bt,br);}}});})();(function(){var a="prop",b="qx.bom.client.Json",c="repl",d="JSON",e='{"x":1}',f="json",g="val";qx.Bootstrap.define(b,{statics:{getJson:function(){return (qx.Bootstrap.getClass(window.JSON)==d&&JSON.parse(e).x===1&&JSON.stringify({"prop":g},function(k,v){return k===a?c:v;}).indexOf(c)>0);}},defer:function(h){qx.core.Environment.add(f,h.getJson);}});})();(function(){var a="qx.lang.Json",b="json";qx.Bootstrap.define(a,{statics:{JSON:qx.core.Environment.get(b)?window.JSON:new qx.lang.JsonImpl(),stringify:null,parse:null},defer:function(c){c.stringify=c.JSON.stringify;c.parse=c.JSON.parse;}});})();(function(){var a="qx.event.type.Data",b="qx.event.type.Event",c="qx.data.IListData";qx.Interface.define(c,{events:{"change":a,"changeLength":b},members:{getItem:function(d){},setItem:function(e,f){},splice:function(g,h,i){},contains:function(j){},getLength:function(){},toArray:function(){}}});})();(function(){var a="qx.core.ValidationError";qx.Class.define(a,{extend:qx.type.BaseError});})();(function(){var a="qx.util.RingBuffer";qx.Class.define(a,{extend:Object,construct:function(b){this.setMaxEntries(b||50);},members:{__cf:0,__cg:0,__ch:false,__ci:0,__cj:null,__ck:null,setMaxEntries:function(c){this.__ck=c;this.clear();},getMaxEntries:function(){return this.__ck;},addEntry:function(d){this.__cj[this.__cf]=d;this.__cf=this.__cl(this.__cf,1);var e=this.getMaxEntries();if(this.__cg<e){this.__cg++ ;};if(this.__ch&&(this.__ci<e)){this.__ci++ ;};},mark:function(){this.__ch=true;this.__ci=0;},clearMark:function(){this.__ch=false;},getAllEntries:function(){return this.getEntries(this.getMaxEntries(),false);},getEntries:function(f,j){if(f>this.__cg){f=this.__cg;};if(j&&this.__ch&&(f>this.__ci)){f=this.__ci;};if(f>0){var h=this.__cl(this.__cf,-1);var g=this.__cl(h,-f+1);var i;if(g<=h){i=this.__cj.slice(g,h+1);}else {i=this.__cj.slice(g,this.__cg).concat(this.__cj.slice(0,h+1));};}else {i=[];};return i;},clear:function(){this.__cj=new Array(this.getMaxEntries());this.__cg=0;this.__ci=0;this.__cf=0;},__cl:function(n,l){var k=this.getMaxEntries();var m=(n+l)%k;if(m<0){m+=k;};return m;}}});})();(function(){var a="qx.log.appender.RingBuffer";qx.Class.define(a,{extend:qx.util.RingBuffer,construct:function(b){this.setMaxMessages(b||50);},members:{setMaxMessages:function(c){this.setMaxEntries(c);},getMaxMessages:function(){return this.getMaxEntries();},process:function(d){this.addEntry(d);},getAllLogEvents:function(){return this.getAllEntries();},retrieveLogEvents:function(e,f){return this.getEntries(e,f);},clearHistory:function(){this.clear();}}});})();(function(){var a="qx.log.Logger",b="[",c="...(+",d="array",e=")",f="info",g="node",h="instance",j="string",k="null",m="error",n="#",o="class",p=": ",q="warn",r="document",s="{...(",t="",u="number",v="stringify",w="]",x="date",y="unknown",z="function",A="text[",B="[...(",C="boolean",D="\n",E=")}",F="debug",G=")]",H="map",I="undefined",J="object";qx.Class.define(a,{statics:{__cm:F,setLevel:function(K){this.__cm=K;},getLevel:function(){return this.__cm;},setTreshold:function(L){this.__cp.setMaxMessages(L);},getTreshold:function(){return this.__cp.getMaxMessages();},__cn:{},__co:0,register:function(P){if(P.$$id){return;};var M=this.__co++ ;this.__cn[M]=P;P.$$id=M;var N=this.__cq;var O=this.__cp.getAllLogEvents();for(var i=0,l=O.length;i<l;i++ ){if(N[O[i].level]>=N[this.__cm]){P.process(O[i]);};};},unregister:function(Q){var R=Q.$$id;if(R==null){return;};delete this.__cn[R];delete Q.$$id;},debug:function(T,S){qx.log.Logger.__cr(F,arguments);},info:function(V,U){qx.log.Logger.__cr(f,arguments);},warn:function(X,W){qx.log.Logger.__cr(q,arguments);},error:function(ba,Y){qx.log.Logger.__cr(m,arguments);},trace:function(bb){var bc=qx.dev.StackTrace.getStackTrace();qx.log.Logger.__cr(f,[(typeof bb!==I?[bb].concat(bc):bc).join(D)]);},deprecatedMethodWarning:function(bf,bd){{var be;};},deprecatedClassWarning:function(bi,bg){{var bh;};},deprecatedEventWarning:function(bl,event,bj){{var bk;};},deprecatedMixinWarning:function(bn,bm){{var bo;};},deprecatedConstantWarning:function(bs,bq,bp){{var self,br;};},deprecateMethodOverriding:function(bv,bu,bw,bt){{var bx;};},clear:function(){this.__cp.clearHistory();},__cp:new qx.log.appender.RingBuffer(50),__cq:{debug:0,info:1,warn:2,error:3},__cr:function(bz,bB){var bE=this.__cq;if(bE[bz]<bE[this.__cm]){return;};var by=bB.length<2?null:bB[0];var bD=by?1:0;var bA=[];for(var i=bD,l=bB.length;i<l;i++ ){bA.push(this.__ct(bB[i],true));};var bF=new Date;var bG={time:bF,offset:bF-qx.Bootstrap.LOADSTART,level:bz,items:bA,win:window};if(by){if(by.$$hash!==undefined){bG.object=by.$$hash;}else if(by.$$type){bG.clazz=by;};};this.__cp.process(bG);var bC=this.__cn;for(var bH in bC){bC[bH].process(bG);};},__cs:function(bJ){if(bJ===undefined){return I;}else if(bJ===null){return k;};if(bJ.$$type){return o;};var bI=typeof bJ;if(bI===z||bI==j||bI===u||bI===C){return bI;}else if(bI===J){if(bJ.nodeType){return g;}else if(bJ instanceof Error||(bJ.name&&bJ.message)){return m;}else if(bJ.classname){return h;}else if(bJ instanceof Array){return d;}else if(bJ instanceof Date){return x;}else {return H;};};if(bJ.toString){return v;};return y;},__ct:function(bP,bO){var bS=this.__cs(bP);var bM=y;var bL=[];switch(bS){case k:case I:bM=bS;break;case j:case u:case C:case x:bM=bP;break;case g:if(bP.nodeType===9){bM=r;}else if(bP.nodeType===3){bM=A+bP.nodeValue+w;}else if(bP.nodeType===1){bM=bP.nodeName.toLowerCase();if(bP.id){bM+=n+bP.id;};}else {bM=g;};break;case z:bM=qx.lang.Function.getName(bP)||bS;break;case h:bM=bP.basename+b+bP.$$hash+w;break;case o:case v:bM=bP.toString();break;case m:bL=qx.dev.StackTrace.getStackTraceFromError(bP);bM=(bP.basename?bP.basename+p:t)+bP.toString();break;case d:if(bO){bM=[];for(var i=0,l=bP.length;i<l;i++ ){if(bM.length>20){bM.push(c+(l-i)+e);break;};bM.push(this.__ct(bP[i],false));};}else {bM=B+bP.length+G;};break;case H:if(bO){var bK;var bR=[];for(var bQ in bP){bR.push(bQ);};bR.sort();bM=[];for(var i=0,l=bR.length;i<l;i++ ){if(bM.length>20){bM.push(c+(l-i)+e);break;};bQ=bR[i];bK=this.__ct(bP[bQ],false);bK.key=bQ;bM.push(bK);};}else {var bN=0;for(var bQ in bP){bN++ ;};bM=s+bN+E;};break;};return {type:bS,text:bM,trace:bL};}},defer:function(bT){var bU=qx.Bootstrap.$$logs;for(var i=0;i<bU.length;i++ ){bT.__cr(bU[i][0],bU[i][1]);};qx.Bootstrap.debug=bT.debug;qx.Bootstrap.info=bT.info;qx.Bootstrap.warn=bT.warn;qx.Bootstrap.error=bT.error;qx.Bootstrap.trace=bT.trace;}});})();(function(){var a="qx.core.MProperty",b="get",c="reset",d="No such property: ",e="set";qx.Mixin.define(a,{members:{set:function(g,h){var f=qx.core.Property.$$method.set;if(qx.Bootstrap.isString(g)){if(!this[f[g]]){if(this[e+qx.Bootstrap.firstUp(g)]!=undefined){this[e+qx.Bootstrap.firstUp(g)](h);return this;};throw new Error(d+g);};return this[f[g]](h);}else {for(var i in g){if(!this[f[i]]){if(this[e+qx.Bootstrap.firstUp(i)]!=undefined){this[e+qx.Bootstrap.firstUp(i)](g[i]);continue;};throw new Error(d+i);};this[f[i]](g[i]);};return this;};},get:function(k){var j=qx.core.Property.$$method.get;if(!this[j[k]]){if(this[b+qx.Bootstrap.firstUp(k)]!=undefined){return this[b+qx.Bootstrap.firstUp(k)]();};throw new Error(d+k);};return this[j[k]]();},reset:function(m){var l=qx.core.Property.$$method.reset;if(!this[l[m]]){if(this[c+qx.Bootstrap.firstUp(m)]!=undefined){this[c+qx.Bootstrap.firstUp(m)]();return;};throw new Error(d+m);};this[l[m]]();}}});})();(function(){var a="info",b="debug",c="warn",d="qx.core.MLogging",e="error";qx.Mixin.define(d,{members:{__cu:qx.log.Logger,debug:function(f){this.__cv(b,arguments);},info:function(g){this.__cv(a,arguments);},warn:function(h){this.__cv(c,arguments);},error:function(i){this.__cv(e,arguments);},trace:function(){this.__cu.trace(this);},__cv:function(j,l){var k=qx.lang.Array.fromArguments(l);k.unshift(this);this.__cu[j].apply(this.__cu,k);}}});})();(function(){var b="qx.dom.Node",c="";qx.Bootstrap.define(b,{statics:{ELEMENT:1,ATTRIBUTE:2,TEXT:3,CDATA_SECTION:4,ENTITY_REFERENCE:5,ENTITY:6,PROCESSING_INSTRUCTION:7,COMMENT:8,DOCUMENT:9,DOCUMENT_TYPE:10,DOCUMENT_FRAGMENT:11,NOTATION:12,getDocument:function(d){return d.nodeType===this.DOCUMENT?d:d.ownerDocument||d.document;},getWindow:function(e){if(e.nodeType==null){return e;};if(e.nodeType!==this.DOCUMENT){e=e.ownerDocument;};return e.defaultView||e.parentWindow;},getDocumentElement:function(f){return this.getDocument(f).documentElement;},getBodyElement:function(g){return this.getDocument(g).body;},isNode:function(h){return !!(h&&h.nodeType!=null);},isElement:function(j){return !!(j&&j.nodeType===this.ELEMENT);},isDocument:function(k){return !!(k&&k.nodeType===this.DOCUMENT);},isText:function(l){return !!(l&&l.nodeType===this.TEXT);},isWindow:function(m){return !!(m&&m.history&&m.location&&m.document);},isNodeName:function(n,o){if(!o||!n||!n.nodeName){return false;};return o.toLowerCase()==qx.dom.Node.getName(n);},getName:function(p){if(!p||!p.nodeName){return null;};return p.nodeName.toLowerCase();},getText:function(q){if(!q||!q.nodeType){return null;};switch(q.nodeType){case 1:var i,a=[],r=q.childNodes,length=r.length;for(i=0;i<length;i++ ){a[i]=this.getText(r[i]);};return a.join(c);case 2:case 3:case 4:return q.nodeValue;};return null;},isBlockNode:function(s){if(!qx.dom.Node.isElement(s)){return false;};s=qx.dom.Node.getName(s);return /^(body|form|textarea|fieldset|ul|ol|dl|dt|dd|li|div|hr|p|h[1-6]|quote|pre|table|thead|tbody|tfoot|tr|td|th|iframe|address|blockquote)$/.test(s);}}});})();(function(){var a="HTMLEvents",b="engine.name",c="",d="qx.bom.Event",f="return;",g="function",h="mouseover",j="transitionend",k="gecko",m="css.transition",n="on",o="undefined",p="end-event";qx.Bootstrap.define(d,{statics:{addNativeListener:function(t,s,q,r){if(t.addEventListener){t.addEventListener(s,q,!!r);}else if(t.attachEvent){t.attachEvent(n+s,q);}else if(typeof t[n+s]!=o){t[n+s]=q;}else {{};};},removeNativeListener:function(x,w,u,v){if(x.removeEventListener){x.removeEventListener(w,u,!!v);}else if(x.detachEvent){try{x.detachEvent(n+w,u);}catch(e){if(e.number!==-2146828218){throw e;};};}else if(typeof x[n+w]!=o){x[n+w]=null;}else {{};};},getTarget:function(e){return e.target||e.srcElement;},getRelatedTarget:function(e){if(e.relatedTarget!==undefined){if((qx.core.Environment.get(b)==k)){try{e.relatedTarget&&e.relatedTarget.nodeType;}catch(y){return null;};};return e.relatedTarget;}else if(e.fromElement!==undefined&&e.type===h){return e.fromElement;}else if(e.toElement!==undefined){return e.toElement;}else {return null;};},preventDefault:function(e){if(e.preventDefault){e.preventDefault();}else {try{e.keyCode=0;}catch(z){};e.returnValue=false;};},stopPropagation:function(e){if(e.stopPropagation){e.stopPropagation();}else {e.cancelBubble=true;};},fire:function(C,A){if(document.createEvent){var B=document.createEvent(a);B.initEvent(A,true,true);return !C.dispatchEvent(B);}else {var B=document.createEventObject();return C.fireEvent(n+A,B);};},supportsEvent:function(H,G){if(H!=window&&G.toLowerCase().indexOf(j)!=-1){var F=qx.core.Environment.get(m);return (F&&F[p]==G);};var D=n+G.toLowerCase();var E=(D in H);if(!E){E=typeof H[D]==g;if(!E&&H.setAttribute){H.setAttribute(D,f);E=typeof H[D]==g;H.removeAttribute(D);};};return E;},getEventName:function(I,L){var J=[c].concat(qx.bom.Style.VENDOR_PREFIXES);for(var i=0,l=J.length;i<l;i++ ){var K=J[i].toLowerCase();if(qx.bom.Event.supportsEvent(I,K+L)){return K?K+qx.lang.String.firstUp(L):L;};};return null;}}});})();(function(){var a="-",b="qx.bom.Style",c="",d='-',e="Webkit",f="ms",g="Moz",h="O",j="string",k="Khtml";qx.Bootstrap.define(b,{statics:{VENDOR_PREFIXES:[e,g,h,f,k],__cw:{},getPropertyName:function(o){var m=document.documentElement.style;if(m[o]!==undefined){return o;};for(var i=0,l=this.VENDOR_PREFIXES.length;i<l;i++ ){var n=this.VENDOR_PREFIXES[i]+qx.lang.String.firstUp(o);if(m[n]!==undefined){return n;};};return null;},getCssName:function(p){var q=this.__cw[p];if(!q){q=p.replace(/[A-Z]/g,function(r){return (d+r.charAt(0).toLowerCase());});if((/^ms/.test(q))){q=a+q;};this.__cw[p]=q;};return q;},getAppliedStyle:function(w,u,v,t){var s=(t!==false)?[null].concat(this.VENDOR_PREFIXES):[null];for(var i=0,l=s.length;i<l;i++ ){var x=s[i]?a+s[i].toLowerCase()+a+v:v;try{w.style[u]=x;if(typeof w.style[u]==j&&w.style[u]!==c){return x;};}catch(y){};};return null;}}});})();(function(){var a="qx.bom.client.CssTransition",b="E",c="transitionEnd",d="e",e="nd",f="transition",g="css.transition",h="Trans";qx.Bootstrap.define(a,{statics:{getTransitionName:function(){return qx.bom.Style.getPropertyName(f);},getSupport:function(){var name=qx.bom.client.CssTransition.getTransitionName();if(!name){return null;};var i=qx.bom.Event.getEventName(window,c);i=i==c?i.toLowerCase():i;if(!i){i=name+(name.indexOf(h)>0?b:d)+e;};return {name:name,"end-event":i};}},defer:function(j){qx.core.Environment.add(g,j.getSupport);}});})();(function(){var a="UNKNOWN_",b="|bubble",c="",d="_",e="c",f="|",g="unload",h="|capture",j="DOM_",k="__cB",m="WIN_",n="QX_",o="qx.event.Manager",p="capture",q="__cC",r="DOCUMENT_";qx.Class.define(o,{extend:Object,construct:function(s,t){this.__cx=s;this.__cy=qx.core.ObjectRegistry.toHashCode(s);this.__cz=t;if(s.qx!==qx){var self=this;qx.bom.Event.addNativeListener(s,g,qx.event.GlobalError.observeMethod(function(){qx.bom.Event.removeNativeListener(s,g,arguments.callee);self.dispose();}));};this.__cA={};this.__cB={};this.__cC={};this.__cD={};},statics:{__cE:0,getNextUniqueId:function(){return (this.__cE++ )+c;}},members:{__cz:null,__cA:null,__cC:null,__cF:null,__cB:null,__cD:null,__cx:null,__cy:null,getWindow:function(){return this.__cx;},getWindowId:function(){return this.__cy;},getHandler:function(v){var u=this.__cB[v.classname];if(u){return u;};return this.__cB[v.classname]=new v(this);},getDispatcher:function(x){var w=this.__cC[x.classname];if(w){return w;};return this.__cC[x.classname]=new x(this,this.__cz);},getListeners:function(z,D,y){var B=z.$$hash||qx.core.ObjectRegistry.toHashCode(z);var E=this.__cA[B];if(!E){return null;};var C=D+(y?h:b);var A=E[C];return A?A.concat():null;},getAllListeners:function(){return this.__cA;},serializeListeners:function(G){var K=G.$$hash||qx.core.ObjectRegistry.toHashCode(G);var O=this.__cA[K];var J=[];if(O){var H,N,F,I,L;for(var M in O){H=M.indexOf(f);N=M.substring(0,H);F=M.charAt(H+1)==e;I=O[M];for(var i=0,l=I.length;i<l;i++ ){L=I[i];J.push({self:L.context,handler:L.handler,type:N,capture:F});};};};return J;},toggleAttachedEvents:function(R,Q){var U=R.$$hash||qx.core.ObjectRegistry.toHashCode(R);var X=this.__cA[U];if(X){var S,W,P,T;for(var V in X){S=V.indexOf(f);W=V.substring(0,S);P=V.charCodeAt(S+1)===99;T=X[V];if(Q){this.__cG(R,W,P);}else {this.__cH(R,W,P);};};};},hasListener:function(ba,be,Y){{};var bc=ba.$$hash||qx.core.ObjectRegistry.toHashCode(ba);var bf=this.__cA[bc];if(!bf){return false;};var bd=be+(Y?h:b);var bb=bf[bd];return !!(bb&&bb.length>0);},importListeners:function(bg,bi){{};var bm=bg.$$hash||qx.core.ObjectRegistry.toHashCode(bg);var bo=this.__cA[bm]={};var bk=qx.event.Manager;for(var bh in bi){var bl=bi[bh];var bn=bl.type+(bl.capture?h:b);var bj=bo[bn];if(!bj){bj=bo[bn]=[];this.__cG(bg,bl.type,bl.capture);};bj.push({handler:bl.listener,context:bl.self,unique:bl.unique||(bk.__cE++ )+c});};},addListener:function(br,by,bt,self,bp){{var bv;};var bq=br.$$hash||qx.core.ObjectRegistry.toHashCode(br);var bz=this.__cA[bq];if(!bz){bz=this.__cA[bq]={};};var bu=by+(bp?h:b);var bs=bz[bu];if(!bs){bs=bz[bu]=[];};if(bs.length===0){this.__cG(br,by,bp);};var bx=(qx.event.Manager.__cE++ )+c;var bw={handler:bt,context:self,unique:bx};bs.push(bw);return bu+f+bx;},findHandler:function(bE,bN){var bL=false,bD=false,bO=false,bA=false;var bK;if(bE.nodeType===1){bL=true;bK=j+bE.tagName.toLowerCase()+d+bN;}else if(bE.nodeType===9){bA=true;bK=r+bN;}else if(bE==this.__cx){bD=true;bK=m+bN;}else if(bE.classname){bO=true;bK=n+bE.classname+d+bN;}else {bK=a+bE+d+bN;};var bC=this.__cD;if(bC[bK]){return bC[bK];};var bJ=this.__cz.getHandlers();var bF=qx.event.IEventHandler;var bH,bI,bG,bB;for(var i=0,l=bJ.length;i<l;i++ ){bH=bJ[i];bG=bH.SUPPORTED_TYPES;if(bG&&!bG[bN]){continue;};bB=bH.TARGET_CHECK;if(bB){var bM=false;if(bL&&((bB&bF.TARGET_DOMNODE)!=0)){bM=true;}else if(bD&&((bB&bF.TARGET_WINDOW)!=0)){bM=true;}else if(bO&&((bB&bF.TARGET_OBJECT)!=0)){bM=true;}else if(bA&&((bB&bF.TARGET_DOCUMENT)!=0)){bM=true;};if(!bM){continue;};};bI=this.getHandler(bJ[i]);if(bH.IGNORE_CAN_HANDLE||bI.canHandleEvent(bE,bN)){bC[bK]=bI;return bI;};};return null;},__cG:function(bS,bR,bP){var bQ=this.findHandler(bS,bR);if(bQ){bQ.registerEvent(bS,bR,bP);return;};{};},removeListener:function(bV,cc,bX,self,bT){{var ca;};var bU=bV.$$hash||qx.core.ObjectRegistry.toHashCode(bV);var cd=this.__cA[bU];if(!cd){return false;};var bY=cc+(bT?h:b);var bW=cd[bY];if(!bW){return false;};var cb;for(var i=0,l=bW.length;i<l;i++ ){cb=bW[i];if(cb.handler===bX&&cb.context===self){qx.lang.Array.removeAt(bW,i);if(bW.length==0){this.__cH(bV,cc,bT);};return true;};};return false;},removeListenerById:function(cg,co){{var ck;};var ci=co.split(f);var cn=ci[0];var ce=ci[1].charCodeAt(0)==99;var cm=ci[2];var cf=cg.$$hash||qx.core.ObjectRegistry.toHashCode(cg);var cp=this.__cA[cf];if(!cp){return false;};var cj=cn+(ce?h:b);var ch=cp[cj];if(!ch){return false;};var cl;for(var i=0,l=ch.length;i<l;i++ ){cl=ch[i];if(cl.unique===cm){qx.lang.Array.removeAt(ch,i);if(ch.length==0){this.__cH(cg,cn,ce);};return true;};};return false;},removeAllListeners:function(cr){var ct=cr.$$hash||qx.core.ObjectRegistry.toHashCode(cr);var cw=this.__cA[ct];if(!cw){return false;};var cs,cv,cq;for(var cu in cw){if(cw[cu].length>0){cs=cu.split(f);cv=cs[0];cq=cs[1]===p;this.__cH(cr,cv,cq);};};delete this.__cA[ct];return true;},deleteAllListeners:function(cx){delete this.__cA[cx];},__cH:function(cB,cA,cy){var cz=this.findHandler(cB,cA);if(cz){cz.unregisterEvent(cB,cA,cy);return;};{};},dispatchEvent:function(cD,event){{var cH;};var cI=event.getType();if(!event.getBubbles()&&!this.hasListener(cD,cI)){qx.event.Pool.getInstance().poolObject(event);return true;};if(!event.getTarget()){event.setTarget(cD);};var cG=this.__cz.getDispatchers();var cF;var cC=false;for(var i=0,l=cG.length;i<l;i++ ){cF=this.getDispatcher(cG[i]);if(cF.canDispatchEvent(cD,event,cI)){cF.dispatchEvent(cD,event,cI);cC=true;break;};};if(!cC){{};return true;};var cE=event.getDefaultPrevented();qx.event.Pool.getInstance().poolObject(event);return !cE;},dispose:function(){this.__cz.removeManager(this);qx.util.DisposeUtil.disposeMap(this,k);qx.util.DisposeUtil.disposeMap(this,q);this.__cA=this.__cx=this.__cF=null;this.__cz=this.__cD=null;}}});})();(function(){var a="qx.event.IEventHandler";qx.Interface.define(a,{statics:{TARGET_DOMNODE:1,TARGET_WINDOW:2,TARGET_OBJECT:4,TARGET_DOCUMENT:8},members:{canHandleEvent:function(c,b){},registerEvent:function(f,e,d){},unregisterEvent:function(i,h,g){}}});})();(function(){var c="qx.event.Registration";qx.Class.define(c,{statics:{__cI:{},getManager:function(f){if(f==null){{};f=window;}else if(f.nodeType){f=qx.dom.Node.getWindow(f);}else if(!qx.dom.Node.isWindow(f)){f=window;};var e=f.$$hash||qx.core.ObjectRegistry.toHashCode(f);var d=this.__cI[e];if(!d){d=new qx.event.Manager(f,this);this.__cI[e]=d;};return d;},removeManager:function(g){var h=g.getWindowId();delete this.__cI[h];},addListener:function(l,k,i,self,j){return this.getManager(l).addListener(l,k,i,self,j);},removeListener:function(p,o,m,self,n){return this.getManager(p).removeListener(p,o,m,self,n);},removeListenerById:function(q,r){return this.getManager(q).removeListenerById(q,r);},removeAllListeners:function(s){return this.getManager(s).removeAllListeners(s);},deleteAllListeners:function(u){var t=u.$$hash;if(t){this.getManager(u).deleteAllListeners(t);};},hasListener:function(x,w,v){return this.getManager(x).hasListener(x,w,v);},serializeListeners:function(y){return this.getManager(y).serializeListeners(y);},createEvent:function(B,C,A){{};if(C==null){C=qx.event.type.Event;};var z=qx.event.Pool.getInstance().getObject(C);A?z.init.apply(z,A):z.init();if(B){z.setType(B);};return z;},dispatchEvent:function(D,event){return this.getManager(D).dispatchEvent(D,event);},fireEvent:function(E,F,H,G){{var I;};var J=this.createEvent(F,H||null,G);return this.getManager(E).dispatchEvent(E,J);},fireNonBubblingEvent:function(K,P,N,M){{};var O=this.getManager(K);if(!O.hasListener(K,P,false)){return true;};var L=this.createEvent(P,N||null,M);return O.dispatchEvent(K,L);},PRIORITY_FIRST:-32000,PRIORITY_NORMAL:0,PRIORITY_LAST:32000,__cB:[],addHandler:function(Q){{};this.__cB.push(Q);this.__cB.sort(function(a,b){return a.PRIORITY-b.PRIORITY;});},getHandlers:function(){return this.__cB;},__cC:[],addDispatcher:function(S,R){{};this.__cC.push(S);this.__cC.sort(function(a,b){return a.PRIORITY-b.PRIORITY;});},getDispatchers:function(){return this.__cC;}}});})();(function(){var a="qx.core.MEvent";qx.Mixin.define(a,{members:{__cJ:qx.event.Registration,addListener:function(d,b,self,c){if(!this.$$disposed){return this.__cJ.addListener(this,d,b,self,c);};return null;},addListenerOnce:function(h,f,self,g){var i=function(e){this.removeListener(h,f,this,g);f.call(self||this,e);};f.$$wrapped_callback=i;return this.addListener(h,i,this,g);},removeListener:function(l,j,self,k){if(!this.$$disposed){if(j.$$wrapped_callback){var m=j.$$wrapped_callback;delete j.$$wrapped_callback;j=m;};return this.__cJ.removeListener(this,l,j,self,k);};return false;},removeListenerById:function(n){if(!this.$$disposed){return this.__cJ.removeListenerById(this,n);};return false;},hasListener:function(p,o){return this.__cJ.hasListener(this,p,o);},dispatchEvent:function(q){if(!this.$$disposed){return this.__cJ.dispatchEvent(this,q);};return true;},fireEvent:function(s,t,r){if(!this.$$disposed){return this.__cJ.fireEvent(this,s,t,r);};return true;},fireNonBubblingEvent:function(v,w,u){if(!this.$$disposed){return this.__cJ.fireNonBubblingEvent(this,v,w,u);};return true;},fireDataEvent:function(z,A,x,y){if(!this.$$disposed){if(x===undefined){x=null;};return this.__cJ.fireNonBubblingEvent(this,z,qx.event.type.Data,[A,x,!!y]);};return true;}}});})();(function(){var a="module.events",b="Cloning only possible with properties.",c="qx.core.Object",d="module.property",e="]",f="[",g="Object";qx.Class.define(c,{extend:Object,include:qx.core.Environment.filter({"module.databinding":qx.data.MBinding,"module.logger":qx.core.MLogging,"module.events":qx.core.MEvent,"module.property":qx.core.MProperty}),construct:function(){qx.core.ObjectRegistry.register(this);},statics:{$$type:g},members:{__M:qx.core.Environment.get(d)?qx.core.Property:null,toHashCode:function(){return this.$$hash;},toString:function(){return this.classname+f+this.$$hash+e;},base:function(h,j){{};if(arguments.length===1){return h.callee.base.call(this);}else {return h.callee.base.apply(this,Array.prototype.slice.call(arguments,1));};},self:function(k){return k.callee.self;},clone:function(){if(!qx.core.Environment.get(d)){throw new Error(b);};var n=this.constructor;var m=new n;var p=qx.Class.getProperties(n);var o=this.__M.$$store.user;var q=this.__M.$$method.set;var name;for(var i=0,l=p.length;i<l;i++ ){name=p[i];if(this.hasOwnProperty(o[name])){m[q[name]](this[o[name]]);};};return m;},__cK:null,setUserData:function(r,s){if(!this.__cK){this.__cK={};};this.__cK[r]=s;},getUserData:function(u){if(!this.__cK){return null;};var t=this.__cK[u];return t===undefined?null:t;},isDisposed:function(){return this.$$disposed||false;},dispose:function(){if(this.$$disposed){return;};this.$$disposed=true;this.$$instance=null;this.$$allowconstruct=null;{};var x=this.constructor;var v;while(x.superclass){if(x.$$destructor){x.$$destructor.call(this);};if(x.$$includes){v=x.$$flatIncludes;for(var i=0,l=v.length;i<l;i++ ){if(v[i].$$destructor){v[i].$$destructor.call(this);};};};x=x.superclass;};{var y,w;};},_disposeObjects:function(z){qx.util.DisposeUtil.disposeObjects(this,arguments);},_disposeSingletonObjects:function(A){qx.util.DisposeUtil.disposeObjects(this,arguments,true);},_disposeArray:function(B){qx.util.DisposeUtil.disposeArray(this,B);},_disposeMap:function(C){qx.util.DisposeUtil.disposeMap(this,C);}},environment:{"qx.debug.dispose.level":0},destruct:function(){if(qx.core.Environment.get(a)){if(!qx.core.ObjectRegistry.inShutDown){qx.event.Registration.removeAllListeners(this);}else {qx.event.Registration.deleteAllListeners(this);};};qx.core.ObjectRegistry.unregister(this);this.__cK=null;if(qx.core.Environment.get(d)){var F=this.constructor;var J;var K=this.__M.$$store;var H=K.user;var I=K.theme;var D=K.inherit;var G=K.useinit;var E=K.init;while(F){J=F.$$properties;if(J){for(var name in J){if(J[name].dereference){this[H[name]]=this[I[name]]=this[D[name]]=this[G[name]]=this[E[name]]=undefined;};};};F=F.superclass;};};}});})();(function(){var a=" is a singleton! Please use disposeSingleton instead.",b="undefined",c="qx.util.DisposeUtil",d=" of object: ",e="!",f=" has non disposable entries: ",g="The map field: ",h="The array field: ",j="The object stored in key ",k="Has no disposable object under key: ";qx.Class.define(c,{statics:{disposeObjects:function(n,m,o){var name;for(var i=0,l=m.length;i<l;i++ ){name=m[i];if(n[name]==null||!n.hasOwnProperty(name)){continue;};if(!qx.core.ObjectRegistry.inShutDown){if(n[name].dispose){if(!o&&n[name].constructor.$$instance){throw new Error(j+name+a);}else {n[name].dispose();};}else {throw new Error(k+name+e);};};n[name]=null;};},disposeArray:function(q,p){var r=q[p];if(!r){return;};if(qx.core.ObjectRegistry.inShutDown){q[p]=null;return;};try{var s;for(var i=r.length-1;i>=0;i-- ){s=r[i];if(s){s.dispose();};};}catch(t){throw new Error(h+p+d+q+f+t);};r.length=0;q[p]=null;},disposeMap:function(v,u){var w=v[u];if(!w){return;};if(qx.core.ObjectRegistry.inShutDown){v[u]=null;return;};try{var y;for(var x in w){y=w[x];if(w.hasOwnProperty(x)&&y){y.dispose();};};}catch(z){throw new Error(g+u+d+v+f+z);};v[u]=null;},disposeTriggeredBy:function(A,C){var B=C.dispose;C.dispose=function(){B.call(C);A.dispose();};},destroyContainer:function(E){{};var D=[];this._collectContainerChildren(E,D);var F=D.length;for(var i=F-1;i>=0;i-- ){D[i].destroy();};E.destroy();},_collectContainerChildren:function(I,H){var J=I.getChildren();for(var i=0;i<J.length;i++ ){var G=J[i];H.push(G);if(this.__cL(G)){this._collectContainerChildren(G,H);};};},__cL:function(L){var K=[qx.ui.container.Composite,qx.ui.container.Scroll,qx.ui.container.SlideBar,qx.ui.container.Stack];for(var i=0,l=K.length;i<l;i++ ){if(typeof K[i]!==b&&qx.Class.isSubClassOf(L.constructor,K[i])){return true;};};return false;}}});})();(function(){var a="qx.event.handler.Object";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,statics:{PRIORITY:qx.event.Registration.PRIORITY_LAST,SUPPORTED_TYPES:null,TARGET_CHECK:qx.event.IEventHandler.TARGET_OBJECT,IGNORE_CAN_HANDLE:false},members:{canHandleEvent:function(c,b){return qx.Class.supportsEvent(c.constructor,b);},registerEvent:function(f,e,d){},unregisterEvent:function(i,h,g){}},defer:function(j){qx.event.Registration.addHandler(j);}});})();(function(){var a="qx.event.IEventDispatcher";qx.Interface.define(a,{members:{canDispatchEvent:function(c,event,b){this.assertInstance(event,qx.event.type.Event);this.assertString(b);},dispatchEvent:function(e,event,d){this.assertInstance(event,qx.event.type.Event);this.assertString(d);}}});})();(function(){var a="qx.event.type.Event";qx.Class.define(a,{extend:qx.core.Object,statics:{CAPTURING_PHASE:1,AT_TARGET:2,BUBBLING_PHASE:3},members:{init:function(c,b){{};this._type=null;this._target=null;this._currentTarget=null;this._relatedTarget=null;this._originalTarget=null;this._stopPropagation=false;this._preventDefault=false;this._bubbles=!!c;this._cancelable=!!b;this._timeStamp=(new Date()).getTime();this._eventPhase=null;return this;},clone:function(d){if(d){var e=d;}else {var e=qx.event.Pool.getInstance().getObject(this.constructor);};e._type=this._type;e._target=this._target;e._currentTarget=this._currentTarget;e._relatedTarget=this._relatedTarget;e._originalTarget=this._originalTarget;e._stopPropagation=this._stopPropagation;e._bubbles=this._bubbles;e._preventDefault=this._preventDefault;e._cancelable=this._cancelable;return e;},stop:function(){if(this._bubbles){this.stopPropagation();};if(this._cancelable){this.preventDefault();};},stopPropagation:function(){{};this._stopPropagation=true;},getPropagationStopped:function(){return !!this._stopPropagation;},preventDefault:function(){{};this._preventDefault=true;},getDefaultPrevented:function(){return !!this._preventDefault;},getType:function(){return this._type;},setType:function(f){this._type=f;},getEventPhase:function(){return this._eventPhase;},setEventPhase:function(g){this._eventPhase=g;},getTimeStamp:function(){return this._timeStamp;},getTarget:function(){return this._target;},setTarget:function(h){this._target=h;},getCurrentTarget:function(){return this._currentTarget||this._target;},setCurrentTarget:function(i){this._currentTarget=i;},getRelatedTarget:function(){return this._relatedTarget;},setRelatedTarget:function(j){this._relatedTarget=j;},getOriginalTarget:function(){return this._originalTarget;},setOriginalTarget:function(k){this._originalTarget=k;},getBubbles:function(){return this._bubbles;},setBubbles:function(l){this._bubbles=l;},isCancelable:function(){return this._cancelable;},setCancelable:function(m){this._cancelable=m;}},destruct:function(){this._target=this._currentTarget=this._relatedTarget=this._originalTarget=null;}});})();(function(){var a="qx.util.ObjectPool",b="Class needs to be defined!",c="Object is already pooled: ",d="Integer";qx.Class.define(a,{extend:qx.core.Object,construct:function(e){qx.core.Object.call(this);this.__cM={};if(e!=null){this.setSize(e);};},properties:{size:{check:d,init:Infinity}},members:{__cM:null,getObject:function(h){if(this.$$disposed){return new h;};if(!h){throw new Error(b);};var f=null;var g=this.__cM[h.classname];if(g){f=g.pop();};if(f){f.$$pooled=false;}else {f=new h;};return f;},poolObject:function(k){if(!this.__cM){return;};var j=k.classname;var m=this.__cM[j];if(k.$$pooled){throw new Error(c+k);};if(!m){this.__cM[j]=m=[];};if(m.length>this.getSize()){if(k.destroy){k.destroy();}else {k.dispose();};return;};k.$$pooled=true;m.push(k);}},destruct:function(){var p=this.__cM;var n,o,i,l;for(n in p){o=p[n];for(i=0,l=o.length;i<l;i++ ){o[i].dispose();};};delete this.__cM;}});})();(function(){var a="singleton",b="qx.event.Pool";qx.Class.define(b,{extend:qx.util.ObjectPool,type:a,construct:function(){qx.util.ObjectPool.call(this,30);}});})();(function(){var a="qx.event.dispatch.Direct";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventDispatcher,construct:function(b){this._manager=b;},statics:{PRIORITY:qx.event.Registration.PRIORITY_LAST},members:{canDispatchEvent:function(d,event,c){return !event.getBubbles();},dispatchEvent:function(e,event,k){{var j,f;};event.setEventPhase(qx.event.type.Event.AT_TARGET);var g=this._manager.getListeners(e,k,false);if(g){for(var i=0,l=g.length;i<l;i++ ){var h=g[i].context||e;{};g[i].handler.call(h,event);};};}},defer:function(m){qx.event.Registration.addDispatcher(m);}});})();(function(){var a="qx.event.type.Data";qx.Class.define(a,{extend:qx.event.type.Event,members:{__cN:null,__cO:null,init:function(c,d,b){qx.event.type.Event.prototype.init.call(this,false,b);this.__cN=c;this.__cO=d;return this;},clone:function(e){var f=qx.event.type.Event.prototype.clone.call(this,e);f.__cN=this.__cN;f.__cO=this.__cO;return f;},getData:function(){return this.__cN;},getOldData:function(){return this.__cO;}},destruct:function(){this.__cN=this.__cO=null;}});})();(function(){var a="mshtml",b="engine.name",c="pop.push.reverse.shift.sort.splice.unshift.join.slice",d="number",e="qx.type.BaseArray",f=".";qx.Bootstrap.define(e,{extend:Array,construct:function(g){},members:{toArray:null,valueOf:null,pop:null,push:null,reverse:null,shift:null,sort:null,splice:null,unshift:null,concat:null,join:null,slice:null,toString:null,indexOf:null,lastIndexOf:null,forEach:null,filter:null,map:null,some:null,every:null}});(function(){function h(p){if((qx.core.Environment.get(b)==a)){j.prototype={length:0,$$isArray:true};var n=c.split(f);for(var length=n.length;length;){j.prototype[n[ --length]]=Array.prototype[n[length]];};};var m=Array.prototype.slice;j.prototype.concat=function(){var r=this.slice(0);for(var i=0,length=arguments.length;i<length;i++ ){var q;if(arguments[i] instanceof j){q=m.call(arguments[i],0);}else if(arguments[i] instanceof Array){q=arguments[i];}else {q=[arguments[i]];};r.push.apply(r,q);};return r;};j.prototype.toString=function(){return m.call(this,0).toString();};j.prototype.toLocaleString=function(){return m.call(this,0).toLocaleString();};j.prototype.constructor=j;j.prototype.indexOf=Array.prototype.indexOf;j.prototype.lastIndexOf=Array.prototype.lastIndexOf;j.prototype.forEach=Array.prototype.forEach;j.prototype.some=Array.prototype.some;j.prototype.every=Array.prototype.every;var o=Array.prototype.filter;var l=Array.prototype.map;j.prototype.filter=function(){var s=new this.constructor;s.push.apply(s,o.apply(this,arguments));return s;};j.prototype.map=function(){var t=new this.constructor;t.push.apply(t,l.apply(this,arguments));return t;};j.prototype.slice=function(){var u=new this.constructor;u.push.apply(u,Array.prototype.slice.apply(this,arguments));return u;};j.prototype.splice=function(){var v=new this.constructor;v.push.apply(v,Array.prototype.splice.apply(this,arguments));return v;};j.prototype.toArray=function(){return Array.prototype.slice.call(this,0);};j.prototype.valueOf=function(){return this.length;};return j;};function j(length){if(arguments.length===1&&typeof length===d){this.length=-1<length&&length===length>>.5?length:this.push(length);}else if(arguments.length){this.push.apply(this,arguments);};};function k(){};k.prototype=[];j.prototype=new k;j.prototype.length=0;qx.type.BaseArray=h(j);})();})();(function(){var a="qxWeb";qx.Bootstrap.define(a,{extend:qx.type.BaseArray,statics:{__cP:[],$$qx:qx,$init:function(e){var d=[];for(var i=0;i<e.length;i++ ){var c=!!(e[i]&&(e[i].nodeType===1||e[i].nodeType===9));if(c){d.push(e[i]);continue;};var b=!!(e[i]&&e[i].history&&e[i].location&&e[i].document);if(b){d.push(e[i]);};};var f=qx.lang.Array.cast(d,qxWeb);for(var i=0;i<qxWeb.__cP.length;i++ ){qxWeb.__cP[i].call(f);};return f;},$attach:function(g){for(var name in g){{};qxWeb.prototype[name]=g[name];};},$attachStatic:function(h){for(var name in h){{};qxWeb[name]=h[name];};},$attachInit:function(j){this.__cP.push(j);},define:function(name,k){if(k==undefined){k=name;name=null;};return qx.Bootstrap.define.call(qx.Bootstrap,name,k);}},construct:function(n,m){if(!n&&this instanceof qxWeb){return this;};if(qx.Bootstrap.isString(n)){if(m instanceof qxWeb){m=m[0];};n=qx.bom.Selector.query(n,m);}else if(!(qx.Bootstrap.isArray(n))){n=[n];};return qxWeb.$init(n);},members:{filter:function(o){if(qx.lang.Type.isFunction(o)){return qxWeb.$init(Array.prototype.filter.call(this,o));};return qxWeb.$init(qx.bom.Selector.matches(o,this));},slice:function(p,r){if(r!==undefined){return qxWeb.$init(Array.prototype.slice.call(this,p,r));};return qxWeb.$init(Array.prototype.slice.call(this,p));},splice:function(s,t,u){return qxWeb.$init(Array.prototype.splice.apply(this,arguments));},map:function(v,w){return qxWeb.$init(Array.prototype.map.apply(this,arguments));},concat:function(y){var x=Array.prototype.slice.call(this,0);for(var i=0;i<arguments.length;i++ ){if(arguments[i] instanceof qxWeb){x=x.concat(Array.prototype.slice.call(arguments[i],0));}else {x.push(arguments[i]);};};return qxWeb.$init(x);},_forEachElement:function(A,z){for(var i=0,l=this.length;i<l;i++ ){if(this[i]&&this[i].nodeType===1){A.apply(z||this,[this[i],i,this]);};};}},defer:function(B){if(window.q==undefined){q=B;};}});})();(function(){var c="-",d="*(?:checked|disabled|ismap|multiple|readonly|selected|value)",f="(^|",g="'] ",h=":active",k=":disabled",l="div",n=")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:",o="[selected]",p="'></div>",q="[test!='']:sizzle",r="nth",s="*(?:",t="*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(",u="<a name='",v="option",w="image",x="*([\\x20\\t\\r\\n\\f>+~])",y="~=",z="previousSibling",A="*(even|odd|(([+-]|)(\\d*)n|)",B="only",C="*",D="+|((?:^|[^\\\\])(?:\\\\.)*)",E="i",F="='$1']",G="@",H="w#",I="^=",J="*\\)|)",K="+$",L="=",M=":focus",N="id",O="first",P="'></a><div name='",Q="$=",R="reset",S="string",T="[\\x20\\t\\r\\n\\f]",U="*(?:([+-]|)",V="*((?:-\\d)?\\d*)",W="#",X="input",Y="type",cH="parentNode",cI="(",cJ="w",cD="password",cE="even",cF="TAG",cG="*[>+~]|",cN="*\\]",cO="*(?:\"\"|'')",cT="*\\)|)(?=[^-]|$)",cP="unsupported pseudo: ",cK="w*",cL=" ",cM="*,",dx="text",ef="^",cU=")",cQ=":(",cR="[test^='']",ec="radio",cS="sizcache",cV="button",cW="0",cX="^(",dd="<input type='hidden'/>",de="odd",df="class",cY="*(\\d+)|))",da="<p test=''></p>",db="|=",dc="\\[",dk="<div class='hidden e'></div><div class='hidden'></div>",dl="g",dm="submit",dn="!=",dg="<select><option selected=''></option></select>",dh="e",di="checkbox",dj="*=",ds="|",dt=".",ee="<select></select>",du="object",dp="$1",dq="file",ed="eq",dr="qx.bom.Selector",dv="CHILD",dw="|$)",dI=",",dH=":(even|odd|eq|gt|lt|nth|first|last)(?:\\(",dG=")['\"]?\\]",dM="<a href='#'></a>",dL="empty",dK=":enabled",dJ="[id='",dB="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",dA="^#(",dz="[*^$]=",dy="^:(only|nth|first|last)-child(?:\\(",dF="*(",dE="^\\.(",dD="",dC="href",dT="multiple",dS=")|[^:]|\\\\.)*|.*))\\)|)",dR=")|)|)",dQ="POS",dX="boolean",dW="Syntax error, unrecognized expression: ",dV="([*^$|!~]?=)",dU="^\\[name=['\"]?(",dP="\\$&",dO=":checked",dN="undefined",eb="ID",ea="last",dY="HTML";qx.Bootstrap.define(dr,{statics:{query:null,matches:null}});(function(window,undefined){var ep,fg,eR,em,er,eA,fm,eF,es,eg,eK=true,eE=dN,fc=(cS+Math.random()).replace(dt,dD),eW=String,document=window.document,fv=document.documentElement,eJ=0,fs=0,eP=[].pop,fr=[].push,ev=[].slice,eQ=[].indexOf||function(fw){var i=0,fx=this.length;for(;i<fx;i++ ){if(this[i]===fw){return i;};};return -1;},fi=function(fy,fz){fy[fc]=fz==null||fz;return fy;},eo=function(){var fB={},fA=[];return fi(function(fC,fD){if(fA.push(fC)>eR.cacheLength){delete fB[fA.shift()];};return (fB[fC]=fD);},fB);},fj=eo(),fb=eo(),ft=eo(),ex=T,eT=dB,eN=eT.replace(cJ,H),ez=dV,eM=dc+ex+dF+eT+cU+ex+s+ez+ex+t+eN+dR+ex+cN,eS=cQ+eT+n+eM+dS,el=dH+ex+V+ex+cT,ek=new RegExp(ef+ex+D+ex+K,dl),fh=new RegExp(ef+ex+cM+ex+C),ey=new RegExp(ef+ex+x+ex+C),fd=new RegExp(eS),fp=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,ff=/^:not/,eO=/[\x20\t\r\n\f]*[+~]/,eu=/:not\($/,ej=/h\d/i,eY=/input|select|textarea|button/i,eq=/\\(?!\\)/g,fl={"ID":new RegExp(dA+eT+cU),"CLASS":new RegExp(dE+eT+cU),"NAME":new RegExp(dU+eT+dG),"TAG":new RegExp(cX+eT.replace(cJ,cK)+cU),"ATTR":new RegExp(ef+eM),"PSEUDO":new RegExp(ef+eS),"POS":new RegExp(el,E),"CHILD":new RegExp(dy+ex+A+ex+U+ex+cY+ex+J,E),"needsContext":new RegExp(ef+ex+cG+el,E)},eV=function(fF){var fE=document.createElement(l);try{return fF(fE);}catch(e){return false;}finally{fE=null;};},en=eV(function(fG){fG.appendChild(document.createComment(dD));return !fG.getElementsByTagName(C).length;}),eI=eV(function(fH){fH.innerHTML=dM;return fH.firstChild&&typeof fH.firstChild.getAttribute!==eE&&fH.firstChild.getAttribute(dC)===W;}),fk=eV(function(fI){fI.innerHTML=ee;var fJ=typeof fI.lastChild.getAttribute(dT);return fJ!==dX&&fJ!==S;}),fq=eV(function(fK){fK.innerHTML=dk;if(!fK.getElementsByClassName||!fK.getElementsByClassName(dh).length){return false;};fK.lastChild.className=dh;return fK.getElementsByClassName(dh).length===2;}),eh=eV(function(fL){fL.id=fc+0;fL.innerHTML=u+fc+P+fc+p;fv.insertBefore(fL,fv.firstChild);var fM=document.getElementsByName&&document.getElementsByName(fc).length===2+document.getElementsByName(fc+0).length;fg=!document.getElementById(fc);fv.removeChild(fL);return fM;});try{ev.call(fv.childNodes,0)[0].nodeType;}catch(e){ev=function(i){var fN,fO=[];for(;(fN=this[i]);i++ ){fO.push(fN);};return fO;};};function eX(fV,fU,fS,fT){fS=fS||[];fU=fU||document;var fW,fR,fP,m,fQ=fU.nodeType;if(!fV||typeof fV!==S){return fS;};if(fQ!==1&&fQ!==9){return [];};fP=er(fU);if(!fP&&!fT){if((fW=fp.exec(fV))){if((m=fW[1])){if(fQ===9){fR=fU.getElementById(m);if(fR&&fR.parentNode){if(fR.id===m){fS.push(fR);return fS;};}else {return fS;};}else {if(fU.ownerDocument&&(fR=fU.ownerDocument.getElementById(m))&&eA(fU,fR)&&fR.id===m){fS.push(fR);return fS;};};}else if(fW[2]){fr.apply(fS,ev.call(fU.getElementsByTagName(fV),0));return fS;}else if((m=fW[3])&&fq&&fU.getElementsByClassName){fr.apply(fS,ev.call(fU.getElementsByClassName(m),0));return fS;};};};return et(fV.replace(ek,dp),fU,fS,fT,fP);};eX.matches=function(fX,fY){return eX(fX,null,null,fY);};eX.matchesSelector=function(gb,ga){return eX(ga,null,null,[gb]).length>0;};function fo(gc){return function(gd){var name=gd.nodeName.toLowerCase();return name===X&&gd.type===gc;};};function ei(ge){return function(gf){var name=gf.nodeName.toLowerCase();return (name===X||name===cV)&&gf.type===ge;};};function eU(gg){return fi(function(gh){gh=+gh;return fi(function(gk,gi){var j,gj=gg([],gk.length,gh),i=gj.length;while(i-- ){if(gk[(j=gj[i])]){gk[j]=!(gi[j]=gk[j]);};};});});};em=eX.getText=function(gn){var gl,go=dD,i=0,gm=gn.nodeType;if(gm){if(gm===1||gm===9||gm===11){if(typeof gn.textContent===S){return gn.textContent;}else {for(gn=gn.firstChild;gn;gn=gn.nextSibling){go+=em(gn);};};}else if(gm===3||gm===4){return gn.nodeValue;};}else {for(;(gl=gn[i]);i++ ){go+=em(gl);};};return go;};er=eX.isXML=function(gp){var gq=gp&&(gp.ownerDocument||gp).documentElement;return gq?gq.nodeName!==dY:false;};eA=eX.contains=fv.contains?function(a,b){var gr=a.nodeType===9?a.documentElement:a,gs=b&&b.parentNode;return a===gs||!!(gs&&gs.nodeType===1&&gr.contains&&gr.contains(gs));}:fv.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16);}:function(a,b){while((b=b.parentNode)){if(b===a){return true;};};return false;};eX.attr=function(gu,name){var gv,gt=er(gu);if(!gt){name=name.toLowerCase();};if((gv=eR.attrHandle[name])){return gv(gu);};if(gt||fk){return gu.getAttribute(name);};gv=gu.getAttributeNode(name);return gv?typeof gu[name]===dX?gu[name]?name:null:gv.specified?gv.value:null:null;};eR=eX.selectors={cacheLength:50,createPseudo:fi,match:fl,attrHandle:eI?{}:{"href":function(gw){return gw.getAttribute(dC,2);},"type":function(gx){return gx.getAttribute(Y);}},find:{"ID":fg?function(gz,gA,gy){if(typeof gA.getElementById!==eE&&!gy){var m=gA.getElementById(gz);return m&&m.parentNode?[m]:[];};}:function(gC,gD,gB){if(typeof gD.getElementById!==eE&&!gB){var m=gD.getElementById(gC);return m?m.id===gC||typeof m.getAttributeNode!==eE&&m.getAttributeNode(N).value===gC?[m]:undefined:[];};},"TAG":en?function(gE,gF){if(typeof gF.getElementsByTagName!==eE){return gF.getElementsByTagName(gE);};}:function(gJ,gK){var gH=gK.getElementsByTagName(gJ);if(gJ===C){var gI,gG=[],i=0;for(;(gI=gH[i]);i++ ){if(gI.nodeType===1){gG.push(gI);};};return gG;};return gH;},"NAME":eh&&function(gL,gM){if(typeof gM.getElementsByName!==eE){return gM.getElementsByName(name);};},"CLASS":fq&&function(gN,gP,gO){if(typeof gP.getElementsByClassName!==eE&&!gO){return gP.getElementsByClassName(gN);};}},relative:{">":{dir:cH,first:true}," ":{dir:cH},"+":{dir:z,first:true},"~":{dir:z}},preFilter:{"ATTR":function(gQ){gQ[1]=gQ[1].replace(eq,dD);gQ[3]=(gQ[4]||gQ[5]||dD).replace(eq,dD);if(gQ[2]===y){gQ[3]=cL+gQ[3]+cL;};return gQ.slice(0,4);},"CHILD":function(gR){gR[1]=gR[1].toLowerCase();if(gR[1]===r){if(!gR[2]){eX.error(gR[0]);};gR[3]=+(gR[3]?gR[4]+(gR[5]||1):2*(gR[2]===cE||gR[2]===de));gR[4]=+((gR[6]+gR[7])||gR[2]===de);}else if(gR[2]){eX.error(gR[0]);};return gR;},"PSEUDO":function(gT){var gS,gU;if(fl[dv].test(gT[0])){return null;};if(gT[3]){gT[2]=gT[3];}else if((gS=gT[4])){if(fd.test(gS)&&(gU=eH(gS,true))&&(gU=gS.indexOf(cU,gS.length-gU)-gS.length)){gS=gS.slice(0,gU);gT[0]=gT[0].slice(0,gU);};gT[2]=gS;};return gT.slice(0,3);}},filter:{"ID":fg?function(gV){gV=gV.replace(eq,dD);return function(gW){return gW.getAttribute(N)===gV;};}:function(gX){gX=gX.replace(eq,dD);return function(ha){var gY=typeof ha.getAttributeNode!==eE&&ha.getAttributeNode(N);return gY&&gY.value===gX;};},"TAG":function(hb){if(hb===C){return function(){return true;};};hb=hb.replace(eq,dD).toLowerCase();return function(hc){return hc.nodeName&&hc.nodeName.toLowerCase()===hb;};},"CLASS":function(hd){var he=fj[fc][hd];if(!he){he=fj(hd,new RegExp(f+ex+cU+hd+cI+ex+dw));};return function(hf){return he.test(hf.className||(typeof hf.getAttribute!==eE&&hf.getAttribute(df))||dD);};},"ATTR":function(name,hg,hh){return function(hi,hj){var hk=eX.attr(hi,name);if(hk==null){return hg===dn;};if(!hg){return true;};hk+=dD;return hg===L?hk===hh:hg===dn?hk!==hh:hg===I?hh&&hk.indexOf(hh)===0:hg===dj?hh&&hk.indexOf(hh)>-1:hg===Q?hh&&hk.substr(hk.length-hh.length)===hh:hg===y?(cL+hk+cL).indexOf(hh)>-1:hg===db?hk===hh||hk.substr(0,hh.length+1)===hh+c:false;};},"CHILD":function(hl,hn,ho,hm){if(hl===r){return function(hr){var hp,hq,parent=hr.parentNode;if(ho===1&&hm===0){return true;};if(parent){hq=0;for(hp=parent.firstChild;hp;hp=hp.nextSibling){if(hp.nodeType===1){hq++ ;if(hr===hp){break;};};};};hq-=hm;return hq===ho||(hq%ho===0&&hq/ho>=0);};};return function(ht){var hs=ht;switch(hl){case B:case O:while((hs=hs.previousSibling)){if(hs.nodeType===1){return false;};};if(hl===O){return true;};hs=ht;case ea:while((hs=hs.nextSibling)){if(hs.nodeType===1){return false;};};return true;};};},"PSEUDO":function(hv,hw){var hu,hx=eR.pseudos[hv]||eR.setFilters[hv.toLowerCase()]||eX.error(cP+hv);if(hx[fc]){return hx(hw);};if(hx.length>1){hu=[hv,hv,dD,hw];return eR.setFilters.hasOwnProperty(hv.toLowerCase())?fi(function(hz,hy){var hA,hB=hx(hz,hw),i=hB.length;while(i-- ){hA=eQ.call(hz,hB[i]);hz[hA]=!(hy[hA]=hB[i]);};}):function(hC){return hx(hC,0,hu);};};return hx;}},pseudos:{"not":fi(function(hE){var hD=[],hF=[],hG=fm(hE.replace(ek,dp));return hG[fc]?fi(function(hL,hI,hM,hH){var hJ,hK=hG(hL,null,hH,[]),i=hL.length;while(i-- ){if((hJ=hK[i])){hL[i]=!(hI[i]=hJ);};};}):function(hO,hP,hN){hD[0]=hO;hG(hD,null,hN,hF);return !hF.pop();};}),"has":fi(function(hQ){return function(hR){return eX(hQ,hR).length>0;};}),"contains":fi(function(hS){return function(hT){return (hT.textContent||hT.innerText||em(hT)).indexOf(hS)>-1;};}),"enabled":function(hU){return hU.disabled===false;},"disabled":function(hV){return hV.disabled===true;},"checked":function(hW){var hX=hW.nodeName.toLowerCase();return (hX===X&&!!hW.checked)||(hX===v&&!!hW.selected);},"selected":function(hY){if(hY.parentNode){hY.parentNode.selectedIndex;};return hY.selected===true;},"parent":function(ia){return !eR.pseudos[dL](ia);},"empty":function(ic){var ib;ic=ic.firstChild;while(ic){if(ic.nodeName>G||(ib=ic.nodeType)===3||ib===4){return false;};ic=ic.nextSibling;};return true;},"header":function(ie){return ej.test(ie.nodeName);},"text":function(ih){var ig,ii;return ih.nodeName.toLowerCase()===X&&(ig=ih.type)===dx&&((ii=ih.getAttribute(Y))==null||ii.toLowerCase()===ig);},"radio":fo(ec),"checkbox":fo(di),"file":fo(dq),"password":fo(cD),"image":fo(w),"submit":ei(dm),"reset":ei(R),"button":function(ij){var name=ij.nodeName.toLowerCase();return name===X&&ij.type===cV||name===cV;},"input":function(ik){return eY.test(ik.nodeName);},"focus":function(im){var il=im.ownerDocument;return im===il.activeElement&&(!il.hasFocus||il.hasFocus())&&!!(im.type||im.href);},"active":function(io){return io===io.ownerDocument.activeElement;},"first":eU(function(ip,length,iq){return [0];}),"last":eU(function(ir,length,is){return [length-1];}),"eq":eU(function(it,length,iu){return [iu<0?iu+length:iu];}),"even":eU(function(iv,length,iw){for(var i=0;i<length;i+=2){iv.push(i);};return iv;}),"odd":eU(function(ix,length,iy){for(var i=1;i<length;i+=2){ix.push(i);};return ix;}),"lt":eU(function(iz,length,iA){for(var i=iA<0?iA+length:iA; --i>=0;){iz.push(i);};return iz;}),"gt":eU(function(iB,length,iC){for(var i=iC<0?iC+length:iC; ++i<length;){iB.push(i);};return iB;})}};function eL(a,b,iE){if(a===b){return iE;};var iD=a.nextSibling;while(iD){if(iD===b){return -1;};iD=iD.nextSibling;};return 1;};eF=fv.compareDocumentPosition?function(a,b){if(a===b){es=true;return 0;};return (!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1;}:function(a,b){if(a===b){es=true;return 0;}else if(a.sourceIndex&&b.sourceIndex){return a.sourceIndex-b.sourceIndex;};var iJ,iH,iG=[],iL=[],iK=a.parentNode,iI=b.parentNode,iF=iK;if(iK===iI){return eL(a,b);}else if(!iK){return -1;}else if(!iI){return 1;};while(iF){iG.unshift(iF);iF=iF.parentNode;};iF=iI;while(iF){iL.unshift(iF);iF=iF.parentNode;};iJ=iG.length;iH=iL.length;for(var i=0;i<iJ&&i<iH;i++ ){if(iG[i]!==iL[i]){return eL(iG[i],iL[i]);};};return i===iJ?eL(a,iL[i],-1):eL(iG[i],b,1);};[0,0].sort(eF);eK=!es;eX.uniqueSort=function(iM){var iN,i=1;es=eK;iM.sort(eF);if(es){for(;(iN=iM[i]);i++ ){if(iN===iM[i-1]){iM.splice(i-- ,1);};};};return iM;};eX.error=function(iO){throw new Error(dW+iO);};function eH(iS,iR){var iY,iX,iP,iW,iT,iV,iU,iQ=fb[fc][iS];if(iQ){return iR?0:iQ.slice(0);};iT=iS;iV=[];iU=eR.preFilter;while(iT){if(!iY||(iX=fh.exec(iT))){if(iX){iT=iT.slice(iX[0].length);};iV.push(iP=[]);};iY=false;if((iX=ey.exec(iT))){iP.push(iY=new eW(iX.shift()));iT=iT.slice(iY.length);iY.type=iX[0].replace(ek,cL);};for(iW in eR.filter){if((iX=fl[iW].exec(iT))&&(!iU[iW]||(iX=iU[iW](iX,document,true)))){iP.push(iY=new eW(iX.shift()));iT=iT.slice(iY.length);iY.type=iW;iY.matches=iX;};};if(!iY){break;};};return iR?iT.length:iT?eX.error(iS):fb(iS,iV).slice(0);};function eC(ja,jb,jc){var jd=jb.dir,jf=jc&&jb.dir===cH,je=fs++ ;return jb.first?function(jh,ji,jg){while((jh=jh[jd])){if(jf||jh.nodeType===1){return ja(jh,ji,jg);};};}:function(jn,jo,jj){if(!jj){var jl,jm=eJ+cL+je+cL,jk=jm+ep;while((jn=jn[jd])){if(jf||jn.nodeType===1){if((jl=jn[fc])===jk){return jn.sizset;}else if(typeof jl===S&&jl.indexOf(jm)===0){if(jn.sizset){return jn;};}else {jn[fc]=jk;if(ja(jn,jo,jj)){jn.sizset=true;return jn;};jn.sizset=false;};};};}else {while((jn=jn[jd])){if(jf||jn.nodeType===1){if(ja(jn,jo,jj)){return jn;};};};};};};function eD(jp){return jp.length>1?function(jr,js,jq){var i=jp.length;while(i-- ){if(!jp[i](jr,js,jq)){return false;};};return true;}:jp[0];};function eB(jw,ju,jx,jz,jt){var jv,jB=[],i=0,jy=jw.length,jA=ju!=null;for(;i<jy;i++ ){if((jv=jw[i])){if(!jx||jx(jv,jz,jt)){jB.push(jv);if(jA){ju.push(i);};};};};return jB;};function ew(jG,jF,jE,jD,jC,jH){if(jD&&!jD[fc]){jD=ew(jD);};if(jC&&!jC[fc]){jC=ew(jC,jH);};return fi(function(jQ,jL,jR,jI){if(jQ&&jC){return;};var i,jN,jJ,jP=[],jT=[],jK=jL.length,jS=jQ||fe(jF||C,jR.nodeType?[jR]:jR,[],jQ),jM=jG&&(jQ||!jF)?eB(jS,jP,jG,jR,jI):jS,jO=jE?jC||(jQ?jG:jK||jD)?[]:jL:jM;if(jE){jE(jM,jO,jR,jI);};if(jD){jJ=eB(jO,jT);jD(jJ,[],jR,jI);i=jJ.length;while(i-- ){if((jN=jJ[i])){jO[jT[i]]=!(jM[jT[i]]=jN);};};};if(jQ){i=jG&&jO.length;while(i-- ){if((jN=jO[i])){jQ[jP[i]]=!(jL[jP[i]]=jN);};};}else {jO=eB(jO===jL?jO.splice(jK,jO.length):jO);if(jC){jC(null,jL,jO,jI);}else {fr.apply(jL,jO);};};});};function fa(ka){var jU,jW,j,jX=ka.length,jV=eR.relative[ka[0].type],kd=jV||eR.relative[cL],i=jV?1:0,kc=eC(function(ke){return ke===jU;},kd,true),jY=eC(function(kf){return eQ.call(jU,kf)>-1;},kd,true),kb=[function(kh,ki,kg){return (!jV&&(kg||ki!==eg))||((jU=ki).nodeType?kc(kh,ki,kg):jY(kh,ki,kg));}];for(;i<jX;i++ ){if((jW=eR.relative[ka[i].type])){kb=[eC(eD(kb),jW)];}else {jW=eR.filter[ka[i].type].apply(null,ka[i].matches);if(jW[fc]){j= ++i;for(;j<jX;j++ ){if(eR.relative[ka[j].type]){break;};};return ew(i>1&&eD(kb),i>1&&ka.slice(0,i-1).join(dD).replace(ek,dp),jW,i<j&&fa(ka.slice(i,j)),j<jX&&fa((ka=ka.slice(j))),j<jX&&ka.join(dD));};kb.push(jW);};};return eD(kb);};function eG(kn,kk){var kj=kk.length>0,kl=kn.length>0,km=function(kx,kz,ko,kt,kq){var kv,j,ks,kw=[],kp=0,i=cW,ku=kx&&[],kA=kq!=null,kr=eg,kB=kx||kl&&eR.find[cF](C,kq&&kz.parentNode||kz),ky=(eJ+=kr==null?1:Math.E);if(kA){eg=kz!==document&&kz;ep=km.el;};for(;(kv=kB[i])!=null;i++ ){if(kl&&kv){for(j=0;(ks=kn[j]);j++ ){if(ks(kv,kz,ko)){kt.push(kv);break;};};if(kA){eJ=ky;ep= ++km.el;};};if(kj){if((kv=!ks&&kv)){kp-- ;};if(kx){ku.push(kv);};};};kp+=i;if(kj&&i!==kp){for(j=0;(ks=kk[j]);j++ ){ks(ku,kw,kz,ko);};if(kx){if(kp>0){while(i-- ){if(!(ku[i]||kw[i])){kw[i]=eP.call(kt);};};};kw=eB(kw);};fr.apply(kt,kw);if(kA&&!kx&&kw.length>0&&(kp+kk.length)>1){eX.uniqueSort(kt);};};if(kA){eJ=ky;eg=kr;};return ku;};km.el=0;return kj?fi(km):km;};fm=eX.compile=function(kE,kC){var i,kG=[],kD=[],kF=ft[fc][kE];if(!kF){if(!kC){kC=eH(kE);};i=kC.length;while(i-- ){kF=fa(kC[i]);if(kF[fc]){kG.push(kF);}else {kD.push(kF);};};kF=ft(kE,eG(kD,kG));};return kF;};function fe(kK,kH,kI,kL){var i=0,kJ=kH.length;for(;i<kJ;i++ ){eX(kK,kH[i],kI,kL);};return kI;};function et(kO,kS,kN,kR,kM){var i,kP,kQ,kT,find,kU=eH(kO),j=kU.length;if(!kR){if(kU.length===1){kP=kU[0]=kU[0].slice(0);if(kP.length>2&&(kQ=kP[0]).type===eb&&kS.nodeType===9&&!kM&&eR.relative[kP[1].type]){kS=eR.find[eb](kQ.matches[0].replace(eq,dD),kS,kM)[0];if(!kS){return kN;};kO=kO.slice(kP.shift().length);};for(i=fl[dQ].test(kO)?-1:kP.length-1;i>=0;i-- ){kQ=kP[i];if(eR.relative[(kT=kQ.type)]){break;};if((find=eR.find[kT])){if((kR=find(kQ.matches[0].replace(eq,dD),eO.test(kP[0].type)&&kS.parentNode||kS,kM))){kP.splice(i,1);kO=kR.length&&kP.join(dD);if(!kO){fr.apply(kN,ev.call(kR,0));return kN;};break;};};};};};fm(kO,kU)(kR,kS,kM,kN,eO.test(kO));return kN;};if(document.querySelectorAll){(function(){var kW,lc=et,lb=/'|\\/g,kY=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,kX=[M],kV=[h,M],la=fv.matchesSelector||fv.mozMatchesSelector||fv.webkitMatchesSelector||fv.oMatchesSelector||fv.msMatchesSelector;eV(function(ld){ld.innerHTML=dg;if(!ld.querySelectorAll(o).length){kX.push(dc+ex+d);};if(!ld.querySelectorAll(dO).length){kX.push(dO);};});eV(function(le){le.innerHTML=da;if(le.querySelectorAll(cR).length){kX.push(dz+ex+cO);};le.innerHTML=dd;if(!le.querySelectorAll(dK).length){kX.push(dK,k);};});kX=new RegExp(kX.join(ds));et=function(lk,ln,li,lm,lf){if(!lm&&!lf&&(!kX||!kX.test(lk))){var lh,i,lg=true,lj=fc,lo=ln,ll=ln.nodeType===9&&lk;if(ln.nodeType===1&&ln.nodeName.toLowerCase()!==du){lh=eH(lk);if((lg=ln.getAttribute(N))){lj=lg.replace(lb,dP);}else {ln.setAttribute(N,lj);};lj=dJ+lj+g;i=lh.length;while(i-- ){lh[i]=lj+lh[i].join(dD);};lo=eO.test(lk)&&ln.parentNode||ln;ll=lh.join(dI);};if(ll){try{fr.apply(li,ev.call(lo.querySelectorAll(ll),0));return li;}catch(lp){}finally{if(!lg){ln.removeAttribute(N);};};};};return lc(lk,ln,li,lm,lf);};if(la){eV(function(lq){kW=la.call(lq,l);try{la.call(lq,q);kV.push(dn,eS);}catch(e){};});kV=new RegExp(kV.join(ds));eX.matchesSelector=function(ls,lr){lr=lr.replace(kY,F);if(!er(ls)&&!kV.test(lr)&&(!kX||!kX.test(lr))){try{var lt=la.call(ls,lr);if(lt||kW||ls.document&&ls.document.nodeType!==11){return lt;};}catch(e){};};return eX(lr,null,null,[ls]).length>0;};};})();};eR.pseudos[r]=eR.pseudos[ed];function fu(){};eR.filters=fu.prototype=eR.pseudos;eR.setFilters=new fu();qx.bom.Selector.query=function(lv,lu){return eX(lv,lu);};qx.bom.Selector.matches=function(lx,lw){return eX(lx,null,null,lw);};})(window);})();(function(){var a="qx.module.Attribute",b="html";qx.Bootstrap.define(a,{statics:{getHtml:function(){if(this[0]&&this[0].nodeType===1){return qx.bom.element.Attribute.get(this[0],b);};return null;},setHtml:function(c){c=qx.bom.Html.fixEmptyTags(c);this._forEachElement(function(d){qx.bom.element.Attribute.set(d,b,c);});return this;},setAttribute:function(name,e){this._forEachElement(function(f){qx.bom.element.Attribute.set(f,name,e);});return this;},getAttribute:function(name){if(this[0]&&this[0].nodeType===1){return qx.bom.element.Attribute.get(this[0],name);};return null;},removeAttribute:function(name){this._forEachElement(function(g){qx.bom.element.Attribute.set(g,name,null);});return this;},setAttributes:function(h){for(var name in h){this.setAttribute(name,h[name]);};return this;},getAttributes:function(k){var j={};for(var i=0;i<k.length;i++ ){j[k[i]]=this.getAttribute(k[i]);};return j;},removeAttributes:function(m){for(var i=0,l=m.length;i<l;i++ ){this.removeAttribute(m[i]);};return this;},setProperty:function(name,n){for(var i=0;i<this.length;i++ ){this[i][name]=n;};return this;},getProperty:function(name){if(this[0]){return this[0][name];};return null;},setProperties:function(o){for(var name in o){this.setProperty(name,o[name]);};return this;},getProperties:function(p){var q={};for(var i=0;i<p.length;i++ ){q[p[i]]=this.getProperty(p[i]);};return q;},getValue:function(){if(this[0]&&this[0].nodeType===1){return qx.bom.Input.getValue(this[0]);};return null;},setValue:function(r){this._forEachElement(function(s){qx.bom.Input.setValue(s,r);});return this;}},defer:function(t){qxWeb.$attach({"getHtml":t.getHtml,"setHtml":t.setHtml,"getAttribute":t.getAttribute,"setAttribute":t.setAttribute,"removeAttribute":t.removeAttribute,"getAttributes":t.getAttributes,"setAttributes":t.setAttributes,"removeAttributes":t.removeAttributes,"getProperty":t.getProperty,"setProperty":t.setProperty,"getProperties":t.getProperties,"setProperties":t.setProperties,"getValue":t.getValue,"setValue":t.setValue});}});})();(function(){var b="function",c="html.video.h264",d="html.element.contains",f='video/ogg; codecs="theora, vorbis"',g="html.console",h="html.xul",i="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",j="html.video.ogg",k="http://www.w3.org/TR/SVG11/feature#BasicStructure",l="html.storage.local",m="div",n="qx.bom.client.Html",o="getSelection",p='audio',q='video/mp4; codecs="avc1.42E01E, mp4a.40.2"',r="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==",s="html.audio",t="video",u="url(#default#VML)",w="head",x="audio",y="audio/mpeg",z="org.w3c.dom.svg",A="html.classlist",B="html.svg",C="html.video",D="html.geolocation",E="DOMTokenList",F="html.storage.session",G="1.1",H="html.history.state",I="object",J="html.image.naturaldimensions",K="html.audio.aif",L="audio/x-wav",M='<v:shape id="vml_flag1" adj="1" />',N="html.canvas",O="audio/ogg",P="",Q="html.storage.userdata",R="number",S="html.element.compareDocumentPosition",T="audio/x-aiff",U="html.audio.au",V="img",W="html.selection",X="selection",Y="html.xpath",bA="qxtest",bB='video',bC="span",bw="html.element.textcontent",bx="geolocation",by="html.audio.mp3",bz="html.vml",bH="undefined",bI="html.audio.ogg",bN="none",bQ="label",bD='video/webm; codecs="vp8, vorbis"',bE="html.dataurl",bF="html.webworker",bG="html.dataset",bK="1.0",bR="html.audio.wav",bL="html.filereader",bM="audio/basic",bO="#default#userdata",bJ="html.video.webm",bP="display";qx.Bootstrap.define(n,{statics:{getWebWorker:function(){return window.Worker!=null;},getFileReader:function(){return window.FileReader!=null;},getGeoLocation:function(){return bx in navigator;},getAudio:function(){return !!document.createElement(p).canPlayType;},getAudioOgg:function(){if(!qx.bom.client.Html.getAudio()){return P;};var a=document.createElement(x);return a.canPlayType(O);},getAudioMp3:function(){if(!qx.bom.client.Html.getAudio()){return P;};var a=document.createElement(x);return a.canPlayType(y);},getAudioWav:function(){if(!qx.bom.client.Html.getAudio()){return P;};var a=document.createElement(x);return a.canPlayType(L);},getAudioAu:function(){if(!qx.bom.client.Html.getAudio()){return P;};var a=document.createElement(x);return a.canPlayType(bM);},getAudioAif:function(){if(!qx.bom.client.Html.getAudio()){return P;};var a=document.createElement(x);return a.canPlayType(T);},getVideo:function(){return !!document.createElement(bB).canPlayType;},getVideoOgg:function(){if(!qx.bom.client.Html.getVideo()){return P;};var v=document.createElement(t);return v.canPlayType(f);},getVideoH264:function(){if(!qx.bom.client.Html.getVideo()){return P;};var v=document.createElement(t);return v.canPlayType(q);},getVideoWebm:function(){if(!qx.bom.client.Html.getVideo()){return P;};var v=document.createElement(t);return v.canPlayType(bD);},getLocalStorage:function(){try{return window.localStorage!=null;}catch(bS){return false;};},getSessionStorage:function(){try{return window.sessionStorage!=null;}catch(bT){return false;};},getUserDataStorage:function(){var bU=document.createElement(m);bU.style[bP]=bN;document.getElementsByTagName(w)[0].appendChild(bU);var bV=false;try{bU.addBehavior(bO);bU.load(bA);bV=true;}catch(e){};document.getElementsByTagName(w)[0].removeChild(bU);return bV;},getClassList:function(){return !!(document.documentElement.classList&&qx.Bootstrap.getClass(document.documentElement.classList)===E);},getXPath:function(){return !!document.evaluate;},getXul:function(){try{document.createElementNS(i,bQ);return true;}catch(e){return false;};},getSvg:function(){return document.implementation&&document.implementation.hasFeature&&(document.implementation.hasFeature(z,bK)||document.implementation.hasFeature(k,G));},getVml:function(){var bW=document.createElement(m);document.body.appendChild(bW);bW.innerHTML=M;bW.firstChild.style.behavior=u;var bX=typeof bW.firstChild.adj==I;document.body.removeChild(bW);return bX;},getCanvas:function(){return !!window.CanvasRenderingContext2D;},getDataUrl:function(bY){var ca=new Image();ca.onload=ca.onerror=function(){window.setTimeout(function(){bY.call(null,(ca.width==1&&ca.height==1));},0);};ca.src=r;},getDataset:function(){return !!document.documentElement.dataset;},getContains:function(){return (typeof document.documentElement.contains!==bH);},getCompareDocumentPosition:function(){return (typeof document.documentElement.compareDocumentPosition===b);},getTextContent:function(){var cb=document.createElement(bC);return (typeof cb.textContent!==bH);},getConsole:function(){return typeof window.console!==bH;},getNaturalDimensions:function(){var cc=document.createElement(V);return typeof cc.naturalHeight===R&&typeof cc.naturalWidth===R;},getHistoryState:function(){return (typeof window.onpopstate!==bH&&typeof window.history.replaceState!==bH&&typeof window.history.pushState!==bH);},getSelection:function(){if(typeof window.getSelection===b){return o;};if(typeof document.selection===I){return X;};return null;}},defer:function(cd){qx.core.Environment.add(bF,cd.getWebWorker);qx.core.Environment.add(bL,cd.getFileReader);qx.core.Environment.add(D,cd.getGeoLocation);qx.core.Environment.add(s,cd.getAudio);qx.core.Environment.add(bI,cd.getAudioOgg);qx.core.Environment.add(by,cd.getAudioMp3);qx.core.Environment.add(bR,cd.getAudioWav);qx.core.Environment.add(U,cd.getAudioAu);qx.core.Environment.add(K,cd.getAudioAif);qx.core.Environment.add(C,cd.getVideo);qx.core.Environment.add(j,cd.getVideoOgg);qx.core.Environment.add(c,cd.getVideoH264);qx.core.Environment.add(bJ,cd.getVideoWebm);qx.core.Environment.add(l,cd.getLocalStorage);qx.core.Environment.add(F,cd.getSessionStorage);qx.core.Environment.add(Q,cd.getUserDataStorage);qx.core.Environment.add(A,cd.getClassList);qx.core.Environment.add(Y,cd.getXPath);qx.core.Environment.add(h,cd.getXul);qx.core.Environment.add(N,cd.getCanvas);qx.core.Environment.add(B,cd.getSvg);qx.core.Environment.add(bz,cd.getVml);qx.core.Environment.add(bG,cd.getDataset);qx.core.Environment.addAsync(bE,cd.getDataUrl);qx.core.Environment.add(d,cd.getContains);qx.core.Environment.add(S,cd.getCompareDocumentPosition);qx.core.Environment.add(bw,cd.getTextContent);qx.core.Environment.add(g,cd.getConsole);qx.core.Environment.add(J,cd.getNaturalDimensions);qx.core.Environment.add(H,cd.getHistoryState);qx.core.Environment.add(W,cd.getSelection);}});})();(function(){var a="readOnly",b="accessKey",c="qx.bom.element.Attribute",d="rowSpan",e="vAlign",f="className",g="textContent",h="'",i="htmlFor",j="longDesc",k="cellSpacing",l="frameBorder",m="='",n="",o="useMap",p="innerText",q="innerHTML",r="tabIndex",s="dateTime",t="maxLength",u="html.element.textcontent",v="mshtml",w="engine.name",x="cellPadding",y="browser.documentmode",z="colSpan",A="undefined";qx.Bootstrap.define(c,{statics:{__cQ:{names:{"class":f,"for":i,html:q,text:qx.core.Environment.get(u)?g:p,colspan:z,rowspan:d,valign:e,datetime:s,accesskey:b,tabindex:r,maxlength:t,readonly:a,longdesc:j,cellpadding:x,cellspacing:k,frameborder:l,usemap:o},runtime:{"html":1,"text":1},bools:{compact:1,nowrap:1,ismap:1,declare:1,noshade:1,checked:1,disabled:1,readOnly:1,multiple:1,selected:1,noresize:1,defer:1,allowTransparency:1},property:{$$html:1,$$widget:1,disabled:1,checked:1,readOnly:1,multiple:1,selected:1,value:1,maxLength:1,className:1,innerHTML:1,innerText:1,textContent:1,htmlFor:1,tabIndex:1},qxProperties:{$$widget:1,$$html:1},propertyDefault:{disabled:false,checked:false,readOnly:false,multiple:false,selected:false,value:n,className:n,innerHTML:n,innerText:n,textContent:n,htmlFor:n,tabIndex:0,maxLength:qx.core.Environment.select(w,{"mshtml":2147483647,"webkit":524288,"default":-1})},removeableProperties:{disabled:1,multiple:1,maxLength:1},original:{href:1,src:1,type:1}},compile:function(B){var C=[];var E=this.__cQ.runtime;for(var D in B){if(!E[D]){C.push(D,m,B[D],h);};};return C.join(n);},get:function(H,name){var F=this.__cQ;var G;name=F.names[name]||name;if(qx.core.Environment.get(w)==v&&parseInt(qx.core.Environment.get(y),10)<8&&F.original[name]){G=H.getAttribute(name,2);}else if(F.property[name]){G=H[name];if(typeof F.propertyDefault[name]!==A&&G==F.propertyDefault[name]){if(typeof F.bools[name]===A){return null;}else {return G;};};}else {G=H.getAttribute(name);};if(F.bools[name]){return !!G;};return G;},set:function(K,name,J){if(typeof J===A){return;};var I=this.__cQ;name=I.names[name]||name;if(I.bools[name]){J=!!J;};if(I.property[name]&&(!(K[name]===undefined)||I.qxProperties[name])){if(J==null){if(I.removeableProperties[name]){K.removeAttribute(name);return;}else if(typeof I.propertyDefault[name]!==A){J=I.propertyDefault[name];};};K[name]=J;}else {if(J===true){K.setAttribute(name,name);}else if(J===false||J===null){K.removeAttribute(name);}else {K.setAttribute(name,J);};};},reset:function(L,name){this.set(L,name,null);}}});})();(function(){var a="rim_tabletos",b="10.1",c="Darwin",d="10.3",e="os.version",f="10.7",g="2003",h=")",i="iPhone",j="android",k="unix",l="ce",m="7",n="SymbianOS",o="10.5",p="os.name",q="10.9",r="|",s="MacPPC",t="95",u="iPod",v="10.8",w="\.",x="Win64",y="linux",z="me",A="10.2",B="Macintosh",C="Android",D="Windows",E="98",F="ios",G="vista",H="8",I="blackberry",J="2000",K="8.1",L="(",M="",N="win",O="Linux",P="10.6",Q="BSD",R="10.0",S="10.4",T="Mac OS X",U="iPad",V="X11",W="xp",X="symbian",Y="qx.bom.client.OperatingSystem",bo="g",bp="Win32",bq="osx",bk="webOS",bl="RIM Tablet OS",bm="BlackBerry",bn="nt4",br=".",bs="MacIntel",bt="webos";qx.Bootstrap.define(Y,{statics:{getName:function(){if(!navigator){return M;};var bu=navigator.platform||M;var bv=navigator.userAgent||M;if(bu.indexOf(D)!=-1||bu.indexOf(bp)!=-1||bu.indexOf(x)!=-1){return N;}else if(bu.indexOf(B)!=-1||bu.indexOf(s)!=-1||bu.indexOf(bs)!=-1||bu.indexOf(T)!=-1){return bq;}else if(bv.indexOf(bl)!=-1){return a;}else if(bv.indexOf(bk)!=-1){return bt;}else if(bu.indexOf(u)!=-1||bu.indexOf(i)!=-1||bu.indexOf(U)!=-1){return F;}else if(bv.indexOf(C)!=-1){return j;}else if(bu.indexOf(O)!=-1){return y;}else if(bu.indexOf(V)!=-1||bu.indexOf(Q)!=-1||bu.indexOf(c)!=-1){return k;}else if(bu.indexOf(n)!=-1){return X;}else if(bu.indexOf(bm)!=-1){return I;};return M;},__cR:{"Windows NT 6.3":K,"Windows NT 6.2":H,"Windows NT 6.1":m,"Windows NT 6.0":G,"Windows NT 5.2":g,"Windows NT 5.1":W,"Windows NT 5.0":J,"Windows 2000":J,"Windows NT 4.0":bn,"Win 9x 4.90":z,"Windows CE":l,"Windows 98":E,"Win98":E,"Windows 95":t,"Win95":t,"Mac OS X 10_9":q,"Mac OS X 10.9":q,"Mac OS X 10_8":v,"Mac OS X 10.8":v,"Mac OS X 10_7":f,"Mac OS X 10.7":f,"Mac OS X 10_6":P,"Mac OS X 10.6":P,"Mac OS X 10_5":o,"Mac OS X 10.5":o,"Mac OS X 10_4":S,"Mac OS X 10.4":S,"Mac OS X 10_3":d,"Mac OS X 10.3":d,"Mac OS X 10_2":A,"Mac OS X 10.2":A,"Mac OS X 10_1":b,"Mac OS X 10.1":b,"Mac OS X 10_0":R,"Mac OS X 10.0":R},getVersion:function(){var bw=qx.bom.client.OperatingSystem.__cS(navigator.userAgent);if(bw==null){bw=qx.bom.client.OperatingSystem.__cT(navigator.userAgent);};if(bw!=null){return bw;}else {return M;};},__cS:function(bx){var bA=[];for(var bz in qx.bom.client.OperatingSystem.__cR){bA.push(bz);};var bB=new RegExp(L+bA.join(r).replace(/\./g,w)+h,bo);var by=bB.exec(bx);if(by&&by[1]){return qx.bom.client.OperatingSystem.__cR[by[1]];};return null;},__cT:function(bF){var bG=bF.indexOf(C)!=-1;var bC=bF.match(/(iPad|iPhone|iPod)/i)?true:false;if(bG){var bE=new RegExp(/ Android (\d+(?:\.\d+)+)/i);var bH=bE.exec(bF);if(bH&&bH[1]){return bH[1];};}else if(bC){var bI=new RegExp(/(CPU|iPhone|iPod) OS (\d+)_(\d+)\s+/);var bD=bI.exec(bF);if(bD&&bD[2]&&bD[3]){return bD[2]+br+bD[3];};};return null;}},defer:function(bJ){qx.core.Environment.add(p,bJ.getName);qx.core.Environment.add(e,bJ.getVersion);}});})();(function(){var a="CSS1Compat",b="msie",c="android",d="operamini",e="gecko",f="maple",g="browser.quirksmode",h="browser.name",i="trident",j="mobile chrome",k=")(/| )([0-9]+\.[0-9])",l="iemobile",m="prism|Fennec|Camino|Kmeleon|Galeon|Netscape|SeaMonkey|Namoroka|Firefox",n="IEMobile|Maxthon|MSIE|Trident",o="opera mobi",p="Mobile Safari",q="Maple",r="operamobile",s="ie",t="mobile safari",u="AdobeAIR|Titanium|Fluid|Chrome|Android|Epiphany|Konqueror|iCab|OmniWeb|Maxthon|Pre|PhantomJS|Mobile Safari|Safari",v="qx.bom.client.Browser",w="(Maple )([0-9]+\.[0-9]+\.[0-9]*)",x="",y="opera mini",z="(",A="browser.version",B="opera",C="ce",D="mshtml",E="Opera Mini|Opera Mobi|Opera",F="webkit",G="browser.documentmode",H="5.0",I="Mobile/";qx.Bootstrap.define(v,{statics:{getName:function(){var L=navigator.userAgent;var M=new RegExp(z+qx.bom.client.Browser.__cU+k);var K=L.match(M);if(!K){return x;};var name=K[1].toLowerCase();var J=qx.bom.client.Engine.getName();if(J===F){if(name===c){name=j;}else if(L.indexOf(p)!==-1||L.indexOf(I)!==-1){name=t;};}else if(J===D){if(name===b||name===i){name=s;if(qx.bom.client.OperatingSystem.getVersion()===C){name=l;};};}else if(J===B){if(name===o){name=r;}else if(name===y){name=d;};}else if(J===e){if(L.indexOf(q)!==-1){name=f;};};return name;},getVersion:function(){var P=navigator.userAgent;var Q=new RegExp(z+qx.bom.client.Browser.__cU+k);var N=P.match(Q);if(!N){return x;};var name=N[1].toLowerCase();var O=N[3];if(P.match(/Version(\/| )([0-9]+\.[0-9])/)){O=RegExp.$2;};if(qx.bom.client.Engine.getName()==D){O=qx.bom.client.Engine.getVersion();if(name===b&&qx.bom.client.OperatingSystem.getVersion()==C){O=H;};};if(qx.bom.client.Browser.getName()==f){Q=new RegExp(w);N=P.match(Q);if(!N){return x;};O=N[2];};return O;},getDocumentMode:function(){if(document.documentMode){return document.documentMode;};return 0;},getQuirksMode:function(){if(qx.bom.client.Engine.getName()==D&&parseFloat(qx.bom.client.Engine.getVersion())>=8){return qx.bom.client.Engine.DOCUMENT_MODE===5;}else {return document.compatMode!==a;};},__cU:{"webkit":u,"gecko":m,"mshtml":n,"opera":E}[qx.bom.client.Engine.getName()]},defer:function(R){qx.core.Environment.add(h,R.getName),qx.core.Environment.add(A,R.getVersion),qx.core.Environment.add(G,R.getDocumentMode),qx.core.Environment.add(g,R.getQuirksMode);}});})();(function(){var a="<fieldset>",b="<select multiple='multiple'>",c="</div>",d="</select>",e="</tr></tbody></table>",f="<col",g="div",h="<table><tbody><tr>",k="string",m=">",n="script",o="<table><tbody></tbody><colgroup>",p="<th",q="</tbody></table>",r="<td",s="</colgroup></table>",t="<opt",u="text/javascript",v="",w="<table>",x="</fieldset>",y="<table><tbody>",z="div<div>",A="<table",B="mshtml",C="engine.name",D="qx.bom.Html",E="<leg",F="tbody",G="<tr",H="</table>",I="undefined",J="></";qx.Bootstrap.define(D,{statics:{__cV:function(L,K,M){return M.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?L:K+J+M+m;},__cW:{opt:[1,b,d],leg:[1,a,x],table:[1,w,H],tr:[2,y,q],td:[3,h,e],col:[2,o,s],def:qx.core.Environment.select(C,{"mshtml":[1,z,c],"default":null})},fixEmptyTags:function(N){return N.replace(/(<(\w+)[^>]*?)\/>/g,this.__cV);},__cX:function(S,T){var V=T.createElement(g);S=qx.bom.Html.fixEmptyTags(S);var P=S.replace(/^\s+/,v).substring(0,5).toLowerCase();var U,O=this.__cW;if(!P.indexOf(t)){U=O.opt;}else if(!P.indexOf(E)){U=O.leg;}else if(P.match(/^<(thead|tbody|tfoot|colg|cap)/)){U=O.table;}else if(!P.indexOf(G)){U=O.tr;}else if(!P.indexOf(r)||!P.indexOf(p)){U=O.td;}else if(!P.indexOf(f)){U=O.col;}else {U=O.def;};if(U){V.innerHTML=U[1]+S+U[2];var R=U[0];while(R-- ){V=V.lastChild;};}else {V.innerHTML=S;};if((qx.core.Environment.get(C)==B)){var W=/<tbody/i.test(S);var Q=!P.indexOf(A)&&!W?V.firstChild&&V.firstChild.childNodes:U[1]==w&&!W?V.childNodes:[];for(var j=Q.length-1;j>=0; --j){if(Q[j].tagName.toLowerCase()===F&&!Q[j].childNodes.length){Q[j].parentNode.removeChild(Q[j]);};};if(/^\s/.test(S)){V.insertBefore(T.createTextNode(S.match(/^\s*/)[0]),V.firstChild);};};return qx.lang.Array.fromCollection(V.childNodes);},clean:function(X,be,bb){be=be||document;if(typeof be.createElement===I){be=be.ownerDocument||be[0]&&be[0].ownerDocument||document;};if(!bb&&X.length===1&&typeof X[0]===k){var bg=/^<(\w+)\s*\/?>$/.exec(X[0]);if(bg){return [be.createElement(bg[1])];};};var ba,bc=[];for(var i=0,l=X.length;i<l;i++ ){ba=X[i];if(typeof ba===k){ba=this.__cX(ba,be);};if(ba.nodeType){bc.push(ba);}else if(ba instanceof qx.type.BaseArray||(typeof qxWeb!==I&&ba instanceof qxWeb)){bc.push.apply(bc,Array.prototype.slice.call(ba,0));}else if(ba.toElement){bc.push(ba.toElement());}else {bc.push.apply(bc,ba);};};if(bb){var bf=[],bd;for(var i=0;bc[i];i++ ){bd=bc[i];if(bd.nodeType==1&&bd.tagName.toLowerCase()===n&&(!bd.type||bd.type.toLowerCase()===u)){if(bd.parentNode){bd.parentNode.removeChild(bc[i]);};bf.push(bd);}else {if(bd.nodeType===1){var Y=qx.lang.Array.fromCollection(bd.getElementsByTagName(n));bc.splice.apply(bc,[i+1,0].concat(Y));};bb.appendChild(bd);};};return bf;};return bc;}}});})();(function(){var a="wrap",b="text",c="engine.name",d="soft",e="",f="mshtml",g="number",h="checkbox",j="select-one",k="input",m="option",n="value",o="off",p="select",q="radio",r="qx.bom.Input",s="nowrap",t="textarea",u="auto",v="normal";qx.Bootstrap.define(r,{statics:{__cY:{text:1,textarea:1,select:1,checkbox:1,radio:1,password:1,hidden:1,submit:1,image:1,file:1,search:1,reset:1,button:1},create:function(y,w,z){{};var w=w?qx.lang.Object.clone(w):{};var x;if(y===t||y===p){x=y;}else {x=k;w.type=y;};return qx.dom.Element.create(x,w,z);},setValue:function(F,E){var G=F.nodeName.toLowerCase();var B=F.type;var Array=qx.lang.Array;var H=qx.lang.Type;if(typeof E===g){E+=e;};if((B===h||B===q)){if(H.isArray(E)){F.checked=Array.contains(E,F.value);}else {F.checked=F.value==E;};}else if(G===p){var A=H.isArray(E);var I=F.options;var C,D;for(var i=0,l=I.length;i<l;i++ ){C=I[i];D=C.getAttribute(n);if(D==null){D=C.text;};C.selected=A?Array.contains(E,D):E==D;};if(A&&E.length==0){F.selectedIndex=-1;};}else if((B===b||B===t)&&(qx.core.Environment.get(c)==f)){F.$$inValueSet=true;F.value=E;F.$$inValueSet=null;}else {F.value=E;};},getValue:function(Q){var O=Q.nodeName.toLowerCase();if(O===m){return (Q.attributes.value||{}).specified?Q.value:Q.text;};if(O===p){var J=Q.selectedIndex;if(J<0){return null;};var P=[];var S=Q.options;var N=Q.type==j;var R=qx.bom.Input;var M;for(var i=N?J:0,L=N?J+1:S.length;i<L;i++ ){var K=S[i];if(K.selected){M=R.getValue(K);if(N){return M;};P.push(M);};};return P;}else {return (Q.value||e).replace(/\r/g,e);};},setWrap:qx.core.Environment.select(c,{"mshtml":function(W,T){var V=T?d:o;var U=T?u:e;W.wrap=V;W.style.overflowY=U;},"gecko|webkit":function(bb,X){var ba=X?d:o;var Y=X?e:u;bb.setAttribute(a,ba);bb.style.overflow=Y;},"default":function(bd,bc){bd.style.whiteSpace=bc?v:s;}})}});})();(function(){var a="qx.lang.Object";qx.Bootstrap.define(a,{statics:{empty:function(b){{};for(var c in b){if(b.hasOwnProperty(c)){delete b[c];};};},isEmpty:function(d){{};for(var e in d){return false;};return true;},getLength:qx.Bootstrap.objectGetLength,getValues:function(g){{};var h=[];var f=Object.keys(g);for(var i=0,l=f.length;i<l;i++ ){h.push(g[f[i]]);};return h;},mergeWith:qx.Bootstrap.objectMergeWith,clone:function(j,n){if(qx.lang.Type.isObject(j)){var k={};for(var m in j){if(n){k[m]=qx.lang.Object.clone(j[m],n);}else {k[m]=j[m];};};return k;}else if(qx.lang.Type.isArray(j)){var k=[];for(var i=0;i<j.length;i++ ){if(n){k[i]=qx.lang.Object.clone(j[i]);}else {k[i]=j[i];};};return k;};return j;},invert:function(o){{};var p={};for(var q in o){p[o[q].toString()]=q;};return p;},getKeyFromValue:function(r,s){{};for(var t in r){if(r.hasOwnProperty(t)&&r[t]===s){return t;};};return null;},contains:function(u,v){{};return this.getKeyFromValue(u,v)!==null;},fromArray:function(w){{};var x={};for(var i=0,l=w.length;i<l;i++ ){{};x[w[i].toString()]=true;};return x;}}});})();(function(){var a="engine.name",b="='",c="<",d="",f="none",g="<INPUT TYPE='RADIO' NAME='RADIOTEST' VALUE='Second Choice'>",h="qx.dom.Element",j="webkit",k="The tag name is missing!",m=" ",n="div",o=">",p="' ",q="></";qx.Bootstrap.define(h,{statics:{__da:{"onload":true,"onpropertychange":true,"oninput":true,"onchange":true,"name":true,"type":true,"checked":true,"disabled":true},hasChild:function(parent,r){return r.parentNode===parent;},hasChildren:function(s){return !!s.firstChild;},hasChildElements:function(t){t=t.firstChild;while(t){if(t.nodeType===1){return true;};t=t.nextSibling;};return false;},getParentElement:function(u){return u.parentNode;},isInDom:function(x,v){if(!v){v=window;};var w=v.document.getElementsByTagName(x.nodeName);for(var i=0,l=w.length;i<l;i++ ){if(w[i]===x){return true;};};return false;},insertAt:function(y,parent,z){var A=parent.childNodes[z];if(A){parent.insertBefore(y,A);}else {parent.appendChild(y);};return true;},insertBegin:function(B,parent){if(parent.firstChild){this.insertBefore(B,parent.firstChild);}else {parent.appendChild(B);};return true;},insertEnd:function(C,parent){parent.appendChild(C);return true;},insertBefore:function(D,E){E.parentNode.insertBefore(D,E);return true;},insertAfter:function(F,G){var parent=G.parentNode;if(G==parent.lastChild){parent.appendChild(F);}else {return this.insertBefore(F,G.nextSibling);};return true;},remove:function(H){if(!H.parentNode){return false;};H.parentNode.removeChild(H);return true;},removeChild:function(I,parent){if(I.parentNode!==parent){return false;};parent.removeChild(I);return true;},removeChildAt:function(J,parent){var K=parent.childNodes[J];if(!K){return false;};parent.removeChild(K);return true;},replaceChild:function(M,L){if(!L.parentNode){return false;};L.parentNode.replaceChild(M,L);return true;},replaceAt:function(O,P,parent){var N=parent.childNodes[P];if(!N){return false;};parent.replaceChild(O,N);return true;},__db:{},__dc:{},_allowCreationWithMarkup:function(Q){if(!Q){Q=window;};var R=Q.location.href;if(qx.dom.Element.__dc[R]==undefined){try{Q.document.createElement(g);qx.dom.Element.__dc[R]=true;}catch(e){qx.dom.Element.__dc[R]=false;};};return qx.dom.Element.__dc[R];},getHelperElement:function(S){if(!S){S=window;};var T=S.location.href;if(!qx.dom.Element.__db[T]){var U=qx.dom.Element.__db[T]=S.document.createElement(n);if(qx.core.Environment.get(a)==j){U.style.display=f;S.document.body.appendChild(U);};};return qx.dom.Element.__db[T];},create:function(name,bc,W){if(!W){W=window;};if(!name){throw new Error(k);};var Y=this.__da;var X=d;for(var bb in bc){if(Y[bb]){X+=bb+b+bc[bb]+p;};};var ba;if(X!=d){if(qx.dom.Element._allowCreationWithMarkup(W)){ba=W.document.createElement(c+name+m+X+o);}else {var V=qx.dom.Element.getHelperElement(W);V.innerHTML=c+name+m+X+q+name+o;ba=V.firstChild;};}else {ba=W.document.createElement(name);};for(var bb in bc){if(!Y[bb]){qx.bom.element.Attribute.set(ba,bb,bc[bb]);};};return ba;},empty:function(bd){return bd.innerHTML=d;}}});})();(function(){var a="To enable localization please include qx.locale.Manager into your build!",b="qx.locale.MTranslation";qx.Mixin.define(b,{members:{tr:function(c,e){var d=qx.locale.Manager;if(d){return d.tr.apply(d,arguments);};throw new Error(a);},trn:function(g,j,f,h){var i=qx.locale.Manager;if(i){return i.trn.apply(i,arguments);};throw new Error(a);},trc:function(n,m,l){var k=qx.locale.Manager;if(k){return k.trc.apply(k,arguments);};throw new Error(a);},marktr:function(p){var o=qx.locale.Manager;if(o){return o.marktr.apply(o,arguments);};throw new Error(a);}}});})();(function(){var a="qx.application.IApplication";qx.Interface.define(a,{members:{main:function(){},finalize:function(){},close:function(){},terminate:function(){}}});})();(function(){var a='frontend.Application',b="qx.core.BaseInit",c="engine.name",d="Main runtime: ",f="",g="os.name",h="engine.version",i="Missing application class: ",j="Load runtime: ",k="ms",l="Could not detect engine!",m="Finalize runtime: ",n="Could not detect operating system!",o="Could not detect the version of the engine!";qx.Class.define(b,{statics:{__dd:null,getApplication:function(){return this.__dd||null;},ready:function(){if(this.__dd){return;};if(qx.core.Environment.get(c)==f){qx.log.Logger.warn(l);};if(qx.core.Environment.get(h)==f){qx.log.Logger.warn(o);};if(qx.core.Environment.get(g)==f){qx.log.Logger.warn(n);};qx.log.Logger.debug(this,j+(new Date-qx.Bootstrap.LOADSTART)+k);var q=a;var r=qx.Class.getByName(q);if(r){this.__dd=new r;var p=new Date;this.__dd.main();qx.log.Logger.debug(this,d+(new Date-p)+k);var p=new Date;this.__dd.finalize();qx.log.Logger.debug(this,m+(new Date-p)+k);}else {qx.log.Logger.warn(i+q);};},__de:function(e){var s=this.__dd;if(s){s.close();};},__df:function(){var t=this.__dd;if(t){t.terminate();};qx.core.ObjectRegistry.shutdown();}}});})();(function(){var a="qx.event.type.Native";qx.Class.define(a,{extend:qx.event.type.Event,members:{init:function(b,e,f,d,c){qx.event.type.Event.prototype.init.call(this,d,c);this._target=e||qx.bom.Event.getTarget(b);this._relatedTarget=f||qx.bom.Event.getRelatedTarget(b);if(b.timeStamp){this._timeStamp=b.timeStamp;};this._native=b;this._returnValue=null;return this;},clone:function(g){var h=qx.event.type.Event.prototype.clone.call(this,g);var i={};h._native=this._cloneNativeEvent(this._native,i);h._returnValue=this._returnValue;return h;},_cloneNativeEvent:function(j,k){k.preventDefault=(function(){});return k;},preventDefault:function(){qx.event.type.Event.prototype.preventDefault.call(this);qx.bom.Event.preventDefault(this._native);},getNativeEvent:function(){return this._native;},setReturnValue:function(l){this._returnValue=l;},getReturnValue:function(){return this._returnValue;}},destruct:function(){this._native=this._returnValue=null;}});})();(function(){var a="qx.event.handler.Window";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(b){qx.core.Object.call(this);this._manager=b;this._window=b.getWindow();this._initWindowObserver();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{error:1,load:1,beforeunload:1,unload:1,resize:1,scroll:1,beforeshutdown:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true},members:{canHandleEvent:function(d,c){},registerEvent:function(h,g,f){},unregisterEvent:function(k,j,i){},_initWindowObserver:function(){this._onNativeWrapper=qx.lang.Function.listener(this._onNative,this);var l=qx.event.handler.Window.SUPPORTED_TYPES;for(var m in l){qx.bom.Event.addNativeListener(this._window,m,this._onNativeWrapper);};},_stopWindowObserver:function(){var n=qx.event.handler.Window.SUPPORTED_TYPES;for(var o in n){qx.bom.Event.removeNativeListener(this._window,o,this._onNativeWrapper);};},_onNative:qx.event.GlobalError.observeMethod(function(e){if(this.isDisposed()){return;};var t=this._window;try{var q=t.document;}catch(u){return;};var r=q.documentElement;var p=qx.bom.Event.getTarget(e);if(p==null||p===t||p===q||p===r){var event=qx.event.Registration.createEvent(e.type,qx.event.type.Native,[e,t]);qx.event.Registration.dispatchEvent(t,event);var s=event.getReturnValue();if(s!=null){e.returnValue=s;return s;};};})},destruct:function(){this._stopWindowObserver();this._manager=this._window=null;},defer:function(v){qx.event.Registration.addHandler(v);}});})();(function(){var a="ready",b="mshtml",c="engine.name",d="qx.event.handler.Application",f="complete",g="webkit",h="gecko",i="load",j="unload",k="opera",l="left",m="DOMContentLoaded",n="shutdown",o="browser.documentmode";qx.Class.define(d,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(p){qx.core.Object.call(this);this._window=p.getWindow();this.__dg=false;this.__dh=false;this.__di=false;this.__dj=false;this._initObserver();qx.event.handler.Application.$$instance=this;},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{ready:1,shutdown:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true,onScriptLoaded:function(){var q=qx.event.handler.Application.$$instance;if(q){q.__dk();};}},members:{canHandleEvent:function(s,r){},registerEvent:function(v,u,t){},unregisterEvent:function(y,x,w){},__di:null,__dg:null,__dh:null,__dj:null,__dk:function(){if(!this.__di&&this.__dg&&qx.$$loader.scriptLoaded){if((qx.core.Environment.get(c)==b)){if(qx.event.Registration.hasListener(this._window,a)){this.__di=true;qx.event.Registration.fireEvent(this._window,a);};}else {this.__di=true;qx.event.Registration.fireEvent(this._window,a);};};},isApplicationReady:function(){return this.__di;},_initObserver:function(){if(qx.$$domReady||document.readyState==f||document.readyState==a){this.__dg=true;this.__dk();}else {this._onNativeLoadWrapped=qx.lang.Function.bind(this._onNativeLoad,this);if(qx.core.Environment.get(c)==h||qx.core.Environment.get(c)==k||qx.core.Environment.get(c)==g||(qx.core.Environment.get(c)==b&&qx.core.Environment.get(o)>8)){qx.bom.Event.addNativeListener(this._window,m,this._onNativeLoadWrapped);}else {var self=this;var z=function(){try{document.documentElement.doScroll(l);if(document.body){self._onNativeLoadWrapped();};}catch(A){window.setTimeout(z,100);};};z();};qx.bom.Event.addNativeListener(this._window,i,this._onNativeLoadWrapped);};this._onNativeUnloadWrapped=qx.lang.Function.bind(this._onNativeUnload,this);qx.bom.Event.addNativeListener(this._window,j,this._onNativeUnloadWrapped);},_stopObserver:function(){if(this._onNativeLoadWrapped){qx.bom.Event.removeNativeListener(this._window,i,this._onNativeLoadWrapped);};qx.bom.Event.removeNativeListener(this._window,j,this._onNativeUnloadWrapped);this._onNativeLoadWrapped=null;this._onNativeUnloadWrapped=null;},_onNativeLoad:qx.event.GlobalError.observeMethod(function(){this.__dg=true;this.__dk();}),_onNativeUnload:qx.event.GlobalError.observeMethod(function(){if(!this.__dj){this.__dj=true;try{qx.event.Registration.fireEvent(this._window,n);}catch(e){throw e;}finally{qx.core.ObjectRegistry.shutdown();};};})},destruct:function(){this._stopObserver();this._window=null;},defer:function(B){qx.event.Registration.addHandler(B);}});})();(function(){var a="ready",b="shutdown",c="beforeunload",d="qx.core.Init";qx.Class.define(d,{statics:{getApplication:qx.core.BaseInit.getApplication,ready:qx.core.BaseInit.ready,__de:function(e){var f=this.getApplication();if(f){e.setReturnValue(f.close());};},__df:function(){var g=this.getApplication();if(g){g.terminate();};}},defer:function(h){qx.event.Registration.addListener(window,a,h.ready,h);qx.event.Registration.addListener(window,b,h.__df,h);qx.event.Registration.addListener(window,c,h.__de,h);}});})();(function(){var a="Abstract method call",b="abstract",c="qx.application.AbstractGui";qx.Class.define(c,{type:b,extend:qx.core.Object,implement:[qx.application.IApplication],include:qx.locale.MTranslation,members:{__a:null,_createRootWidget:function(){throw new Error(a);},getRoot:function(){return this.__a;},main:function(){qx.theme.manager.Meta.getInstance().initialize();qx.ui.tooltip.Manager.getInstance();this.__a=this._createRootWidget();},finalize:function(){this.render();},render:function(){qx.ui.core.queue.Manager.flush();},close:function(d){},terminate:function(){}},destruct:function(){this.__a=null;}});})();(function(){var a="The theme to use is not available: ",b="_applyTheme",c="qx.theme",d="qx.theme.manager.Meta",e="qx.theme.Modern",f="Theme",g="singleton";qx.Class.define(d,{type:g,extend:qx.core.Object,properties:{theme:{check:f,nullable:true,apply:b}},members:{_applyTheme:function(n,i){var k=null;var h=null;var r=null;var s=null;var m=null;if(n){k=n.meta.color||null;h=n.meta.decoration||null;r=n.meta.font||null;s=n.meta.icon||null;m=n.meta.appearance||null;};var j=qx.theme.manager.Color.getInstance();var q=qx.theme.manager.Decoration.getInstance();var o=qx.theme.manager.Font.getInstance();var l=qx.theme.manager.Icon.getInstance();var p=qx.theme.manager.Appearance.getInstance();j.setTheme(k);q.setTheme(h);o.setTheme(r);l.setTheme(s);p.setTheme(m);},initialize:function(){var v=qx.core.Environment;var t,u;t=v.get(c);if(t){u=qx.Theme.getByName(t);if(!u){throw new Error(a+t);};this.setTheme(u);};}},environment:{"qx.theme":e}});})();(function(){var a="qx.util.ValueManager",b="abstract";qx.Class.define(a,{type:b,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this._dynamic={};},members:{_dynamic:null,resolveDynamic:function(c){return this._dynamic[c];},isDynamic:function(d){return !!this._dynamic[d];},resolve:function(e){if(e&&this._dynamic[e]){return this._dynamic[e];};return e;},_setDynamic:function(f){this._dynamic=f;},_getDynamic:function(){return this._dynamic;}},destruct:function(){this._dynamic=null;}});})();(function(){var a="Could not parse color: ",b="_applyTheme",c="qx.theme.manager.Color",d="Theme",e="changeTheme",f="string",g="singleton";qx.Class.define(c,{type:g,extend:qx.util.ValueManager,properties:{theme:{check:d,nullable:true,apply:b,event:e}},members:{_applyTheme:function(j){var h={};if(j){var i=j.colors;for(var name in i){h[name]=this.__dl(i,name);};};this._setDynamic(h);},__dl:function(l,name){var k=l[name];if(typeof k===f){if(!qx.util.ColorUtil.isCssString(k)){if(l[k]!=undefined){return this.__dl(l,k);};throw new Error(a+k);};return k;}else if(k instanceof Array){return qx.util.ColorUtil.rgbToRgbString(k);};throw new Error(a+k);},resolve:function(p){var o=this._dynamic;var m=o[p];if(m){return m;};var n=this.getTheme();if(n!==null&&n.colors[p]){return o[p]=n.colors[p];};return p;},isDynamic:function(s){var r=this._dynamic;if(s&&(r[s]!==undefined)){return true;};var q=this.getTheme();if(q!==null&&s&&(q.colors[s]!==undefined)){r[s]=q.colors[s];return true;};return false;}}});})();(function(){var a="Could not parse color: ",c="",d="Invalid hex value: ",e="Could not convert system colors to RGB: ",h="(",j=")",k="#",l="a",m="Invalid hex3 value: ",n="qx.theme.manager.Color",o="qx.util.ColorUtil",q="Invalid hex6 value: ",s="rgb",u=",";qx.Bootstrap.define(o,{statics:{REGEXP:{hex3:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,rgb:/^rgb\(\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*,\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*,\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*\)$/,rgba:/^rgba\(\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*,\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*,\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*,\s*([0-9]{1,3}\.{0,1}[0-9]*)\s*\)$/},SYSTEM:{activeborder:true,activecaption:true,appworkspace:true,background:true,buttonface:true,buttonhighlight:true,buttonshadow:true,buttontext:true,captiontext:true,graytext:true,highlight:true,highlighttext:true,inactiveborder:true,inactivecaption:true,inactivecaptiontext:true,infobackground:true,infotext:true,menu:true,menutext:true,scrollbar:true,threeddarkshadow:true,threedface:true,threedhighlight:true,threedlightshadow:true,threedshadow:true,window:true,windowframe:true,windowtext:true},NAMED:{black:[0,0,0],silver:[192,192,192],gray:[128,128,128],white:[255,255,255],maroon:[128,0,0],red:[255,0,0],purple:[128,0,128],fuchsia:[255,0,255],green:[0,128,0],lime:[0,255,0],olive:[128,128,0],yellow:[255,255,0],navy:[0,0,128],blue:[0,0,255],teal:[0,128,128],aqua:[0,255,255],transparent:[-1,-1,-1],magenta:[255,0,255],orange:[255,165,0],brown:[165,42,42]},isNamedColor:function(v){return this.NAMED[v]!==undefined;},isSystemColor:function(w){return this.SYSTEM[w]!==undefined;},supportsThemes:function(){if(qx.Class){return qx.Class.isDefined(n);};return false;},isThemedColor:function(x){if(!this.supportsThemes()){return false;};if(qx.theme&&qx.theme.manager&&qx.theme.manager.Color){return qx.theme.manager.Color.getInstance().isDynamic(x);};return false;},stringToRgb:function(y){if(this.supportsThemes()&&this.isThemedColor(y)){y=qx.theme.manager.Color.getInstance().resolveDynamic(y);};if(this.isNamedColor(y)){return this.NAMED[y].concat();}else if(this.isSystemColor(y)){throw new Error(e+y);}else if(this.isRgbaString(y)){return this.__dn(y);}else if(this.isRgbString(y)){return this.__dm();}else if(this.isHex3String(y)){return this.__do();}else if(this.isHex6String(y)){return this.__dp();};throw new Error(a+y);},cssStringToRgb:function(z){if(this.isNamedColor(z)){return this.NAMED[z];}else if(this.isSystemColor(z)){throw new Error(e+z);}else if(this.isRgbString(z)){return this.__dm();}else if(this.isRgbaString(z)){return this.__dn();}else if(this.isHex3String(z)){return this.__do();}else if(this.isHex6String(z)){return this.__dp();};throw new Error(a+z);},stringToRgbString:function(A){return this.rgbToRgbString(this.stringToRgb(A));},rgbToRgbString:function(B){return s+(B[3]?l:c)+h+B.join(u)+j;},rgbToHexString:function(C){return (k+qx.lang.String.pad(C[0].toString(16).toUpperCase(),2)+qx.lang.String.pad(C[1].toString(16).toUpperCase(),2)+qx.lang.String.pad(C[2].toString(16).toUpperCase(),2));},isValidPropertyValue:function(D){return (this.isThemedColor(D)||this.isNamedColor(D)||this.isHex3String(D)||this.isHex6String(D)||this.isRgbString(D)||this.isRgbaString(D));},isCssString:function(E){return (this.isSystemColor(E)||this.isNamedColor(E)||this.isHex3String(E)||this.isHex6String(E)||this.isRgbString(E)||this.isRgbaString(E));},isHex3String:function(F){return this.REGEXP.hex3.test(F);},isHex6String:function(G){return this.REGEXP.hex6.test(G);},isRgbString:function(H){return this.REGEXP.rgb.test(H);},isRgbaString:function(I){return this.REGEXP.rgba.test(I);},__dm:function(){var L=parseInt(RegExp.$1,10);var K=parseInt(RegExp.$2,10);var J=parseInt(RegExp.$3,10);return [L,K,J];},__dn:function(){var P=parseInt(RegExp.$1,10);var O=parseInt(RegExp.$2,10);var M=parseInt(RegExp.$3,10);var N=parseInt(RegExp.$4,10);if(P===0&&O===0&M===0&&N===0){return [-1,-1,-1];};return [P,O,M];},__do:function(){var S=parseInt(RegExp.$1,16)*17;var R=parseInt(RegExp.$2,16)*17;var Q=parseInt(RegExp.$3,16)*17;return [S,R,Q];},__dp:function(){var V=(parseInt(RegExp.$1,16)*16)+parseInt(RegExp.$2,16);var U=(parseInt(RegExp.$3,16)*16)+parseInt(RegExp.$4,16);var T=(parseInt(RegExp.$5,16)*16)+parseInt(RegExp.$6,16);return [V,U,T];},hex3StringToRgb:function(W){if(this.isHex3String(W)){return this.__do(W);};throw new Error(m+W);},hex3StringToHex6String:function(X){if(this.isHex3String(X)){return this.rgbToHexString(this.hex3StringToRgb(X));};return X;},hex6StringToRgb:function(Y){if(this.isHex6String(Y)){return this.__dp(Y);};throw new Error(q+Y);},hexStringToRgb:function(ba){if(this.isHex3String(ba)){return this.__do(ba);};if(this.isHex6String(ba)){return this.__dp(ba);};throw new Error(d+ba);},rgbToHsb:function(bi){var bc,bd,bf;var bm=bi[0];var bj=bi[1];var bb=bi[2];var bl=(bm>bj)?bm:bj;if(bb>bl){bl=bb;};var be=(bm<bj)?bm:bj;if(bb<be){be=bb;};bf=bl/255.0;if(bl!=0){bd=(bl-be)/bl;}else {bd=0;};if(bd==0){bc=0;}else {var bh=(bl-bm)/(bl-be);var bk=(bl-bj)/(bl-be);var bg=(bl-bb)/(bl-be);if(bm==bl){bc=bg-bk;}else if(bj==bl){bc=2.0+bh-bg;}else {bc=4.0+bk-bh;};bc=bc/6.0;if(bc<0){bc=bc+1.0;};};return [Math.round(bc*360),Math.round(bd*100),Math.round(bf*100)];},hsbToRgb:function(bn){var i,f,p,r,t;var bo=bn[0]/360;var bp=bn[1]/100;var bq=bn[2]/100;if(bo>=1.0){bo%=1.0;};if(bp>1.0){bp=1.0;};if(bq>1.0){bq=1.0;};var br=Math.floor(255*bq);var bs={};if(bp==0.0){bs.red=bs.green=bs.blue=br;}else {bo*=6.0;i=Math.floor(bo);f=bo-i;p=Math.floor(br*(1.0-bp));r=Math.floor(br*(1.0-(bp*f)));t=Math.floor(br*(1.0-(bp*(1.0-f))));switch(i){case 0:bs.red=br;bs.green=t;bs.blue=p;break;case 1:bs.red=r;bs.green=br;bs.blue=p;break;case 2:bs.red=p;bs.green=br;bs.blue=t;break;case 3:bs.red=p;bs.green=r;bs.blue=br;break;case 4:bs.red=t;bs.green=p;bs.blue=br;break;case 5:bs.red=br;bs.green=p;bs.blue=r;break;};};return [bs.red,bs.green,bs.blue];},randomColor:function(){var r=Math.round(Math.random()*255);var g=Math.round(Math.random()*255);var b=Math.round(Math.random()*255);return this.rgbToRgbString([r,g,b]);}}});})();(function(){var a="mshtml",b="engine.name",c="_applyTheme",d="",e="'.",f="qx-",g="__ds",h="Unable to resolve decorator '",j="singleton",k=";",l="qx.theme.manager.Decoration",m=".",n="Theme",o="object",p="changeTheme",q="string",r="browser.documentmode",s=":";qx.Class.define(l,{type:j,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__dq=[];this.__dr=(qx.core.Environment.get(b)==a&&qx.core.Environment.get(r)<9);},properties:{theme:{check:n,nullable:true,apply:c,event:p}},members:{__ds:null,__dq:null,__dr:false,getCssClassName:function(t){if(qx.lang.Type.isString(t)){return f+t;}else {return f+t.toHashCode();};},addCssClass:function(y){var v=qx.ui.style.Stylesheet.getInstance();var A=y;y=this.getCssClassName(y);var z=m+y;if(v.hasRule(z)){return y;};if(qx.lang.Type.isString(A)){A=this.resolve(A);};if(!A){throw new Error(h+y+e);};var F=d;var u=A.getStyles(true);for(var C in u){if(qx.Bootstrap.isObject(u[C])){var w=d;var E=u[C];var B=false;for(var x in E){B=true;w+=x+s+E[x]+k;};var D=this.__dr?z:z+(B?s:d);this.__dq.push(D+C);v.addRule(D+C,w);continue;};F+=C+s+u[C]+k;};if(F){v.addRule(z,F);this.__dq.push(z);};return y;},resolve:function(J){if(!J){return null;};if(typeof J===o){return J;};var K=this.getTheme();if(!K){return null;};var H=this.__ds;if(!H){H=this.__ds={};};var G=H[J];if(G){return G;};var M=qx.lang.Object.clone(K.decorations[J],true);if(!M){return null;};if(!M.style){M.style={};};var I=M;while(I.include){I=K.decorations[I.include];if(!M.decorator&&I.decorator){M.decorator=qx.lang.Object.clone(I.decorator);};if(I.style){for(var L in I.style){if(M.style[L]==undefined){M.style[L]=qx.lang.Object.clone(I.style[L],true);};};};};return H[J]=(new qx.ui.decoration.Decorator()).set(M.style);},isValidPropertyValue:function(N){if(typeof N===q){return this.isDynamic(N);}else if(typeof N===o){var O=N.constructor;return qx.Class.hasInterface(O,qx.ui.decoration.IDecorator);};return false;},isDynamic:function(Q){if(!Q){return false;};var P=this.getTheme();if(!P){return false;};return !!P.decorations[Q];},isCached:function(R){return !this.__ds?false:qx.lang.Object.contains(this.__ds,R);},_applyTheme:function(U,S){var T=qx.util.AliasManager.getInstance();for(var i=0;i<this.__dq.length;i++ ){var V=this.__dq[i];qx.ui.style.Stylesheet.getInstance().removeRule(V);};this.__dq=[];if(S){for(var W in S.aliases){T.remove(W);};};if(U){for(var W in U.aliases){T.add(W,U.aliases[W]);};};this._disposeMap(g);this.__ds={};}},destruct:function(){this._disposeMap(g);}});})();(function(){var a="qx.ui.style.Stylesheet",b="singleton";qx.Class.define(a,{type:b,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__dt=qx.bom.Stylesheet.createElement();this.__dq=[];},members:{__dq:null,__dt:null,addRule:function(d,c){if(this.hasRule(d)){return;};qx.bom.Stylesheet.addRule(this.__dt,d,c);this.__dq.push(d);},hasRule:function(e){return this.__dq.indexOf(e)!=-1;},removeRule:function(f){delete this.__dq[this.__dq.indexOf(f)];qx.bom.Stylesheet.removeRule(this.__dt,f);}},destruct:function(){qx.bom.Stylesheet.removeSheet(this.__dt);}});})();(function(){var a="stylesheet",b="head",c="html.stylesheet.addimport",d="html.stylesheet.insertrule",e="}",f="html.stylesheet.createstylesheet",g='@import "',h="text/css",j="{",k='";',l="html.stylesheet.removeimport",m="html.stylesheet.deleterule",n="qx.bom.Stylesheet",o="link",p="style";qx.Bootstrap.define(n,{statics:{includeFile:function(s,q){if(!q){q=document;};var t=q.createElement(o);t.type=h;t.rel=a;t.href=s;var r=q.getElementsByTagName(b)[0];r.appendChild(t);},createElement:function(u){if(qx.core.Environment.get(f)){var v=document.createStyleSheet();if(u){v.cssText=u;};return v;}else {var w=document.createElement(p);w.type=h;if(u){w.appendChild(document.createTextNode(u));};document.getElementsByTagName(b)[0].appendChild(w);return w.sheet;};},addRule:function(z,A,y){{var x;};if(qx.core.Environment.get(d)){z.insertRule(A+j+y+e,z.cssRules.length);}else {z.addRule(A,y);};},removeRule:function(C,E){if(qx.core.Environment.get(m)){var B=C.cssRules;var D=B.length;for(var i=D-1;i>=0; --i){if(B[i].selectorText==E){C.deleteRule(i);};};}else {var B=C.rules;var D=B.length;for(var i=D-1;i>=0; --i){if(B[i].selectorText==E){C.removeRule(i);};};};},removeSheet:function(G){var F=G.ownerNode?G.ownerNode:G.owningElement;qx.dom.Element.removeChild(F,F.parentNode);},removeAllRules:function(I){if(qx.core.Environment.get(m)){var H=I.cssRules;var J=H.length;for(var i=J-1;i>=0;i-- ){I.deleteRule(i);};}else {var H=I.rules;var J=H.length;for(var i=J-1;i>=0;i-- ){I.removeRule(i);};};},addImport:function(L,K){if(qx.core.Environment.get(c)){L.addImport(K);}else {L.insertRule(g+K+k,L.cssRules.length);};},removeImport:function(M,N){if(qx.core.Environment.get(l)){var O=M.imports;var P=O.length;for(var i=P-1;i>=0;i-- ){if(O[i].href==N||O[i].href==qx.util.Uri.getAbsolute(N)){M.removeImport(i);};};}else {var Q=M.cssRules;var P=Q.length;for(var i=P-1;i>=0;i-- ){if(Q[i].href==N){M.deleteRule(i);};};};},removeAllImports:function(S){if(qx.core.Environment.get(l)){var U=S.imports;var T=U.length;for(var i=T-1;i>=0;i-- ){S.removeImport(i);};}else {var R=S.cssRules;var T=R.length;for(var i=T-1;i>=0;i-- ){if(R[i].type==R[i].IMPORT_RULE){S.deleteRule(i);};};};}}});})();(function(){var a="file",b="+",c="strict",d="anchor",e="div",f="query",g="source",h="password",j="host",k="protocol",l="user",n="directory",p="loose",q="relative",r="queryKey",s="qx.util.Uri",t="",u="path",v="authority",w='">0</a>',x="&",y="port",z='<a href="',A="userInfo",B="?",C="=";qx.Bootstrap.define(s,{statics:{parseUri:function(F,E){var G={key:[g,k,v,A,l,h,j,y,q,u,n,a,f,d],q:{name:r,parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};var o=G,m=G.parser[E?c:p].exec(F),D={},i=14;while(i-- ){D[o.key[i]]=m[i]||t;};D[o.q.name]={};D[o.key[12]].replace(o.q.parser,function(I,J,H){if(J){D[o.q.name][J]=H;};});return D;},appendParamsToUrl:function(K,L){if(L===undefined){return K;};{};if(qx.lang.Type.isObject(L)){L=qx.util.Uri.toParameter(L);};if(!L){return K;};return K+=/\?/.test(K)?x+L:B+L;},toParameter:function(M,Q){var P,O=[];for(P in M){if(M.hasOwnProperty(P)){var N=M[P];if(N instanceof Array){for(var i=0;i<N.length;i++ ){this.__du(P,N[i],O,Q);};}else {this.__du(P,N,O,Q);};};};return O.join(x);},__du:function(U,V,T,S){var R=window.encodeURIComponent;if(S){T.push(R(U).replace(/%20/g,b)+C+R(V).replace(/%20/g,b));}else {T.push(R(U)+C+R(V));};},getAbsolute:function(X){var W=document.createElement(e);W.innerHTML=z+X+w;return W.firstChild.href;}}});})();(function(){var a="qx.bom.client.Stylesheet",b="html.stylesheet.deleterule",c="html.stylesheet.insertrule",d="function",e="html.stylesheet.createstylesheet",f="html.stylesheet.addimport",g="html.stylesheet.removeimport",h="object";qx.Bootstrap.define(a,{statics:{__dv:function(){if(!qx.bom.client.Stylesheet.__dw){qx.bom.client.Stylesheet.__dw=qx.bom.Stylesheet.createElement();};return qx.bom.client.Stylesheet.__dw;},getCreateStyleSheet:function(){return typeof document.createStyleSheet===h;},getInsertRule:function(){return typeof qx.bom.client.Stylesheet.__dv().insertRule===d;},getDeleteRule:function(){return typeof qx.bom.client.Stylesheet.__dv().deleteRule===d;},getAddImport:function(){return (typeof qx.bom.client.Stylesheet.__dv().addImport===h);},getRemoveImport:function(){return (typeof qx.bom.client.Stylesheet.__dv().removeImport===h);}},defer:function(i){qx.core.Environment.add(e,i.getCreateStyleSheet);qx.core.Environment.add(c,i.getInsertRule);qx.core.Environment.add(b,i.getDeleteRule);qx.core.Environment.add(f,i.getAddImport);qx.core.Environment.add(g,i.getRemoveImport);}});})();(function(){var a="qx.ui.decoration.MBackgroundColor",b='frontend.theme.Theme',c="background-color",d="Color",e="_applyBackgroundColor";qx.Mixin.define(a,{properties:{backgroundColor:{check:d,nullable:true,apply:e}},members:{_styleBackgroundColor:function(f){var g=this.getBackgroundColor();if(g&&b){g=qx.theme.manager.Color.getInstance().resolve(g);};if(g){f[c]=g;};},_applyBackgroundColor:function(){{};}}});})();(function(){var a="qx.ui.decoration.IDecorator";qx.Interface.define(a,{members:{getStyles:function(){},getPadding:function(){},getInsets:function(){}}});})();(function(){var a="abstract",b="Abstract method called.",c="qx.ui.decoration.Abstract";qx.Class.define(c,{extend:qx.core.Object,implement:[qx.ui.decoration.IDecorator],type:a,members:{__dx:null,_getDefaultInsets:function(){throw new Error(b);},_isInitialized:function(){throw new Error(b);},_resetInsets:function(){this.__dx=null;},getInsets:function(){if(this.__dx){return this.__dx;};return this._getDefaultInsets();}},destruct:function(){this.__dx=null;}});})();(function(){var a="double",b="px ",c="widthTop",d="inset",e="solid",f="dotted",g="styleRight",h="styleBottom",i="_applyWidth",j="border-top",k="border-left",l="ridge",m="border-right",n="qx.ui.decoration.MSingleBorder",o="shorthand",p="Color",q="widthBottom",r="outset",s="widthLeft",t="",u="border-bottom",v="styleTop",w="colorBottom",x="groove",y="styleLeft",z="widthRight",A="dashed",B="Number",C="colorLeft",D="colorRight",E="colorTop",F="_applyStyle",G=" ",H="absolute";qx.Mixin.define(n,{properties:{widthTop:{check:B,init:0,apply:i},widthRight:{check:B,init:0,apply:i},widthBottom:{check:B,init:0,apply:i},widthLeft:{check:B,init:0,apply:i},styleTop:{nullable:true,check:[e,f,A,a,d,r,l,x],init:e,apply:F},styleRight:{nullable:true,check:[e,f,A,a,d,r,l,x],init:e,apply:F},styleBottom:{nullable:true,check:[e,f,A,a,d,r,l,x],init:e,apply:F},styleLeft:{nullable:true,check:[e,f,A,a,d,r,l,x],init:e,apply:F},colorTop:{nullable:true,check:p,apply:F},colorRight:{nullable:true,check:p,apply:F},colorBottom:{nullable:true,check:p,apply:F},colorLeft:{nullable:true,check:p,apply:F},left:{group:[s,y,C]},right:{group:[z,g,D]},top:{group:[c,v,E]},bottom:{group:[q,h,w]},width:{group:[c,z,q,s],mode:o},style:{group:[v,g,h,y],mode:o},color:{group:[E,D,w,C],mode:o}},members:{_styleBorder:function(I){{var K=qx.theme.manager.Color.getInstance();var O=K.resolve(this.getColorTop());var L=K.resolve(this.getColorRight());var J=K.resolve(this.getColorBottom());var N=K.resolve(this.getColorLeft());};var M=this.getWidthTop();if(M>0){I[j]=M+b+this.getStyleTop()+G+(O||t);};var M=this.getWidthRight();if(M>0){I[m]=M+b+this.getStyleRight()+G+(L||t);};var M=this.getWidthBottom();if(M>0){I[u]=M+b+this.getStyleBottom()+G+(J||t);};var M=this.getWidthLeft();if(M>0){I[k]=M+b+this.getStyleLeft()+G+(N||t);};{};I.position=H;},_getDefaultInsetsForBorder:function(){return {top:this.getWidthTop(),right:this.getWidthRight(),bottom:this.getWidthBottom(),left:this.getWidthLeft()};},_applyWidth:function(){this._applyStyle();this._resetInsets();},_applyStyle:function(){{};}}});})();(function(){var a=', url(',b="repeat",c="backgroundPositionX",d="backgroundPositionY",e="px",f="background-position",g=" ",h="background-repeat",i="no-repeat",j=')',k="scale",l="_applyBackgroundPosition",m='url(',n="repeat-x",o="background-image",p="100% 100%",q="repeat-y",r="qx.ui.decoration.MBackgroundImage",s="background-size",t="String",u="_applyBackgroundImage";qx.Mixin.define(r,{properties:{backgroundImage:{check:t,nullable:true,apply:u},backgroundRepeat:{check:[b,n,q,i,k],init:b,apply:u},backgroundPositionX:{nullable:true,apply:l},backgroundPositionY:{nullable:true,apply:l},backgroundPosition:{group:[d,c]}},members:{_styleBackgroundImage:function(v){var x=this.getBackgroundImage();if(!x){return;};var y=qx.util.AliasManager.getInstance().resolve(x);var z=qx.util.ResourceManager.getInstance().toUri(y);if(v[o]){v[o]+=a+z+j;}else {v[o]=m+z+j;};var w=this.getBackgroundRepeat();if(w===k){v[s]=p;}else {v[h]=w;};var top=this.getBackgroundPositionY()||0;var A=this.getBackgroundPositionX()||0;if(!isNaN(top)){top+=e;};if(!isNaN(A)){A+=e;};v[f]=A+g+top;{};},_applyBackgroundImage:function(){{};},_applyBackgroundPosition:function(){{};}}});})();(function(){var a="0",b="qx/static",c="http://",d="https://",e="file://",f="qx.util.AliasManager",g="singleton",h=".",i="/",j="static";qx.Class.define(f,{type:g,extend:qx.util.ValueManager,construct:function(){qx.util.ValueManager.call(this);this.__dy={};this.add(j,b);},members:{__dy:null,_preprocess:function(n){var m=this._getDynamic();if(m[n]===false){return n;}else if(m[n]===undefined){if(n.charAt(0)===i||n.charAt(0)===h||n.indexOf(c)===0||n.indexOf(d)===a||n.indexOf(e)===0){m[n]=false;return n;};if(this.__dy[n]){return this.__dy[n];};var l=n.substring(0,n.indexOf(i));var k=this.__dy[l];if(k!==undefined){m[n]=k+n.substring(l.length);};};return n;},add:function(o,q){this.__dy[o]=q;var p=this._getDynamic();for(var r in p){if(r.substring(0,r.indexOf(i))===o){p[r]=q+r.substring(o.length);};};},remove:function(s){delete this.__dy[s];},resolve:function(t){var u=this._getDynamic();if(t!=null){t=this._preprocess(t);};return u[t]||t;},getAliases:function(){var v={};for(var w in this.__dy){v[w]=this.__dy[w];};return v;}},destruct:function(){this.__dy=null;}});})();(function(){var a="singleton",b="qx.util.LibraryManager";qx.Class.define(b,{extend:qx.core.Object,type:a,statics:{__dz:qx.$$libraries||{}},members:{has:function(c){return !!this.self(arguments).__dz[c];},get:function(d,e){return this.self(arguments).__dz[d][e]?this.self(arguments).__dz[d][e]:null;},set:function(f,g,h){this.self(arguments).__dz[f][g]=h;}}});})();(function(){var a="Microsoft.XMLHTTP",b="xhr",c="io.ssl",d="io.xhr",e="",f="file:",g="https:",h="webkit",i="gecko",j="activex",k="opera",l=".",m="io.maxrequests",n="qx.bom.client.Transport";qx.Bootstrap.define(n,{statics:{getMaxConcurrentRequestCount:function(){var p;var r=qx.bom.client.Engine.getVersion().split(l);var o=0;var s=0;var q=0;if(r[0]){o=r[0];};if(r[1]){s=r[1];};if(r[2]){q=r[2];};if(window.maxConnectionsPerServer){p=window.maxConnectionsPerServer;}else if(qx.bom.client.Engine.getName()==k){p=8;}else if(qx.bom.client.Engine.getName()==h){p=4;}else if(qx.bom.client.Engine.getName()==i&&((o>1)||((o==1)&&(s>9))||((o==1)&&(s==9)&&(q>=1)))){p=6;}else {p=2;};return p;},getSsl:function(){return window.location.protocol===g;},getXmlHttpRequest:function(){var t=window.ActiveXObject?(function(){if(window.location.protocol!==f){try{new window.XMLHttpRequest();return b;}catch(u){};};try{new window.ActiveXObject(a);return j;}catch(v){};})():(function(){try{new window.XMLHttpRequest();return b;}catch(w){};})();return t||e;}},defer:function(x){qx.core.Environment.add(m,x.getMaxConcurrentRequestCount);qx.core.Environment.add(c,x.getSsl);qx.core.Environment.add(d,x.getXmlHttpRequest);}});})();(function(){var a="mshtml",b="engine.name",c="//",d="io.ssl",e="",f="encoding",g="?",h="data",i="string",j="type",k="data:image/",l=";",m="/",n="resourceUri",o="qx.util.ResourceManager",p="singleton",q=",";qx.Class.define(o,{extend:qx.core.Object,type:p,construct:function(){qx.core.Object.call(this);},statics:{__k:qx.$$resources||{},__dA:{}},members:{has:function(r){return !!this.self(arguments).__k[r];},getData:function(s){return this.self(arguments).__k[s]||null;},getImageWidth:function(u){var t=this.self(arguments).__k[u];return t?t[0]:null;},getImageHeight:function(w){var v=this.self(arguments).__k[w];return v?v[1]:null;},getImageFormat:function(y){var x=this.self(arguments).__k[y];return x?x[2]:null;},getCombinedFormat:function(D){var A=e;var C=this.self(arguments).__k[D];var z=C&&C.length>4&&typeof (C[4])==i&&this.constructor.__k[C[4]];if(z){var E=C[4];var B=this.constructor.__k[E];A=B[2];};return A;},toUri:function(I){if(I==null){return I;};var F=this.self(arguments).__k[I];if(!F){return I;};if(typeof F===i){var H=F;}else {var H=F[3];if(!H){return I;};};var G=e;if((qx.core.Environment.get(b)==a)&&qx.core.Environment.get(d)){G=this.self(arguments).__dA[H];};return G+qx.util.LibraryManager.getInstance().get(H,n)+m+I;},toDataUri:function(L){var K=this.constructor.__k[L];var N=this.constructor.__k[K[4]];var M;if(N){var J=N[4][L];M=k+J[j]+l+J[f]+q+J[h];}else {M=this.toUri(L);};return M;}},defer:function(P){if((qx.core.Environment.get(b)==a)){if(qx.core.Environment.get(d)){for(var Q in qx.$$libraries){var O;if(qx.util.LibraryManager.getInstance().get(Q,n)){O=qx.util.LibraryManager.getInstance().get(Q,n);}else {P.__dA[Q]=e;continue;};if(O.match(/^\/\//)!=null){P.__dA[Q]=window.location.protocol;}else if(O.match(/^\//)!=null){P.__dA[Q]=window.location.protocol+c+window.location.host;}else if(O.match(/^\.\//)!=null){var S=document.URL;P.__dA[Q]=S.substring(0,S.lastIndexOf(m)+1);}else if(O.match(/^http/)!=null){P.__dA[Q]=e;}else {var R=window.location.href.indexOf(g);var T;if(R==-1){T=window.location.href;}else {T=window.location.href.substring(0,R);};P.__dA[Q]=T.substring(0,T.lastIndexOf(m)+1);};};};};}});})();(function(){var a="innerWidthRight",b="innerColorBottom",c="css.borderradius",d="px ",e='""',f="_applyDoubleBorder",g="border-top",h="inset 0 -",i="css.boxsizing",j="innerWidthTop",k="100%",l="border-left",m="innerColorRight",n="css.boxshadow",o="innerColorTop",p="innerColorLeft",q="inset ",r="shorthand",s="inset -",t="Color",u="border-box",v="qx.ui.decoration.MDoubleBorder",w="border-bottom",x=":before",y="inset 0 ",z="px solid ",A="innerWidthBottom",B="css.rgba",C="inherit",D="Number",E="innerWidthLeft",F="px 0 ",G="inset 0 0 0 ",H="border-right",I=" ",J=",",K="absolute";qx.Mixin.define(v,{include:[qx.ui.decoration.MSingleBorder,qx.ui.decoration.MBackgroundImage],construct:function(){this._getDefaultInsetsForBorder=this.__dD;this._styleBorder=this.__dB;},properties:{innerWidthTop:{check:D,init:0,apply:f},innerWidthRight:{check:D,init:0,apply:f},innerWidthBottom:{check:D,init:0,apply:f},innerWidthLeft:{check:D,init:0,apply:f},innerWidth:{group:[j,a,A,E],mode:r},innerColorTop:{nullable:true,check:t,apply:f},innerColorRight:{nullable:true,check:t,apply:f},innerColorBottom:{nullable:true,check:t,apply:f},innerColorLeft:{nullable:true,check:t,apply:f},innerColor:{group:[o,m,b,p],mode:r},innerOpacity:{check:D,init:1,apply:f}},members:{__dB:function(L){var U=qx.core.Environment.get(n);var O,Y,innerWidth;{var T=qx.theme.manager.Color.getInstance();O={top:T.resolve(this.getColorTop()),right:T.resolve(this.getColorRight()),bottom:T.resolve(this.getColorBottom()),left:T.resolve(this.getColorLeft())};Y={top:T.resolve(this.getInnerColorTop()),right:T.resolve(this.getInnerColorRight()),bottom:T.resolve(this.getInnerColorBottom()),left:T.resolve(this.getInnerColorLeft())};};innerWidth={top:this.getInnerWidthTop(),right:this.getInnerWidthRight(),bottom:this.getInnerWidthBottom(),left:this.getInnerWidthLeft()};var R=this.getWidthTop();if(R>0){L[g]=R+d+this.getStyleTop()+I+O.top;};R=this.getWidthRight();if(R>0){L[H]=R+d+this.getStyleRight()+I+O.right;};R=this.getWidthBottom();if(R>0){L[w]=R+d+this.getStyleBottom()+I+O.bottom;};R=this.getWidthLeft();if(R>0){L[l]=R+d+this.getStyleLeft()+I+O.left;};var X=this.getInnerOpacity();if(X<1){this.__dC(Y,X);};if(innerWidth.top>0||innerWidth.right>0||innerWidth.bottom>0||innerWidth.left>0){var W=(innerWidth.top||0)+z+Y.top;var V=(innerWidth.right||0)+z+Y.right;var Q=(innerWidth.bottom||0)+z+Y.bottom;var S=(innerWidth.left||0)+z+Y.left;L[x]={"width":k,"height":k,"position":K,"content":e,"border-top":W,"border-right":V,"border-bottom":Q,"border-left":S,"left":0,"top":0};var M=qx.bom.Style.getCssName(qx.core.Environment.get(i));L[x][M]=u;var N=qx.core.Environment.get(c);if(N){N=qx.bom.Style.getCssName(N);L[x][N]=C;};var P=[];if(Y.top&&innerWidth.top&&Y.top==Y.bottom&&Y.top==Y.right&&Y.top==Y.left&&innerWidth.top==innerWidth.bottom&&innerWidth.top==innerWidth.right&&innerWidth.top==innerWidth.left){P.push(G+innerWidth.top+d+Y.top);}else {if(Y.top){P.push(y+(innerWidth.top||0)+d+Y.top);};if(Y.right){P.push(s+(innerWidth.right||0)+F+Y.right);};if(Y.bottom){P.push(h+(innerWidth.bottom||0)+d+Y.bottom);};if(Y.left){P.push(q+(innerWidth.left||0)+F+Y.left);};};if(P.length>0&&U){U=qx.bom.Style.getCssName(U);if(!L[U]){L[U]=P.join(J);}else {L[U]+=J+P.join(J);};};};},__dC:function(bd,ba){if(!qx.core.Environment.get(B)){{};return;};for(var be in bd){var bb=qx.util.ColorUtil.stringToRgb(bd[be]);bb.push(ba);var bc=qx.util.ColorUtil.rgbToRgbString(bb);bd[be]=bc;};},_applyDoubleBorder:function(){{};},__dD:function(){return {top:this.getWidthTop()+this.getInnerWidthTop(),right:this.getWidthRight()+this.getInnerWidthRight(),bottom:this.getWidthBottom()+this.getInnerWidthBottom(),left:this.getWidthLeft()+this.getInnerWidthLeft()};}}});})();(function(){var a="css.float",b="foo",c="css.borderimage.standardsyntax",d="borderRadius",e="boxSizing",f="stretch",g='m11',h="content",j="css.inlineblock",k="css.gradient.filter",l="css.appearance",m="css.opacity",n="div",o="pointerEvents",p="css.gradient.radial",q="css.pointerevents",r="input",s="color",t="string",u="borderImage",v="userSelect",w="styleFloat",x="css.textShadow.filter",y="css.usermodify",z="css.boxsizing",A='url("foo.png") 4 4 4 4 fill stretch',B="css.boxmodel",C="qx.bom.client.Css",D="appearance",E="placeholder",F="-moz-none",G="backgroundImage",H="css.textShadow",I="DXImageTransform.Microsoft.Shadow",J="css.boxshadow",K="css.alphaimageloaderneeded",L="css.gradient.legacywebkit",M="css.borderradius",N="linear-gradient(0deg, #fff, #000)",O="textShadow",P="auto",Q="css.borderimage",R="foo.png",S="rgba(1, 2, 3, 0.5)",T="color=#666666,direction=45",U="radial-gradient(0px 0px, cover, red 50%, blue 100%)",V="rgba",W="(",X='url("foo.png") 4 4 4 4 stretch',Y="css.gradient.linear",bC="DXImageTransform.Microsoft.Gradient",bD="css.userselect",bE="span",by="-webkit-gradient(linear,0% 0%,100% 100%,from(white), to(red))",bz="mshtml",bA="css.rgba",bB=");",bI="4 fill",bJ='WebKitCSSMatrix',bK="none",bR="startColorStr=#550000FF, endColorStr=#55FFFF00",bF="progid:",bG="css.placeholder",bH="css.userselect.none",bw="css.textoverflow",bM="inline-block",bx="-moz-inline-box",bN="textOverflow",bO="userModify",bP="boxShadow",bL="cssFloat",bQ="border";qx.Bootstrap.define(C,{statics:{__dE:null,getBoxModel:function(){var content=qx.bom.client.Engine.getName()!==bz||!qx.bom.client.Browser.getQuirksMode();return content?h:bQ;},getTextOverflow:function(){return qx.bom.Style.getPropertyName(bN);},getPlaceholder:function(){var i=document.createElement(r);return E in i;},getAppearance:function(){return qx.bom.Style.getPropertyName(D);},getBorderRadius:function(){return qx.bom.Style.getPropertyName(d);},getBoxShadow:function(){return qx.bom.Style.getPropertyName(bP);},getBorderImage:function(){return qx.bom.Style.getPropertyName(u);},getBorderImageSyntax:function(){var bT=qx.bom.client.Css.getBorderImage();if(!bT){return null;};var bS=document.createElement(n);if(bT===u){bS.style[bT]=A;if(bS.style.borderImageSource.indexOf(R)>=0&&bS.style.borderImageSlice.indexOf(bI)>=0&&bS.style.borderImageRepeat.indexOf(f)>=0){return true;};}else {bS.style[bT]=X;if(bS.style[bT].indexOf(R)>=0){return false;};};return null;},getUserSelect:function(){return qx.bom.Style.getPropertyName(v);},getUserSelectNone:function(){var bV=qx.bom.client.Css.getUserSelect();if(bV){var bU=document.createElement(bE);bU.style[bV]=F;return bU.style[bV]===F?F:bK;};return null;},getUserModify:function(){return qx.bom.Style.getPropertyName(bO);},getFloat:function(){var bW=document.documentElement.style;return bW.cssFloat!==undefined?bL:bW.styleFloat!==undefined?w:null;},getTranslate3d:function(){return bJ in window&&g in new WebKitCSSMatrix();},getLinearGradient:function(){qx.bom.client.Css.__dE=false;var cb=N;var bX=document.createElement(n);var bY=qx.bom.Style.getAppliedStyle(bX,G,cb);if(!bY){cb=by;var bY=qx.bom.Style.getAppliedStyle(bX,G,cb,false);if(bY){qx.bom.client.Css.__dE=true;};};if(!bY){return null;};var ca=/(.*?)\(/.exec(bY);return ca?ca[1]:null;},getFilterGradient:function(){return qx.bom.client.Css.__dF(bC,bR);},getRadialGradient:function(){var cf=U;var cc=document.createElement(n);var cd=qx.bom.Style.getAppliedStyle(cc,G,cf);if(!cd){return null;};var ce=/(.*?)\(/.exec(cd);return ce?ce[1]:null;},getLegacyWebkitGradient:function(){if(qx.bom.client.Css.__dE===null){qx.bom.client.Css.getLinearGradient();};return qx.bom.client.Css.__dE;},getRgba:function(){var cg;try{cg=document.createElement(n);}catch(ch){cg=document.createElement();};try{cg.style[s]=S;if(cg.style[s].indexOf(V)!=-1){return true;};}catch(ci){};return false;},getBoxSizing:function(){return qx.bom.Style.getPropertyName(e);},getInlineBlock:function(){var cj=document.createElement(bE);cj.style.display=bM;if(cj.style.display==bM){return bM;};cj.style.display=bx;if(cj.style.display!==bx){return bx;};return null;},getOpacity:function(){return (typeof document.documentElement.style.opacity==t);},getTextShadow:function(){return !!qx.bom.Style.getPropertyName(O);},getFilterTextShadow:function(){return qx.bom.client.Css.__dF(I,T);},__dF:function(cn,cl){var cm=false;var co=bF+cn+W+cl+bB;var ck=document.createElement(n);document.body.appendChild(ck);ck.style.filter=co;if(ck.filters&&ck.filters.length>0&&ck.filters.item(cn).enabled==true){cm=true;};document.body.removeChild(ck);return cm;},getAlphaImageLoaderNeeded:function(){return qx.bom.client.Engine.getName()==bz&&qx.bom.client.Browser.getDocumentMode()<9;},getPointerEvents:function(){var cp=document.documentElement;if(o in cp.style){var cr=cp.style.pointerEvents;cp.style.pointerEvents=P;cp.style.pointerEvents=b;var cq=cp.style.pointerEvents==P;cp.style.pointerEvents=cr;return cq;};return false;}},defer:function(cs){qx.core.Environment.add(bw,cs.getTextOverflow);qx.core.Environment.add(bG,cs.getPlaceholder);qx.core.Environment.add(M,cs.getBorderRadius);qx.core.Environment.add(J,cs.getBoxShadow);qx.core.Environment.add(Y,cs.getLinearGradient);qx.core.Environment.add(k,cs.getFilterGradient);qx.core.Environment.add(p,cs.getRadialGradient);qx.core.Environment.add(L,cs.getLegacyWebkitGradient);qx.core.Environment.add(B,cs.getBoxModel);qx.core.Environment.add(bA,cs.getRgba);qx.core.Environment.add(Q,cs.getBorderImage);qx.core.Environment.add(c,cs.getBorderImageSyntax);qx.core.Environment.add(y,cs.getUserModify);qx.core.Environment.add(bD,cs.getUserSelect);qx.core.Environment.add(bH,cs.getUserSelectNone);qx.core.Environment.add(l,cs.getAppearance);qx.core.Environment.add(a,cs.getFloat);qx.core.Environment.add(z,cs.getBoxSizing);qx.core.Environment.add(j,cs.getInlineBlock);qx.core.Environment.add(m,cs.getOpacity);qx.core.Environment.add(H,cs.getTextShadow);qx.core.Environment.add(x,cs.getFilterTextShadow);qx.core.Environment.add(K,cs.getAlphaImageLoaderNeeded);qx.core.Environment.add(q,cs.getPointerEvents);}});})();(function(){var a="radiusTopRight",b="radiusTopLeft",c="px",d="-webkit-border-bottom-left-radius",e="-webkit-background-clip",f="radiusBottomRight",g="Integer",h="-webkit-border-bottom-right-radius",i="background-clip",j="border-top-left-radius",k="border-top-right-radius",l="border-bottom-left-radius",m="radiusBottomLeft",n="-webkit-border-top-left-radius",o="shorthand",p="-moz-border-radius-bottomright",q="padding-box",r="border-bottom-right-radius",s="qx.ui.decoration.MBorderRadius",t="-moz-border-radius-topright",u="engine.name",v="_applyBorderRadius",w="-webkit-border-top-right-radius",x="webkit",y="-moz-border-radius-topleft",z="-moz-border-radius-bottomleft";qx.Mixin.define(s,{properties:{radiusTopLeft:{nullable:true,check:g,apply:v},radiusTopRight:{nullable:true,check:g,apply:v},radiusBottomLeft:{nullable:true,check:g,apply:v},radiusBottomRight:{nullable:true,check:g,apply:v},radius:{group:[b,a,f,m],mode:o}},members:{_styleBorderRadius:function(A){A[e]=q;A[i]=q;var B=false;var C=this.getRadiusTopLeft();if(C>0){B=true;A[y]=C+c;A[n]=C+c;A[j]=C+c;};C=this.getRadiusTopRight();if(C>0){B=true;A[t]=C+c;A[w]=C+c;A[k]=C+c;};C=this.getRadiusBottomLeft();if(C>0){B=true;A[z]=C+c;A[d]=C+c;A[l]=C+c;};C=this.getRadiusBottomRight();if(C>0){B=true;A[p]=C+c;A[h]=C+c;A[r]=C+c;};if(B&&qx.core.Environment.get(u)==x){A[e]=q;}else {A[i]=q;};},_applyBorderRadius:function(){{};}}});})();(function(){var a="border-width",b="css.borderimage.standardsyntax",c="repeat",d="Boolean",e="-l",f="stretch",g="px ",h="sliceBottom",i="-t",j="Integer",k="solid",l="borderImage",m="-r",n="border-style",o="sliceLeft",p="-b",q="sliceRight",r="px",s="repeatX",t=" fill",u="String",v="vertical",w="",x="transparent",y="round",z='") ',A="shorthand",B="qx.ui.decoration.MBorderImage",C="sliceTop",D="horizontal",E="_applyBorderImage",F="border-color",G='url("',H=" ",I="grid",J="repeatY";qx.Mixin.define(B,{properties:{borderImage:{check:u,nullable:true,apply:E},sliceTop:{check:j,nullable:true,init:null,apply:E},sliceRight:{check:j,nullable:true,init:null,apply:E},sliceBottom:{check:j,nullable:true,init:null,apply:E},sliceLeft:{check:j,nullable:true,init:null,apply:E},slice:{group:[C,q,h,o],mode:A},repeatX:{check:[f,c,y],init:f,apply:E},repeatY:{check:[f,c,y],init:f,apply:E},repeat:{group:[s,J],mode:A},fill:{check:d,init:true,apply:E},borderImageMode:{check:[D,v,I],init:I}},members:{_styleBorderImage:function(K){if(!this.getBorderImage()){return;};var M=qx.util.AliasManager.getInstance().resolve(this.getBorderImage());var O=qx.util.ResourceManager.getInstance().toUri(M);var R=this._getDefaultInsetsForBorderImage();var L=[R.top,R.right,R.bottom,R.left];var P=[this.getRepeatX(),this.getRepeatY()].join(H);var S=this.getFill()&&qx.core.Environment.get(b)?t:w;var N=qx.bom.Style.getPropertyName(l);if(N){var Q=qx.bom.Style.getCssName(N);K[Q]=G+O+z+L.join(H)+S+H+P;};K[n]=k;K[F]=x;K[a]=L.join(g)+r;},_getDefaultInsetsForBorderImage:function(){if(!this.getBorderImage()){return {top:0,right:0,bottom:0,left:0};};var T=qx.util.AliasManager.getInstance().resolve(this.getBorderImage());var U=this.__dG(T);return {top:this.getSliceTop()||U[0],right:this.getSliceRight()||U[1],bottom:this.getSliceBottom()||U[2],left:this.getSliceLeft()||U[3]};},_applyBorderImage:function(){{};},__dG:function(bc){var bb=this.getBorderImageMode();var bd=0;var Y=0;var ba=0;var be=0;var bf=/(.*)(\.[a-z]+)$/.exec(bc);var V=bf[1];var X=bf[2];var W=qx.util.ResourceManager.getInstance();if(bb==I||bb==v){bd=W.getImageHeight(V+i+X);ba=W.getImageHeight(V+p+X);};if(bb==I||bb==D){Y=W.getImageWidth(V+m+X);be=W.getImageWidth(V+e+X);};return [bd,Y,ba,be];}}});})();(function(){var a=" 0",b="</div>",c="),to(",d="px",e="css.borderradius",f="from(",g=")",h="background-image",i="background",j="<div style='width: 100%; height: 100%; position: absolute;",k="filter",l="background-size",m="', ",n="'></div>",o="0",p="_applyLinearBackgroundGradient",q="-webkit-gradient(linear,",r="startColorPosition",s="background-color",t="deg, ",u="url(",v="css.gradient.legacywebkit",w="EndColorStr='#FF",x="startColor",y="shorthand",z="100% 100%",A="Color",B='<div style=\"position: absolute; width: 100%; height: 100%; filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=',C="MBoxShadow",D="StartColorStr='#FF",E="vertical",F="",G="transparent",H="qx.ui.decoration.MLinearBackgroundGradient",I="(",J="endColorPosition",K="canvas",L="';)\">",M="css.gradient.linear",N="';)",O="endColor",P=", ",Q="css.gradient.filter",R="horizontal",S="Number",T='2d',U="%",V=" ",W="white",X="linear-gradient",Y='progid:DXImageTransform.Microsoft.Gradient(GradientType=',bb=",";qx.Mixin.define(H,{properties:{startColor:{check:A,nullable:true,apply:p},endColor:{check:A,nullable:true,apply:p},orientation:{check:[R,E],init:E,apply:p},startColorPosition:{check:S,init:0,apply:p},endColorPosition:{check:S,init:100,apply:p},colorPositionUnit:{check:[d,U],init:U,apply:p},gradientStart:{group:[x,r],mode:y},gradientEnd:{group:[O,J],mode:y}},members:{__dH:null,_styleLinearBackgroundGradient:function(bc){var bm=this.__dI();var bq=bm.start;var bk=bm.end;var bi;if(!bq||!bk){return;};var bt=this.getColorPositionUnit();if(qx.core.Environment.get(v)){bt=bt===d?F:bt;if(this.getOrientation()==R){var bp=this.getStartColorPosition()+bt+a+bt;var bn=this.getEndColorPosition()+bt+a+bt;}else {var bp=o+bt+V+this.getStartColorPosition()+bt;var bn=o+bt+V+this.getEndColorPosition()+bt;};var bf=f+bq+c+bk+g;bi=q+bp+bb+bn+bb+bf+g;bc[i]=bi;}else if(qx.core.Environment.get(Q)&&!qx.core.Environment.get(M)&&qx.core.Environment.get(e)){if(!this.__dH){this.__dH=document.createElement(K);};var bg=this.getOrientation()==E;var bm=this.__dI();var bj=bg?200:1;var bl=bg?1:200;this.__dH.width=bl;this.__dH.height=bj;var bh=this.__dH.getContext(T);if(bg){var bs=bh.createLinearGradient(0,0,0,bj);}else {var bs=bh.createLinearGradient(0,0,bl,0);};bs.addColorStop(this.getStartColorPosition()/100,bm.start);bs.addColorStop(this.getEndColorPosition()/100,bm.end);bh.fillStyle=bs;bh.fillRect(0,0,bl,bj);var bi=u+this.__dH.toDataURL()+g;bc[h]=bi;bc[l]=z;}else if(qx.core.Environment.get(Q)&&!qx.core.Environment.get(M)){var bm=this.__dI();var br=this.getOrientation()==R?1:0;var bq=bm.start;var bk=bm.end;if(!qx.util.ColorUtil.isHex6String(bq)){bq=qx.util.ColorUtil.stringToRgb(bq);bq=qx.util.ColorUtil.rgbToHexString(bq);};if(!qx.util.ColorUtil.isHex6String(bk)){bk=qx.util.ColorUtil.stringToRgb(bk);bk=qx.util.ColorUtil.rgbToHexString(bk);};bq=bq.substring(1,bq.length);bk=bk.substring(1,bk.length);bi=Y+br+P+D+bq+m+w+bk+N;if(bc[k]){bc[k]+=P+bi;}else {bc[k]=bi;};if(!bc[s]||bc[s]==G){bc[s]=W;};}else {var bu=this.getOrientation()==R?0:270;var be=bq+V+this.getStartColorPosition()+bt;var bd=bk+V+this.getEndColorPosition()+bt;var bo=qx.core.Environment.get(M);if(bo===X){bu=this.getOrientation()==R?bu+90:bu-90;};bi=bo+I+bu+t+be+bb+bd+g;if(bc[h]){bc[h]+=P+bi;}else {bc[h]=bi;};};},__dI:function(){{var bv=qx.theme.manager.Color.getInstance();var bx=bv.resolve(this.getStartColor());var bw=bv.resolve(this.getEndColor());};return {start:bx,end:bw};},_getContent:function(){if(qx.core.Environment.get(Q)&&!qx.core.Environment.get(M)){var bA=this.__dI();var bD=this.getOrientation()==R?1:0;var bC=qx.util.ColorUtil.hex3StringToHex6String(bA.start);var bz=qx.util.ColorUtil.hex3StringToHex6String(bA.end);bC=bC.substring(1,bC.length);bz=bz.substring(1,bz.length);var bB=F;if(this.classname.indexOf(C)!=-1){var by={};this._styleBoxShadow(by);bB=j+qx.bom.element.Style.compile(by)+n;};return B+bD+P+D+bC+m+w+bz+L+bB+b;};return F;},_applyLinearBackgroundGradient:function(){{};}}});})();(function(){var a="border-box",b="qx.bom.element.BoxSizing",c="css.boxsizing",d="",e="boxSizing",f="content-box",g=":",h=";";qx.Bootstrap.define(b,{statics:{__dJ:{tags:{button:true,select:true},types:{search:true,button:true,submit:true,reset:true,checkbox:true,radio:true}},__dK:function(j){var i=this.__dJ;return i.tags[j.tagName.toLowerCase()]||i.types[j.type];},compile:function(k){if(qx.core.Environment.get(c)){var l=qx.bom.Style.getCssName(qx.core.Environment.get(c));return l+g+k+h;}else {{};};},get:function(m){if(qx.core.Environment.get(c)){return qx.bom.element.Style.get(m,e,null,false)||d;};if(qx.bom.Document.isStandardMode(qx.dom.Node.getWindow(m))){if(!this.__dK(m)){return f;};};return a;},set:function(o,n){if(qx.core.Environment.get(c)){try{o.style[qx.core.Environment.get(c)]=n;}catch(p){{};};}else {{};};},reset:function(q){this.set(q,d);}}});})();(function(){var a="clip:auto;",b="rect(",c=")",d=");",e="",f="px",g="Could not parse clip string: ",h="qx.bom.element.Clip",i="string",j="clip:rect(",k=" ",l="clip",m="rect(auto,auto,auto,auto)",n="rect(auto, auto, auto, auto)",o="auto",p=",";qx.Bootstrap.define(h,{statics:{compile:function(q){if(!q){return a;};var v=q.left;var top=q.top;var u=q.width;var t=q.height;var r,s;if(v==null){r=(u==null?o:u+f);v=o;}else {r=(u==null?o:v+u+f);v=v+f;};if(top==null){s=(t==null?o:t+f);top=o;}else {s=(t==null?o:top+t+f);top=top+f;};return j+top+p+r+p+s+p+v+d;},get:function(z,D){var x=qx.bom.element.Style.get(z,l,D,false);var C,top,A,E;var w,y;if(typeof x===i&&x!==o&&x!==e){x=x.trim();if(/\((.*)\)/.test(x)){var F=RegExp.$1;if(/,/.test(F)){var B=F.split(p);}else {var B=F.split(k);};top=B[0].trim();w=B[1].trim();y=B[2].trim();C=B[3].trim();if(C===o){C=null;};if(top===o){top=null;};if(w===o){w=null;};if(y===o){y=null;};if(top!=null){top=parseInt(top,10);};if(w!=null){w=parseInt(w,10);};if(y!=null){y=parseInt(y,10);};if(C!=null){C=parseInt(C,10);};if(w!=null&&C!=null){A=w-C;}else if(w!=null){A=w;};if(y!=null&&top!=null){E=y-top;}else if(y!=null){E=y;};}else {throw new Error(g+x);};};return {left:C||null,top:top||null,width:A||null,height:E||null};},set:function(L,G){if(!G){L.style.clip=m;return;};var M=G.left;var top=G.top;var K=G.width;var J=G.height;var H,I;if(M==null){H=(K==null?o:K+f);M=o;}else {H=(K==null?o:M+K+f);M=M+f;};if(top==null){I=(J==null?o:J+f);top=o;}else {I=(J==null?o:top+J+f);top=top+f;};L.style.clip=b+top+p+H+p+I+p+M+c;},reset:function(N){N.style.clip=n;}}});})();(function(){var a="cursor:",b="engine.name",c="ns-resize",d="",e="mshtml",f="nw-resize",g="n-resize",h="engine.version",i="nesw-resize",j="opera",k="browser.documentmode",l=";",m="nwse-resize",n="ew-resize",o="qx.bom.element.Cursor",p="ne-resize",q="e-resize",r="browser.quirksmode",s="cursor";qx.Bootstrap.define(o,{statics:{__dL:{},compile:function(t){return a+(this.__dL[t]||t)+l;},get:function(v,u){return qx.bom.element.Style.get(v,s,u,false);},set:function(x,w){x.style.cursor=this.__dL[w]||w;},reset:function(y){y.style.cursor=d;}},defer:function(z){if(qx.core.Environment.get(b)==e&&((parseFloat(qx.core.Environment.get(h))<9||qx.core.Environment.get(k)<9)&&!qx.core.Environment.get(r))){z.__dL[i]=p;z.__dL[m]=f;if(((parseFloat(qx.core.Environment.get(h))<8||qx.core.Environment.get(k)<8)&&!qx.core.Environment.get(r))){z.__dL[n]=q;z.__dL[c]=g;};}else if(qx.core.Environment.get(b)==j&&parseInt(qx.core.Environment.get(h))<12){z.__dL[i]=p;z.__dL[m]=f;};}});})();(function(){var a="engine.name",b=");",c="",d=")",e="zoom:1;filter:alpha(opacity=",f="qx.bom.element.Opacity",g="css.opacity",h=";",i="opacity:",j="alpha(opacity=",k="opacity",l="filter";qx.Bootstrap.define(f,{statics:{compile:qx.core.Environment.select(a,{"mshtml":function(m){if(m>=1){m=1;};if(m<0.00001){m=0;};if(qx.core.Environment.get(g)){return i+m+h;}else {return e+(m*100)+b;};},"default":function(n){if(n>=1){return c;};return i+n+h;}}),set:qx.core.Environment.select(a,{"mshtml":function(q,o){if(qx.core.Environment.get(g)){if(o>=1){o=c;};q.style.opacity=o;}else {var p=qx.bom.element.Style.get(q,l,qx.bom.element.Style.COMPUTED_MODE,false);if(o>=1){o=1;};if(o<0.00001){o=0;};if(!q.currentStyle||!q.currentStyle.hasLayout){q.style.zoom=1;};q.style.filter=p.replace(/alpha\([^\)]*\)/gi,c)+j+o*100+d;};},"default":function(s,r){if(r>=1){r=c;};s.style.opacity=r;}}),reset:qx.core.Environment.select(a,{"mshtml":function(u){if(qx.core.Environment.get(g)){u.style.opacity=c;}else {var t=qx.bom.element.Style.get(u,l,qx.bom.element.Style.COMPUTED_MODE,false);u.style.filter=t.replace(/alpha\([^\)]*\)/gi,c);};},"default":function(v){v.style.opacity=c;}}),get:qx.core.Environment.select(a,{"mshtml":function(z,y){if(qx.core.Environment.get(g)){var w=qx.bom.element.Style.get(z,k,y,false);if(w!=null){return parseFloat(w);};return 1.0;}else {var x=qx.bom.element.Style.get(z,l,y,false);if(x){var w=x.match(/alpha\(opacity=(.*)\)/);if(w&&w[1]){return parseFloat(w[1])/100;};};return 1.0;};},"default":function(C,B){var A=qx.bom.element.Style.get(C,k,B,false);if(A!=null){return parseFloat(A);};return 1.0;}})}});})();(function(){var a="css.float",b="px",c="Cascaded styles are not supported in this browser!",d="css.appearance",e="pixelRight",f="float",g="css.userselect",h="css.boxsizing",i="css.textoverflow",j="pixelHeight",k=":",l="pixelTop",m="browser.documentmode",n="css.borderimage",o="pixelLeft",p="engine.name",q="css.usermodify",r="mshtml",s="qx.bom.element.Style",t="",u="pixelBottom",v="pixelWidth",w=";",x="style";qx.Bootstrap.define(s,{statics:{__dM:null,__dN:null,__dO:function(){var z={"appearance":qx.core.Environment.get(d),"userSelect":qx.core.Environment.get(g),"textOverflow":qx.core.Environment.get(i),"borderImage":qx.core.Environment.get(n),"float":qx.core.Environment.get(a),"userModify":qx.core.Environment.get(q),"boxSizing":qx.core.Environment.get(h)};this.__dN={};for(var y in qx.lang.Object.clone(z)){if(!z[y]){delete z[y];}else {this.__dN[y]=y==f?f:qx.bom.Style.getCssName(z[y]);};};this.__dM=z;},__dP:function(name){var A=qx.bom.Style.getPropertyName(name);if(A){this.__dM[name]=A;};return A;},__dQ:{width:v,height:j,left:o,right:e,top:l,bottom:u},__dR:{clip:qx.bom.element.Clip,cursor:qx.bom.element.Cursor,opacity:qx.bom.element.Opacity,boxSizing:qx.bom.element.BoxSizing},compile:function(B){var E=[];var F=this.__dR;var D=this.__dN;var name,C;for(name in B){C=B[name];if(C==null){continue;};name=this.__dM[name]||this.__dP(name)||name;if(F[name]){E.push(F[name].compile(C));}else {if(!D[name]){D[name]=qx.bom.Style.getCssName(name);};E.push(D[name],k,C,w);};};return E.join(t);},setCss:function(H,G){if(qx.core.Environment.get(p)===r&&parseInt(qx.core.Environment.get(m),10)<8){H.style.cssText=G;}else {H.setAttribute(x,G);};},getCss:function(I){if(qx.core.Environment.get(p)===r&&parseInt(qx.core.Environment.get(m),10)<8){return I.style.cssText.toLowerCase();}else {return I.getAttribute(x);};},isPropertySupported:function(J){return (this.__dR[J]||this.__dM[J]||J in document.documentElement.style);},COMPUTED_MODE:1,CASCADED_MODE:2,LOCAL_MODE:3,set:function(M,name,K,L){{};name=this.__dM[name]||this.__dP(name)||name;if(L!==false&&this.__dR[name]){this.__dR[name].set(M,K);}else {M.style[name]=K!==null?K:t;};},setStyles:function(T,N,U){{};var Q=this.__dM;var R=this.__dR;var O=T.style;for(var S in N){var P=N[S];var name=Q[S]||this.__dP(S)||S;if(P===undefined){if(U!==false&&R[name]){R[name].reset(T);}else {O[name]=t;};}else {if(U!==false&&R[name]){R[name].set(T,P);}else {O[name]=P!==null?P:t;};};};},reset:function(W,name,V){name=this.__dM[name]||this.__dP(name)||name;if(V!==false&&this.__dR[name]){this.__dR[name].reset(W);}else {W.style[name]=t;};},get:qx.core.Environment.select(p,{"mshtml":function(ba,name,bb,be){name=this.__dM[name]||this.__dP(name)||name;if(be!==false&&this.__dR[name]){return this.__dR[name].get(ba,bb);};if(!ba.currentStyle){return ba.style[name]||t;};switch(bb){case this.LOCAL_MODE:return ba.style[name]||t;case this.CASCADED_MODE:return ba.currentStyle[name]||t;default:var bc=ba.currentStyle[name]||ba.style[name]||t;if(/^-?[\.\d]+(px)?$/i.test(bc)){return bc;};var bd=this.__dQ[name];if(bd){var Y=ba.style[name];ba.style[name]=bc||0;var X=ba.style[bd]+b;ba.style[name]=Y;return X;};return bc;};},"default":function(bh,name,bi,bj){name=this.__dM[name]||this.__dP(name)||name;if(bj!==false&&this.__dR[name]){return this.__dR[name].get(bh,bi);};switch(bi){case this.LOCAL_MODE:return bh.style[name]||t;case this.CASCADED_MODE:if(bh.currentStyle){return bh.currentStyle[name]||t;};throw new Error(c);default:var bg=qx.dom.Node.getDocument(bh);var bf=bg.defaultView.getComputedStyle(bh,null);if(bf&&bf[name]){return bf[name];};return bh.style[name]||t;};}})},defer:function(bk){bk.__dO();}});})();(function(){var a="engine.name",b="CSS1Compat",c="position:absolute;width:0;height:0;width:1",d="engine.version",e="qx.bom.Document",f="1px",g="div";qx.Bootstrap.define(e,{statics:{isQuirksMode:qx.core.Environment.select(a,{"mshtml":function(h){if(qx.core.Environment.get(d)>=8){return (h||window).document.documentMode===5;}else {return (h||window).document.compatMode!==b;};},"webkit":function(i){if(document.compatMode===undefined){var j=(i||window).document.createElement(g);j.style.cssText=c;return j.style.width===f?true:false;}else {return (i||window).document.compatMode!==b;};},"default":function(k){return (k||window).document.compatMode!==b;}}),isStandardMode:function(l){return !this.isQuirksMode(l);},getWidth:function(m){var o=(m||window).document;var n=qx.bom.Viewport.getWidth(m);var scroll=this.isStandardMode(m)?o.documentElement.scrollWidth:o.body.scrollWidth;return Math.max(scroll,n);},getHeight:function(p){var r=(p||window).document;var q=qx.bom.Viewport.getHeight(p);var scroll=this.isStandardMode(p)?r.documentElement.scrollHeight:r.body.scrollHeight;return Math.max(scroll,q);}}});})();(function(){var a="undefined",b="qx.bom.Viewport";qx.Bootstrap.define(b,{statics:{getWidth:function(c){var c=c||window;var d=c.document;return qx.bom.Document.isStandardMode(c)?d.documentElement.clientWidth:d.body.clientWidth;},getHeight:function(e){var e=e||window;var f=e.document;return qx.bom.Document.isStandardMode(e)?f.documentElement.clientHeight:f.body.clientHeight;},getScrollLeft:function(g){var g=g?g:window;if(typeof g.pageXOffset!==a){return g.pageXOffset;};var h=g.document;return h.documentElement.scrollLeft||h.body.scrollLeft;},getScrollTop:function(i){var i=i?i:window;if(typeof i.pageYOffset!==a){return i.pageYOffset;};var j=i.document;return j.documentElement.scrollTop||j.body.scrollTop;},__dS:function(k){var m=this.getWidth(k)>this.getHeight(k)?90:0;var l=k.orientation;if(l==null||Math.abs(l%180)==m){return {"-270":90,"-180":180,"-90":-90,"0":0,"90":90,"180":180,"270":-90};}else {return {"-270":180,"-180":-90,"-90":0,"0":90,"90":180,"180":-90,"270":0};};},__dT:null,getOrientation:function(n){var n=n||window.top;var o=n.orientation;if(o==null){o=this.getWidth(n)>this.getHeight(n)?90:0;}else {if(this.__dT==null){this.__dT=this.__dS(n);};o=this.__dT[o];};return o;},isLandscape:function(p){return this.getWidth(p)>=this.getHeight(p);},isPortrait:function(q){return this.getWidth(q)<this.getHeight(q);}}});})();(function(){var a="_applyBoxShadow",b="shadowHorizontalLength",c="Boolean",d="",e="px ",f="css.boxshadow",g="shadowVerticalLength",h="inset ",i="shorthand",j="qx.ui.decoration.MBoxShadow",k="Integer",l="Color",m=",";qx.Mixin.define(j,{properties:{shadowHorizontalLength:{nullable:true,check:k,apply:a},shadowVerticalLength:{nullable:true,check:k,apply:a},shadowBlurRadius:{nullable:true,check:k,apply:a},shadowSpreadRadius:{nullable:true,check:k,apply:a},shadowColor:{nullable:true,check:l,apply:a},inset:{init:false,check:c,apply:a},shadowLength:{group:[b,g],mode:i}},members:{_styleBoxShadow:function(n){var v=qx.core.Environment.get(f);if(!v||this.getShadowVerticalLength()==null&&this.getShadowHorizontalLength()==null){return;};{var r=qx.theme.manager.Color.getInstance();var o=r.resolve(this.getShadowColor());};if(o!=null){var u=this.getShadowVerticalLength()||0;var p=this.getShadowHorizontalLength()||0;var blur=this.getShadowBlurRadius()||0;var t=this.getShadowSpreadRadius()||0;var s=this.getInset()?h:d;var q=s+p+e+u+e+blur+e+t+e+o;v=qx.bom.Style.getCssName(v);if(!n[v]){n[v]=q;}else {n[v]+=m+q;};};},_applyBoxShadow:function(){{};}}});})();(function(){var a="qx.ui.decoration.Decorator",b="_style",c="_getDefaultInsetsFor",d="bottom",e="top",f="left",g="right";qx.Class.define(a,{extend:qx.ui.decoration.Abstract,implement:[qx.ui.decoration.IDecorator],include:[qx.ui.decoration.MBackgroundColor,qx.ui.decoration.MBorderRadius,qx.ui.decoration.MBoxShadow,qx.ui.decoration.MDoubleBorder,qx.ui.decoration.MLinearBackgroundGradient,qx.ui.decoration.MBorderImage],members:{__dU:false,getPadding:function(){var k=this.getInset();var h=this._getDefaultInsetsForBorderImage();var n=k.top-(h.top?h.top:this.getWidthTop());var m=k.right-(h.right?h.right:this.getWidthRight());var j=k.bottom-(h.bottom?h.bottom:this.getWidthBottom());var l=k.left-(h.left?h.left:this.getWidthLeft());return {top:k.top?n:this.getInnerWidthTop(),right:k.right?m:this.getInnerWidthRight(),bottom:k.bottom?j:this.getInnerWidthBottom(),left:k.left?l:this.getInnerWidthLeft()};},getStyles:function(r){if(r){return this._getStyles();};var q={};var p=this._getStyles();for(var o in p){q[qx.lang.String.camelCase(o)]=p[o];};return q;},_getStyles:function(){var s={};for(var name in this){if(name.indexOf(b)==0&&this[name] instanceof Function){this[name](s);};};this.__dU=true;return s;},_getDefaultInsets:function(){var w=[e,g,d,f];var u={};for(var name in this){if(name.indexOf(c)==0&&this[name] instanceof Function){var v=this[name]();for(var i=0;i<w.length;i++ ){var t=w[i];if(u[t]==undefined){u[t]=v[t];};if(v[t]>u[t]){u[t]=v[t];};};};};if(u[e]!=undefined){return u;};return {top:0,right:0,bottom:0,left:0};},_isInitialized:function(){return this.__dU;}}});})();(function(){var a="_applyTheme",b="qx.theme.manager.Font",c="_dynamic",d="Theme",e="changeTheme",f="singleton";qx.Class.define(b,{type:f,extend:qx.util.ValueManager,properties:{theme:{check:d,nullable:true,apply:a,event:e}},members:{resolveDynamic:function(h){var g=this._dynamic;return h instanceof qx.bom.Font?h:g[h];},resolve:function(l){var k=this._dynamic;var i=k[l];if(i){return i;};var j=this.getTheme();if(j!==null&&j.fonts[l]){var m=this.__dW(j.fonts[l]);return k[l]=(new m).set(j.fonts[l]);};return l;},isDynamic:function(q){var p=this._dynamic;if(q&&(q instanceof qx.bom.Font||p[q]!==undefined)){return true;};var o=this.getTheme();if(o!==null&&q&&o.fonts[q]){var n=this.__dW(o.fonts[q]);p[q]=(new n).set(o.fonts[q]);return true;};return false;},__dV:function(s,r){if(s[r].include){var t=s[s[r].include];s[r].include=null;delete s[r].include;s[r]=qx.lang.Object.mergeWith(s[r],t,false);this.__dV(s,r);};},_applyTheme:function(y){var u=this._dynamic;for(var x in u){if(u[x].themed){u[x].dispose();delete u[x];};};if(y){var v=y.fonts;for(var x in v){if(v[x].include&&v[v[x].include]){this.__dV(v,x);};var w=this.__dW(v[x]);u[x]=(new w).set(v[x]);u[x].themed=true;};};this._setDynamic(u);},__dW:function(z){if(z.sources){return qx.bom.webfonts.WebFont;};return qx.bom.Font;}},destruct:function(){this._disposeMap(c);}});})();(function(){var a="Boolean",b="px",c="_applyItalic",d="_applyBold",e="underline",f="_applyTextShadow",g="Integer",h="_applyFamily",j="_applyLineHeight",k='"',m="Array",n="line-through",o="overline",p="Color",q="String",r="",s="italic",t="normal",u="qx.bom.Font",v="bold",w="Number",x="_applyDecoration",y=" ",z="_applySize",A=",",B="_applyColor";qx.Class.define(u,{extend:qx.core.Object,construct:function(D,C){qx.core.Object.call(this);this.__dX={fontFamily:r,fontSize:null,fontWeight:null,fontStyle:null,textDecoration:null,lineHeight:null,color:null,textShadow:null};if(D!==undefined){this.setSize(D);};if(C!==undefined){this.setFamily(C);};},statics:{fromString:function(H){var I=new qx.bom.Font();var F=H.split(/\s+/);var name=[];var G;for(var i=0;i<F.length;i++ ){switch(G=F[i]){case v:I.setBold(true);break;case s:I.setItalic(true);break;case e:I.setDecoration(e);break;default:var E=parseInt(G,10);if(E==G||qx.lang.String.contains(G,b)){I.setSize(E);}else {name.push(G);};break;};};if(name.length>0){I.setFamily(name);};return I;},fromConfig:function(K){var J=new qx.bom.Font;J.set(K);return J;},__dY:{fontFamily:r,fontSize:r,fontWeight:r,fontStyle:r,textDecoration:r,lineHeight:1.2,color:r,textShadow:r},getDefaultStyles:function(){return this.__dY;}},properties:{size:{check:g,nullable:true,apply:z},lineHeight:{check:w,nullable:true,apply:j},family:{check:m,nullable:true,apply:h},bold:{check:a,nullable:true,apply:d},italic:{check:a,nullable:true,apply:c},decoration:{check:[e,n,o],nullable:true,apply:x},color:{check:p,nullable:true,apply:B},textShadow:{nullable:true,check:q,apply:f}},members:{__dX:null,_applySize:function(M,L){this.__dX.fontSize=M===null?null:M+b;},_applyLineHeight:function(O,N){this.__dX.lineHeight=O===null?null:O;},_applyFamily:function(P,Q){var R=r;for(var i=0,l=P.length;i<l;i++ ){if(P[i].indexOf(y)>0){R+=k+P[i]+k;}else {R+=P[i];};if(i!==l-1){R+=A;};};this.__dX.fontFamily=R;},_applyBold:function(T,S){this.__dX.fontWeight=T==null?null:T?v:t;},_applyItalic:function(V,U){this.__dX.fontStyle=V==null?null:V?s:t;},_applyDecoration:function(X,W){this.__dX.textDecoration=X==null?null:X;},_applyColor:function(ba,Y){this.__dX.color=null;if(ba){this.__dX.color=qx.theme.manager.Color.getInstance().resolve(ba);};},_applyTextShadow:function(bc,bb){this.__dX.textShadow=bc==null?null:bc;},getStyles:function(){return this.__dX;}}});})();(function(){var a="changeStatus",b="qx.bom.webfonts.WebFont",c="_applySources",d="",e="qx.event.type.Data";qx.Class.define(b,{extend:qx.bom.Font,events:{"changeStatus":e},properties:{sources:{nullable:true,apply:c}},members:{__ea:null,_applySources:function(h,k){var f=[];for(var i=0,l=h.length;i<l;i++ ){var g=this._quoteFontFamily(h[i].family);f.push(g);var j=h[i].source;qx.bom.webfonts.Manager.getInstance().require(g,j,this._onWebFontChangeStatus,this);};this.setFamily(f.concat(this.getFamily()));},_onWebFontChangeStatus:function(m){var n=m.getData();this.fireDataEvent(a,n);{};},_quoteFontFamily:function(o){return o.replace(/["']/g,d);}}});})();(function(){var a="m",b="os.name",c=")",d="os.version",e="qx.bom.webfonts.Manager",f="svg",g="chrome",h="browser.name",k="singleton",n=",\n",o="src: ",p="mobileSafari",q="'eot)",r="');",s="changeStatus",t="interval",u="#",v="firefox",w="!",y="eot",z="ios",A="'eot')",B="\.(",C="}\n",D="font-family: ",E="browser.documentmode",F="mobile safari",G="safari",H="@font-face.*?",I="",J="ttf",K=";\n",L="') format('svg')",M="') format('woff')",N="('embedded-opentype')",O="browser.version",P="opera",Q="engine.version",R="Couldn't create @font-face rule for WebFont ",S="mshtml",T="engine.name",U="url('",V="src: url('",W="('embedded-opentype)",X="\nfont-style: normal;\nfont-weight: normal;",Y="?#iefix') format('embedded-opentype')",bh="woff",bi="ie",bj=";",bf="@font-face {",bg="') format('truetype')";qx.Class.define(e,{extend:qx.core.Object,type:k,construct:function(){qx.core.Object.call(this);this.__eb=[];this.__ec={};this.__ed=[];this.__ee=this.getPreferredFormats();},statics:{FONT_FORMATS:[y,bh,J,f],VALIDATION_TIMEOUT:5000},members:{__eb:null,__ef:null,__ec:null,__ee:null,__ed:null,__eg:null,require:function(bm,bn,bo,bq){var bl=[];for(var i=0,l=bn.length;i<l;i++ ){var bp=bn[i].split(u);var bk=qx.util.ResourceManager.getInstance().toUri(bp[0]);if(bp.length>1){bk=bk+u+bp[1];};bl.push(bk);};if(qx.core.Environment.get(T)==S&&(parseInt(qx.core.Environment.get(Q))<9)||qx.core.Environment.get(E)<9){if(!this.__eg){this.__eg=new qx.event.Timer(100);this.__eg.addListener(t,this.__ei,this);};if(!this.__eg.isEnabled()){this.__eg.start();};this.__ed.push([bm,bl,bo,bq]);}else {this.__eh(bm,bl,bo,bq);};},remove:function(bs){var br=null;for(var i=0,l=this.__eb.length;i<l;i++ ){if(this.__eb[i]==bs){br=i;this.__eo(bs);break;};};if(br){qx.lang.Array.removeAt(this.__eb,br);};if(bs in this.__ec){this.__ec[bs].dispose();delete this.__ec[bs];};},getPreferredFormats:function(){var bt=[];var bx=qx.core.Environment.get(h);var bu=qx.core.Environment.get(O);var bw=qx.core.Environment.get(b);var bv=qx.core.Environment.get(d);if((bx==bi&&qx.core.Environment.get(E)>=9)||(bx==v&&bu>=3.6)||(bx==g&&bu>=6)){bt.push(bh);};if((bx==P&&bu>=10)||(bx==G&&bu>=3.1)||(bx==v&&bu>=3.5)||(bx==g&&bu>=4)||(bx==F&&bw==z&&bv>=4.2)){bt.push(J);};if(bx==bi&&bu>=4){bt.push(y);};if(bx==p&&bw==z&&bv>=4.1){bt.push(f);};return bt;},removeStyleSheet:function(){this.__eb=[];if(this.__ef){qx.bom.Stylesheet.removeSheet(this.__ef);};this.__ef=null;},__eh:function(bA,bC,bz,bD){if(!qx.lang.Array.contains(this.__eb,bA)){var bE=this.__ek(bC);var bB=this.__el(bA,bE);if(!bB){throw new Error(R+bA+w);};if(!this.__ef){this.__ef=qx.bom.Stylesheet.createElement();};try{this.__en(bB);}catch(bF){{};};this.__eb.push(bA);};if(!this.__ec[bA]){this.__ec[bA]=new qx.bom.webfonts.Validator(bA);this.__ec[bA].setTimeout(qx.bom.webfonts.Manager.VALIDATION_TIMEOUT);this.__ec[bA].addListenerOnce(s,this.__ej,this);};if(bz){var by=bD||window;this.__ec[bA].addListenerOnce(s,bz,by);};this.__ec[bA].validate();},__ei:function(){if(this.__ed.length==0){this.__eg.stop();return;};var bG=this.__ed.shift();this.__eh.apply(this,bG);},__ej:function(bH){var bI=bH.getData();if(bI.valid===false){qx.event.Timer.once(function(){this.remove(bI.family);},this,250);};},__ek:function(bJ){var bL=qx.bom.webfonts.Manager.FONT_FORMATS;var bK={};for(var i=0,l=bJ.length;i<l;i++ ){var bM=null;for(var x=0;x<bL.length;x++ ){var bN=new RegExp(B+bL[x]+c);var bO=bN.exec(bJ[i]);if(bO){bM=bO[1];};};if(bM){bK[bM]=bJ[i];};};return bK;},__el:function(bR,bU){var bT=[];var bP=this.__ee.length>0?this.__ee:qx.bom.webfonts.Manager.FONT_FORMATS;for(var i=0,l=bP.length;i<l;i++ ){var bQ=bP[i];if(bU[bQ]){bT.push(this.__em(bQ,bU[bQ]));};};var bS=o+bT.join(n)+bj;bS=D+bR+K+bS;bS=bS+X;return bS;},__em:function(bW,bV){switch(bW){case y:return U+bV+r+V+bV+Y;case bh:return U+bV+M;case J:return U+bV+bg;case f:return U+bV+L;default:return null;};},__en:function(bY){var bX=bf+bY+C;if(qx.core.Environment.get(h)==bi&&qx.core.Environment.get(E)<9){var ca=this.__ep(this.__ef.cssText);ca+=bX;this.__ef.cssText=ca;}else {this.__ef.insertRule(bX,this.__ef.cssRules.length);};},__eo:function(cb){var ce=new RegExp(H+cb,a);for(var i=0,l=document.styleSheets.length;i<l;i++ ){var cc=document.styleSheets[i];if(cc.cssText){var cd=cc.cssText.replace(/\n/g,I).replace(/\r/g,I);cd=this.__ep(cd);if(ce.exec(cd)){cd=cd.replace(ce,I);};cc.cssText=cd;}else if(cc.cssRules){for(var j=0,m=cc.cssRules.length;j<m;j++ ){var cd=cc.cssRules[j].cssText.replace(/\n/g,I).replace(/\r/g,I);if(ce.exec(cd)){this.__ef.deleteRule(j);return;};};};};},__ep:function(cf){return cf.replace(q,A).replace(W,N);}},destruct:function(){delete this.__eb;this.removeStyleSheet();for(var cg in this.__ec){this.__ec[cg].dispose();};qx.bom.webfonts.Validator.removeDefaultHelperElements();}});})();(function(){var a="qx.event.Timer",b="_applyInterval",c="_applyEnabled",d="Boolean",f="interval",g="qx.event.type.Event",h="Integer";qx.Class.define(a,{extend:qx.core.Object,construct:function(i){qx.core.Object.call(this);this.setEnabled(false);if(i!=null){this.setInterval(i);};var self=this;this.__eq=function(){self._oninterval.call(self);};},events:{"interval":g},statics:{once:function(j,k,l){{};var m=new qx.event.Timer(l);m.__er=j;m.addListener(f,function(e){m.stop();j.call(k,e);m.dispose();k=null;},k);m.start();return m;}},properties:{enabled:{init:true,check:d,apply:c},interval:{check:h,init:1000,apply:b}},members:{__es:null,__eq:null,_applyInterval:function(o,n){if(this.getEnabled()){this.restart();};},_applyEnabled:function(q,p){if(p){window.clearInterval(this.__es);this.__es=null;}else if(q){this.__es=window.setInterval(this.__eq,this.getInterval());};},start:function(){this.setEnabled(true);},startWith:function(r){this.setInterval(r);this.start();},stop:function(){this.setEnabled(false);},restart:function(){this.stop();this.start();},restartWith:function(s){this.stop();this.startWith(s);},_oninterval:qx.event.GlobalError.observeMethod(function(){if(this.$$disposed){return;};if(this.getEnabled()){this.fireEvent(f);};})},destruct:function(){if(this.__es){window.clearInterval(this.__es);};this.__es=this.__eq=null;}});})();(function(){var a="sans-serif",b="changeStatus",c="Integer",d="auto",e="qx.event.type.Data",f="__ew",g="0",h="qx.bom.webfonts.Validator",i="interval",j="Georgia",k="WEei",l="Times New Roman",m="Arial",n="normal",o="Helvetica",p="350px",q="_applyFontFamily",r="-1000px",s="hidden",t="serif",u="span",v="absolute",w=",";qx.Class.define(h,{extend:qx.core.Object,construct:function(x){qx.core.Object.call(this);if(x){this.setFontFamily(x);};this.__et=this._getRequestedHelpers();},statics:{COMPARISON_FONTS:{sans:[m,o,a],serif:[l,j,t]},HELPER_CSS:{position:v,margin:g,padding:g,top:r,left:r,fontSize:p,width:d,height:d,lineHeight:n,fontVariant:n,visibility:s},COMPARISON_STRING:k,__eu:null,__ev:null,removeDefaultHelperElements:function(){var y=qx.bom.webfonts.Validator.__ev;if(y){for(var z in y){document.body.removeChild(y[z]);};};delete qx.bom.webfonts.Validator.__ev;}},properties:{fontFamily:{nullable:true,init:null,apply:q},timeout:{check:c,init:5000}},events:{"changeStatus":e},members:{__et:null,__ew:null,__ex:null,validate:function(){this.__ex=new Date().getTime();if(this.__ew){this.__ew.restart();}else {this.__ew=new qx.event.Timer(100);this.__ew.addListener(i,this.__ey,this);qx.event.Timer.once(function(){this.__ew.start();},this,0);};},_reset:function(){if(this.__et){for(var B in this.__et){var A=this.__et[B];document.body.removeChild(A);};this.__et=null;};},_isFontValid:function(){if(!qx.bom.webfonts.Validator.__eu){this.__cP();};if(!this.__et){this.__et=this._getRequestedHelpers();};var D=qx.bom.element.Dimension.getWidth(this.__et.sans);var C=qx.bom.element.Dimension.getWidth(this.__et.serif);var E=qx.bom.webfonts.Validator;if(D!==E.__eu.sans&&C!==E.__eu.serif){return true;};return false;},_getRequestedHelpers:function(){var F=[this.getFontFamily()].concat(qx.bom.webfonts.Validator.COMPARISON_FONTS.sans);var G=[this.getFontFamily()].concat(qx.bom.webfonts.Validator.COMPARISON_FONTS.serif);return {sans:this._getHelperElement(F),serif:this._getHelperElement(G)};},_getHelperElement:function(H){var I=qx.lang.Object.clone(qx.bom.webfonts.Validator.HELPER_CSS);if(H){if(I.fontFamily){I.fontFamily+=w+H.join(w);}else {I.fontFamily=H.join(w);};};var J=document.createElement(u);J.innerHTML=qx.bom.webfonts.Validator.COMPARISON_STRING;qx.bom.element.Style.setStyles(J,I);document.body.appendChild(J);return J;},_applyFontFamily:function(L,K){if(L!==K){this._reset();};},__cP:function(){var M=qx.bom.webfonts.Validator;if(!M.__ev){M.__ev={sans:this._getHelperElement(M.COMPARISON_FONTS.sans),serif:this._getHelperElement(M.COMPARISON_FONTS.serif)};};M.__eu={sans:qx.bom.element.Dimension.getWidth(M.__ev.sans),serif:qx.bom.element.Dimension.getWidth(M.__ev.serif)};},__ey:function(){if(this._isFontValid()){this.__ew.stop();this._reset();this.fireDataEvent(b,{family:this.getFontFamily(),valid:true});}else {var N=new Date().getTime();if(N-this.__ex>=this.getTimeout()){this.__ew.stop();this._reset();this.fireDataEvent(b,{family:this.getFontFamily(),valid:false});};};}},destruct:function(){this._reset();this.__ew.stop();this.__ew.removeListener(i,this.__ey,this);this._disposeObjects(f);}});})();(function(){var a="mshtml",b="engine.name",c="qx.bom.element.Dimension",d="0px",e="paddingRight",f="engine.version",g="paddingLeft",h="opera",i="paddingBottom",j="paddingTop",k="overflowX",l="overflowY";qx.Bootstrap.define(c,{statics:{getWidth:function(n){var m=n.getBoundingClientRect();return Math.round(m.right)-Math.round(m.left);},getHeight:function(p){var o=p.getBoundingClientRect();return Math.round(o.bottom)-Math.round(o.top);},getSize:function(q){return {width:this.getWidth(q),height:this.getHeight(q)};},__ez:{visible:true,hidden:true},getContentWidth:function(u){var r=qx.bom.element.Style;var s=qx.bom.element.Style.get(u,k);var t=parseInt(r.get(u,g)||d,10);var x=parseInt(r.get(u,e)||d,10);if(this.__ez[s]){var w=u.clientWidth;if((qx.core.Environment.get(b)==h)||qx.dom.Node.isBlockNode(u)){w=w-t-x;};if(qx.core.Environment.get(b)==a){if(w===0&&u.offsetHeight===0){return u.offsetWidth;};};return w;}else {if(u.clientWidth>=u.scrollWidth){return Math.max(u.clientWidth,u.scrollWidth)-t-x;}else {var v=u.scrollWidth-t;if(qx.core.Environment.get(b)==a&&qx.core.Environment.get(f)>=6){v-=x;};return v;};};},getContentHeight:function(D){var y=qx.bom.element.Style;var A=qx.bom.element.Style.get(D,l);var B=parseInt(y.get(D,j)||d,10);var z=parseInt(y.get(D,i)||d,10);if(this.__ez[A]){return D.clientHeight-B-z;}else {if(D.clientHeight>=D.scrollHeight){return Math.max(D.clientHeight,D.scrollHeight)-B-z;}else {var C=D.scrollHeight-B;if(qx.core.Environment.get(b)==a&&qx.core.Environment.get(f)==6){C-=z;};return C;};};},getContentSize:function(E){return {width:this.getContentWidth(E),height:this.getContentHeight(E)};}}});})();(function(){var a="qx.theme.manager.Icon",b="Theme",c="changeTheme",d="_applyTheme",e="singleton";qx.Class.define(a,{type:e,extend:qx.core.Object,properties:{theme:{check:b,nullable:true,apply:d,event:c}},members:{_applyTheme:function(i,g){var h=qx.util.AliasManager.getInstance();if(g){for(var f in g.aliases){h.remove(f);};};if(i){for(var f in i.aliases){h.add(f,i.aliases[f]);};};}}});})();(function(){var a="Missing appearance: ",b="_applyTheme",c="string",d="qx.theme.manager.Appearance",e=":",f="Theme",g="changeTheme",h="/",j="singleton";qx.Class.define(d,{type:j,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__eA={};this.__eB={};},properties:{theme:{check:f,nullable:true,event:g,apply:b}},members:{__eC:{},__eA:null,__eB:null,_applyTheme:function(){this.__eB={};this.__eA={};},__eD:function(y,u,l,p){var r=u.appearances;var m=r[y];if(!m){var x=h;var n=[];var q=y.split(x);var w=qx.lang.Array.clone(q);var t;while(!m&&q.length>0){n.unshift(q.pop());var o=q.join(x);m=r[o];if(m){t=m.alias||m;if(typeof t===c){var v=t+x+n.join(x);return this.__eD(v,u,l,w);};};};for(var i=0;i<n.length-1;i++ ){n.shift();var s=n.join(x);var k=this.__eD(s,u,null,w);if(k){return k;};};if(l!=null){return this.__eD(l,u,null,w);};{};return null;}else if(typeof m===c){return this.__eD(m,u,l,w);}else if(m.include&&!m.style){return this.__eD(m.include,u,l,w);};return y;},styleFrom:function(R,J,K,A){if(!K){K=this.getTheme();};var H=this.__eB;var z=H[R];if(!z){z=H[R]=this.__eD(R,K,A);};var O=K.appearances[z];if(!O){this.warn(a+R);return null;};if(!O.style){return null;};var P=z;if(J){var D=O.$$bits;if(!D){D=O.$$bits={};O.$$length=0;};var E=0;for(var G in J){if(!J[G]){continue;};if(D[G]==null){D[G]=1<<O.$$length++ ;};E+=D[G];};if(E>0){P+=e+E;};};var F=this.__eA;if(F[P]!==undefined){return F[P];};if(!J){J=this.__eC;};var M;if(O.include||O.base){var Q;if(O.include){Q=this.styleFrom(O.include,J,K,A);};var I=O.style(J,Q);M={};if(O.base){var N=this.styleFrom(z,J,O.base,A);if(O.include){for(var C in N){if(!Q.hasOwnProperty(C)&&!I.hasOwnProperty(C)){M[C]=N[C];};};}else {for(var L in N){if(!I.hasOwnProperty(L)){M[L]=N[L];};};};};if(O.include){for(var B in Q){if(!I.hasOwnProperty(B)){M[B]=Q[B];};};};for(var S in I){M[S]=I[S];};}else {M=O.style(J);};return F[P]=M||null;}},destruct:function(){this.__eA=this.__eB=null;}});})();(function(){var b="'!",c="other",d="widgets",e="undefined",f="fonts",g="appearances",h="qx.Theme",j="]",k="Mixin theme is not a valid theme!",m="[Theme ",n="colors",o="decorations",p="' are not compatible '",q="Theme",r="meta",s="The mixins '",t="borders",u="icons";qx.Bootstrap.define(h,{statics:{define:function(name,w){if(!w){var w={};};w.include=this.__eE(w.include);w.patch=this.__eE(w.patch);{};var v={$$type:q,name:name,title:w.title,toString:this.genericToString};if(w.extend){v.supertheme=w.extend;};v.basename=qx.Bootstrap.createNamespace(name,v);this.__eH(v,w);this.__eF(v,w);this.$$registry[name]=v;for(var i=0,a=w.include,l=a.length;i<l;i++ ){this.include(v,a[i]);};for(var i=0,a=w.patch,l=a.length;i<l;i++ ){this.patch(v,a[i]);};},__eE:function(x){if(!x){return [];};if(qx.Bootstrap.isArray(x)){return x;}else {return [x];};},__eF:function(y,z){var A=z.aliases||{};if(z.extend&&z.extend.aliases){qx.Bootstrap.objectMergeWith(A,z.extend.aliases,false);};y.aliases=A;},getAll:function(){return this.$$registry;},getByName:function(name){return this.$$registry[name];},isDefined:function(name){return this.getByName(name)!==undefined;},getTotalNumber:function(){return qx.Bootstrap.objectGetLength(this.$$registry);},genericToString:function(){return m+this.name+j;},__eG:function(C){for(var i=0,B=this.__eI,l=B.length;i<l;i++ ){if(C[B[i]]){return B[i];};};},__eH:function(H,I){var E=this.__eG(I);if(I.extend&&!E){E=I.extend.type;};H.type=E||c;var F=function(){};if(I.extend){F.prototype=new I.extend.$$clazz;};var D=F.prototype;var G=I[E];for(var J in G){D[J]=G[J];if(D[J].base){{};D[J].base=I.extend;};};H.$$clazz=F;H[E]=new F;},$$registry:{},__eI:[n,t,o,f,u,d,g,r],__i:null,__eJ:null,__j:function(){},patch:function(N,L){this.__eK(L);var P=this.__eG(L);if(P!==this.__eG(N)){throw new Error(s+N.name+p+L.name+b);};var M=L[P];var K=N.$$clazz.prototype;for(var O in M){K[O]=M[O];};},include:function(T,R){this.__eK(R);var V=R.type;if(V!==T.type){throw new Error(s+T.name+p+R.name+b);};var S=R[V];var Q=T.$$clazz.prototype;for(var U in S){if(Q[U]!==undefined){continue;};Q[U]=S[U];};},__eK:function(W){if(typeof W===e||W==null){var X=new Error(k);{var Y;};throw X;};}}});})();(function(){var a="widget",b="qx.ui.tooltip.ToolTip",c="Boolean",d="",f="__eO",g="interval",h="mouseover",i="_applyCurrent",j="mouseout",k="__eL",l="qx.ui.tooltip.Manager",m="mousemove",n="__eM",o="focusout",p="tooltip-error",q="singleton";qx.Class.define(l,{type:q,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);qx.event.Registration.addListener(document.body,h,this.__eT,this,true);this.__eL=new qx.event.Timer();this.__eL.addListener(g,this.__eQ,this);this.__eM=new qx.event.Timer();this.__eM.addListener(g,this.__eR,this);this.__eN={left:0,top:0};},properties:{current:{check:b,nullable:true,apply:i},showInvalidToolTips:{check:c,init:true},showToolTips:{check:c,init:true}},members:{__eN:null,__eM:null,__eL:null,__eO:null,__eP:null,getSharedTooltip:function(){if(!this.__eO){this.__eO=new qx.ui.tooltip.ToolTip().set({rich:true});};return this.__eO;},getSharedErrorTooltip:function(){if(!this.__eP){this.__eP=new qx.ui.tooltip.ToolTip().set({appearance:p,rich:true});this.__eP.setLabel(d);this.__eP.syncAppearance();};return this.__eP;},_applyCurrent:function(t,s){if(s&&qx.ui.core.Widget.contains(s,t)){return;};if(s){if(!s.isDisposed()){s.exclude();};this.__eL.stop();this.__eM.stop();};var u=qx.event.Registration;var r=document.body;if(t){this.__eL.startWith(t.getShowTimeout());u.addListener(r,j,this.__eU,this,true);u.addListener(r,o,this.__eV,this,true);u.addListener(r,m,this.__eS,this,true);}else {u.removeListener(r,j,this.__eU,this,true);u.removeListener(r,o,this.__eV,this,true);u.removeListener(r,m,this.__eS,this,true);};},__eQ:function(e){var v=this.getCurrent();if(v&&!v.isDisposed()){this.__eM.startWith(v.getHideTimeout());if(v.getPlaceMethod()==a){v.placeToWidget(v.getOpener());}else {v.placeToPoint(this.__eN);};v.show();};this.__eL.stop();},__eR:function(e){var w=this.getCurrent();if(w&&!w.isDisposed()){w.exclude();};this.__eM.stop();this.resetCurrent();},__eS:function(e){var x=this.__eN;x.left=Math.round(e.getDocumentLeft());x.top=Math.round(e.getDocumentTop());},__eT:function(e){var y=qx.ui.core.Widget.getWidgetByElement(e.getTarget());this.showToolTip(y);},showToolTip:function(B){if(!B){return;};var C,A,D,z;while(B!=null){C=B.getToolTip();A=B.getToolTipText()||null;D=B.getToolTipIcon()||null;if(qx.Class.hasInterface(B.constructor,qx.ui.form.IForm)&&!B.isValid()){z=B.getInvalidMessage();};if(C||A||D||z){break;};B=B.getLayoutParent();};if(!B||!B.getEnabled()||B.isBlockToolTip()||(!z&&!this.getShowToolTips())||(z&&!this.getShowInvalidToolTips())){return;};if(z){C=this.getSharedErrorTooltip().set({label:z});};if(!C){C=this.getSharedTooltip().set({label:A,icon:D});};this.setCurrent(C);C.setOpener(B);},__eU:function(e){var E=qx.ui.core.Widget.getWidgetByElement(e.getTarget());if(!E){return;};var F=qx.ui.core.Widget.getWidgetByElement(e.getRelatedTarget());if(!F){return;};var G=this.getCurrent();if(G&&(F==G||qx.ui.core.Widget.contains(G,F))){return;};if(F&&E&&qx.ui.core.Widget.contains(E,F)){return;};if(G&&!F){this.setCurrent(null);}else {this.resetCurrent();};},__eV:function(e){var H=qx.ui.core.Widget.getWidgetByElement(e.getTarget());if(!H){return;};var I=this.getCurrent();if(I&&I==H.getToolTip()){this.setCurrent(null);};}},destruct:function(){qx.event.Registration.removeListener(document.body,h,this.__eT,this,true);this._disposeObjects(k,n,f);this.__eN=null;}});})();(function(){var a="qx.ui.core.MLayoutHandling";qx.Mixin.define(a,{members:{setLayout:function(b){this._setLayout(b);},getLayout:function(){return this._getLayout();}},statics:{remap:function(c){c.getLayout=c._getLayout;c.setLayout=c._setLayout;}}});})();(function(){var a="changeWidth",b="Boolean",c="allowShrinkY",d="_applyAlign",e="_applyStretching",f="bottom",g="Integer",h="changeTheme",i="_applyDimension",j="baseline",k="marginBottom",l="qx.ui.core.LayoutItem",m="center",n="marginTop",o="allowGrowX",p="shorthand",q="middle",r="marginLeft",s="qx.dyntheme",t="allowShrinkX",u="top",v="right",w="marginRight",x="abstract",y="_applyMargin",z="allowGrowY",A="left",B="changeHeight";qx.Class.define(l,{type:x,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);if(qx.core.Environment.get(s)){qx.theme.manager.Appearance.getInstance().addListener(h,this._onChangeTheme,this);qx.theme.manager.Color.getInstance().addListener(h,this._onChangeTheme,this);};},properties:{minWidth:{check:g,nullable:true,apply:i,init:null,themeable:true},width:{check:g,event:a,nullable:true,apply:i,init:null,themeable:true},maxWidth:{check:g,nullable:true,apply:i,init:null,themeable:true},minHeight:{check:g,nullable:true,apply:i,init:null,themeable:true},height:{check:g,event:B,nullable:true,apply:i,init:null,themeable:true},maxHeight:{check:g,nullable:true,apply:i,init:null,themeable:true},allowGrowX:{check:b,apply:e,init:true,themeable:true},allowShrinkX:{check:b,apply:e,init:true,themeable:true},allowGrowY:{check:b,apply:e,init:true,themeable:true},allowShrinkY:{check:b,apply:e,init:true,themeable:true},allowStretchX:{group:[o,t],mode:p,themeable:true},allowStretchY:{group:[z,c],mode:p,themeable:true},marginTop:{check:g,init:0,apply:y,themeable:true},marginRight:{check:g,init:0,apply:y,themeable:true},marginBottom:{check:g,init:0,apply:y,themeable:true},marginLeft:{check:g,init:0,apply:y,themeable:true},margin:{group:[n,w,k,r],mode:p,themeable:true},alignX:{check:[A,m,v],nullable:true,apply:d,themeable:true},alignY:{check:[u,q,f,j],nullable:true,apply:d,themeable:true}},members:{_onChangeTheme:qx.core.Environment.select(s,{"true":function(){var E=qx.util.PropertyUtil.getAllProperties(this.constructor);for(var name in E){var D=E[name];if(D.themeable){var C=qx.util.PropertyUtil.getUserValue(this,name);if(C==null){qx.util.PropertyUtil.resetThemed(this,name);};};};},"false":null}),__eW:null,__eX:null,__eY:null,__fa:null,__fb:null,__fc:null,__fd:null,getBounds:function(){return this.__fc||this.__eX||null;},clearSeparators:function(){},renderSeparator:function(F,G){},renderLayout:function(N,top,K,J){{var L;};var I=null;if(this.getHeight()==null&&this._hasHeightForWidth()){var I=this._getHeightForWidth(K);};if(I!=null&&I!==this.__eW){this.__eW=I;qx.ui.core.queue.Layout.add(this);return null;};var H=this.__eX;if(!H){H=this.__eX={};};var M={};if(N!==H.left||top!==H.top){M.position=true;H.left=N;H.top=top;};if(K!==H.width||J!==H.height){M.size=true;H.width=K;H.height=J;};if(this.__eY){M.local=true;delete this.__eY;};if(this.__fb){M.margin=true;delete this.__fb;};return M;},isExcluded:function(){return false;},hasValidLayout:function(){return !this.__eY;},scheduleLayoutUpdate:function(){qx.ui.core.queue.Layout.add(this);},invalidateLayoutCache:function(){this.__eY=true;this.__fa=null;},getSizeHint:function(O){var P=this.__fa;if(P){return P;};if(O===false){return null;};P=this.__fa=this._computeSizeHint();if(this._hasHeightForWidth()&&this.__eW&&this.getHeight()==null){P.height=this.__eW;};if(P.minWidth>P.width){P.width=P.minWidth;};if(P.maxWidth<P.width){P.width=P.maxWidth;};if(!this.getAllowGrowX()){P.maxWidth=P.width;};if(!this.getAllowShrinkX()){P.minWidth=P.width;};if(P.minHeight>P.height){P.height=P.minHeight;};if(P.maxHeight<P.height){P.height=P.maxHeight;};if(!this.getAllowGrowY()){P.maxHeight=P.height;};if(!this.getAllowShrinkY()){P.minHeight=P.height;};return P;},_computeSizeHint:function(){var U=this.getMinWidth()||0;var R=this.getMinHeight()||0;var V=this.getWidth()||U;var T=this.getHeight()||R;var Q=this.getMaxWidth()||Infinity;var S=this.getMaxHeight()||Infinity;return {minWidth:U,width:V,maxWidth:Q,minHeight:R,height:T,maxHeight:S};},_hasHeightForWidth:function(){var W=this._getLayout();if(W){return W.hasHeightForWidth();};return false;},_getHeightForWidth:function(X){var Y=this._getLayout();if(Y&&Y.hasHeightForWidth()){return Y.getHeightForWidth(X);};return null;},_getLayout:function(){return null;},_applyMargin:function(){this.__fb=true;var parent=this.$$parent;if(parent){parent.updateLayoutProperties();};},_applyAlign:function(){var parent=this.$$parent;if(parent){parent.updateLayoutProperties();};},_applyDimension:function(){qx.ui.core.queue.Layout.add(this);},_applyStretching:function(){qx.ui.core.queue.Layout.add(this);},hasUserBounds:function(){return !!this.__fc;},setUserBounds:function(bb,top,ba,bc){this.__fc={left:bb,top:top,width:ba,height:bc};qx.ui.core.queue.Layout.add(this);},resetUserBounds:function(){delete this.__fc;qx.ui.core.queue.Layout.add(this);},__fe:{},setLayoutProperties:function(bf){if(bf==null){return;};var bd=this.__fd;if(!bd){bd=this.__fd={};};var parent=this.getLayoutParent();if(parent){parent.updateLayoutProperties(bf);};for(var be in bf){if(bf[be]==null){delete bd[be];}else {bd[be]=bf[be];};};},getLayoutProperties:function(){return this.__fd||this.__fe;},clearLayoutProperties:function(){delete this.__fd;},updateLayoutProperties:function(bi){var bg=this._getLayout();if(bg){{var bh;};bg.invalidateChildrenCache();};qx.ui.core.queue.Layout.add(this);},getApplicationRoot:function(){return qx.core.Init.getApplication().getRoot();},getLayoutParent:function(){return this.$$parent||null;},setLayoutParent:function(parent){if(this.$$parent===parent){return;};this.$$parent=parent||null;qx.ui.core.queue.Visibility.add(this);},isRootWidget:function(){return false;},_getRoot:function(){var parent=this;while(parent){if(parent.isRootWidget()){return parent;};parent=parent.$$parent;};return null;},clone:function(){var bj=qx.core.Object.prototype.clone.call(this);var bk=this.__fd;if(bk){bj.__fd=qx.lang.Object.clone(bk);};return bj;}},destruct:function(){if(qx.core.Environment.get(s)){qx.theme.manager.Appearance.getInstance().removeListener(h,this._onChangeTheme,this);qx.theme.manager.Color.getInstance().removeListener(h,this._onChangeTheme,this);};this.$$parent=this.$$subparent=this.__fd=this.__eX=this.__fc=this.__fa=null;}});})();(function(){var a="$$theme_",b="$$user_",c="qx.util.PropertyUtil",d="$$init_";qx.Class.define(c,{statics:{getProperties:function(e){return e.$$properties;},getAllProperties:function(j){var g={};var f=j;while(f!=qx.core.Object){var i=this.getProperties(f);for(var h in i){g[h]=i[h];};f=f.superclass;};return g;},getUserValue:function(l,k){return l[b+k];},setUserValue:function(n,m,o){n[b+m]=o;},deleteUserValue:function(q,p){delete (q[b+p]);},getInitValue:function(s,r){return s[d+r];},setInitValue:function(u,t,v){u[d+t]=v;},deleteInitValue:function(x,w){delete (x[d+w]);},getThemeValue:function(z,y){return z[a+y];},setThemeValue:function(B,A,C){B[a+A]=C;},deleteThemeValue:function(E,D){delete (E[a+D]);},setThemed:function(H,G,I){var F=qx.core.Property.$$method.setThemed;H[F[G]](I);},resetThemed:function(K,J){var L=qx.core.Property.$$method.resetThemed;K[L[J]]();}}});})();(function(){var a="qx.ui.core.queue.Layout",b="layout";qx.Class.define(a,{statics:{__ed:{},__ff:{},remove:function(c){delete this.__ed[c.$$hash];},add:function(d){this.__ed[d.$$hash]=d;qx.ui.core.queue.Manager.scheduleFlush(b);},isScheduled:function(e){return !!this.__ed[e.$$hash];},flush:function(){var f=this.__fh();for(var i=f.length-1;i>=0;i-- ){var g=f[i];if(g.hasValidLayout()){continue;};if(g.isRootWidget()&&!g.hasUserBounds()){var j=g.getSizeHint();g.renderLayout(0,0,j.width,j.height);}else {var h=g.getBounds();g.renderLayout(h.left,h.top,h.width,h.height);};};},getNestingLevel:function(l){var k=this.__ff;var n=0;var parent=l;while(true){if(k[parent.$$hash]!=null){n+=k[parent.$$hash];break;};if(!parent.$$parent){break;};parent=parent.$$parent;n+=1;};var m=n;while(l&&l!==parent){k[l.$$hash]=m-- ;l=l.$$parent;};return n;},__fg:function(){var t=qx.ui.core.queue.Visibility;this.__ff={};var s=[];var r=this.__ed;var o,q;for(var p in r){o=r[p];if(t.isVisible(o)){q=this.getNestingLevel(o);if(!s[q]){s[q]={};};s[q][p]=o;delete r[p];};};return s;},__fh:function(){var x=[];var z=this.__fg();for(var w=z.length-1;w>=0;w-- ){if(!z[w]){continue;};for(var v in z[w]){var u=z[w][v];if(w==0||u.isRootWidget()||u.hasUserBounds()){x.push(u);u.invalidateLayoutCache();continue;};var B=u.getSizeHint(false);if(B){u.invalidateLayoutCache();var y=u.getSizeHint();var A=(!u.getBounds()||B.minWidth!==y.minWidth||B.width!==y.width||B.maxWidth!==y.maxWidth||B.minHeight!==y.minHeight||B.height!==y.height||B.maxHeight!==y.maxHeight);}else {A=true;};if(A){var parent=u.getLayoutParent();if(!z[w-1]){z[w-1]={};};z[w-1][parent.$$hash]=parent;}else {x.push(u);};};};return x;}}});})();(function(){var a="none",b="qx.module.Css",c="",d="display";qx.Bootstrap.define(b,{statics:{setStyle:function(name,e){if(/\w-\w/.test(name)){name=qx.lang.String.camelCase(name);};this._forEachElement(function(f){qx.bom.element.Style.set(f,name,e);});return this;},getStyle:function(name){if(this[0]&&qx.dom.Node.isElement(this[0])){if(/\w-\w/.test(name)){name=qx.lang.String.camelCase(name);};return qx.bom.element.Style.get(this[0],name);};return null;},setStyles:function(g){for(var name in g){this.setStyle(name,g[name]);};return this;},getStyles:function(j){var h={};for(var i=0;i<j.length;i++ ){h[j[i]]=this.getStyle(j[i]);};return h;},addClass:function(name){this._forEachElement(function(k){qx.bom.element.Class.add(k,name);});return this;},addClasses:function(m){this._forEachElement(function(n){qx.bom.element.Class.addClasses(n,m);});return this;},removeClass:function(name){this._forEachElement(function(o){qx.bom.element.Class.remove(o,name);});return this;},removeClasses:function(p){this._forEachElement(function(q){qx.bom.element.Class.removeClasses(q,p);});return this;},hasClass:function(name){if(!this[0]||!qx.dom.Node.isElement(this[0])){return false;};return qx.bom.element.Class.has(this[0],name);},getClass:function(){if(!this[0]||!qx.dom.Node.isElement(this[0])){return c;};return qx.bom.element.Class.get(this[0]);},toggleClass:function(name){var r=qx.bom.element.Class;this._forEachElement(function(s){r.has(s,name)?r.remove(s,name):r.add(s,name);});return this;},toggleClasses:function(t){for(var i=0,l=t.length;i<l;i++ ){this.toggleClass(t[i]);};return this;},replaceClass:function(v,u){this._forEachElement(function(w){qx.bom.element.Class.replace(w,v,u);});return this;},getHeight:function(){var x=this[0];if(x){if(qx.dom.Node.isElement(x)){return qx.bom.element.Dimension.getHeight(x);}else if(qx.dom.Node.isDocument(x)){return qx.bom.Document.getHeight(qx.dom.Node.getWindow(x));}else if(qx.dom.Node.isWindow(x)){return qx.bom.Viewport.getHeight(x);};};return null;},getWidth:function(){var y=this[0];if(y){if(qx.dom.Node.isElement(y)){return qx.bom.element.Dimension.getWidth(y);}else if(qx.dom.Node.isDocument(y)){return qx.bom.Document.getWidth(qx.dom.Node.getWindow(y));}else if(qx.dom.Node.isWindow(y)){return qx.bom.Viewport.getWidth(y);};};return null;},getOffset:function(){var z=this[0];if(z&&qx.dom.Node.isElement(z)){return qx.bom.element.Location.get(z);};return null;},getContentHeight:function(){var A=this[0];if(qx.dom.Node.isElement(A)){return qx.bom.element.Dimension.getContentHeight(A);};return null;},getContentWidth:function(){var B=this[0];if(qx.dom.Node.isElement(B)){return qx.bom.element.Dimension.getContentWidth(B);};return null;},getPosition:function(){var C=this[0];if(qx.dom.Node.isElement(C)){return qx.bom.element.Location.getPosition(C);};return null;},includeStylesheet:function(E,D){qx.bom.Stylesheet.includeFile(E,D);},hide:function(){this._forEachElement(function(F,H){var I=this.eq(H);var G=I.getStyle(d);if(G!==a){I[0].$$qPrevDisp=G;I.setStyle(d,a);};});return this;},show:function(){this._forEachElement(function(P,J){var K=this.eq(J);var N=K.getStyle(d);var M=K[0].$$qPrevDisp;var O;if(N==a){if(M&&M!=a){O=M;}else {var L=qxWeb.getDocument(K[0]);O=qx.module.Css.__fj(K[0].tagName,L);};K.setStyle(d,O);K[0].$$qPrevDisp=a;};});return this;},__fi:{},__fj:function(T,Q){var S=qx.module.Css.__fi;if(!S[T]){var U=Q||document;var R=qxWeb(U.createElement(T)).appendTo(Q.body);S[T]=R.getStyle(d);R.remove();};return S[T]||c;}},defer:function(V){qxWeb.$attach({"setStyle":V.setStyle,"getStyle":V.getStyle,"setStyles":V.setStyles,"getStyles":V.getStyles,"addClass":V.addClass,"addClasses":V.addClasses,"removeClass":V.removeClass,"removeClasses":V.removeClasses,"hasClass":V.hasClass,"getClass":V.getClass,"toggleClass":V.toggleClass,"toggleClasses":V.toggleClasses,"replaceClass":V.replaceClass,"getHeight":V.getHeight,"getWidth":V.getWidth,"getOffset":V.getOffset,"getContentHeight":V.getContentHeight,"getContentWidth":V.getContentWidth,"getPosition":V.getPosition,"hide":V.hide,"show":V.show});qxWeb.$attachStatic({"includeStylesheet":V.includeStylesheet});}});})();(function(){var a='',b="g",c="(^|\\s)",d='function',e="(\\s|$)",f="",g="\\b|\\b",h="qx.bom.element.Class",j='SVGAnimatedString',k="html.classlist",m="default",n=" ",o='object',p="$2",q="native",r="\\b",s='undefined';qx.Bootstrap.define(h,{statics:{__fk:/\s+/g,__fl:/^\s+|\s+$/g,add:{"native":function(t,name){t.classList.add(name);return name;},"default":function(u,name){if(!this.has(u,name)){u.className+=(u.className?n:f)+name;};return name;}}[qx.core.Environment.get(k)?q:m],addClasses:{"native":function(w,v){for(var i=0;i<v.length;i++ ){w.classList.add(v[i]);};return w.className;},"default":function(y,A){var z={};var B;var x=y.className;if(x){B=x.split(this.__fk);for(var i=0,l=B.length;i<l;i++ ){z[B[i]]=true;};for(var i=0,l=A.length;i<l;i++ ){if(!z[A[i]]){B.push(A[i]);};};}else {B=A;};return y.className=B.join(n);}}[qx.core.Environment.get(k)?q:m],get:function(D){var C=D.className;if(typeof C.split!==d){if(typeof C===o){if(qx.Bootstrap.getClass(C)==j){C=C.baseVal;}else {{};C=a;};};if(typeof C===s){{};C=a;};};return C;},has:{"native":function(E,name){return E.classList.contains(name);},"default":function(G,name){var F=new RegExp(c+name+e);return F.test(G.className);}}[qx.core.Environment.get(k)?q:m],remove:{"native":function(H,name){H.classList.remove(name);return name;},"default":function(J,name){var I=new RegExp(c+name+e);J.className=J.className.replace(I,p);return name;}}[qx.core.Environment.get(k)?q:m],removeClasses:{"native":function(L,K){for(var i=0;i<K.length;i++ ){L.classList.remove(K[i]);};return L.className;},"default":function(O,M){var N=new RegExp(r+M.join(g)+r,b);return O.className=O.className.replace(N,f).replace(this.__fl,f).replace(this.__fk,n);}}[qx.core.Environment.get(k)?q:m],replace:function(R,Q,P){if(!this.has(R,Q)){return f;};this.remove(R,Q);return this.add(R,P);},toggle:{"native":function(T,name,S){if(S===undefined){T.classList.toggle(name);}else {S?this.add(T,name):this.remove(T,name);};return name;},"default":function(V,name,U){if(U==null){U=!this.has(V,name);};U?this.add(V,name):this.remove(V,name);return name;}}[qx.core.Environment.get(k)?q:m]}});})();(function(){var a="borderBottomWidth",b="scroll",c="qx.bom.element.Location",d="engine.version",e="paddingLeft",f="borderRightWidth",g="auto",h="static",i="borderTopWidth",j="borderLeftWidth",k="marginBottom",l="marginTop",m="overflowY",n="marginLeft",o="border-box",p="padding",q="paddingBottom",r="paddingTop",s="gecko",t="marginRight",u="browser.quirksmode",v="mshtml",w="engine.name",x="position",y="margin",z="paddingRight",A="BODY",B="overflowX",C="border",D="browser.documentmode";qx.Bootstrap.define(c,{statics:{__fm:function(F,E){return qx.bom.element.Style.get(F,E,qx.bom.element.Style.COMPUTED_MODE,false);},__fn:function(H,G){return parseInt(qx.bom.element.Style.get(H,G,qx.bom.element.Style.COMPUTED_MODE,false),10)||0;},__fo:function(J){var K=0,top=0;var I=qx.dom.Node.getWindow(J);K-=qx.bom.Viewport.getScrollLeft(I);top-=qx.bom.Viewport.getScrollTop(I);return {left:K,top:top};},__fp:qx.core.Environment.select(w,{"mshtml":function(N){var M=qx.dom.Node.getDocument(N);var L=M.body;var O=0;var top=0;O-=L.clientLeft+M.documentElement.clientLeft;top-=L.clientTop+M.documentElement.clientTop;if(!qx.core.Environment.get(u)){O+=this.__fn(L,j);top+=this.__fn(L,i);};return {left:O,top:top};},"webkit":function(R){var Q=qx.dom.Node.getDocument(R);var P=Q.body;var S=P.offsetLeft;var top=P.offsetTop;if(parseFloat(qx.core.Environment.get(d))<530.17){S+=this.__fn(P,j);top+=this.__fn(P,i);};return {left:S,top:top};},"gecko":function(U){var T=qx.dom.Node.getDocument(U).body;var V=T.offsetLeft;var top=T.offsetTop;if(parseFloat(qx.core.Environment.get(d))<1.9){V+=this.__fn(T,n);top+=this.__fn(T,l);};if(qx.bom.element.BoxSizing.get(T)!==o){V+=this.__fn(T,j);top+=this.__fn(T,i);};return {left:V,top:top};},"default":function(X){var W=qx.dom.Node.getDocument(X).body;var Y=W.offsetLeft;var top=W.offsetTop;return {left:Y,top:top};}}),__fq:function(ba){var bb=ba.getBoundingClientRect();return {left:Math.round(bb.left),top:Math.round(bb.top)};},get:function(bg,bh){if(bg.tagName==A){var location=this.__fr(bg);var bk=location.left;var top=location.top;}else {var bc=this.__fp(bg);var bf=this.__fq(bg);var scroll=this.__fo(bg);var bk=bf.left+bc.left-scroll.left;var top=bf.top+bc.top-scroll.top;};var bd=bk+bg.offsetWidth;var be=top+bg.offsetHeight;if(bh){if(bh==p||bh==b){var bj=qx.bom.element.Style.get(bg,B);if(bj==b||bj==g){bd+=bg.scrollWidth-bg.offsetWidth+this.__fn(bg,j)+this.__fn(bg,f);};var bi=qx.bom.element.Style.get(bg,m);if(bi==b||bi==g){be+=bg.scrollHeight-bg.offsetHeight+this.__fn(bg,i)+this.__fn(bg,a);};};switch(bh){case p:bk+=this.__fn(bg,e);top+=this.__fn(bg,r);bd-=this.__fn(bg,z);be-=this.__fn(bg,q);case b:bk-=bg.scrollLeft;top-=bg.scrollTop;bd-=bg.scrollLeft;be-=bg.scrollTop;case C:bk+=this.__fn(bg,j);top+=this.__fn(bg,i);bd-=this.__fn(bg,f);be-=this.__fn(bg,a);break;case y:bk-=this.__fn(bg,n);top-=this.__fn(bg,l);bd+=this.__fn(bg,t);be+=this.__fn(bg,k);break;};};return {left:bk,top:top,right:bd,bottom:be};},__fr:function(bl){var top=bl.offsetTop;var bm=bl.offsetLeft;if(qx.core.Environment.get(w)!==v||!((parseFloat(qx.core.Environment.get(d))<8||qx.core.Environment.get(D)<8)&&!qx.core.Environment.get(u))){top+=this.__fn(bl,l);bm+=this.__fn(bl,n);};if(qx.core.Environment.get(w)===s){top+=this.__fn(bl,j);bm+=this.__fn(bl,i);};return {left:bm,top:top};},getLeft:function(bn,bo){return this.get(bn,bo).left;},getTop:function(bp,bq){return this.get(bp,bq).top;},getRight:function(br,bs){return this.get(br,bs).right;},getBottom:function(bt,bu){return this.get(bt,bu).bottom;},getRelative:function(by,bx,bw,bv){var bA=this.get(by,bw);var bz=this.get(bx,bv);return {left:bA.left-bz.left,top:bA.top-bz.top,right:bA.right-bz.right,bottom:bA.bottom-bz.bottom};},getPosition:function(bB){return this.getRelative(bB,this.getOffsetParent(bB));},getOffsetParent:function(bE){var bD=bE.offsetParent||document.body;var bC=qx.bom.element.Style;while(bD&&(!/^body|html$/i.test(bD.tagName)&&bC.get(bD,x)===h)){bD=bD.offsetParent;};return bD;}}});})();(function(){var a="qx.module.Polyfill";qx.Bootstrap.define(a,{});})();(function(){var a="mshtml",b="engine.name",c="*",d="load",e="left",f="qx.module.Event",g="undefined",h="DOMContentLoaded",n="browser.documentmode",o="complete";qx.Bootstrap.define(f,{statics:{__fs:{},__ft:{on:{},off:{}},on:function(w,t,u){for(var i=0;i<this.length;i++ ){var p=this[i];var q=u||qxWeb(p);var v=qx.module.Event.__ft.on;var s=v[c]||[];if(v[w]){s=s.concat(v[w]);};for(var j=0,m=s.length;j<m;j++ ){s[j](p,w,t,u);};var r=function(event){var B=qx.module.Event.__fs;var A=B[c]||[];if(B[w]){A=A.concat(B[w]);};for(var x=0,y=A.length;x<y;x++ ){event=A[x](event,p,w);};t.apply(this,[event]);}.bind(q);r.original=t;if(qx.bom.Event.supportsEvent(p,w)){qx.bom.Event.addNativeListener(p,w,r);};if(!p.__fu){p.__fu=new qx.event.Emitter();};var z=p.__fu.on(w,r,q);if(!p.__fv){p.__fv={};};if(!p.__fv[w]){p.__fv[w]={};};p.__fv[w][z]=r;if(!u){if(!p.__fw){p.__fw={};};p.__fw[z]=q;};};return this;},off:function(L,D,I){var H=(D===null&&I===null);for(var j=0;j<this.length;j++ ){var C=this[j];if(!C.__fv){continue;};var N=[];if(L!==null){N.push(L);}else {for(var F in C.__fv){N.push(F);};};for(var i=0,l=N.length;i<l;i++ ){for(var G in C.__fv[N[i]]){var K=C.__fv[N[i]][G];if(H||K==D||K.original==D){var E=typeof C.__fw!==g&&C.__fw[G];var O;if(!I&&E){O=C.__fw[G];};C.__fu.off(N[i],K,O||I);if(H||K.original==D){qx.bom.Event.removeNativeListener(C,N[i],K);};delete C.__fv[N[i]][G];if(E){delete C.__fw[G];};};};var J=qx.module.Event.__ft.off;var M=J[c]||[];if(J[L]){M=M.concat(J[L]);};for(var k=0,m=M.length;k<m;k++ ){M[k](C,L,D,I);};};};return this;},allOff:function(P){return this.off(P||null,null,null);},emit:function(Q,R){for(var j=0;j<this.length;j++ ){var S=this[j];if(S.__fu){S.__fu.emit(Q,R);};};return this;},once:function(U,T,W){var self=this;var V=function(X){self.off(U,V,W);T.call(this,X);};this.on(U,V,W);return this;},hasListener:function(Y){if(!this[0]||!this[0].__fu||!this[0].__fu.getListeners()[Y]){return false;};return this[0].__fu.getListeners()[Y].length>0;},copyEventsTo:function(bg){var be=this.concat();var bf=bg.concat();for(var i=be.length-1;i>=0;i-- ){var bb=be[i].getElementsByTagName(c);for(var j=0;j<bb.length;j++ ){be.push(bb[j]);};};for(var i=bf.length-1;i>=0;i-- ){var bb=bf[i].getElementsByTagName(c);for(var j=0;j<bb.length;j++ ){bf.push(bb[j]);};};bf.forEach(function(bh){bh.__fu=null;});for(var i=0;i<be.length;i++ ){var ba=be[i];if(!ba.__fu){continue;};var bc=ba.__fu.getListeners();for(var name in bc){for(var j=bc[name].length-1;j>=0;j-- ){var bd=bc[name][j].listener;if(bd.original){bd=bd.original;};qxWeb(bf[i]).on(name,bd,bc[name][j].ctx);};};};},__di:false,ready:function(bi){if(document.readyState===o){window.setTimeout(bi,1);return;};var bj=function(){qx.module.Event.__di=true;bi();};qxWeb(window).on(d,bj);var bk=function(){qxWeb(window).off(d,bj);bi();};if(qxWeb.env.get(b)!==a||qxWeb.env.get(n)>8){qx.bom.Event.addNativeListener(document,h,bk);}else {var bl=function(){if(qx.module.Event.__di){return;};try{document.documentElement.doScroll(e);if(document.body){bk();};}catch(bm){window.setTimeout(bl,100);};};bl();};},$registerNormalization:function(bq,bn){if(!qx.lang.Type.isArray(bq)){bq=[bq];};var bo=qx.module.Event.__fs;for(var i=0,l=bq.length;i<l;i++ ){var bp=bq[i];if(qx.lang.Type.isFunction(bn)){if(!bo[bp]){bo[bp]=[];};bo[bp].push(bn);};};},$unregisterNormalization:function(bu,br){if(!qx.lang.Type.isArray(bu)){bu=[bu];};var bs=qx.module.Event.__fs;for(var i=0,l=bu.length;i<l;i++ ){var bt=bu[i];if(bs[bt]){qx.lang.Array.remove(bs[bt],br);};};},$getRegistry:function(){return qx.module.Event.__fs;},$registerEventHook:function(bA,bx,bw){if(!qx.lang.Type.isArray(bA)){bA=[bA];};var by=qx.module.Event.__ft.on;for(var i=0,l=bA.length;i<l;i++ ){var bz=bA[i];if(qx.lang.Type.isFunction(bx)){if(!by[bz]){by[bz]=[];};by[bz].push(bx);};};if(!bw){return;};var bv=qx.module.Event.__ft.off;for(var i=0,l=bA.length;i<l;i++ ){var bz=bA[i];if(qx.lang.Type.isFunction(bw)){if(!bv[bz]){bv[bz]=[];};bv[bz].push(bw);};};},$unregisterEventHook:function(bG,bD,bC){if(!qx.lang.Type.isArray(bG)){bG=[bG];};var bE=qx.module.Event.__ft.on;for(var i=0,l=bG.length;i<l;i++ ){var bF=bG[i];if(bE[bF]){qx.lang.Array.remove(bE[bF],bD);};};if(!bC){return;};var bB=qx.module.Event.__ft.off;for(var i=0,l=bG.length;i<l;i++ ){var bF=bG[i];if(bB[bF]){qx.lang.Array.remove(bB[bF],bC);};};},$getHookRegistry:function(){return qx.module.Event.__ft;}},defer:function(bH){qxWeb.$attach({"on":bH.on,"off":bH.off,"allOff":bH.allOff,"once":bH.once,"emit":bH.emit,"hasListener":bH.hasListener,"copyEventsTo":bH.copyEventsTo});qxWeb.$attachStatic({"ready":bH.ready,"$registerEventNormalization":bH.$registerNormalization,"$unregisterEventNormalization":bH.$unregisterNormalization,"$getEventNormalizationRegistry":bH.$getRegistry,"$registerEventHook":bH.$registerEventHook,"$unregisterEventHook":bH.$unregisterEventHook,"$getEventHookRegistry":bH.$getHookRegistry});}});})();(function(){var a="qx.event.Emitter",b="*";qx.Bootstrap.define(a,{extend:Object,statics:{__fx:[]},members:{__fv:null,__fy:null,on:function(name,c,d){var e=qx.event.Emitter.__fx.length;this.__fz(name).push({listener:c,ctx:d,id:e});qx.event.Emitter.__fx.push({name:name,listener:c,ctx:d});return e;},once:function(name,f,g){var h=qx.event.Emitter.__fx.length;this.__fz(name).push({listener:f,ctx:g,once:true,id:h});qx.event.Emitter.__fx.push({name:name,listener:f,ctx:g});return h;},off:function(name,l,j){var k=this.__fz(name);for(var i=k.length-1;i>=0;i-- ){var m=k[i];if(m.listener==l&&m.ctx==j){k.splice(i,1);qx.event.Emitter.__fx[m.id]=null;return m.id;};};return null;},offById:function(o){var n=qx.event.Emitter.__fx[o];if(n){this.off(n.name,n.listener,n.ctx);};return null;},addListener:function(name,p,q){return this.on(name,p,q);},addListenerOnce:function(name,r,s){return this.once(name,r,s);},removeListener:function(name,t,u){this.off(name,t,u);},removeListenerById:function(v){this.offById(v);},emit:function(name,y){var x=this.__fz(name);for(var i=0;i<x.length;i++ ){var w=x[i];w.listener.call(w.ctx,y);if(w.once){x.splice(i,1);i-- ;};};x=this.__fz(b);for(var i=x.length-1;i>=0;i-- ){var w=x[i];w.listener.call(w.ctx,y);};},getListeners:function(){return this.__fv;},__fz:function(name){if(this.__fv==null){this.__fv={};};if(this.__fv[name]==null){this.__fv[name]=[];};return this.__fv[name];}}});})();(function(){var a="start",b="animationEnd",c="",d="none",e="qx.module.Animation",f="animationIteration",g="end",h="animationStart",j="ease-in",k="iteration",l="ease-out",m="display";qx.Bootstrap.define(e,{events:{"animationStart":undefined,"animationIteration":undefined,"animationEnd":undefined},statics:{getAnimationHandles:function(){var n=[];for(var i=0;i<this.length;i++ ){n[i]=this[i].$$animation;};return n;},_fadeOut:{duration:700,timing:l,keep:100,keyFrames:{'0':{opacity:1},'100':{opacity:0,display:d}}},_fadeIn:{duration:700,timing:j,keep:100,keyFrames:{'0':{opacity:0},'100':{opacity:1}}},animate:function(p,o){qx.module.Animation._animate.bind(this)(p,o,false);return this;},animateReverse:function(r,q){qx.module.Animation._animate.bind(this)(r,q,true);return this;},_animate:function(u,s,t){this._forEachElement(function(v,i){if(v.$$animation){v.$$animation.stop();};var w;if(t){w=qx.bom.element.Animation.animateReverse(v,u,s);}else {w=qx.bom.element.Animation.animate(v,u,s);};var self=this;if(i==0){w.on(a,function(){self.emit(h);},w);w.on(k,function(){self.emit(f);},w);};w.on(g,function(){for(var i=0;i<self.length;i++ ){if(self[i].$$animation){return;};};self.emit(b);},v);});},play:function(){for(var i=0;i<this.length;i++ ){var x=this[i].$$animation;if(x){x.play();};};return this;},pause:function(){for(var i=0;i<this.length;i++ ){var y=this[i].$$animation;if(y){y.pause();};};return this;},stop:function(){for(var i=0;i<this.length;i++ ){var z=this[i].$$animation;if(z){z.stop();};};return this;},isPlaying:function(){for(var i=0;i<this.length;i++ ){var A=this[i].$$animation;if(A&&A.isPlaying()){return true;};};return false;},isEnded:function(){for(var i=0;i<this.length;i++ ){var B=this[i].$$animation;if(B&&!B.isEnded()){return false;};};return true;},fadeIn:function(C){this.setStyle(m,c);return this.animate(qx.module.Animation._fadeIn,C);},fadeOut:function(D){return this.animate(qx.module.Animation._fadeOut,D);}},defer:function(E){qxWeb.$attach({"animate":E.animate,"animateReverse":E.animateReverse,"fadeIn":E.fadeIn,"fadeOut":E.fadeOut,"play":E.play,"pause":E.pause,"stop":E.stop,"isEnded":E.isEnded,"isPlaying":E.isPlaying,"getAnimationHandles":E.getAnimationHandles});}});})();(function(){var a="css.animation",b="translate",c="rotate",d="skew",e="scale",f="qx.bom.element.Animation";qx.Bootstrap.define(f,{statics:{animate:function(h,k,g){var j=qx.bom.element.Animation.__fA(h,k.keyFrames);if(qx.core.Environment.get(a)&&j){return qx.bom.element.AnimationCss.animate(h,k,g);}else {return qx.bom.element.AnimationJs.animate(h,k,g);};},animateReverse:function(m,o,l){var n=qx.bom.element.Animation.__fA(m,o.keyFrames);if(qx.core.Environment.get(a)&&n){return qx.bom.element.AnimationCss.animateReverse(m,o,l);}else {return qx.bom.element.AnimationJs.animateReverse(m,o,l);};},__fA:function(p,t){var r=[];for(var v in t){var s=t[v];for(var u in s){if(r.indexOf(u)==-1){r.push(u);};};};var q=[e,c,d,b];for(var i=0;i<r.length;i++ ){var u=qx.lang.String.camelCase(r[i]);if(!(u in p.style)){if(q.indexOf(r[i])!=-1){continue;};if(qx.bom.Style.getPropertyName(u)){continue;};return false;};};return true;}}});})();(function(){var a="oAnimationStart",b="animationend",c="MSAnimationStart",d="oRequestAnimationFrame",f="AnimationFillMode",g="MSAnimationEnd",h="requestAnimationFrame",j="mozRequestAnimationFrame",k="webkitAnimationEnd",l="css.animation.requestframe",m="AnimationPlayState",n="",o="MSAnimationIteration",p="animation",q="oAnimationEnd",r="@",s="animationiteration",t="webkitRequestAnimationFrame",u=" name",v="qx.bom.client.CssAnimation",w="css.animation",x="oAnimationIteration",y="webkitAnimationIteration",z="-keyframes",A="msRequestAnimationFrame",B="@keyframes",C="animationstart",D="webkitAnimationStart";qx.Bootstrap.define(v,{statics:{getSupport:function(){var name=qx.bom.client.CssAnimation.getName();if(name!=null){return {"name":name,"play-state":qx.bom.client.CssAnimation.getPlayState(),"start-event":qx.bom.client.CssAnimation.getAnimationStart(),"iteration-event":qx.bom.client.CssAnimation.getAnimationIteration(),"end-event":qx.bom.client.CssAnimation.getAnimationEnd(),"fill-mode":qx.bom.client.CssAnimation.getFillMode(),"keyframes":qx.bom.client.CssAnimation.getKeyFrames()};};return null;},getFillMode:function(){return qx.bom.Style.getPropertyName(f);},getPlayState:function(){return qx.bom.Style.getPropertyName(m);},getName:function(){return qx.bom.Style.getPropertyName(p);},getAnimationStart:function(){var E={"msAnimation":c,"WebkitAnimation":D,"MozAnimation":C,"OAnimation":a,"animation":C};return E[this.getName()];},getAnimationIteration:function(){var F={"msAnimation":o,"WebkitAnimation":y,"MozAnimation":s,"OAnimation":x,"animation":s};return F[this.getName()];},getAnimationEnd:function(){var G={"msAnimation":g,"WebkitAnimation":k,"MozAnimation":b,"OAnimation":q,"animation":b};return G[this.getName()];},getKeyFrames:function(){var H=qx.bom.Style.VENDOR_PREFIXES;var K=[];for(var i=0;i<H.length;i++ ){var J=r+qx.bom.Style.getCssName(H[i])+z;K.push(J);};K.unshift(B);var I=qx.bom.Stylesheet.createElement();for(var i=0;i<K.length;i++ ){try{qx.bom.Stylesheet.addRule(I,K[i]+u,n);return K[i];}catch(e){};};return null;},getRequestAnimationFrame:function(){var L=[h,A,t,j,d];for(var i=0;i<L.length;i++ ){if(window[L[i]]!=undefined){return L[i];};};return null;}},defer:function(M){qx.core.Environment.add(w,M.getSupport);qx.core.Environment.add(l,M.getRequestAnimationFrame);}});})();(function(){var a="fill-mode",b="repeat",c="timing",d="start",f="end",g="Anni",h="alternate",i="keep",j=":",k="} ",l="name",m="iteration-event",n="",o="origin",p="forwards",q="start-event",r="iteration",s="end-event",t="css.animation",u="ms ",v="% {",w=" ",x="linear",y=";",z="qx.bom.element.AnimationCss",A="keyframes";qx.Bootstrap.define(z,{statics:{__dt:null,__fB:g,__co:0,__dq:{},__fC:{"scale":true,"rotate":true,"skew":true,"translate":true},__fD:qx.core.Environment.get(t),animateReverse:function(C,D,B){return this._animate(C,D,B,true);},animate:function(F,G,E){return this._animate(F,G,E,false);},_animate:function(H,O,N,J){this.__fI(O);{};var L=O.keep;if(L!=null&&(J||(O.alternate&&O.repeat%2==0))){L=100-L;};if(!this.__dt){this.__dt=qx.bom.Stylesheet.createElement();};var K=O.keyFrames;if(N==undefined){N=O.duration;};if(this.__fD!=null){var name=this.__fK(K,J);var I=name+w+N+u+O.repeat+w+O.timing+w+(O.delay?O.delay+u:n)+(O.alternate?h:n);qx.bom.Event.addNativeListener(H,this.__fD[q],this.__fE);qx.bom.Event.addNativeListener(H,this.__fD[m],this.__fF);qx.bom.Event.addNativeListener(H,this.__fD[s],this.__fG);H.style[qx.lang.String.camelCase(this.__fD[l])]=I;if(L&&L==100&&this.__fD[a]){H.style[this.__fD[a]]=p;};};var M=new qx.bom.element.AnimationHandle();M.desc=O;M.el=H;M.keep=L;H.$$animation=M;if(O.origin!=null){qx.bom.element.Transform.setOrigin(H,O.origin);};if(this.__fD==null){window.setTimeout(function(){qx.bom.element.AnimationCss.__fG({target:H});},0);};return M;},__fE:function(e){e.target.$$animation.emit(d,e.target);},__fF:function(e){if(e.target!=null&&e.target.$$animation!=null){e.target.$$animation.emit(r,e.target);};},__fG:function(e){var P=e.target;var Q=P.$$animation;if(!Q){return;};var S=Q.desc;if(qx.bom.element.AnimationCss.__fD!=null){var R=qx.lang.String.camelCase(qx.bom.element.AnimationCss.__fD[l]);P.style[R]=n;qx.bom.Event.removeNativeListener(P,qx.bom.element.AnimationCss.__fD[l],qx.bom.element.AnimationCss.__fG);};if(S.origin!=null){qx.bom.element.Transform.setOrigin(P,n);};qx.bom.element.AnimationCss.__fH(P,S.keyFrames[Q.keep]);P.$$animation=null;Q.el=null;Q.ended=true;Q.emit(f,P);},__fH:function(T,U){var W;for(var V in U){if(V in qx.bom.element.AnimationCss.__fC){if(!W){W={};};W[V]=U[V];}else {T.style[qx.lang.String.camelCase(V)]=U[V];};};if(W){qx.bom.element.Transform.transform(T,W);};},__fI:function(X){if(!X.hasOwnProperty(h)){X.alternate=false;};if(!X.hasOwnProperty(i)){X.keep=null;};if(!X.hasOwnProperty(b)){X.repeat=1;};if(!X.hasOwnProperty(c)){X.timing=x;};if(!X.hasOwnProperty(o)){X.origin=null;};},__fJ:null,__fK:function(frames,ba){var bd=n;for(var bh in frames){bd+=(ba?-(bh-100):bh)+v;var bc=frames[bh];var bf;for(var Y in bc){if(Y in this.__fC){if(!bf){bf={};};bf[Y]=bc[Y];}else {var bg=qx.bom.Style.getPropertyName(Y);var bb=(bg!==null)?qx.bom.Style.getCssName(bg):n;bd+=(bb||Y)+j+bc[Y]+y;};};if(bf){bd+=qx.bom.element.Transform.getCss(bf);};bd+=k;};if(this.__dq[bd]){return this.__dq[bd];};var name=this.__fB+this.__co++ ;var be=this.__fD[A]+w+name;qx.bom.Stylesheet.addRule(this.__dt,be,bd);this.__dq[bd]=name;return name;}}});})();(function(){var a="css.animation",b="Element",c="",d="qx.bom.element.AnimationHandle",e="play-state",f="paused",g="running";qx.Bootstrap.define(d,{extend:qx.event.Emitter,construct:function(){var h=qx.core.Environment.get(a);this.__fL=h&&h[e];this.__fM=true;},events:{"start":b,"end":b,"iteration":b},members:{__fL:null,__fM:false,__fN:false,isPlaying:function(){return this.__fM;},isEnded:function(){return this.__fN;},isPaused:function(){return this.el.style[this.__fL]==f;},pause:function(){if(this.el){this.el.style[this.__fL]=f;this.el.$$animation.__fM=false;if(this.animationId&&qx.bom.element.AnimationJs){qx.bom.element.AnimationJs.pause(this);};};},play:function(){if(this.el){this.el.style[this.__fL]=g;this.el.$$animation.__fM=true;if(this.i!=undefined&&qx.bom.element.AnimationJs){qx.bom.element.AnimationJs.play(this);};};},stop:function(){if(this.el&&qx.core.Environment.get(a)&&!this.jsAnimation){this.el.style[this.__fL]=c;this.el.style[qx.core.Environment.get(a).name]=c;this.el.$$animation.__fM=false;this.el.$$animation.__fN=true;}else if(this.jsAnimation){this.stopped=true;qx.bom.element.AnimationJs.stop(this);};}}});})();(function(){var c="cm",d="mm",e="0",f="pt",g="pc",h="",k="%",l="em",m="qx.bom.element.AnimationJs",n="infinite",o="#",p="in",q="px",r="start",s="end",t="ex",u="undefined",v="iteration",w="string";qx.Bootstrap.define(m,{statics:{__fO:30,__fP:[k,p,c,d,l,t,f,g,q],animate:function(y,z,x){return this._animate(y,z,x,false);},animateReverse:function(B,C,A){return this._animate(B,C,A,true);},_animate:function(D,N,M,F){if(D.$$animation){return D.$$animation;};N=qx.lang.Object.clone(N,true);if(M==undefined){M=N.duration;};var I=N.keyFrames;var G=this.__fV(I);var H=this.__fU(M,G);var K=parseInt(M/H,10);this.__fQ(I,D);var L=this.__fR(K,H,G,I,M,N.timing);var E=new qx.bom.element.AnimationHandle();E.jsAnimation=true;if(F){L.reverse();E.reverse=true;};E.desc=N;E.el=D;E.delta=L;E.stepTime=H;E.steps=K;D.$$animation=E;E.i=0;E.initValues={};E.repeatSteps=this.__fS(K,N.repeat);var J=N.delay||0;var self=this;E.delayId=window.setTimeout(function(){E.delayId=null;self.play(E);},J);return E;},__fQ:function(S,O){var V={};for(var R in S){for(var name in S[R]){var P=qx.bom.Style.getPropertyName(name);if(P&&P!=name){var U=qx.bom.Style.getCssName(P);S[R][U]=S[R][name];delete S[R][name];name=U;};if(V[name]==undefined){var T=S[R][name];if(typeof T==w){V[name]=T.substring((parseInt(T,10)+h).length,T.length);}else {V[name]=h;};};};};for(var R in S){var Q=S[R];for(var name in V){if(Q[name]==undefined){if(name in O.style){if(window.getComputedStyle){Q[name]=getComputedStyle(O,null)[name];}else {Q[name]=O.style[name];};}else {Q[name]=O[name];};if(Q[name]===h&&this.__fP.indexOf(V[name])!=-1){Q[name]=e+V[name];};};};};},__fR:function(bg,ba,Y,bc,bk,be){var bb=new Array(bg);var bm=1;bb[0]=bc[0];var X=bc[0];var bd=bc[Y[bm]];for(var i=1;i<bb.length;i++ ){if(i*ba/bk*100>Y[bm]){X=bd;bm++ ;bd=bc[Y[bm]];};bb[i]={};for(var name in bd){var bh=bd[name]+h;if(bh.charAt(0)==o){var bj=qx.util.ColorUtil.cssStringToRgb(X[name]);var bi=qx.util.ColorUtil.cssStringToRgb(bh);var W=[];for(var j=0;j<bj.length;j++ ){var bf=bj[j]-bi[j];W[j]=parseInt(bj[j]-bf*qx.bom.AnimationFrame.calculateTiming(be,i/bg),10);};bb[i][name]=qx.util.ColorUtil.rgbToHexString(W);}else if(!isNaN(parseInt(bh,10))){var bl=bh.substring((parseInt(bh,10)+h).length,bh.length);var bf=parseFloat(bh)-parseFloat(X[name]);bb[i][name]=(parseFloat(X[name])+bf*qx.bom.AnimationFrame.calculateTiming(be,i/bg))+bl;}else {bb[i][name]=X[name]+h;};};};bb[bb.length-1]=bc[100];return bb;},play:function(bn){bn.emit(r,bn.el);var bo=window.setInterval(function(){bn.repeatSteps-- ;var bp=bn.delta[bn.i%bn.steps];if(bn.i===0){for(var name in bp){if(bn.initValues[name]===undefined){if(bn.el[name]!==undefined){bn.initValues[name]=bn.el[name];}else if(qx.bom.element.Style){bn.initValues[name]=qx.bom.element.Style.get(bn.el,qx.lang.String.camelCase(name));}else {bn.initValues[name]=bn.el.style[qx.lang.String.camelCase(name)];};};};};qx.bom.element.AnimationJs.__fT(bn.el,bp);bn.i++ ;if(bn.i%bn.steps==0){bn.emit(v,bn.el);if(bn.desc.alternate){bn.delta.reverse();};};if(bn.repeatSteps<0){qx.bom.element.AnimationJs.stop(bn);};},bn.stepTime);bn.animationId=bo;return bn;},pause:function(bq){window.clearInterval(bq.animationId);bq.animationId=null;return bq;},stop:function(bu){var bt=bu.desc;var br=bu.el;var bs=bu.initValues;if(bu.animationId){window.clearInterval(bu.animationId);};if(bu.delayId){window.clearTimeout(bu.delayId);};if(br==undefined){return bu;};var bv=bt.keep;if(bv!=undefined&&!bu.stopped){if(bu.reverse||(bt.alternate&&bt.repeat&&bt.repeat%2==0)){bv=100-bv;};this.__fT(br,bt.keyFrames[bv]);}else {this.__fT(br,bs);};br.$$animation=null;bu.el=null;bu.ended=true;bu.animationId=null;bu.emit(s,br);return bu;},__fS:function(bx,bw){if(bw==undefined){return bx;};if(bw==n){return Number.MAX_VALUE;};return bx*bw;},__fT:function(bz,by){for(var bA in by){if(by[bA]===undefined){continue;};if(typeof bz.style[bA]===u&&bA in bz){bz[bA]=by[bA];continue;};var name=qx.lang.String.camelCase(bA);if(qx.bom.element.Style){qx.bom.element.Style.set(bz,name,by[bA]);}else {bz.style[name]=by[bA];};};},__fU:function(bD,bB){var bE=100;for(var i=0;i<bB.length-1;i++ ){bE=Math.min(bE,bB[i+1]-bB[i]);};var bC=bD*bE/100;while(bC>this.__fO){bC=bC/2;};return Math.round(bC);},__fV:function(bG){var bF=Object.keys(bG);for(var i=0;i<bF.length;i++ ){bF[i]=parseInt(bF[i],10);};bF.sort(function(a,b){return a-b;});return bF;}}});})();(function(){var b="ease-in-out",c="Number",d="css.animation.requestframe",e="qx.bom.AnimationFrame",f="frame",g="end",h="linear",j="ease-in",k="ease-out";qx.Bootstrap.define(e,{extend:qx.event.Emitter,events:{"end":undefined,"frame":c},members:{__fW:false,startSequence:function(l){this.__fW=false;var m=+(new Date());var n=function(p){if(this.__fW){this.id=null;return;};if(p>=m+l){this.emit(g);this.id=null;}else {var o=Math.max(p-m,0);this.emit(f,o);this.id=qx.bom.AnimationFrame.request(n,this);};};this.id=qx.bom.AnimationFrame.request(n,this);},cancelSequence:function(){this.__fW=true;}},statics:{TIMEOUT:30,calculateTiming:function(q,x){if(q==j){var a=[3.1223e-7,0.0757,1.2646,-0.167,-0.4387,0.2654];}else if(q==k){var a=[-7.0198e-8,1.652,-0.551,-0.0458,0.1255,-0.1807];}else if(q==h){return x;}else if(q==b){var a=[2.482e-7,-0.2289,3.3466,-1.0857,-1.7354,0.7034];}else {var a=[-0.0021,0.2472,9.8054,-21.6869,17.7611,-5.1226];};var y=0;for(var i=0;i<a.length;i++ ){y+=a[i]*Math.pow(x,i);};return y;},request:function(r,t){var s=qx.core.Environment.get(d);var u=function(v){if(v<1e10){v=this.__fX+v;};v=v||+(new Date());r.call(t,v);};if(s){return window[s](u);}else {return window.setTimeout(function(){u();},qx.bom.AnimationFrame.TIMEOUT);};}},defer:function(w){w.__fX=window.performance&&performance.timing&&performance.timing.navigationStart;if(!w.__fX){w.__fX=Date.now();};}});})();(function(){var a="css.transform.3d",b="backfaceVisibility",c="transformStyle",d="css.transform",e="transformOrigin",f="qx.bom.client.CssTransform",g="transform",h="perspective",i="perspectiveOrigin";qx.Bootstrap.define(f,{statics:{getSupport:function(){var name=qx.bom.client.CssTransform.getName();if(name!=null){return {"name":name,"style":qx.bom.client.CssTransform.getStyle(),"origin":qx.bom.client.CssTransform.getOrigin(),"3d":qx.bom.client.CssTransform.get3D(),"perspective":qx.bom.client.CssTransform.getPerspective(),"perspective-origin":qx.bom.client.CssTransform.getPerspectiveOrigin(),"backface-visibility":qx.bom.client.CssTransform.getBackFaceVisibility()};};return null;},getStyle:function(){return qx.bom.Style.getPropertyName(c);},getPerspective:function(){return qx.bom.Style.getPropertyName(h);},getPerspectiveOrigin:function(){return qx.bom.Style.getPropertyName(i);},getBackFaceVisibility:function(){return qx.bom.Style.getPropertyName(b);},getOrigin:function(){return qx.bom.Style.getPropertyName(e);},getName:function(){return qx.bom.Style.getPropertyName(g);},get3D:function(){return qx.bom.client.CssTransform.getPerspective()!=null;}},defer:function(j){qx.core.Environment.add(d,j.getSupport);qx.core.Environment.add(a,j.get3D);}});})();(function(){var a="backface-visibility",b="name",c="perspective",d="visible",e="",f="(",g="px",h="css.transform",j=" ",k="qx.bom.element.Transform",l="hidden",m="Z",n=";",o="perspective-origin",p=") ",q="X",r="Y",s="origin",t="style",u=":";qx.Bootstrap.define(k,{statics:{__fY:[q,r,m],__ga:qx.core.Environment.get(h),transform:function(v,x){var y=this.__gb(x);if(this.__ga!=null){var w=this.__ga[b];v.style[w]=y;};},translate:function(z,A){this.transform(z,{translate:A});},scale:function(B,C){this.transform(B,{scale:C});},rotate:function(D,E){this.transform(D,{rotate:E});},skew:function(F,G){this.transform(F,{skew:G});},getCss:function(I){var J=this.__gb(I);if(this.__ga!=null){var H=this.__ga[b];return qx.bom.Style.getCssName(H)+u+J+n;};return e;},setOrigin:function(K,L){if(this.__ga!=null){K.style[this.__ga[s]]=L;};},getOrigin:function(M){if(this.__ga!=null){return M.style[this.__ga[s]];};return e;},setStyle:function(N,O){if(this.__ga!=null){N.style[this.__ga[t]]=O;};},getStyle:function(P){if(this.__ga!=null){return P.style[this.__ga[t]];};return e;},setPerspective:function(Q,R){if(this.__ga!=null){Q.style[this.__ga[c]]=R+g;};},getPerspective:function(S){if(this.__ga!=null){return S.style[this.__ga[c]];};return e;},setPerspectiveOrigin:function(T,U){if(this.__ga!=null){T.style[this.__ga[o]]=U;};},getPerspectiveOrigin:function(V){if(this.__ga!=null){var W=V.style[this.__ga[o]];if(W!=e){return W;}else {var Y=V.style[this.__ga[o]+q];var X=V.style[this.__ga[o]+r];if(Y!=e){return Y+j+X;};};};return e;},setBackfaceVisibility:function(ba,bb){if(this.__ga!=null){ba.style[this.__ga[a]]=bb?d:l;};},getBackfaceVisibility:function(bc){if(this.__ga!=null){return bc.style[this.__ga[a]]==d;};return true;},__gb:function(bf){var bg=e;for(var bd in bf){var be=bf[bd];if(qx.Bootstrap.isArray(be)){for(var i=0;i<be.length;i++ ){if(be[i]==undefined){continue;};bg+=bd+this.__fY[i]+f;bg+=be[i];bg+=p;};}else {bg+=bd+f+bf[bd]+p;};};return bg;}}});})();(function(){var a="qx.util.DeferredCallManager",b="singleton";qx.Class.define(a,{extend:qx.core.Object,type:b,construct:function(){this.__gc={};this.__gd=qx.lang.Function.bind(this.__gh,this);this.__ge=false;},members:{__gf:null,__gg:null,__gc:null,__ge:null,__gd:null,schedule:function(d){if(this.__gf==null){this.__gf=window.setTimeout(this.__gd,0);};var c=d.toHashCode();if(this.__gg&&this.__gg[c]){return;};this.__gc[c]=d;this.__ge=true;},cancel:function(f){var e=f.toHashCode();if(this.__gg&&this.__gg[e]){this.__gg[e]=null;return;};delete this.__gc[e];if(qx.lang.Object.isEmpty(this.__gc)&&this.__gf!=null){window.clearTimeout(this.__gf);this.__gf=null;};},__gh:qx.event.GlobalError.observeMethod(function(){this.__gf=null;while(this.__ge){this.__gg=qx.lang.Object.clone(this.__gc);this.__gc={};this.__ge=false;for(var h in this.__gg){var g=this.__gg[h];if(g){this.__gg[h]=null;g.call();};};};this.__gg=null;})},destruct:function(){if(this.__gf!=null){window.clearTimeout(this.__gf);};this.__gd=this.__gc=null;}});})();(function(){var a="qx.util.DeferredCall";qx.Class.define(a,{extend:qx.core.Object,construct:function(b,c){qx.core.Object.call(this);this.__bz=b;this.__bB=c||null;this.__gi=qx.util.DeferredCallManager.getInstance();},members:{__bz:null,__bB:null,__gi:null,cancel:function(){this.__gi.cancel(this);},schedule:function(){this.__gi.schedule(this);},call:function(){{var d;};this.__bB?this.__bz.apply(this.__bB):this.__bz();}},destruct:function(){this.cancel();this.__bB=this.__bz=this.__gi=null;}});})();(function(){var a="Child is already in: ",b="text",c="qx.html.Element",d="|capture|",f="focus",g="blur",h="div",j="class",k="deactivate",m="css.userselect",n="animationEnd",o="capture",p="visible",q="Root elements could not be inserted into other ones.",r="Has no children!",s="|bubble|",t="releaseCapture",u="Could not move to same index!",v="element",w="",z="qxSelectable",A="tabIndex",B="off",C="on",D="qx.html.Iframe",E="activate",F="Has no parent to remove from.",G="mshtml",H="engine.name",I="none",J="Has no child: ",K="scroll",L=" ",M="hidden",N="__gE",O="Has no child at this position!",P="css.userselect.none",Q="Could not overwrite existing element!";qx.Class.define(c,{extend:qx.core.Object,construct:function(T,R,S){qx.core.Object.call(this);this.__gj=T||h;this.__gk=R||null;this.__gl=S||null;},statics:{DEBUG:false,_modified:{},_visibility:{},_scroll:{},_actions:[],__gm:{},__gn:null,__go:null,_scheduleFlush:function(U){qx.html.Element.__gP.schedule();},flush:function(){var bh;{};var Y=this.__gp();var W=Y.getFocus();if(W&&this.__gr(W)){Y.blur(W);};var bo=Y.getActive();if(bo&&this.__gr(bo)){qx.bom.Element.deactivate(bo);};var bc=this.__gq();if(bc&&this.__gr(bc)){qx.bom.Element.releaseCapture(bc);};var bi=[];var bj=this._modified;for(var bg in bj){bh=bj[bg];if(bh.__gI()||bh.classname==D){if(bh.__gs&&qx.dom.Hierarchy.isRendered(bh.__gs)){bi.push(bh);}else {{};bh.__gH();};delete bj[bg];};};for(var i=0,l=bi.length;i<l;i++ ){bh=bi[i];{};bh.__gH();};var be=this._visibility;for(var bg in be){bh=be[bg];var bk=bh.__gs;if(!bk){delete be[bg];continue;};{};if(!bh.$$disposed){bk.style.display=bh.__gu?w:I;if((qx.core.Environment.get(H)==G)){if(!(document.documentMode>=8)){bk.style.visibility=bh.__gu?p:M;};};};delete be[bg];};var scroll=this._scroll;for(var bg in scroll){bh=scroll[bg];var X=bh.__gs;if(X&&X.offsetWidth){var bb=true;if(bh.__gx!=null){bh.__gs.scrollLeft=bh.__gx;delete bh.__gx;};if(bh.__gy!=null){bh.__gs.scrollTop=bh.__gy;delete bh.__gy;};var bl=bh.__gv;if(bl!=null){var bf=bl.element.getDomElement();if(bf&&bf.offsetWidth){qx.bom.element.Scroll.intoViewX(bf,X,bl.align);delete bh.__gv;}else {bb=false;};};var bm=bh.__gw;if(bm!=null){var bf=bm.element.getDomElement();if(bf&&bf.offsetWidth){qx.bom.element.Scroll.intoViewY(bf,X,bm.align);delete bh.__gw;}else {bb=false;};};if(bb){delete scroll[bg];};};};var ba={"releaseCapture":1,"blur":1,"deactivate":1};for(var i=0;i<this._actions.length;i++ ){var bn=this._actions[i];var bk=bn.element.__gs;if(!bk||!ba[bn.type]&&!bn.element.__gI()){continue;};var bd=bn.args;bd.unshift(bk);qx.bom.Element[bn.type].apply(qx.bom.Element,bd);};this._actions=[];for(var bg in this.__gm){var V=this.__gm[bg];var X=V.element.__gs;if(X){qx.bom.Selection.set(X,V.start,V.end);delete this.__gm[bg];};};qx.event.handler.Appear.refresh();},__gp:function(){if(!this.__gn){var bp=qx.event.Registration.getManager(window);this.__gn=bp.getHandler(qx.event.handler.Focus);};return this.__gn;},__gq:function(){if(!this.__go){var bq=qx.event.Registration.getManager(window);this.__go=bq.getDispatcher(qx.event.dispatch.MouseCapture);};return this.__go.getCaptureElement();},__gr:function(br){var bs=qx.core.ObjectRegistry.fromHashCode(br.$$element);return bs&&!bs.__gI();}},members:{__gj:null,__gs:null,__a:false,__gt:true,__gu:true,__gv:null,__gw:null,__gx:null,__gy:null,__gz:null,__gA:null,__gB:null,__gk:null,__gl:null,__gC:null,__gD:null,__gE:null,__gF:null,__gG:null,_scheduleChildrenUpdate:function(){if(this.__gF){return;};this.__gF=true;qx.html.Element._modified[this.$$hash]=this;qx.html.Element._scheduleFlush(v);},_createDomElement:function(){return qx.dom.Element.create(this.__gj);},__gH:function(){{};var length;var bt=this.__gE;if(bt){length=bt.length;var bu;for(var i=0;i<length;i++ ){bu=bt[i];if(bu.__gu&&bu.__gt&&!bu.__gs){bu.__gH();};};};if(!this.__gs){this.__gs=this._createDomElement();this.__gs.$$element=this.$$hash;this._copyData(false);if(bt&&length>0){this._insertChildren();};}else {this._syncData();if(this.__gF){this._syncChildren();};};delete this.__gF;},_insertChildren:function(){var bv=this.__gE;var length=bv.length;var bx;if(length>2){var bw=document.createDocumentFragment();for(var i=0;i<length;i++ ){bx=bv[i];if(bx.__gs&&bx.__gt){bw.appendChild(bx.__gs);};};this.__gs.appendChild(bw);}else {var bw=this.__gs;for(var i=0;i<length;i++ ){bx=bv[i];if(bx.__gs&&bx.__gt){bw.appendChild(bx.__gs);};};};},_syncChildren:function(){var bH=qx.core.ObjectRegistry;var by=this.__gE;var bF=by.length;var bz;var bD;var bB=this.__gs;var bG=bB.childNodes;var bA=0;var bE;{var bC;};for(var i=bG.length-1;i>=0;i-- ){bE=bG[i];bD=bH.fromHashCode(bE.$$element);if(!bD||!bD.__gt||bD.__gG!==this){bB.removeChild(bE);{};};};for(var i=0;i<bF;i++ ){bz=by[i];if(bz.__gt){bD=bz.__gs;bE=bG[bA];if(!bD){continue;};if(bD!=bE){if(bE){bB.insertBefore(bD,bE);}else {bB.appendChild(bD);};{};};bA++ ;};};{};},_copyData:function(bJ){var bL=this.__gs;var bN=this.__gl;if(bN){var bK=qx.bom.element.Attribute;for(var bM in bN){bK.set(bL,bM,bN[bM]);};};var bN=this.__gk;if(bN){var bI=qx.bom.element.Style;if(bJ){bI.setStyles(bL,bN);}else {bI.setCss(bL,bI.compile(bN));};};var bN=this.__gC;if(bN){for(var bM in bN){this._applyProperty(bM,bN[bM]);};};var bN=this.__gD;if(bN){qx.event.Registration.getManager(bL).importListeners(bL,bN);delete this.__gD;};},_syncData:function(){var bS=this.__gs;var bR=qx.bom.element.Attribute;var bP=qx.bom.element.Style;var bQ=this.__gA;if(bQ){var bV=this.__gl;if(bV){var bT;for(var bU in bQ){bT=bV[bU];if(bT!==undefined){bR.set(bS,bU,bT);}else {bR.reset(bS,bU);};};};this.__gA=null;};var bQ=this.__gz;if(bQ){var bV=this.__gk;if(bV){var bO={};for(var bU in bQ){bO[bU]=bV[bU];};bP.setStyles(bS,bO);};this.__gz=null;};var bQ=this.__gB;if(bQ){var bV=this.__gC;if(bV){var bT;for(var bU in bQ){this._applyProperty(bU,bV[bU]);};};this.__gB=null;};},__gI:function(){var bW=this;while(bW){if(bW.__a){return true;};if(!bW.__gt||!bW.__gu){return false;};bW=bW.__gG;};return false;},__gJ:function(bX){if(bX.__gG===this){throw new Error(a+bX);};if(bX.__a){throw new Error(q);};if(bX.__gG){bX.__gG.remove(bX);};bX.__gG=this;if(!this.__gE){this.__gE=[];};if(this.__gs){this._scheduleChildrenUpdate();};},__gK:function(bY){if(bY.__gG!==this){throw new Error(J+bY);};if(this.__gs){this._scheduleChildrenUpdate();};delete bY.__gG;},__gL:function(ca){if(ca.__gG!==this){throw new Error(J+ca);};if(this.__gs){this._scheduleChildrenUpdate();};},getChildren:function(){return this.__gE||null;},getChild:function(cb){var cc=this.__gE;return cc&&cc[cb]||null;},hasChildren:function(){var cd=this.__gE;return cd&&cd[0]!==undefined;},indexOf:function(cf){var ce=this.__gE;return ce?ce.indexOf(cf):-1;},hasChild:function(ch){var cg=this.__gE;return cg&&cg.indexOf(ch)!==-1;},add:function(ci){if(arguments[1]){for(var i=0,l=arguments.length;i<l;i++ ){this.__gJ(arguments[i]);};this.__gE.push.apply(this.__gE,arguments);}else {this.__gJ(ci);this.__gE.push(ci);};return this;},addAt:function(ck,cj){this.__gJ(ck);qx.lang.Array.insertAt(this.__gE,ck,cj);return this;},remove:function(cl){var cm=this.__gE;if(!cm){return this;};if(arguments[1]){var cn;for(var i=0,l=arguments.length;i<l;i++ ){cn=arguments[i];this.__gK(cn);qx.lang.Array.remove(cm,cn);};}else {this.__gK(cl);qx.lang.Array.remove(cm,cl);};return this;},removeAt:function(co){var cp=this.__gE;if(!cp){throw new Error(r);};var cq=cp[co];if(!cq){throw new Error(O);};this.__gK(cq);qx.lang.Array.removeAt(this.__gE,co);return this;},removeAll:function(){var cr=this.__gE;if(cr){for(var i=0,l=cr.length;i<l;i++ ){this.__gK(cr[i]);};cr.length=0;};return this;},getParent:function(){return this.__gG||null;},insertInto:function(parent,cs){parent.__gJ(this);if(cs==null){parent.__gE.push(this);}else {qx.lang.Array.insertAt(this.__gE,this,cs);};return this;},insertBefore:function(ct){var parent=ct.__gG;parent.__gJ(this);qx.lang.Array.insertBefore(parent.__gE,this,ct);return this;},insertAfter:function(cu){var parent=cu.__gG;parent.__gJ(this);qx.lang.Array.insertAfter(parent.__gE,this,cu);return this;},moveTo:function(cv){var parent=this.__gG;parent.__gL(this);var cw=parent.__gE.indexOf(this);if(cw===cv){throw new Error(u);}else if(cw<cv){cv-- ;};qx.lang.Array.removeAt(parent.__gE,cw);qx.lang.Array.insertAt(parent.__gE,this,cv);return this;},moveBefore:function(cx){var parent=this.__gG;return this.moveTo(parent.__gE.indexOf(cx));},moveAfter:function(cy){var parent=this.__gG;return this.moveTo(parent.__gE.indexOf(cy)+1);},free:function(){var parent=this.__gG;if(!parent){throw new Error(F);};if(!parent.__gE){return this;};parent.__gK(this);qx.lang.Array.remove(parent.__gE,this);return this;},getDomElement:function(){return this.__gs||null;},getNodeName:function(){return this.__gj;},setNodeName:function(name){this.__gj=name;},setRoot:function(cz){this.__a=cz;},useMarkup:function(cA){if(this.__gs){throw new Error(Q);};if(qx.core.Environment.get(H)==G){var cB=document.createElement(h);}else {var cB=qx.dom.Element.getHelperElement();};cB.innerHTML=cA;this.useElement(cB.firstChild);return this.__gs;},useElement:function(cC){if(this.__gs){throw new Error(Q);};this.__gs=cC;this.__gs.$$element=this.$$hash;this._copyData(true);},isFocusable:function(){var cE=this.getAttribute(A);if(cE>=1){return true;};var cD=qx.event.handler.Focus.FOCUSABLE_ELEMENTS;if(cE>=0&&cD[this.__gj]){return true;};return false;},setSelectable:function(cG){this.setAttribute(z,cG?C:B);var cF=qx.core.Environment.get(m);if(cF){this.setStyle(cF,cG?b:qx.core.Environment.get(P));};},isNativelyFocusable:function(){return !!qx.event.handler.Focus.FOCUSABLE_ELEMENTS[this.__gj];},include:function(){if(this.__gt){return this;};delete this.__gt;if(this.__gG){this.__gG._scheduleChildrenUpdate();};return this;},exclude:function(){if(!this.__gt){return this;};this.__gt=false;if(this.__gG){this.__gG._scheduleChildrenUpdate();};return this;},isIncluded:function(){return this.__gt===true;},fadeIn:function(cH){var cI=qxWeb(this.__gs);if(cI.isPlaying()){cI.stop();};if(!this.__gs){this.__gH();cI.push(this.__gs);};if(this.__gs){cI.fadeIn(cH);return cI.getAnimationHandles()[0];};},fadeOut:function(cJ){var cK=qxWeb(this.__gs);if(cK.isPlaying()){cK.stop();};if(this.__gs){cK.fadeOut(cJ).once(n,function(){this.hide();qx.html.Element.flush();},this);return cK.getAnimationHandles()[0];};},show:function(){if(this.__gu){return this;};if(this.__gs){qx.html.Element._visibility[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};if(this.__gG){this.__gG._scheduleChildrenUpdate();};delete this.__gu;return this;},hide:function(){if(!this.__gu){return this;};if(this.__gs){qx.html.Element._visibility[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};this.__gu=false;return this;},isVisible:function(){return this.__gu===true;},scrollChildIntoViewX:function(cO,cM,cP){var cL=this.__gs;var cN=cO.getDomElement();if(cP!==false&&cL&&cL.offsetWidth&&cN&&cN.offsetWidth){qx.bom.element.Scroll.intoViewX(cN,cL,cM);}else {this.__gv={element:cO,align:cM};qx.html.Element._scroll[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};delete this.__gx;},scrollChildIntoViewY:function(cT,cR,cU){var cQ=this.__gs;var cS=cT.getDomElement();if(cU!==false&&cQ&&cQ.offsetWidth&&cS&&cS.offsetWidth){qx.bom.element.Scroll.intoViewY(cS,cQ,cR);}else {this.__gw={element:cT,align:cR};qx.html.Element._scroll[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};delete this.__gy;},scrollToX:function(x,cV){var cW=this.__gs;if(cV!==true&&cW&&cW.offsetWidth){cW.scrollLeft=x;delete this.__gx;}else {this.__gx=x;qx.html.Element._scroll[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};delete this.__gv;},getScrollX:function(){var cX=this.__gs;if(cX){return cX.scrollLeft;};return this.__gx||0;},scrollToY:function(y,da){var cY=this.__gs;if(da!==true&&cY&&cY.offsetWidth){cY.scrollTop=y;delete this.__gy;}else {this.__gy=y;qx.html.Element._scroll[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};delete this.__gw;},getScrollY:function(){var dc=this.__gs;if(dc){return dc.scrollTop;};return this.__gy||0;},disableScrolling:function(){this.enableScrolling();this.scrollToX(0);this.scrollToY(0);this.addListener(K,this.__gN,this);},enableScrolling:function(){this.removeListener(K,this.__gN,this);},__gM:null,__gN:function(e){if(!this.__gM){this.__gM=true;this.__gs.scrollTop=0;this.__gs.scrollLeft=0;delete this.__gM;};},getTextSelection:function(){var dd=this.__gs;if(dd){return qx.bom.Selection.get(dd);};return null;},getTextSelectionLength:function(){var de=this.__gs;if(de){return qx.bom.Selection.getLength(de);};return null;},getTextSelectionStart:function(){var df=this.__gs;if(df){return qx.bom.Selection.getStart(df);};return null;},getTextSelectionEnd:function(){var dg=this.__gs;if(dg){return qx.bom.Selection.getEnd(dg);};return null;},setTextSelection:function(dh,di){var dj=this.__gs;if(dj){qx.bom.Selection.set(dj,dh,di);return;};qx.html.Element.__gm[this.toHashCode()]={element:this,start:dh,end:di};qx.html.Element._scheduleFlush(v);},clearTextSelection:function(){var dk=this.__gs;if(dk){qx.bom.Selection.clear(dk);};delete qx.html.Element.__gm[this.toHashCode()];},__gO:function(dl,dm){var dn=qx.html.Element._actions;dn.push({type:dl,element:this,args:dm||[]});qx.html.Element._scheduleFlush(v);},focus:function(){this.__gO(f);},blur:function(){this.__gO(g);},activate:function(){this.__gO(E);},deactivate:function(){this.__gO(k);},capture:function(dp){this.__gO(o,[dp!==false]);},releaseCapture:function(){this.__gO(t);},setStyle:function(dq,dr,ds){if(!this.__gk){this.__gk={};};if(this.__gk[dq]==dr){return this;};if(dr==null){delete this.__gk[dq];}else {this.__gk[dq]=dr;};if(this.__gs){if(ds){qx.bom.element.Style.set(this.__gs,dq,dr);return this;};if(!this.__gz){this.__gz={};};this.__gz[dq]=true;qx.html.Element._modified[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};return this;},setStyles:function(du,dw){var dv=qx.bom.element.Style;if(!this.__gk){this.__gk={};};if(this.__gs){if(!this.__gz){this.__gz={};};for(var dt in du){var dx=du[dt];if(this.__gk[dt]==dx){continue;};if(dx==null){delete this.__gk[dt];}else {this.__gk[dt]=dx;};if(dw){dv.set(this.__gs,dt,dx);continue;};this.__gz[dt]=true;};qx.html.Element._modified[this.$$hash]=this;qx.html.Element._scheduleFlush(v);}else {for(var dt in du){var dx=du[dt];if(this.__gk[dt]==dx){continue;};if(dx==null){delete this.__gk[dt];}else {this.__gk[dt]=dx;};};};return this;},removeStyle:function(dz,dy){this.setStyle(dz,null,dy);return this;},getStyle:function(dA){return this.__gk?this.__gk[dA]:null;},getAllStyles:function(){return this.__gk||null;},setAttribute:function(dB,dC,dD){if(!this.__gl){this.__gl={};};if(this.__gl[dB]==dC){return this;};if(dC==null){delete this.__gl[dB];}else {this.__gl[dB]=dC;};if(this.__gs){if(dD){qx.bom.element.Attribute.set(this.__gs,dB,dC);return this;};if(!this.__gA){this.__gA={};};this.__gA[dB]=true;qx.html.Element._modified[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};return this;},setAttributes:function(dE,dF){for(var dG in dE){this.setAttribute(dG,dE[dG],dF);};return this;},removeAttribute:function(dI,dH){return this.setAttribute(dI,null,dH);},getAttribute:function(dJ){return this.__gl?this.__gl[dJ]:null;},addClass:function(name){var dK=((this.getAttribute(j)||w)+L+name).trim();this.setAttribute(j,dK);},removeClass:function(name){var dL=this.getAttribute(j);if(dL){this.setAttribute(j,(dL.replace(name,w)).trim());};},_applyProperty:function(name,dM){},_setProperty:function(dN,dO,dP){if(!this.__gC){this.__gC={};};if(this.__gC[dN]==dO){return this;};if(dO==null){delete this.__gC[dN];}else {this.__gC[dN]=dO;};if(this.__gs){if(dP){this._applyProperty(dN,dO);return this;};if(!this.__gB){this.__gB={};};this.__gB[dN]=true;qx.html.Element._modified[this.$$hash]=this;qx.html.Element._scheduleFlush(v);};return this;},_removeProperty:function(dR,dQ){return this._setProperty(dR,null,dQ);},_getProperty:function(dT){var dS=this.__gC;if(!dS){return null;};var dU=dS[dT];return dU==null?null:dU;},addListener:function(ea,dW,self,dV){if(this.$$disposed){return null;};{var dX;};if(this.__gs){return qx.event.Registration.addListener(this.__gs,ea,dW,self,dV);};if(!this.__gD){this.__gD={};};if(dV==null){dV=false;};var dY=qx.event.Manager.getNextUniqueId();var eb=ea+(dV?d:s)+dY;this.__gD[eb]={type:ea,listener:dW,self:self,capture:dV,unique:dY};return eb;},removeListener:function(ei,ed,self,ec){if(this.$$disposed){return null;};{var eg;};if(this.__gs){qx.event.Registration.removeListener(this.__gs,ei,ed,self,ec);}else {var ee=this.__gD;var eh;if(ec==null){ec=false;};for(var ef in ee){eh=ee[ef];if(eh.listener===ed&&eh.self===self&&eh.capture===ec&&eh.type===ei){delete ee[ef];break;};};};return this;},removeListenerById:function(ej){if(this.$$disposed){return null;};if(this.__gs){qx.event.Registration.removeListenerById(this.__gs,ej);}else {delete this.__gD[ej];};return this;},hasListener:function(em,ek){if(this.$$disposed){return false;};if(this.__gs){return qx.event.Registration.hasListener(this.__gs,em,ek);};var en=this.__gD;var ep;if(ek==null){ek=false;};for(var eo in en){ep=en[eo];if(ep.capture===ek&&ep.type===em){return true;};};return false;}},defer:function(eq){eq.__gP=new qx.util.DeferredCall(eq.flush,eq);},destruct:function(){var er=this.__gs;if(er){qx.event.Registration.getManager(er).removeAllListeners(er);er.$$element=w;};if(!qx.core.ObjectRegistry.inShutDown){var parent=this.__gG;if(parent&&!parent.$$disposed){parent.remove(this);};};this._disposeArray(N);this.__gl=this.__gk=this.__gD=this.__gC=this.__gA=this.__gz=this.__gB=this.__gs=this.__gG=this.__gv=this.__gw=null;}});})();(function(){var a="qx.event.handler.Appear",b="disappear",c="appear";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(d){qx.core.Object.call(this);this.__gi=d;this.__gQ={};qx.event.handler.Appear.__gR[this.$$hash]=this;},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{appear:true,disappear:true},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:true,__gR:{},refresh:function(){var e=this.__gR;for(var f in e){e[f].refresh();};}},members:{__gi:null,__gQ:null,canHandleEvent:function(h,g){},registerEvent:function(l,m,j){var k=qx.core.ObjectRegistry.toHashCode(l)+m;var i=this.__gQ;if(i&&!i[k]){i[k]=l;l.$$displayed=l.offsetWidth>0;};},unregisterEvent:function(q,r,o){var p=qx.core.ObjectRegistry.toHashCode(q)+r;var n=this.__gQ;if(!n){return;};if(n[p]){delete n[p];};},refresh:function(){var w=this.__gQ;var v;for(var u in w){v=w[u];var s=v.offsetWidth>0;if((!!v.$$displayed)!==s){v.$$displayed=s;var t=qx.event.Registration.createEvent(s?c:b);this.__gi.dispatchEvent(v,t);};};}},destruct:function(){this.__gi=this.__gQ=null;delete qx.event.handler.Appear.__gR[this.$$hash];},defer:function(x){qx.event.Registration.addHandler(x);}});})();(function(){var a="abstract",b="Missing implementation",c="qx.event.dispatch.AbstractBubbling";qx.Class.define(c,{extend:qx.core.Object,implement:qx.event.IEventDispatcher,type:a,construct:function(d){this._manager=d;},members:{_getParent:function(e){throw new Error(b);},canDispatchEvent:function(g,event,f){return event.getBubbles();},dispatchEvent:function(l,event,w){var parent=l;var s=this._manager;var o,x;var n;var v,u;var y;var q=[];o=s.getListeners(l,w,true);x=s.getListeners(l,w,false);if(o){q.push(o);};if(x){q.push(x);};var parent=this._getParent(l);var k=[];var h=[];var m=[];var p=[];while(parent!=null){o=s.getListeners(parent,w,true);if(o){m.push(o);p.push(parent);};x=s.getListeners(parent,w,false);if(x){k.push(x);h.push(parent);};parent=this._getParent(parent);};event.setEventPhase(qx.event.type.Event.CAPTURING_PHASE);for(var i=m.length-1;i>=0;i-- ){y=p[i];event.setCurrentTarget(y);n=m[i];for(var j=0,r=n.length;j<r;j++ ){v=n[j];u=v.context||y;{};v.handler.call(u,event);};if(event.getPropagationStopped()){return;};};event.setEventPhase(qx.event.type.Event.AT_TARGET);event.setCurrentTarget(l);for(var i=0,t=q.length;i<t;i++ ){n=q[i];for(var j=0,r=n.length;j<r;j++ ){v=n[j];u=v.context||l;{};v.handler.call(u,event);};if(event.getPropagationStopped()){return;};};event.setEventPhase(qx.event.type.Event.BUBBLING_PHASE);for(var i=0,t=k.length;i<t;i++ ){y=h[i];event.setCurrentTarget(y);n=k[i];for(var j=0,r=n.length;j<r;j++ ){v=n[j];u=v.context||y;{};v.handler.call(u,event);};if(event.getPropagationStopped()){return;};};}}});})();(function(){var a="qx.event.dispatch.DomBubbling";qx.Class.define(a,{extend:qx.event.dispatch.AbstractBubbling,statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL},members:{_getParent:function(b){return b.parentNode;},canDispatchEvent:function(d,event,c){return d.nodeType!==undefined&&event.getBubbles();}},defer:function(e){qx.event.Registration.addDispatcher(e);}});})();(function(){var a="-",b="qx.event.handler.Element",c="load",d="iframe";qx.Class.define(b,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(e){qx.core.Object.call(this);this._manager=e;this._registeredEvents={};},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{abort:true,load:true,scroll:true,select:true,reset:true,submit:true},CANCELABLE:{selectstart:true},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:false},members:{canHandleEvent:function(g,f){if(f===c){return g.tagName.toLowerCase()!==d;}else {return true;};},registerEvent:function(j,l,i){var m=qx.core.ObjectRegistry.toHashCode(j);var h=m+a+l;var k=qx.lang.Function.listener(this._onNative,this,h);qx.bom.Event.addNativeListener(j,l,k);this._registeredEvents[h]={element:j,type:l,listener:k};},unregisterEvent:function(p,r,o){var s=this._registeredEvents;if(!s){return;};var t=qx.core.ObjectRegistry.toHashCode(p);var n=t+a+r;var q=this._registeredEvents[n];if(q){qx.bom.Event.removeNativeListener(p,r,q.listener);};delete this._registeredEvents[n];},_onNative:qx.event.GlobalError.observeMethod(function(v,u){var w=this._registeredEvents;if(!w){return;};var y=w[u];var x=this.constructor.CANCELABLE[y.type];qx.event.Registration.fireNonBubblingEvent(y.element,y.type,qx.event.type.Native,[v,undefined,undefined,undefined,x]);})},destruct:function(){var z;var A=this._registeredEvents;for(var B in A){z=A[B];qx.bom.Event.removeNativeListener(z.element,z.type,z.listener);};this._manager=this._registeredEvents=null;},defer:function(C){qx.event.Registration.addHandler(C);}});})();(function(){var a="qx.event.handler.UserAction";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(b){qx.core.Object.call(this);this.__gi=b;this.__cx=b.getWindow();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{useraction:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true},members:{__gi:null,__cx:null,canHandleEvent:function(d,c){},registerEvent:function(g,f,e){},unregisterEvent:function(j,i,h){}},destruct:function(){this.__gi=this.__cx=null;},defer:function(k){qx.event.Registration.addHandler(k);}});})();(function(){var a="os.name",b="mousedown",c="mouseout",d="gecko",e="dblclick",f="useraction",g="mousewheel",h="event.touch",j="mousemove",k="ios",l="mouseover",m="qx.event.handler.Mouse",n="click",o="on",p="engine.version",q="engine.name",r="mouseup",s="contextmenu",t="qx.emulatemouse",u="webkit",v="DOMMouseScroll",w="device.touch",x="event.mspointer";qx.Class.define(m,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(y){qx.core.Object.call(this);this.__gi=y;this.__cx=y.getWindow();this.__a=this.__cx.document;if(!(qx.core.Environment.get(h)&&qx.event.handler.MouseEmulation.ON)){this._initButtonObserver();this._initMoveObserver();this._initWheelObserver();};if(qx.core.Environment.get(t)){qx.event.handler.MouseEmulation;};},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{mousemove:1,mouseover:1,mouseout:1,mousedown:1,mouseup:1,click:1,dblclick:1,contextmenu:1,mousewheel:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE+qx.event.IEventHandler.TARGET_DOCUMENT+qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true},members:{__gS:null,__gT:null,__gU:null,__gV:null,__gW:null,__gi:null,__cx:null,__a:null,__gX:null,canHandleEvent:function(A,z){},registerEvent:qx.core.Environment.get(a)===k?function(D,C,B){D[o+C]=(function(){return null;});}:(function(){return null;}),unregisterEvent:qx.core.Environment.get(a)===k?function(G,F,E){G[o+F]=undefined;}:(function(){return null;}),__gY:function(H,I,J){if(!J){J=qx.bom.Event.getTarget(H);};if(J&&J.nodeType){qx.event.Registration.fireEvent(J,I||H.type,I==g?qx.event.type.MouseWheel:qx.event.type.Mouse,[H,J,null,true,true]);};qx.event.Registration.fireEvent(this.__cx,f,qx.event.type.Data,[I||H.type]);},__ha:function(){var M=[this.__cx,this.__a,this.__a.body];var L=this.__cx;var K=v;for(var i=0;i<M.length;i++ ){if(qx.bom.Event.supportsEvent(M[i],g)){K=g;L=M[i];break;};};return {type:K,target:L};},preventNextClick:function(){this.__gX=true;},_initButtonObserver:function(){this.__gS=qx.lang.Function.listener(this._onButtonEvent,this);var Event=qx.bom.Event;Event.addNativeListener(this.__a,b,this.__gS);Event.addNativeListener(this.__a,r,this.__gS);if(!(qx.event.handler.MouseEmulation.ON&&qx.core.Environment.get(x)&&qx.core.Environment.get(w))){Event.addNativeListener(this.__a,n,this.__gS);};Event.addNativeListener(this.__a,e,this.__gS);Event.addNativeListener(this.__a,s,this.__gS);},_initMoveObserver:function(){this.__gT=qx.lang.Function.listener(this._onMoveEvent,this);var Event=qx.bom.Event;Event.addNativeListener(this.__a,j,this.__gT);Event.addNativeListener(this.__a,l,this.__gT);Event.addNativeListener(this.__a,c,this.__gT);},_initWheelObserver:function(){this.__gU=qx.lang.Function.listener(this._onWheelEvent,this);var N=this.__ha();qx.bom.Event.addNativeListener(N.target,N.type,this.__gU);},_stopButtonObserver:function(){var Event=qx.bom.Event;Event.removeNativeListener(this.__a,b,this.__gS);Event.removeNativeListener(this.__a,r,this.__gS);if(!(qx.event.handler.MouseEmulation.ON&&qx.core.Environment.get(x)&&qx.core.Environment.get(w))){Event.removeNativeListener(this.__a,n,this.__gS);};Event.removeNativeListener(this.__a,e,this.__gS);Event.removeNativeListener(this.__a,s,this.__gS);},_stopMoveObserver:function(){var Event=qx.bom.Event;Event.removeNativeListener(this.__a,j,this.__gT);Event.removeNativeListener(this.__a,l,this.__gT);Event.removeNativeListener(this.__a,c,this.__gT);},_stopWheelObserver:function(){var O=this.__ha();qx.bom.Event.removeNativeListener(O.target,O.type,this.__gU);},_onMoveEvent:qx.event.GlobalError.observeMethod(function(P){this.__gY(P);}),_onButtonEvent:qx.event.GlobalError.observeMethod(function(S){var R=S.type;var T=qx.bom.Event.getTarget(S);if(R==n&&this.__gX){delete this.__gX;return;};if(qx.core.Environment.get(q)==d||qx.core.Environment.get(q)==u){if(T&&T.nodeType==3){T=T.parentNode;};};var Q=qx.event.handler.DragDrop&&this.__gi.getHandler(qx.event.handler.DragDrop).isSessionActive();if(Q&&R==n){return;};if(this.__hb){this.__hb(S,R,T);};if(this.__hd){this.__hd(S,R,T);};this.__gY(S,R,T);if(this.__hc){this.__hc(S,R,T);};if(this.__he&&!Q){this.__he(S,R,T);};this.__gV=R;}),_onWheelEvent:qx.event.GlobalError.observeMethod(function(U){this.__gY(U,g);}),__hb:qx.core.Environment.select(q,{"webkit":function(W,V,X){if(parseFloat(qx.core.Environment.get(p))<530){if(V==s){this.__gY(W,r,X);};};},"default":null}),__hc:qx.core.Environment.select(q,{"opera":function(Y,ba,bb){if(ba==r&&Y.button==2){this.__gY(Y,s,bb);};},"default":null}),__hd:qx.core.Environment.select(q,{"mshtml":function(bc,bd,be){if(bc.target!==undefined){return;};if(bd==r&&this.__gV==n){this.__gY(bc,b,be);}else if(bd==e){this.__gY(bc,n,be);};},"default":null}),__he:qx.core.Environment.select(q,{"mshtml":null,"default":function(bg,bf,bh){switch(bf){case b:this.__gW=bh;break;case r:if(bh!==this.__gW){var bi=qx.dom.Hierarchy.getCommonParent(bh,this.__gW);if(bi){this.__gY(bg,n,bi);};};};}})},destruct:function(){if(!(qx.core.Environment.get(h)&&qx.event.handler.MouseEmulation.ON)){this._stopButtonObserver();this._stopMoveObserver();this._stopWheelObserver();};this.__gi=this.__cx=this.__a=this.__gW=null;},defer:function(bj){qx.event.Registration.addHandler(bj);}});})();(function(){var a="os.name",b="opera",c="engine.name",d="qx.event.type.Dom",e="osx";qx.Class.define(d,{extend:qx.event.type.Native,statics:{SHIFT_MASK:1,CTRL_MASK:2,ALT_MASK:4,META_MASK:8},members:{_cloneNativeEvent:function(f,g){var g=qx.event.type.Native.prototype._cloneNativeEvent.call(this,f,g);g.shiftKey=f.shiftKey;g.ctrlKey=f.ctrlKey;g.altKey=f.altKey;g.metaKey=f.metaKey;return g;},getModifiers:function(){var h=0;var i=this._native;if(i.shiftKey){h|=qx.event.type.Dom.SHIFT_MASK;};if(i.ctrlKey){h|=qx.event.type.Dom.CTRL_MASK;};if(i.altKey){h|=qx.event.type.Dom.ALT_MASK;};if(i.metaKey){h|=qx.event.type.Dom.META_MASK;};return h;},isCtrlPressed:function(){return this._native.ctrlKey;},isShiftPressed:function(){return this._native.shiftKey;},isAltPressed:function(){return this._native.altKey;},isMetaPressed:function(){return this._native.metaKey;},isCtrlOrCommandPressed:function(){if(qx.core.Environment.get(a)==e&&qx.core.Environment.get(c)!=b){return this._native.metaKey;}else {return this._native.ctrlKey;};}}});})();(function(){var a="touchcancel",b="qx.event.type.Touch",c="touchend";qx.Class.define(b,{extend:qx.event.type.Dom,members:{_cloneNativeEvent:function(d,e){var e=qx.event.type.Dom.prototype._cloneNativeEvent.call(this,d,e);e.pageX=d.pageX;e.pageY=d.pageY;e.offsetX=d.offsetX;e.offsetY=d.offsetY;e.layerX=(d.offsetX||d.layerX);e.layerY=(d.offsetY||d.layerY);e.scale=d.scale;e.rotation=d.rotation;e.srcElement=d.srcElement;e.targetTouches=[];for(var i=0;i<d.targetTouches.length;i++ ){e.targetTouches[i]=d.targetTouches[i];};e.changedTouches=[];for(i=0;i<d.changedTouches.length;i++ ){e.changedTouches[i]=d.changedTouches[i];};e.touches=[];for(i=0;i<d.touches.length;i++ ){e.touches[i]=d.touches[i];};return e;},stop:function(){this.stopPropagation();},getAllTouches:function(){return this._native.touches;},getTargetTouches:function(){return this._native.targetTouches;},getChangedTargetTouches:function(){return this._native.changedTouches;},isMultiTouch:function(){return this.__hg().length>1;},getScale:function(){return this._native.scale;},getRotation:function(){return this._native.rotation;},getDocumentLeft:function(f){return this.__hf(f).pageX;},getDocumentTop:function(g){return this.__hf(g).pageY;},getScreenLeft:function(h){return this.__hf(h).screenX;},getScreenTop:function(j){return this.__hf(j).screenY;},getViewportLeft:function(k){return this.__hf(k).clientX;},getViewportTop:function(l){return this.__hf(l).clientY;},getIdentifier:function(m){return this.__hf(m).identifier;},__hf:function(n){n=n==null?0:n;return this.__hg()[n];},__hg:function(){var o=(this._isTouchEnd()?this.getChangedTargetTouches():this.getTargetTouches());return o;},_isTouchEnd:function(){return (this.getType()==c||this.getType()==a);}}});})();(function(){var a="qx.event.type.Tap";qx.Class.define(a,{extend:qx.event.type.Touch,members:{_isTouchEnd:function(){return true;}}});})();(function(){var a="os.name",b="qx.mobile.nativescroll",c="osx",d="qx.nativeScrollBars",e="os.scrollBarOverlayed",f="browser.version",g="ios",h="qx.bom.client.Scroll";qx.Bootstrap.define(h,{statics:{scrollBarOverlayed:function(){var i=qx.bom.element.Scroll.getScrollbarWidth();var k=qx.bom.client.OperatingSystem.getName()===c;var j=qx.core.Environment.get(d);return i==0&&k&&j;},getNativeScroll:function(){return qx.core.Environment.get(a)==g&&parseInt(qx.core.Environment.get(f))>4;}},defer:function(l){qx.core.Environment.add(e,l.scrollBarOverlayed);qx.core.Environment.add(b,l.getNativeScroll);}});})();(function(){var a="borderBottomWidth",b="visible",d="engine.name",e="borderTopWidth",f="top",g="borderLeftStyle",h="none",i="overflow",j="right",k="bottom",l="borderLeftWidth",m="100px",n="-moz-scrollbars-vertical",o="borderRightStyle",p="hidden",q="div",r="left",u="qx.bom.element.Scroll",v="borderRightWidth",w="scroll",x="overflowY";qx.Class.define(u,{statics:{__hh:null,getScrollbarWidth:function(){if(this.__hh!==null){return this.__hh;};var y=qx.bom.element.Style;var A=function(E,F){return parseInt(y.get(E,F),10)||0;};var B=function(G){return (y.get(G,o)==h?0:A(G,v));};var C=function(H){return (y.get(H,g)==h?0:A(H,l));};var D=qx.core.Environment.select(d,{"mshtml":function(I){if(y.get(I,x)==p||I.clientWidth==0){return B(I);};return Math.max(0,I.offsetWidth-I.clientLeft-I.clientWidth);},"default":function(J){if(J.clientWidth==0){var L=y.get(J,i);var K=(L==w||L==n?16:0);return Math.max(0,B(J)+K);};return Math.max(0,(J.offsetWidth-J.clientWidth-C(J)));}});var z=function(M){return D(M)-B(M);};var t=document.createElement(q);var s=t.style;s.height=s.width=m;s.overflow=w;document.body.appendChild(t);var c=z(t);this.__hh=c;document.body.removeChild(t);return this.__hh;},intoViewX:function(bi,stop,bh){var parent=bi.parentNode;var bg=qx.dom.Node.getDocument(bi);var Y=bg.body;var be,Q,V;var R,P,S;var bb,T,O;var X,bc,bd,ba;var bf,U,bj;var N=bh===r;var W=bh===j;stop=stop?stop.parentNode:bg;while(parent&&parent!=stop){if(parent.scrollWidth>parent.clientWidth&&(parent===Y||qx.bom.element.Style.get(parent,x)!=b)){if(parent===Y){Q=parent.scrollLeft;V=Q+qx.bom.Viewport.getWidth();R=qx.bom.Viewport.getWidth();P=parent.clientWidth;S=parent.scrollWidth;bb=0;T=0;O=0;}else {be=qx.bom.element.Location.get(parent);Q=be.left;V=be.right;R=parent.offsetWidth;P=parent.clientWidth;S=parent.scrollWidth;bb=parseInt(qx.bom.element.Style.get(parent,l),10)||0;T=parseInt(qx.bom.element.Style.get(parent,v),10)||0;O=R-P-bb-T;};X=qx.bom.element.Location.get(bi);bc=X.left;bd=X.right;ba=bi.offsetWidth;bf=bc-Q-bb;U=bd-V+T;bj=0;if(N){bj=bf;}else if(W){bj=U+O;}else if(bf<0||ba>P){bj=bf;}else if(U>0){bj=U+O;};parent.scrollLeft+=bj;qx.event.Registration.fireNonBubblingEvent(parent,w);};if(parent===Y){break;};parent=parent.parentNode;};},intoViewY:function(bD,stop,bC){var parent=bD.parentNode;var bB=qx.dom.Node.getDocument(bD);var bk=bB.body;var by,bt,bw;var bE,bx,bu;var bp,bl,bA;var br,bs,bq,bm;var bn,bv,bz;var bo=bC===f;var bF=bC===k;stop=stop?stop.parentNode:bB;while(parent&&parent!=stop){if(parent.scrollHeight>parent.clientHeight&&(parent===bk||qx.bom.element.Style.get(parent,x)!=b)){if(parent===bk){bt=parent.scrollTop;bw=bt+qx.bom.Viewport.getHeight();bE=qx.bom.Viewport.getHeight();bx=parent.clientHeight;bu=parent.scrollHeight;bp=0;bl=0;bA=0;}else {by=qx.bom.element.Location.get(parent);bt=by.top;bw=by.bottom;bE=parent.offsetHeight;bx=parent.clientHeight;bu=parent.scrollHeight;bp=parseInt(qx.bom.element.Style.get(parent,e),10)||0;bl=parseInt(qx.bom.element.Style.get(parent,a),10)||0;bA=bE-bx-bp-bl;};br=qx.bom.element.Location.get(bD);bs=br.top;bq=br.bottom;bm=bD.offsetHeight;bn=bs-bt-bp;bv=bq-bw+bl;bz=0;if(bo){bz=bn;}else if(bF){bz=bv+bA;}else if(bn<0||bm>bx){bz=bn;}else if(bv>0){bz=bv+bA;};parent.scrollTop+=bz;qx.event.Registration.fireNonBubblingEvent(parent,w);};if(parent===bk){break;};parent=parent.parentNode;};},intoView:function(bI,stop,bH,bG){this.intoViewX(bI,stop,bH);this.intoViewY(bI,stop,bG);}}});})();(function(){var a="qx.event.type.Swipe";qx.Class.define(a,{extend:qx.event.type.Touch,members:{_cloneNativeEvent:function(b,c){var c=qx.event.type.Touch.prototype._cloneNativeEvent.call(this,b,c);c.swipe=b.swipe;return c;},_isTouchEnd:function(){return true;},getStartTime:function(){return this._native.swipe.startTime;},getDuration:function(){return this._native.swipe.duration;},getAxis:function(){return this._native.swipe.axis;},getDirection:function(){return this._native.swipe.direction;},getVelocity:function(){return this._native.swipe.velocity;},getDistance:function(){return this._native.swipe.distance;}}});})();(function(){var a="mshtml",b="onhashchange",c="event.help",d="event.mspointer",e="event.touch",f="msPointerEnabled",g="event.hashchange",h="onhelp",i="documentMode",j="qx.bom.client.Event",k="ontouchstart";qx.Bootstrap.define(j,{statics:{getTouch:function(){return (k in window);},getMsPointer:function(){if(f in window.navigator){return window.navigator.msPointerEnabled;};return false;},getHelp:function(){return (h in document);},getHashChange:function(){var l=qx.bom.client.Engine.getName();var m=b in window;return (l!==a&&m)||(l===a&&i in document&&document.documentMode>=8&&m);}},defer:function(n){qx.core.Environment.add(e,n.getTouch);qx.core.Environment.add(d,n.getMsPointer);qx.core.Environment.add(c,n.getHelp);qx.core.Environment.add(g,n.getHashChange);}});})();(function(){var a="resize",b="os.name",c="qx.event.handler.Orientation",d="landscape",e="android",f="portrait",g="orientationchange";qx.Class.define(c,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(h){qx.core.Object.call(this);this.__gi=h;this.__cx=h.getWindow();this._initObserver();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{orientationchange:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true},members:{__gi:null,__cx:null,__hi:null,_currentOrientation:null,__hj:null,canHandleEvent:function(j,i){},registerEvent:function(m,l,k){},unregisterEvent:function(p,o,n){},_initObserver:function(){this.__hj=qx.lang.Function.listener(this._onNative,this);this.__hi=qx.bom.Event.supportsEvent(this.__cx,g)?g:a;var Event=qx.bom.Event;Event.addNativeListener(this.__cx,this.__hi,this.__hj);},_stopObserver:function(){var Event=qx.bom.Event;Event.removeNativeListener(this.__cx,this.__hi,this.__hj);},_onNative:qx.event.GlobalError.observeMethod(function(q){var r=0;if(qx.core.Environment.get(b)==e){r=300;};qx.lang.Function.delay(this._onOrientationChange,r,this,q);}),_onOrientationChange:function(s){var u=qx.bom.Viewport;var t=u.getOrientation(s.target);if(this._currentOrientation!=t){this._currentOrientation=t;var v=u.isLandscape(s.target)?d:f;qx.event.Registration.fireEvent(this.__cx,g,qx.event.type.Orientation,[t,v]);};}},destruct:function(){this._stopObserver();this.__gi=this.__cx=null;},defer:function(w){qx.event.Registration.addHandler(w);}});})();(function(){var a="landscape",b="qx.event.type.Orientation",c="portrait";qx.Class.define(b,{extend:qx.event.type.Event,members:{__hk:null,__hl:null,init:function(d,e){qx.event.type.Event.prototype.init.call(this,false,false);this.__hk=d;this.__hl=e;return this;},clone:function(f){var g=qx.event.type.Event.prototype.clone.call(this,f);g.__hk=this.__hk;g.__hl=this.__hl;return g;},getOrientation:function(){return this.__hk;},isLandscape:function(){return this.__hl==a;},isPortrait:function(){return this.__hl==c;}}});})();(function(){var a="touchmove",b="os.name",c="MSPointerDown",d="swipe",e="android",f="qx.event.handler.TouchCore",g="event.mspointer",h="MSPointerCancel",j="y",k="pointer-events",l="longtap",m="touchend",n="MSPointerUp",o="right",p="engine.name",q="x",r="touchcancel",s="MSPointerMove",t="webkit",u="none",v="left",w="tap",z="down",A="undefined",B="up",C="touchstart";qx.Bootstrap.define(f,{extend:Object,statics:{TAP_MAX_DISTANCE:qx.core.Environment.get(b)!=e?10:40,SWIPE_DIRECTION:{x:[v,o],y:[B,z]},SWIPE_MIN_DISTANCE:qx.core.Environment.get(b)!=e?11:41,SWIPE_MIN_VELOCITY:0,LONGTAP_TIME:500},construct:function(D,E){this.__hm=D;this.__fu=E;this._initTouchObserver();},members:{__hm:null,__fu:null,__hn:null,__ho:null,__hp:null,__hq:null,__hr:null,__hs:null,__ht:null,__hu:null,__hv:null,__hw:null,__hx:null,_initTouchObserver:function(){this.__hn=qx.lang.Function.listener(this._onTouchEvent,this);var Event=qx.bom.Event;Event.addNativeListener(this.__hm,C,this.__hn);Event.addNativeListener(this.__hm,a,this.__hn);Event.addNativeListener(this.__hm,m,this.__hn);Event.addNativeListener(this.__hm,r,this.__hn);if(qx.core.Environment.get(g)){Event.addNativeListener(this.__hm,c,this.__hn);Event.addNativeListener(this.__hm,s,this.__hn);Event.addNativeListener(this.__hm,n,this.__hn);Event.addNativeListener(this.__hm,h,this.__hn);};},_stopTouchObserver:function(){var Event=qx.bom.Event;Event.removeNativeListener(this.__hm,C,this.__hn);Event.removeNativeListener(this.__hm,a,this.__hn);Event.removeNativeListener(this.__hm,m,this.__hn);Event.removeNativeListener(this.__hm,r,this.__hn);if(qx.core.Environment.get(g)){Event.removeNativeListener(this.__hm,c,this.__hn);Event.removeNativeListener(this.__hm,s,this.__hn);Event.removeNativeListener(this.__hm,n,this.__hn);Event.removeNativeListener(this.__hm,h,this.__hn);};},_onTouchEvent:function(F){this._commonTouchEventHandler(F);},_getScalingDistance:function(H,G){return (Math.sqrt(Math.pow(H.pageX-G.pageX,2)+Math.pow(H.pageY-G.pageY,2)));},_getRotationAngle:function(J,I){var x=J.pageX-I.pageX;var y=J.pageY-I.pageY;return (Math.atan2(y,x)*180/Math.PI);},_commonTouchEventHandler:function(M,K){var K=K||M.type;if(qx.core.Environment.get(g)){M.changedTouches=[M];M.targetTouches=[M];M.touches=[M];if(K==c){K=C;}else if(K==n){K=m;}else if(K==s){if(this.__hu==true){K=a;};}else if(K==h){K=r;};};if(K==C){this.__ho=this._getTarget(M);this.__ht=true;if(M.touches&&M.touches.length>1){this.__hv=this._getScalingDistance(M.touches[0],M.touches[1]);this.__hw=this._getRotationAngle(M.touches[0],M.touches[1]);};};if(K==a){if(typeof M.scale==A&&M.targetTouches.length>1){var N=this._getScalingDistance(M.targetTouches[0],M.targetTouches[1]);M.scale=N/this.__hv;};if(typeof M.rotation==A&&M.targetTouches.length>1){var L=this._getRotationAngle(M.targetTouches[0],M.targetTouches[1]);M.rotation=L-this.__hw;};if(this.__ht){this.__ht=this._isBelowTapMaxDistance(M.changedTouches[0]);};};this._fireEvent(M,K);this.__hz(M,K);},_isBelowTapMaxDistance:function(O){var P={x:O.screenX-this.__hp,y:O.screenY-this.__hq};var Q=qx.event.handler.TouchCore;return (Math.abs(P.x)<=Q.TAP_MAX_DISTANCE&&Math.abs(P.y)<=Q.TAP_MAX_DISTANCE);},_getTarget:function(S){var T=qx.bom.Event.getTarget(S);if(qx.core.Environment.get(p)==t){if(T&&T.nodeType==3){T=T.parentNode;};}else if(qx.core.Environment.get(g)){var R=this.__hy(S);if(R){T=R;};};return T;},__hy:function(W){if(W&&W.touches){var U=W.touches[0].clientX;var V=W.touches[0].clientY;};var Y=document.msElementsFromPoint(U,V);if(Y){for(var i=0;i<Y.length;i++ ){var ba=Y[i];var X=qx.bom.element.Style.get(ba,k,3);if(X!=u){return ba;};};};return null;},_fireEvent:function(bb,bc,bd){if(!bd){bd=this._getTarget(bb);};var bc=bc||bb.type;if(bd&&bd.nodeType&&this.__fu){this.__fu.emit(bc,bb);};},__hz:function(be,bf,bg){if(!bg){bg=this._getTarget(be);};var bf=bf||be.type;if(bf==C){this.__hA(be,bg);}else if(bf==a){this.__hB(be,bg);}else if(bf==m){this.__hC(be,bg);};},__hA:function(bi,bj){var bh=bi.changedTouches[0];this.__hu=true;this.__hp=bh.screenX;this.__hq=bh.screenY;this.__hr=new Date().getTime();this.__hs=bi.targetTouches.length===1;if(this.__hs){this.__hx=window.setTimeout(this.__hE.bind(this,bi,bj),qx.event.handler.TouchCore.LONGTAP_TIME);}else {this.__hF();};},__hB:function(bk,bl){if(this.__hs&&bk.changedTouches.length>1){this.__hs=false;};if(!this._isBelowTapMaxDistance(bk.changedTouches[0])){this.__hF();};},__hC:function(bm,bn){this.__hu=false;this.__hF();if(this.__hs){var bq=bm.changedTouches[0];var br={x:bq.screenX-this.__hp,y:bq.screenY-this.__hq};var bo;if(this.__ho==bn&&this.__ht){if(qx.event&&qx.event.type&&qx.event.type.Tap){bo=qx.event.type.Tap;};this._fireEvent(bm,w,bn,bo);}else {var bp=this.__hD(bm,bn,br);if(bp){if(qx.event&&qx.event.type&&qx.event.type.Swipe){bo=qx.event.type.Swipe;};bm.swipe=bp;this._fireEvent(bm,d,bn,bo);};};};},__hD:function(bu,bv,bA){var bx=qx.event.handler.TouchCore;var by=new Date().getTime()-this.__hr;var bB=(Math.abs(bA.x)>=Math.abs(bA.y))?q:j;var bs=bA[bB];var bt=bx.SWIPE_DIRECTION[bB][bs<0?0:1];var bz=(by!==0)?bs/by:0;var bw=null;if(Math.abs(bz)>=bx.SWIPE_MIN_VELOCITY&&Math.abs(bs)>=bx.SWIPE_MIN_DISTANCE){bw={startTime:this.__hr,duration:by,axis:bB,direction:bt,distance:bs,velocity:bz};};return bw;},__hE:function(bC,bD){this._fireEvent(bC,l,bD,qx.event.type.Tap);this.__hx=null;this.__ht=false;},__hF:function(){if(this.__hx){window.clearTimeout(this.__hx);this.__hx=null;};},dispose:function(){this._stopTouchObserver();this.__ho=this.__hm=this.__fu=this.__hv=this.__hw=null;this.__hF();}}});})();(function(){var a="touchmove",b="engine.name",c="mouseup",d="qx.event.handler.Touch",f="useraction",g="touchend",h="mshtml",i="event.mspointer",j="qx.mobile.nativescroll",k="dispose",l="qx.mobile.emulatetouch",m="event.touch",n="touchstart",o="mousedown",p="mousemove";qx.Class.define(d,{extend:qx.event.handler.TouchCore,implement:qx.event.IEventHandler,construct:function(q){this.__gi=q;this.__cx=q.getWindow();this.__a=this.__cx.document;qx.event.handler.TouchCore.apply(this,[this.__a]);if(!qx.core.Environment.get(i)){this._initMouseObserver();};},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{touchstart:1,touchmove:1,touchend:1,touchcancel:1,tap:1,longtap:1,swipe:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE+qx.event.IEventHandler.TARGET_DOCUMENT,IGNORE_CAN_HANDLE:true,MOUSE_TO_TOUCH_MAPPING:{"mousedown":n,"mousemove":a,"mouseup":g}},members:{__hG:null,__gi:null,__cx:null,__a:null,__hH:false,canHandleEvent:function(s,r){},registerEvent:function(v,u,t){},unregisterEvent:function(y,x,w){},_fireEvent:function(A,z,B,C){if(!B){B=this._getTarget(A);};var z=z||A.type;if(B&&B.nodeType){qx.event.Registration.fireEvent(B,z,C||qx.event.type.Touch,[A,B,null,true,true]);};qx.event.Registration.fireEvent(this.__cx,f,qx.event.type.Data,[z]);},__hI:qx.core.Environment.select(l,{"true":function(E){var D=E.type;var F=qx.event.handler.Touch.MOUSE_TO_TOUCH_MAPPING;if(F[D]){D=F[D];if(D==n&&this.__hJ(E)){this.__hH=true;}else if(D==g){this.__hH=false;};var H=this.__hK(E);var G=(D==g?[]:[H]);E.touches=G;E.targetTouches=G;E.changedTouches=[H];};return D;},"default":(function(){})}),__hJ:qx.core.Environment.select(l,{"true":function(J){if((qx.core.Environment.get(b)==h)){var I=1;}else {var I=0;};return J.button==I;},"default":(function(){})}),__hK:qx.core.Environment.select(l,{"true":function(K){var L=this._getTarget(K);return {clientX:K.clientX,clientY:K.clientY,screenX:K.screenX,screenY:K.screenY,pageX:K.pageX,pageY:K.pageY,identifier:1,target:L};},"default":(function(){})}),_initMouseObserver:qx.core.Environment.select(l,{"true":function(){if(!qx.core.Environment.get(m)){this.__hG=qx.lang.Function.listener(this._onMouseEvent,this);var Event=qx.bom.Event;Event.addNativeListener(this.__a,o,this.__hG);Event.addNativeListener(this.__a,p,this.__hG);Event.addNativeListener(this.__a,c,this.__hG);};},"default":(function(){})}),_stopMouseObserver:qx.core.Environment.select(l,{"true":function(){if(!qx.core.Environment.get(m)){var Event=qx.bom.Event;Event.removeNativeListener(this.__a,o,this.__hG);Event.removeNativeListener(this.__a,p,this.__hG);Event.removeNativeListener(this.__a,c,this.__hG);};},"default":(function(){})}),_onTouchEvent:qx.event.GlobalError.observeMethod(function(M){this._commonTouchEventHandler(M);}),_onMouseEvent:qx.core.Environment.select(l,{"true":qx.event.GlobalError.observeMethod(function(O){if(!qx.core.Environment.get(m)){if(O.type==p&&!this.__hH){return;};var N=this.__hI(O);this._commonTouchEventHandler(O,N);};}),"default":(function(){})}),dispose:function(){this.__hL(k);this._stopMouseObserver();this.__gi=this.__cx=this.__a=null;},__hL:function(Q,P){qx.event.handler.TouchCore.prototype[Q].apply(this,P||[]);}},defer:function(R){qx.event.Registration.addHandler(R);if(qx.core.Environment.get(m)){if(qx.core.Environment.get(j)==false){document.addEventListener(a,function(e){e.preventDefault();});};qx.event.Registration.getManager(document).getHandler(R);};}});})();(function(){var a="ipod",b="pc",c="ps3",d=")",e="iPhone",f="psp",g="wii",h="xbox",i="\.",j="ipad",k="ds",l="(",m="mobile",n="device.type",o="tablet",p="ontouchstart",q="g",r="|",s="qx.bom.client.Device",t="desktop",u="device.name",v="device.touch",w="undefined",x="device.pixelRatio";qx.Bootstrap.define(s,{statics:{__cR:{"iPod":a,"iPad":j,"iPhone":e,"PSP":f,"PLAYSTATION 3":c,"Nintendo Wii":g,"Nintendo DS":k,"XBOX":h,"Xbox":h},getName:function(){var A=[];for(var z in this.__cR){A.push(z);};var B=new RegExp(l+A.join(r).replace(/\./g,i)+d,q);var y=B.exec(navigator.userAgent);if(y&&y[1]){return qx.bom.client.Device.__cR[y[1]];};return b;},getType:function(){return qx.bom.client.Device.detectDeviceType(navigator.userAgent);},detectDeviceType:function(C){if(qx.bom.client.Device.detectTabletDevice(C)){return o;}else if(qx.bom.client.Device.detectMobileDevice(C)){return m;};return t;},detectMobileDevice:function(D){return /android.+mobile|ip(hone|od)|bada\/|blackberry|BB10|maemo|opera m(ob|in)i|fennec|NetFront|phone|psp|symbian|IEMobile|windows (ce|phone)|xda/i.test(D);},detectTabletDevice:function(F){var G=(/MSIE 10/i.test(F))&&(/ARM/i.test(F))&&!(/windows phone/i.test(F));var E=(!(/Fennec|HTC.Magic|Nexus|android.+mobile|Tablet PC/i.test(F))&&(/Android|ipad|tablet|playbook|silk|kindle|psp/i.test(F)));return G||E;},getDevicePixelRatio:function(){if(typeof window.devicePixelRatio!==w){return window.devicePixelRatio;};return 1;},getTouch:function(){return (p in window)||window.navigator.msMaxTouchPoints>1;}},defer:function(H){qx.core.Environment.add(u,H.getName);qx.core.Environment.add(v,H.getTouch);qx.core.Environment.add(n,H.getType);qx.core.Environment.add(x,H.getDevicePixelRatio);}});})();(function(){var a="touchmove",b="os.name",c="mouseup",d="mousedown",f="touchend",g="win",h="none",i="qx.event.handler.MouseEmulation",j="event.mspointer",k="qx.emulatemouse",l="longtap",m="click",n="event.touch",o="touchstart",p="contextmenu",q="tap",r="device.touch",s="mousewheel",t="mousemove";qx.Class.define(i,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(u){qx.core.Object.call(this);this.__gi=u;this.__cx=u.getWindow();this.__a=this.__cx.document;if(qx.event.handler.MouseEmulation.ON){this._initObserver();document.documentElement.style.msTouchAction=h;};},statics:{PRIORITY:qx.event.Registration.PRIORITY_FIRST,SUPPORTED_TYPES:{mousedown:1,mouseup:1,mousemove:1,click:1,contextmenu:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE+qx.event.IEventHandler.TARGET_DOCUMENT+qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true,ON:qx.core.Environment.get(k)&&((qx.core.Environment.get(j)&&qx.core.Environment.get(r))||(qx.core.Environment.get(n)&&qx.core.Environment.get(b)!==g))},members:{__gi:null,__cx:null,__a:null,__hM:null,__hN:null,__hO:null,__hP:null,canHandleEvent:function(w,v){},registerEvent:function(z,y,x){},unregisterEvent:function(C,B,A){},__gY:function(D,E,F){var G=E==s?new qx.event.type.MouseWheel():new qx.event.type.Mouse();G.init(D,F,null,true,true);G.setType(E);return qx.event.Registration.getManager(F).dispatchEvent(F,G);},__hQ:function(H,I,J,K){var L=this.__ia(K,J);L.wheelDelta=H;L.wheelDeltaY=I;L.wheelDeltaX=H;this.__gY(L,s,K);},__hR:function(N,O,Q,M,R){this.__hO=null;this.__hP=null;if(N==0&&O==0){return;};var S=parseInt((R||20)/10);if(N>0){N=Math.max(0,N-S);}else {N=Math.min(0,N+S);};if(O>0){O=Math.max(0,O-S);}else {O=Math.min(0,O+S);};var P=+(new Date());this.__hP=qx.bom.AnimationFrame.request(qx.lang.Function.bind(function(T,U,X,W,V){this.__hR(T,U,X,W,V-P);},this,N,O,Q,M));this.__hQ(N,O,Q,M);},__hS:function(Y){var bb={x:Y.screenX,y:Y.screenY};var ba=false;var bc=20;if(Math.abs(bb.x-this.__hM.x)>bc){ba=true;};if(Math.abs(bb.y-this.__hM.y)>bc){ba=true;};return ba;},_initObserver:function(){qx.event.Registration.addListener(this.__a,o,this.__hU,this);qx.event.Registration.addListener(this.__a,a,this.__hV,this);qx.event.Registration.addListener(this.__a,f,this.__hW,this);qx.event.Registration.addListener(this.__a,q,this.__hX,this);qx.event.Registration.addListener(this.__a,l,this.__hY,this);qx.bom.Event.addNativeListener(this.__cx,o,this.__hT);},_stopObserver:function(){qx.event.Registration.removeListener(this.__a,o,this.__hU,this);qx.event.Registration.removeListener(this.__a,a,this.__hV,this);qx.event.Registration.removeListener(this.__a,f,this.__hW,this);qx.event.Registration.removeListener(this.__a,q,this.__hX,this);qx.event.Registration.removeListener(this.__a,l,this.__hY,this);qx.bom.Event.removeNativeListener(this.__cx,o,this.__hT);},__hT:function(e){e.preventDefault();},__hU:function(e){var be=e.getTarget();var bd=this.__ia(be,e.getAllTouches()[0]);if(qx.core.Environment.get(n)){if(!this.__gY(bd,d,be)){e.preventDefault();};};this.__hN={x:bd.screenX,y:bd.screenY};this.__hM={x:bd.screenX,y:bd.screenY};if(this.__hP&&window.cancelAnimationFrame){window.cancelAnimationFrame(this.__hP);this.__hP=null;};},__hV:function(e){var bf=e.getTarget();var bi=this.__ia(bf,e.getChangedTargetTouches()[0]);if(qx.core.Environment.get(n)){if(!this.__gY(bi,t,bf)){e.preventDefault();};};var bh=-parseInt(this.__hN.y-bi.screenY);var bg=-parseInt(this.__hN.x-bi.screenX);this.__hN={x:bi.screenX,y:bi.screenY};if(e.getNativeEvent().pointerType!=4){var bj=e.getChangedTargetTouches()[0];this.__hQ(bg,bh,bj,bf);if(this.__hO){clearTimeout(this.__hO);this.__hO=null;};this.__hO=setTimeout(qx.lang.Function.bind(function(bk,bl,bm,bn){this.__hR(bk,bl,bm,bn);},this,bg,bh,bj,bf),100);};},__hW:function(e){var bp=e.getTarget();var bo=this.__ia(bp,e.getChangedTargetTouches()[0]);if(qx.core.Environment.get(n)){if(!this.__gY(bo,c,bp)){e.preventDefault();};};},__hX:function(e){var br=e.getTarget();var bq=this.__ia(br,e.getChangedTargetTouches()[0]);if(!this.__hS(bq)){this.__gY(bq,m,br);};},__hY:function(e){var bt=e.getTarget();var bs=this.__ia(bt,e.getChangedTargetTouches()[0]);this.__gY(bs,p,bt);},__ia:function(bv,bw){var bu={};bu.button=0;bu.wheelDelta=0;bu.wheelDeltaX=0;bu.wheelDeltaY=0;bu.wheelX=0;bu.wheelY=0;bu.target=bv;bu.clientX=bw.clientX;bu.clientY=bw.clientY;bu.pageX=bw.pageX;bu.pageY=bw.pageY;bu.screenX=bw.screenX;bu.screenY=bw.screenY;bu.shiftKey=false;bu.ctrlKey=false;bu.altKey=false;bu.metaKey=false;return bu;}},destruct:function(){if(qx.event.handler.MouseEmulation.ON){this._stopObserver();};this.__gi=this.__cx=this.__a=null;},defer:function(bx){if(bx.ON){qx.event.Registration.addHandler(bx);};}});})();(function(){var a="click",b="middle",c="none",d="contextmenu",e="qx.event.type.Mouse",f="browser.documentmode",g="left",h="right",i="browser.name",j="ie";qx.Class.define(e,{extend:qx.event.type.Dom,members:{_cloneNativeEvent:function(k,l){var l=qx.event.type.Dom.prototype._cloneNativeEvent.call(this,k,l);l.button=k.button;l.clientX=k.clientX;l.clientY=k.clientY;l.pageX=k.pageX;l.pageY=k.pageY;l.screenX=k.screenX;l.screenY=k.screenY;l.wheelDelta=k.wheelDelta;l.wheelDeltaX=k.wheelDeltaX;l.wheelDeltaY=k.wheelDeltaY;l.detail=k.detail;l.axis=k.axis;l.wheelX=k.wheelX;l.wheelY=k.wheelY;l.HORIZONTAL_AXIS=k.HORIZONTAL_AXIS;l.srcElement=k.srcElement;l.target=k.target;return l;},__ib:{'0':g,'2':h,'1':b},__ic:{'1':g,'2':h,'4':b},stop:function(){this.stopPropagation();},getButton:function(){switch(this._type){case d:return h;case a:if(qx.core.Environment.get(i)===j&&qx.core.Environment.get(f)<9){return g;};default:if(this._native.target!==undefined){return this.__ib[this._native.button]||c;}else {return this.__ic[this._native.button]||c;};};},isLeftPressed:function(){return this.getButton()===g;},isMiddlePressed:function(){return this.getButton()===b;},isRightPressed:function(){return this.getButton()===h;},getRelatedTarget:function(){return this._relatedTarget;},getViewportLeft:function(){return this._native.clientX;},getViewportTop:function(){return this._native.clientY;},getDocumentLeft:function(){if(this._native.pageX!==undefined){return this._native.pageX;}else {var m=qx.dom.Node.getWindow(this._native.srcElement);return this._native.clientX+qx.bom.Viewport.getScrollLeft(m);};},getDocumentTop:function(){if(this._native.pageY!==undefined){return this._native.pageY;}else {var n=qx.dom.Node.getWindow(this._native.srcElement);return this._native.clientY+qx.bom.Viewport.getScrollTop(n);};},getScreenLeft:function(){return this._native.screenX;},getScreenTop:function(){return this._native.screenY;}}});})();(function(){var a="engine.name",b="x",c="osx",d="win",f="os.name",g="qx.dynamicmousewheel",h="engine.version",i="chrome",j="qx.event.type.MouseWheel",k="browser.name",l="y";qx.Class.define(j,{extend:qx.event.type.Mouse,statics:{MAXSCROLL:null,MINSCROLL:null,FACTOR:1},members:{stop:function(){this.stopPropagation();this.preventDefault();},__id:function(p){var m=Math.abs(p);if(qx.event.type.MouseWheel.MINSCROLL==null||qx.event.type.MouseWheel.MINSCROLL>m){qx.event.type.MouseWheel.MINSCROLL=m;this.__ie();};if(qx.event.type.MouseWheel.MAXSCROLL==null||qx.event.type.MouseWheel.MAXSCROLL<m){qx.event.type.MouseWheel.MAXSCROLL=m;this.__ie();};if(qx.event.type.MouseWheel.MAXSCROLL===m&&qx.event.type.MouseWheel.MINSCROLL===m){return 2*(p/m);};var n=qx.event.type.MouseWheel.MAXSCROLL-qx.event.type.MouseWheel.MINSCROLL;var o=(p/n)*Math.log(n)*qx.event.type.MouseWheel.FACTOR;return o<0?Math.min(o,-1):Math.max(o,1);},__ie:function(){var q=qx.event.type.MouseWheel.MAXSCROLL||0;var t=qx.event.type.MouseWheel.MINSCROLL||q;if(q<=t){return;};var r=q-t;var s=(q/r)*Math.log(r);if(s==0){s=1;};qx.event.type.MouseWheel.FACTOR=6/s;},getWheelDelta:function(u){var e=this._native;if(u===undefined){if(v===undefined){var v=-e.wheelDelta;if(e.wheelDelta===undefined){v=e.detail;};};return this.__if(v);};if(u===b){var x=0;if(e.wheelDelta!==undefined){if(e.wheelDeltaX!==undefined){x=e.wheelDeltaX?this.__if(-e.wheelDeltaX):0;};}else {if(e.axis&&e.axis==e.HORIZONTAL_AXIS){x=this.__if(e.detail);};};return x;};if(u===l){var y=0;if(e.wheelDelta!==undefined){if(e.wheelDeltaY!==undefined){y=e.wheelDeltaY?this.__if(-e.wheelDeltaY):0;}else {y=this.__if(-e.wheelDelta);};}else {if(!(e.axis&&e.axis==e.HORIZONTAL_AXIS)){y=this.__if(e.detail);};};return y;};return 0;},__if:function(z){if(qx.event.handler.MouseEmulation.ON){return z;}else if(qx.core.Environment.get(g)){return this.__id(z);}else {var w=qx.core.Environment.select(a,{"default":function(){return z/40;},"gecko":function(){return z;},"webkit":function(){if(qx.core.Environment.get(k)==i){if(qx.core.Environment.get(f)==c){return z/60;}else {return z/120;};}else {if(qx.core.Environment.get(f)==d){var A=120;if(parseFloat(qx.core.Environment.get(h))==533.16){A=1200;};}else {A=40;if(parseFloat(qx.core.Environment.get(h))==533.16||parseFloat(qx.core.Environment.get(h))==533.17||parseFloat(qx.core.Environment.get(h))==533.18){A=1200;};};return z/A;};}});return w.call(this);};}}});})();(function(){var a="qx.dom.Hierarchy",b="previousSibling",c="html.element.contains",d="html.element.compareDocumentPosition",e="nextSibling",f="parentNode",g="*";qx.Bootstrap.define(a,{statics:{getNodeIndex:function(h){var i=0;while(h&&(h=h.previousSibling)){i++ ;};return i;},getElementIndex:function(l){var j=0;var k=qx.dom.Node.ELEMENT;while(l&&(l=l.previousSibling)){if(l.nodeType==k){j++ ;};};return j;},getNextElementSibling:function(m){while(m&&(m=m.nextSibling)&&!qx.dom.Node.isElement(m)){continue;};return m||null;},getPreviousElementSibling:function(n){while(n&&(n=n.previousSibling)&&!qx.dom.Node.isElement(n)){continue;};return n||null;},contains:function(q,p){if(qx.core.Environment.get(c)){if(qx.dom.Node.isDocument(q)){var o=qx.dom.Node.getDocument(p);return q&&o==q;}else if(qx.dom.Node.isDocument(p)){return false;}else {return q.contains(p);};}else if(qx.core.Environment.get(d)){return !!(q.compareDocumentPosition(p)&16);}else {while(p){if(q==p){return true;};p=p.parentNode;};return false;};},isRendered:function(s){var r=s.ownerDocument||s.document;if(qx.core.Environment.get(c)){if(!s.parentNode||!s.offsetParent){return false;};return r.body.contains(s);}else if(qx.core.Environment.get(d)){return !!(r.compareDocumentPosition(s)&16);}else {while(s){if(s==r.body){return true;};s=s.parentNode;};return false;};},isDescendantOf:function(u,t){return this.contains(t,u);},getCommonParent:function(w,x){if(w===x){return w;};if(qx.core.Environment.get(c)){while(w&&qx.dom.Node.isElement(w)){if(w.contains(x)){return w;};w=w.parentNode;};return null;}else {var v=[];while(w||x){if(w){if(qx.lang.Array.contains(v,w)){return w;};v.push(w);w=w.parentNode;};if(x){if(qx.lang.Array.contains(v,x)){return x;};v.push(x);x=x.parentNode;};};return null;};},getAncestors:function(y){return this._recursivelyCollect(y,f);},getChildElements:function(A){A=A.firstChild;if(!A){return [];};var z=this.getNextSiblings(A);if(A.nodeType===1){z.unshift(A);};return z;},getDescendants:function(B){return qx.lang.Array.fromCollection(B.getElementsByTagName(g));},getFirstDescendant:function(C){C=C.firstChild;while(C&&C.nodeType!=1){C=C.nextSibling;};return C;},getLastDescendant:function(D){D=D.lastChild;while(D&&D.nodeType!=1){D=D.previousSibling;};return D;},getPreviousSiblings:function(E){return this._recursivelyCollect(E,b);},getNextSiblings:function(F){return this._recursivelyCollect(F,e);},_recursivelyCollect:function(I,G){var H=[];while(I=I[G]){if(I.nodeType==1){H.push(I);};};return H;},getSiblings:function(J){return this.getPreviousSiblings(J).reverse().concat(this.getNextSiblings(J));},isEmpty:function(K){K=K.firstChild;while(K){if(K.nodeType===qx.dom.Node.ELEMENT||K.nodeType===qx.dom.Node.TEXT){return false;};K=K.nextSibling;};return true;},cleanWhitespace:function(N){var L=N.firstChild;while(L){var M=L.nextSibling;if(L.nodeType==3&&!/\S/.test(L.nodeValue)){N.removeChild(L);};L=M;};}}});})();(function(){var a="mshtml",b="engine.name",c="keypress",d="useraction",e="win",f="text",g="keyinput",h="os.name",i="webkit",j="input",k="gecko",l="off",m="keydown",n="autoComplete",o="keyup",p="qx.event.handler.Keyboard";qx.Class.define(p,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(q){qx.core.Object.call(this);this.__gi=q;this.__cx=q.getWindow();if((qx.core.Environment.get(b)==k)){this.__a=this.__cx;}else {this.__a=this.__cx.document.documentElement;};this.__ig={};this._initKeyObserver();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{keyup:1,keydown:1,keypress:1,keyinput:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:true},members:{__ih:null,__gi:null,__cx:null,__a:null,__ig:null,__ii:null,__ij:null,__ik:null,canHandleEvent:function(s,r){},registerEvent:function(v,u,t){},unregisterEvent:function(y,x,w){},_fireInputEvent:function(A,z){var B=this.__il();if(B&&B.offsetWidth!=0){var event=qx.event.Registration.createEvent(g,qx.event.type.KeyInput,[A,B,z]);this.__gi.dispatchEvent(B,event);};if(this.__cx){qx.event.Registration.fireEvent(this.__cx,d,qx.event.type.Data,[g]);};},_fireSequenceEvent:function(D,F,C){var E=this.__il();var G=D.keyCode;var event=qx.event.Registration.createEvent(F,qx.event.type.KeySequence,[D,E,C]);this.__gi.dispatchEvent(E,event);if(qx.core.Environment.get(b)==a||qx.core.Environment.get(b)==i){if(F==m&&event.getDefaultPrevented()){if(!qx.event.util.Keyboard.isNonPrintableKeyCode(G)&&!this._emulateKeyPress[G]){this._fireSequenceEvent(D,c,C);};};};if(this.__cx){qx.event.Registration.fireEvent(this.__cx,d,qx.event.type.Data,[F]);};},__il:function(){var H=this.__gi.getHandler(qx.event.handler.Focus);var I=H.getActive();if(!I||I.offsetWidth==0){I=H.getFocus();};if(!I||I.offsetWidth==0){I=this.__gi.getWindow().document.body;};return I;},_initKeyObserver:function(){this.__ih=qx.lang.Function.listener(this.__im,this);this.__ik=qx.lang.Function.listener(this.__io,this);var Event=qx.bom.Event;Event.addNativeListener(this.__a,o,this.__ih);Event.addNativeListener(this.__a,m,this.__ih);Event.addNativeListener(this.__a,c,this.__ik);},_stopKeyObserver:function(){var Event=qx.bom.Event;Event.removeNativeListener(this.__a,o,this.__ih);Event.removeNativeListener(this.__a,m,this.__ih);Event.removeNativeListener(this.__a,c,this.__ik);for(var K in (this.__ij||{})){var J=this.__ij[K];Event.removeNativeListener(J.target,c,J.callback);};delete (this.__ij);},__im:qx.event.GlobalError.observeMethod(qx.core.Environment.select(b,{"mshtml":function(N){N=window.event||N;var O=N.keyCode;var M=0;var L=N.type;if(!(this.__ig[O]==m&&L==m)){this._idealKeyHandler(O,M,L,N);};if(L==m){if(qx.event.util.Keyboard.isNonPrintableKeyCode(O)||this._emulateKeyPress[O]){this._idealKeyHandler(O,M,c,N);};};this.__ig[O]=L;},"gecko":function(Q){var S=0;var U=Q.keyCode;var T=Q.type;var R=qx.event.util.Keyboard;if(qx.core.Environment.get(h)==e){var P=U?R.keyCodeToIdentifier(U):R.charCodeToIdentifier(S);if(!(this.__ig[P]==m&&T==m)){this._idealKeyHandler(U,S,T,Q);};this.__ig[P]=T;}else {this._idealKeyHandler(U,S,T,Q);};this.__in(Q.target,T,U);},"webkit":function(X){var Y=0;var W=0;var V=X.type;Y=X.keyCode;this._idealKeyHandler(Y,W,V,X);if(V==m){if(qx.event.util.Keyboard.isNonPrintableKeyCode(Y)||this._emulateKeyPress[Y]){this._idealKeyHandler(Y,W,c,X);};};this.__ig[Y]=V;},"opera":function(ba){this.__ii=ba.keyCode;this._idealKeyHandler(ba.keyCode,0,ba.type,ba);}})),__in:qx.core.Environment.select(b,{"gecko":function(bc,be,bf){if(be===m&&(bf==33||bf==34||bf==38||bf==40)&&bc.type==f&&bc.tagName.toLowerCase()===j&&bc.getAttribute(n)!==l){if(!this.__ij){this.__ij={};};var bb=qx.core.ObjectRegistry.toHashCode(bc);if(this.__ij[bb]){return;};var self=this;this.__ij[bb]={target:bc,callback:function(bg){qx.bom.Event.stopPropagation(bg);self.__io(bg);}};var bd=qx.event.GlobalError.observeMethod(this.__ij[bb].callback);qx.bom.Event.addNativeListener(bc,c,bd);};},"default":null}),__io:qx.event.GlobalError.observeMethod(qx.core.Environment.select(b,{"mshtml":function(bh){bh=window.event||bh;if(this._charCode2KeyCode[bh.keyCode]){this._idealKeyHandler(this._charCode2KeyCode[bh.keyCode],0,bh.type,bh);}else {this._idealKeyHandler(0,bh.keyCode,bh.type,bh);};},"gecko":function(bi){var bj=bi.charCode;var bk=bi.type;this._idealKeyHandler(bi.keyCode,bj,bk,bi);},"webkit":function(bl){if(this._charCode2KeyCode[bl.keyCode]){this._idealKeyHandler(this._charCode2KeyCode[bl.keyCode],0,bl.type,bl);}else {this._idealKeyHandler(0,bl.keyCode,bl.type,bl);};},"opera":function(bm){var bo=bm.keyCode;var bn=bm.type;if(bo!=this.__ii){this._idealKeyHandler(0,this.__ii,bn,bm);}else {if(qx.event.util.Keyboard.keyCodeToIdentifierMap[bm.keyCode]){this._idealKeyHandler(bm.keyCode,0,bm.type,bm);}else {this._idealKeyHandler(0,bm.keyCode,bm.type,bm);};};}})),_idealKeyHandler:function(bs,bq,bt,br){var bp;if(bs||(!bs&&!bq)){bp=qx.event.util.Keyboard.keyCodeToIdentifier(bs);this._fireSequenceEvent(br,bt,bp);}else {bp=qx.event.util.Keyboard.charCodeToIdentifier(bq);this._fireSequenceEvent(br,c,bp);this._fireInputEvent(br,bq);};},_emulateKeyPress:qx.core.Environment.select(b,{"mshtml":{'8':true,'9':true},"webkit":{'8':true,'9':true,'27':true},"default":{}}),_identifierToKeyCode:function(bu){return qx.event.util.Keyboard.identifierToKeyCodeMap[bu]||bu.charCodeAt(0);}},destruct:function(){this._stopKeyObserver();this.__ii=this.__gi=this.__cx=this.__a=this.__ig=null;},defer:function(bv,bw){qx.event.Registration.addHandler(bv);if((qx.core.Environment.get(b)==a)||qx.core.Environment.get(b)==i){bw._charCode2KeyCode={'13':13,'27':27};};}});})();(function(){var a="qx.event.type.KeyInput";qx.Class.define(a,{extend:qx.event.type.Dom,members:{init:function(c,d,b){qx.event.type.Dom.prototype.init.call(this,c,d,null,true,true);this._charCode=b;return this;},clone:function(e){var f=qx.event.type.Dom.prototype.clone.call(this,e);f._charCode=this._charCode;return f;},getCharCode:function(){return this._charCode;},getChar:function(){return String.fromCharCode(this._charCode);}}});})();(function(){var a="qx.event.type.KeySequence";qx.Class.define(a,{extend:qx.event.type.Dom,members:{init:function(c,d,b){qx.event.type.Dom.prototype.init.call(this,c,d,null,true,true);this._keyCode=c.keyCode;this._identifier=b;return this;},clone:function(e){var f=qx.event.type.Dom.prototype.clone.call(this,e);f._keyCode=this._keyCode;f._identifier=this._identifier;return f;},getKeyIdentifier:function(){return this._identifier;},getKeyCode:function(){return this._keyCode;},isPrintable:function(){return qx.event.util.Keyboard.isPrintableKeyIdentifier(this._identifier);}}});})();(function(){var a="-",b="PageUp",c="Escape",d="Enter",e="+",f="PrintScreen",g="os.name",h="7",i="A",j="Space",k="Left",l="5",m="F5",n="Down",o="Up",p="3",q="Meta",r="F11",s="0",t="F6",u="PageDown",v="osx",w="CapsLock",x="Insert",y="F8",z="Scroll",A="Control",B="Tab",C="Shift",D="End",E="Pause",F="Unidentified",G="/",H="8",I="Z",J="*",K="cmd",L="F1",M="F4",N="Home",O="qx.event.util.Keyboard",P="F2",Q="6",R="F7",S="Apps",T="4",U="F12",V="Alt",W="2",X="NumLock",Y="Delete",bn="1",bo="Win",bp="Backspace",bj="F9",bk="F10",bl="Right",bm="F3",bq="9",br=",";qx.Bootstrap.define(O,{statics:{specialCharCodeMap:{'8':bp,'9':B,'13':d,'27':c,'32':j},numpadToCharCode:{'96':s.charCodeAt(0),'97':bn.charCodeAt(0),'98':W.charCodeAt(0),'99':p.charCodeAt(0),'100':T.charCodeAt(0),'101':l.charCodeAt(0),'102':Q.charCodeAt(0),'103':h.charCodeAt(0),'104':H.charCodeAt(0),'105':bq.charCodeAt(0),'106':J.charCodeAt(0),'107':e.charCodeAt(0),'109':a.charCodeAt(0),'110':br.charCodeAt(0),'111':G.charCodeAt(0)},keyCodeToIdentifierMap:{'16':C,'17':A,'18':V,'20':w,'224':q,'37':k,'38':o,'39':bl,'40':n,'33':b,'34':u,'35':D,'36':N,'45':x,'46':Y,'112':L,'113':P,'114':bm,'115':M,'116':m,'117':t,'118':R,'119':y,'120':bj,'121':bk,'122':r,'123':U,'144':X,'44':f,'145':z,'19':E,'91':qx.core.Environment.get(g)==v?K:bo,'92':bo,'93':qx.core.Environment.get(g)==v?K:S},charCodeA:i.charCodeAt(0),charCodeZ:I.charCodeAt(0),charCode0:s.charCodeAt(0),charCode9:bq.charCodeAt(0),keyCodeToIdentifier:function(bs){if(this.isIdentifiableKeyCode(bs)){var bt=this.numpadToCharCode[bs];if(bt){return String.fromCharCode(bt);};return (this.keyCodeToIdentifierMap[bs]||this.specialCharCodeMap[bs]||String.fromCharCode(bs));}else {return F;};},charCodeToIdentifier:function(bu){return this.specialCharCodeMap[bu]||String.fromCharCode(bu).toUpperCase();},isIdentifiableKeyCode:function(bv){if(bv>=this.charCodeA&&bv<=this.charCodeZ){return true;};if(bv>=this.charCode0&&bv<=this.charCode9){return true;};if(this.specialCharCodeMap[bv]){return true;};if(this.numpadToCharCode[bv]){return true;};if(this.isNonPrintableKeyCode(bv)){return true;};return false;},isNonPrintableKeyCode:function(bw){return this.keyCodeToIdentifierMap[bw]?true:false;},isValidKeyIdentifier:function(bx){if(this.identifierToKeyCodeMap[bx]){return true;};if(bx.length!=1){return false;};if(bx>=s&&bx<=bq){return true;};if(bx>=i&&bx<=I){return true;};switch(bx){case e:case a:case J:case G:return true;default:return false;};},isPrintableKeyIdentifier:function(by){if(by===j){return true;}else {return this.identifierToKeyCodeMap[by]?false:true;};}},defer:function(bz,bA){if(!bz.identifierToKeyCodeMap){bz.identifierToKeyCodeMap={};for(var bB in bz.keyCodeToIdentifierMap){bz.identifierToKeyCodeMap[bz.keyCodeToIdentifierMap[bB]]=parseInt(bB,10);};for(var bB in bz.specialCharCodeMap){bz.identifierToKeyCodeMap[bz.specialCharCodeMap[bB]]=parseInt(bB,10);};};}});})();(function(){var a="selectstart",b="blur",c="mousedown",d="focus",e="qx.event.handler.Focus",f="_applyFocus",g="DOMFocusIn",h="deactivate",i="textarea",j="touchend",k="_applyActive",l='character',m="input",n="event.touch",o="",p="qxSelectable",q="tabIndex",r="off",s="touchstart",t="activate",u="focusin",v="mshtml",w="engine.name",x="mouseup",y="DOMFocusOut",z="focusout",A="qxKeepFocus",B="on",C="qxKeepActive",D="draggesture";qx.Class.define(e,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(E){qx.core.Object.call(this);this._manager=E;this._window=E.getWindow();this._document=this._window.document;this._root=this._document.documentElement;this._body=this._document.body;var F=qx.core.Environment.get(n)&&qx.event.handler.MouseEmulation.ON;this.__ip=F?s:c;this.__iq=F?j:x;this._initObserver();},properties:{active:{apply:k,nullable:true},focus:{apply:f,nullable:true}},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{focus:1,blur:1,focusin:1,focusout:1,activate:1,deactivate:1},IGNORE_CAN_HANDLE:true,FOCUSABLE_ELEMENTS:qx.core.Environment.select(w,{"mshtml|gecko":{a:1,body:1,button:1,frame:1,iframe:1,img:1,input:1,object:1,select:1,textarea:1},"opera|webkit":{button:1,input:1,select:1,textarea:1}})},members:{__ir:null,__is:null,__it:null,__iu:null,__iv:null,__iw:null,__ix:null,__iy:null,__iz:null,__iA:null,__ip:o,__iq:o,canHandleEvent:function(H,G){},registerEvent:function(K,J,I){},unregisterEvent:function(N,M,L){},focus:function(O){if((qx.core.Environment.get(w)==v)){window.setTimeout(function(){try{O.focus();var P=qx.bom.Selection.get(O);if(P.length==0){var Q=O.createTextRange();Q.moveStart(l,O.value.length);Q.collapse();Q.select();};}catch(R){};},0);}else {try{O.focus();}catch(S){};};this.setFocus(O);this.setActive(O);},activate:function(T){this.setActive(T);},blur:function(U){try{U.blur();}catch(V){};if(this.getActive()===U){this.resetActive();};if(this.getFocus()===U){this.resetFocus();};},deactivate:function(W){if(this.getActive()===W){this.resetActive();};},tryActivate:function(Y){var X=this.__iO(Y);if(X){this.setActive(X);};},__gY:function(ba,bc,bf,be){var bd=qx.event.Registration;var bb=bd.createEvent(bf,qx.event.type.Focus,[ba,bc,be]);bd.dispatchEvent(ba,bb);},_windowFocused:true,__iB:function(){if(this._windowFocused){this._windowFocused=false;this.__gY(this._window,null,b,false);};},__iC:function(){if(!this._windowFocused){this._windowFocused=true;this.__gY(this._window,null,d,false);};},_initObserver:qx.core.Environment.select(w,{"gecko":function(){this.__ir=qx.lang.Function.listener(this.__iI,this);this.__is=qx.lang.Function.listener(this.__iJ,this);this.__it=qx.lang.Function.listener(this.__iH,this);this.__iu=qx.lang.Function.listener(this.__iG,this);this.__iv=qx.lang.Function.listener(this.__iD,this);qx.bom.Event.addNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.addNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.addNativeListener(this._window,d,this.__it,true);qx.bom.Event.addNativeListener(this._window,b,this.__iu,true);qx.bom.Event.addNativeListener(this._window,D,this.__iv,true);},"mshtml":function(){this.__ir=qx.lang.Function.listener(this.__iI,this);this.__is=qx.lang.Function.listener(this.__iJ,this);this.__ix=qx.lang.Function.listener(this.__iE,this);this.__iy=qx.lang.Function.listener(this.__iF,this);this.__iw=qx.lang.Function.listener(this.__iL,this);qx.bom.Event.addNativeListener(this._document,this.__ip,this.__ir);qx.bom.Event.addNativeListener(this._document,this.__iq,this.__is);qx.bom.Event.addNativeListener(this._document,u,this.__ix);qx.bom.Event.addNativeListener(this._document,z,this.__iy);qx.bom.Event.addNativeListener(this._document,a,this.__iw);},"webkit":function(){this.__ir=qx.lang.Function.listener(this.__iI,this);this.__is=qx.lang.Function.listener(this.__iJ,this);this.__iy=qx.lang.Function.listener(this.__iF,this);this.__it=qx.lang.Function.listener(this.__iH,this);this.__iu=qx.lang.Function.listener(this.__iG,this);this.__iw=qx.lang.Function.listener(this.__iL,this);qx.bom.Event.addNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.addNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.addNativeListener(this._document,a,this.__iw,false);qx.bom.Event.addNativeListener(this._window,y,this.__iy,true);qx.bom.Event.addNativeListener(this._window,d,this.__it,true);qx.bom.Event.addNativeListener(this._window,b,this.__iu,true);},"opera":function(){this.__ir=qx.lang.Function.listener(this.__iI,this);this.__is=qx.lang.Function.listener(this.__iJ,this);this.__ix=qx.lang.Function.listener(this.__iE,this);this.__iy=qx.lang.Function.listener(this.__iF,this);qx.bom.Event.addNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.addNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.addNativeListener(this._window,g,this.__ix,true);qx.bom.Event.addNativeListener(this._window,y,this.__iy,true);}}),_stopObserver:qx.core.Environment.select(w,{"gecko":function(){qx.bom.Event.removeNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.removeNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.removeNativeListener(this._window,d,this.__it,true);qx.bom.Event.removeNativeListener(this._window,b,this.__iu,true);qx.bom.Event.removeNativeListener(this._window,D,this.__iv,true);},"mshtml":function(){qx.bom.Event.removeNativeListener(this._document,this.__ip,this.__ir);qx.bom.Event.removeNativeListener(this._document,this.__iq,this.__is);qx.bom.Event.removeNativeListener(this._document,u,this.__ix);qx.bom.Event.removeNativeListener(this._document,z,this.__iy);qx.bom.Event.removeNativeListener(this._document,a,this.__iw);},"webkit":function(){qx.bom.Event.removeNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.removeNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.removeNativeListener(this._document,a,this.__iw,false);qx.bom.Event.removeNativeListener(this._window,y,this.__iy,true);qx.bom.Event.removeNativeListener(this._window,d,this.__it,true);qx.bom.Event.removeNativeListener(this._window,b,this.__iu,true);},"opera":function(){qx.bom.Event.removeNativeListener(this._document,this.__ip,this.__ir,true);qx.bom.Event.removeNativeListener(this._document,this.__iq,this.__is,true);qx.bom.Event.removeNativeListener(this._window,g,this.__ix,true);qx.bom.Event.removeNativeListener(this._window,y,this.__iy,true);}}),__iD:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"gecko":function(bg){var bh=qx.bom.Event.getTarget(bg);if(!this.__iP(bh)){qx.bom.Event.preventDefault(bg);};},"default":null})),__iE:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml":function(bj){this.__iC();var bk=qx.bom.Event.getTarget(bj);var bi=this.__iN(bk);if(bi){this.setFocus(bi);};this.tryActivate(bk);},"opera":function(bl){var bm=qx.bom.Event.getTarget(bl);if(bm==this._document||bm==this._window){this.__iC();if(this.__iz){this.setFocus(this.__iz);delete this.__iz;};if(this.__iA){this.setActive(this.__iA);delete this.__iA;};}else {this.setFocus(bm);this.tryActivate(bm);if(!this.__iP(bm)){bm.selectionStart=0;bm.selectionEnd=0;};};},"default":null})),__iF:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml":function(bn){var bo=qx.bom.Event.getRelatedTarget(bn);if(bo==null){this.__iB();this.resetFocus();this.resetActive();};},"webkit":function(bp){var bq=qx.bom.Event.getTarget(bp);if(bq===this.getFocus()){this.resetFocus();};if(bq===this.getActive()){this.resetActive();};},"opera":function(br){var bs=qx.bom.Event.getTarget(br);if(bs==this._document){this.__iB();this.__iz=this.getFocus();this.__iA=this.getActive();this.resetFocus();this.resetActive();}else {if(bs===this.getFocus()){this.resetFocus();};if(bs===this.getActive()){this.resetActive();};};},"default":null})),__iG:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"gecko":function(bt){var bu=qx.bom.Event.getTarget(bt);if(bu===this._window||bu===this._document){this.__iB();this.resetActive();this.resetFocus();};},"webkit":function(bv){var bw=qx.bom.Event.getTarget(bv);if(bw===this._window||bw===this._document){this.__iB();this.__iz=this.getFocus();this.__iA=this.getActive();this.resetActive();this.resetFocus();};},"default":null})),__iH:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"gecko":function(bx){var by=qx.bom.Event.getTarget(bx);if(by===this._window||by===this._document){this.__iC();by=this._body;};this.setFocus(by);this.tryActivate(by);},"webkit":function(bz){var bA=qx.bom.Event.getTarget(bz);if(bA===this._window||bA===this._document){this.__iC();if(this.__iz){this.setFocus(this.__iz);delete this.__iz;};if(this.__iA){this.setActive(this.__iA);delete this.__iA;};}else {this.setFocus(bA);this.tryActivate(bA);};},"default":null})),__iI:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml":function(bC){var bD=qx.bom.Event.getTarget(bC);var bB=this.__iN(bD);if(bB){if(!this.__iP(bD)){bD.unselectable=B;try{document.selection.empty();}catch(bE){};try{bB.focus();}catch(bF){};};}else {qx.bom.Event.preventDefault(bC);if(!this.__iP(bD)){bD.unselectable=B;};};},"webkit|gecko":function(bH){var bI=qx.bom.Event.getTarget(bH);var bG=this.__iN(bI);if(bG){this.setFocus(bG);if(qx.core.Environment.get(n)&&qx.event.handler.MouseEmulation.ON){try{if(document.activeElement==bG){bG.blur();};bG.focus();}catch(bJ){};};}else {qx.bom.Event.preventDefault(bH);};},"opera":function(bM){var bN=qx.bom.Event.getTarget(bM);var bK=this.__iN(bN);if(!this.__iP(bN)){qx.bom.Event.preventDefault(bM);if(bK){var bL=this.getFocus();if(bL&&bL.selectionEnd){bL.selectionStart=0;bL.selectionEnd=0;bL.blur();};if(bK){this.setFocus(bK);};};}else if(bK){this.setFocus(bK);};},"default":null})),__iJ:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml":function(bO){var bP=qx.bom.Event.getTarget(bO);if(bP.unselectable){bP.unselectable=r;};this.tryActivate(this.__iK(bP));},"gecko":function(bQ){var bR=qx.bom.Event.getTarget(bQ);while(bR&&bR.offsetWidth===undefined){bR=bR.parentNode;};if(bR){this.tryActivate(bR);};},"webkit|opera":function(bS){var bT=qx.bom.Event.getTarget(bS);this.tryActivate(this.__iK(bT));},"default":null})),__iK:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml|webkit":function(bU){var bV=this.getFocus();if(bV&&bU!=bV&&(bV.nodeName.toLowerCase()===m||bV.nodeName.toLowerCase()===i)){bU=bV;};return bU;},"default":function(bW){return bW;}})),__iL:qx.event.GlobalError.observeMethod(qx.core.Environment.select(w,{"mshtml|webkit":function(bX){var bY=qx.bom.Event.getTarget(bX);if(!this.__iP(bY)){qx.bom.Event.preventDefault(bX);};},"default":null})),__iM:function(ca){var cb=qx.bom.element.Attribute.get(ca,q);if(cb>=1){return true;};var cc=qx.event.handler.Focus.FOCUSABLE_ELEMENTS;if(cb>=0&&cc[ca.tagName]){return true;};return false;},__iN:function(cd){while(cd&&cd.nodeType===1){if(cd.getAttribute(A)==B){return null;};if(this.__iM(cd)){return cd;};cd=cd.parentNode;};return this._body;},__iO:function(ce){var cf=ce;while(ce&&ce.nodeType===1){if(ce.getAttribute(C)==B){return null;};ce=ce.parentNode;};return cf;},__iP:function(cg){while(cg&&cg.nodeType===1){var ch=cg.getAttribute(p);if(ch!=null){return ch===B;};cg=cg.parentNode;};return true;},_applyActive:function(cj,ci){if(ci){this.__gY(ci,cj,h,true);};if(cj){this.__gY(cj,ci,t,true);};},_applyFocus:function(cl,ck){if(ck){this.__gY(ck,cl,z,true);};if(cl){this.__gY(cl,ck,u,true);};if(ck){this.__gY(ck,cl,b,false);};if(cl){this.__gY(cl,ck,d,false);};}},destruct:function(){this._stopObserver();this._manager=this._window=this._document=this._root=this._body=this.__iQ=null;},defer:function(cn){qx.event.Registration.addHandler(cn);var co=cn.FOCUSABLE_ELEMENTS;for(var cm in co){co[cm.toUpperCase()]=1;};}});})();(function(){var a="engine.name",b="qx.bom.Selection",c="character",d="button",e='character',f="#text",g="webkit",h="input",i="gecko",j="EndToEnd",k="opera",l="StartToStart",m="html.selection",n="textarea",o="body";qx.Class.define(b,{statics:{getSelectionObject:qx.core.Environment.select(m,{"selection":function(p){return p.selection;},"default":function(q){return qx.dom.Node.getWindow(q).getSelection();}}),get:qx.core.Environment.select(m,{"selection":function(r){var s=qx.bom.Range.get(qx.dom.Node.getDocument(r));return s.text;},"default":function(t){if(this.__iR(t)){return t.value.substring(t.selectionStart,t.selectionEnd);}else {return this.getSelectionObject(qx.dom.Node.getDocument(t)).toString();};}}),getLength:qx.core.Environment.select(m,{"selection":function(u){var w=this.get(u);var v=qx.util.StringSplit.split(w,/\r\n/);return w.length-(v.length-1);},"default":function(x){if(qx.core.Environment.get(a)==k){var B,C,A;if(this.__iR(x)){var z=x.selectionStart;var y=x.selectionEnd;B=x.value.substring(z,y);C=y-z;}else {B=qx.bom.Selection.get(x);C=B.length;};A=qx.util.StringSplit.split(B,/\r\n/);return C-(A.length-1);};if(this.__iR(x)){return x.selectionEnd-x.selectionStart;}else {return this.get(x).length;};}}),getStart:qx.core.Environment.select(m,{"selection":function(D){if(this.__iR(D)){var I=qx.bom.Range.get();if(!D.contains(I.parentElement())){return -1;};var J=qx.bom.Range.get(D);var H=D.value.length;J.moveToBookmark(I.getBookmark());J.moveEnd(e,H);return H-J.text.length;}else {var J=qx.bom.Range.get(D);var F=J.parentElement();var K=qx.bom.Range.get();try{K.moveToElementText(F);}catch(M){return 0;};var E=qx.bom.Range.get(qx.dom.Node.getBodyElement(D));E.setEndPoint(l,J);E.setEndPoint(j,K);if(K.compareEndPoints(l,E)==0){return 0;};var G;var L=0;while(true){G=E.moveStart(c,-1);if(K.compareEndPoints(l,E)==0){break;};if(G==0){break;}else {L++ ;};};return ++L;};},"default":function(N){if(qx.core.Environment.get(a)===i||qx.core.Environment.get(a)===g){if(this.__iR(N)){return N.selectionStart;}else {var P=qx.dom.Node.getDocument(N);var O=this.getSelectionObject(P);if(O.anchorOffset<O.focusOffset){return O.anchorOffset;}else {return O.focusOffset;};};};if(this.__iR(N)){return N.selectionStart;}else {return qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(N)).anchorOffset;};}}),getEnd:qx.core.Environment.select(m,{"selection":function(Q){if(this.__iR(Q)){var V=qx.bom.Range.get();if(!Q.contains(V.parentElement())){return -1;};var W=qx.bom.Range.get(Q);var U=Q.value.length;W.moveToBookmark(V.getBookmark());W.moveStart(e,-U);return W.text.length;}else {var W=qx.bom.Range.get(Q);var S=W.parentElement();var X=qx.bom.Range.get();try{X.moveToElementText(S);}catch(ba){return 0;};var U=X.text.length;var R=qx.bom.Range.get(qx.dom.Node.getBodyElement(Q));R.setEndPoint(j,W);R.setEndPoint(l,X);if(X.compareEndPoints(j,R)==0){return U-1;};var T;var Y=0;while(true){T=R.moveEnd(c,1);if(X.compareEndPoints(j,R)==0){break;};if(T==0){break;}else {Y++ ;};};return U-( ++Y);};},"default":function(bb){if(qx.core.Environment.get(a)===i||qx.core.Environment.get(a)===g){if(this.__iR(bb)){return bb.selectionEnd;}else {var bd=qx.dom.Node.getDocument(bb);var bc=this.getSelectionObject(bd);if(bc.focusOffset>bc.anchorOffset){return bc.focusOffset;}else {return bc.anchorOffset;};};};if(this.__iR(bb)){return bb.selectionEnd;}else {return qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(bb)).focusOffset;};}}),__iR:function(be){return qx.dom.Node.isElement(be)&&(be.nodeName.toLowerCase()==h||be.nodeName.toLowerCase()==n);},set:qx.core.Environment.select(m,{"selection":function(bf,bi,bh){var bg;if(qx.dom.Node.isDocument(bf)){bf=bf.body;};if(qx.dom.Node.isElement(bf)||qx.dom.Node.isText(bf)){switch(bf.nodeName.toLowerCase()){case h:case n:case d:if(bh===undefined){bh=bf.value.length;};if(bi>=0&&bi<=bf.value.length&&bh>=0&&bh<=bf.value.length){bg=qx.bom.Range.get(bf);bg.collapse(true);bg.moveStart(c,bi);bg.moveEnd(c,bh-bi);bg.select();return true;};break;case f:if(bh===undefined){bh=bf.nodeValue.length;};if(bi>=0&&bi<=bf.nodeValue.length&&bh>=0&&bh<=bf.nodeValue.length){bg=qx.bom.Range.get(qx.dom.Node.getBodyElement(bf));bg.moveToElementText(bf.parentNode);bg.collapse(true);bg.moveStart(c,bi);bg.moveEnd(c,bh-bi);bg.select();return true;};break;default:if(bh===undefined){bh=bf.childNodes.length-1;};if(bf.childNodes[bi]&&bf.childNodes[bh]){bg=qx.bom.Range.get(qx.dom.Node.getBodyElement(bf));bg.moveToElementText(bf.childNodes[bi]);bg.collapse(true);var bj=qx.bom.Range.get(qx.dom.Node.getBodyElement(bf));bj.moveToElementText(bf.childNodes[bh]);bg.setEndPoint(j,bj);bg.select();return true;};};};return false;},"default":function(bk,bp,bm){var bn=bk.nodeName.toLowerCase();if(qx.dom.Node.isElement(bk)&&(bn==h||bn==n)){if(bm===undefined){bm=bk.value.length;};if(bp>=0&&bp<=bk.value.length&&bm>=0&&bm<=bk.value.length){bk.focus();bk.select();bk.setSelectionRange(bp,bm);return true;};}else {var bq=false;var bl=qx.dom.Node.getWindow(bk).getSelection();var bo=qx.bom.Range.get(bk);if(qx.dom.Node.isText(bk)){if(bm===undefined){bm=bk.length;};if(bp>=0&&bp<bk.length&&bm>=0&&bm<=bk.length){bq=true;};}else if(qx.dom.Node.isElement(bk)){if(bm===undefined){bm=bk.childNodes.length-1;};if(bp>=0&&bk.childNodes[bp]&&bm>=0&&bk.childNodes[bm]){bq=true;};}else if(qx.dom.Node.isDocument(bk)){bk=bk.body;if(bm===undefined){bm=bk.childNodes.length-1;};if(bp>=0&&bk.childNodes[bp]&&bm>=0&&bk.childNodes[bm]){bq=true;};};if(bq){if(!bl.isCollapsed){bl.collapseToStart();};bo.setStart(bk,bp);if(qx.dom.Node.isText(bk)){bo.setEnd(bk,bm);}else {bo.setEndAfter(bk.childNodes[bm]);};if(bl.rangeCount>0){bl.removeAllRanges();};bl.addRange(bo);return true;};};return false;}}),setAll:function(br){return qx.bom.Selection.set(br,0);},clear:qx.core.Environment.select(m,{"selection":function(bs){var bt=qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(bs));var bu=qx.bom.Range.get(bs);var parent=bu.parentElement();var bv=qx.bom.Range.get(qx.dom.Node.getDocument(bs));if(parent==bv.parentElement()&&parent==bs){bt.empty();};},"default":function(bw){var bB=qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(bw));var bx=bw.nodeName.toLowerCase();if(qx.dom.Node.isElement(bw)&&(bx==h||bx==n)){bw.setSelectionRange(0,0);qx.bom.Element.blur(bw);}else if(qx.dom.Node.isDocument(bw)||bx==o){bB.collapse(bw.body?bw.body:bw,0);}else {var by=qx.bom.Range.get(bw);if(!by.collapsed){var bz;var bA=by.commonAncestorContainer;if(qx.dom.Node.isElement(bw)&&qx.dom.Node.isText(bA)){bz=bA.parentNode;}else {bz=bA;};if(bz==bw){bB.collapse(bw,0);};};};}})}});})();(function(){var a="qx.bom.Range",b="text",c="password",d="file",e="submit",f="reset",g="textarea",h="input",i="hidden",j="html.selection",k="button",l="body";qx.Class.define(a,{statics:{get:qx.core.Environment.select(j,{"selection":function(m){if(qx.dom.Node.isElement(m)){switch(m.nodeName.toLowerCase()){case h:switch(m.type){case b:case c:case i:case k:case f:case d:case e:return m.createTextRange();break;default:return qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(m)).createRange();};break;case g:case l:case k:return m.createTextRange();break;default:return qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(m)).createRange();};}else {if(m==null){m=window;};return qx.bom.Selection.getSelectionObject(qx.dom.Node.getDocument(m)).createRange();};},"default":function(n){var o=qx.dom.Node.getDocument(n);var p=qx.bom.Selection.getSelectionObject(o);if(p.rangeCount>0){return p.getRangeAt(0);}else {return o.createRange();};}})}});})();(function(){var a="m",b="g",c="^",d="",e="qx.util.StringSplit",f="i",g="$(?!\\s)",h="[object RegExp]",j="y";qx.Class.define(e,{statics:{split:function(k,p,o){if(Object.prototype.toString.call(p)!==h){return String.prototype.split.call(k,p,o);};var r=[],l=0,m=(p.ignoreCase?f:d)+(p.multiline?a:d)+(p.sticky?j:d),p=RegExp(p.source,m+b),n,t,q,u,s=/()??/.exec(d)[1]===undefined;k=k+d;if(!s){n=RegExp(c+p.source+g,m);};if(o===undefined||+o<0){o=Infinity;}else {o=Math.floor(+o);if(!o){return [];};};while(t=p.exec(k)){q=t.index+t[0].length;if(q>l){r.push(k.slice(l,t.index));if(!s&&t.length>1){t[0].replace(n,function(){for(var i=1;i<arguments.length-2;i++ ){if(arguments[i]===undefined){t[i]=undefined;};};});};if(t.length>1&&t.index<k.length){Array.prototype.push.apply(r,t.slice(1));};u=t[0].length;l=q;if(r.length>=o){break;};};if(p.lastIndex===t.index){p.lastIndex++ ;};};if(l===k.length){if(u||!p.test(d)){r.push(d);};}else {r.push(k.slice(l));};return r.length>o?r.slice(0,o):r;}}});})();(function(){var a="text",b="blur",c="engine.version",d="keydown",f="radio",g="textarea",h="password",j="propertychange",k="select-multiple",m="change",n="input",p="value",q="select",r="browser.documentmode",s="browser.version",t="opera",u="keyup",v="mshtml",w="engine.name",x="keypress",y="checkbox",z="qx.event.handler.Input",A="checked";qx.Class.define(z,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(){qx.core.Object.call(this);this._onChangeCheckedWrapper=qx.lang.Function.listener(this._onChangeChecked,this);this._onChangeValueWrapper=qx.lang.Function.listener(this._onChangeValue,this);this._onInputWrapper=qx.lang.Function.listener(this._onInput,this);this._onPropertyWrapper=qx.lang.Function.listener(this._onProperty,this);if((qx.core.Environment.get(w)==t)){this._onKeyDownWrapper=qx.lang.Function.listener(this._onKeyDown,this);this._onKeyUpWrapper=qx.lang.Function.listener(this._onKeyUp,this);this._onBlurWrapper=qx.lang.Function.listener(this._onBlur,this);};},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{input:1,change:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:false},members:{__iS:false,__iT:null,__iU:null,__iV:null,canHandleEvent:function(D,C){var B=D.tagName.toLowerCase();if(C===n&&(B===n||B===g)){return true;};if(C===m&&(B===n||B===g||B===q)){return true;};return false;},registerEvent:function(I,H,F){if(qx.core.Environment.get(w)==v&&(qx.core.Environment.get(c)<9||(qx.core.Environment.get(c)>=9&&qx.core.Environment.get(r)<9))){if(!I.__iW){var G=I.tagName.toLowerCase();var E=I.type;if(E===a||E===h||G===g||E===y||E===f){qx.bom.Event.addNativeListener(I,j,this._onPropertyWrapper);};if(E!==y&&E!==f){qx.bom.Event.addNativeListener(I,m,this._onChangeValueWrapper);};if(E===a||E===h){this._onKeyPressWrapped=qx.lang.Function.listener(this._onKeyPress,this,I);qx.bom.Event.addNativeListener(I,x,this._onKeyPressWrapped);};I.__iW=true;};}else {if(H===n){this.__iX(I);}else if(H===m){if(I.type===f||I.type===y){qx.bom.Event.addNativeListener(I,m,this._onChangeCheckedWrapper);}else {qx.bom.Event.addNativeListener(I,m,this._onChangeValueWrapper);};if((qx.core.Environment.get(w)==t)||(qx.core.Environment.get(w)==v)){if(I.type===a||I.type===h){this._onKeyPressWrapped=qx.lang.Function.listener(this._onKeyPress,this,I);qx.bom.Event.addNativeListener(I,x,this._onKeyPressWrapped);};};};};},__iX:qx.core.Environment.select(w,{"mshtml":function(J){if(qx.core.Environment.get(c)>=9&&qx.core.Environment.get(r)>=9){qx.bom.Event.addNativeListener(J,n,this._onInputWrapper);if(J.type===a||J.type===h||J.type===g){this._inputFixWrapper=qx.lang.Function.listener(this._inputFix,this,J);qx.bom.Event.addNativeListener(J,u,this._inputFixWrapper);};};},"webkit":function(L){var K=L.tagName.toLowerCase();if(parseFloat(qx.core.Environment.get(c))<532&&K==g){qx.bom.Event.addNativeListener(L,x,this._onInputWrapper);};qx.bom.Event.addNativeListener(L,n,this._onInputWrapper);},"opera":function(M){qx.bom.Event.addNativeListener(M,u,this._onKeyUpWrapper);qx.bom.Event.addNativeListener(M,d,this._onKeyDownWrapper);qx.bom.Event.addNativeListener(M,b,this._onBlurWrapper);qx.bom.Event.addNativeListener(M,n,this._onInputWrapper);},"default":function(N){qx.bom.Event.addNativeListener(N,n,this._onInputWrapper);}}),unregisterEvent:function(R,Q){if(qx.core.Environment.get(w)==v&&qx.core.Environment.get(c)<9&&qx.core.Environment.get(r)<9){if(R.__iW){var P=R.tagName.toLowerCase();var O=R.type;if(O===a||O===h||P===g||O===y||O===f){qx.bom.Event.removeNativeListener(R,j,this._onPropertyWrapper);};if(O!==y&&O!==f){qx.bom.Event.removeNativeListener(R,m,this._onChangeValueWrapper);};if(O===a||O===h){qx.bom.Event.removeNativeListener(R,x,this._onKeyPressWrapped);};try{delete R.__iW;}catch(S){R.__iW=null;};};}else {if(Q===n){this.__iY(R);}else if(Q===m){if(R.type===f||R.type===y){qx.bom.Event.removeNativeListener(R,m,this._onChangeCheckedWrapper);}else {qx.bom.Event.removeNativeListener(R,m,this._onChangeValueWrapper);};};if((qx.core.Environment.get(w)==t)||(qx.core.Environment.get(w)==v)){if(R.type===a||R.type===h){qx.bom.Event.removeNativeListener(R,x,this._onKeyPressWrapped);};};};},__iY:qx.core.Environment.select(w,{"mshtml":function(T){if(qx.core.Environment.get(c)>=9&&qx.core.Environment.get(r)>=9){qx.bom.Event.removeNativeListener(T,n,this._onInputWrapper);if(T.type===a||T.type===h||T.type===g){qx.bom.Event.removeNativeListener(T,u,this._inputFixWrapper);};};},"webkit":function(V){var U=V.tagName.toLowerCase();if(parseFloat(qx.core.Environment.get(c))<532&&U==g){qx.bom.Event.removeNativeListener(V,x,this._onInputWrapper);};qx.bom.Event.removeNativeListener(V,n,this._onInputWrapper);},"opera":function(W){qx.bom.Event.removeNativeListener(W,u,this._onKeyUpWrapper);qx.bom.Event.removeNativeListener(W,d,this._onKeyDownWrapper);qx.bom.Event.removeNativeListener(W,b,this._onBlurWrapper);qx.bom.Event.removeNativeListener(W,n,this._onInputWrapper);},"default":function(X){qx.bom.Event.removeNativeListener(X,n,this._onInputWrapper);}}),_onKeyPress:qx.core.Environment.select(w,{"mshtml|opera":function(e,Y){if(e.keyCode===13){if(Y.value!==this.__iU){this.__iU=Y.value;qx.event.Registration.fireEvent(Y,m,qx.event.type.Data,[Y.value]);};};},"default":null}),_inputFix:qx.core.Environment.select(w,{"mshtml":function(e,ba){if(e.keyCode===46||e.keyCode===8){if(ba.value!==this.__iV){this.__iV=ba.value;qx.event.Registration.fireEvent(ba,n,qx.event.type.Data,[ba.value]);};};},"default":null}),_onKeyDown:qx.core.Environment.select(w,{"opera":function(e){if(e.keyCode===13){this.__iS=true;};},"default":null}),_onKeyUp:qx.core.Environment.select(w,{"opera":function(e){if(e.keyCode===13){this.__iS=false;};},"default":null}),_onBlur:qx.core.Environment.select(w,{"opera":function(e){if(this.__iT&&qx.core.Environment.get(s)<10.6){window.clearTimeout(this.__iT);};},"default":null}),_onInput:qx.event.GlobalError.observeMethod(function(e){var bc=qx.bom.Event.getTarget(e);var bb=bc.tagName.toLowerCase();if(!this.__iS||bb!==n){if((qx.core.Environment.get(w)==t)&&qx.core.Environment.get(s)<10.6){this.__iT=window.setTimeout(function(){qx.event.Registration.fireEvent(bc,n,qx.event.type.Data,[bc.value]);},0);}else {qx.event.Registration.fireEvent(bc,n,qx.event.type.Data,[bc.value]);};};}),_onChangeValue:qx.event.GlobalError.observeMethod(function(e){var bd=qx.bom.Event.getTarget(e);var be=bd.value;if(bd.type===k){var be=[];for(var i=0,o=bd.options,l=o.length;i<l;i++ ){if(o[i].selected){be.push(o[i].value);};};};qx.event.Registration.fireEvent(bd,m,qx.event.type.Data,[be]);}),_onChangeChecked:qx.event.GlobalError.observeMethod(function(e){var bf=qx.bom.Event.getTarget(e);if(bf.type===f){if(bf.checked){qx.event.Registration.fireEvent(bf,m,qx.event.type.Data,[bf.value]);};}else {qx.event.Registration.fireEvent(bf,m,qx.event.type.Data,[bf.checked]);};}),_onProperty:qx.core.Environment.select(w,{"mshtml":qx.event.GlobalError.observeMethod(function(e){var bg=qx.bom.Event.getTarget(e);var bh=e.propertyName;if(bh===p&&(bg.type===a||bg.type===h||bg.tagName.toLowerCase()===g)){if(!bg.$$inValueSet){qx.event.Registration.fireEvent(bg,n,qx.event.type.Data,[bg.value]);};}else if(bh===A){if(bg.type===y){qx.event.Registration.fireEvent(bg,m,qx.event.type.Data,[bg.checked]);}else if(bg.checked){qx.event.Registration.fireEvent(bg,m,qx.event.type.Data,[bg.value]);};};}),"default":function(){}})},defer:function(bi){qx.event.Registration.addHandler(bi);}});})();(function(){var a="qx.event.handler.Capture";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{capture:true,losecapture:true},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:true},members:{canHandleEvent:function(c,b){},registerEvent:function(f,e,d){},unregisterEvent:function(i,h,g){}},defer:function(j){qx.event.Registration.addHandler(j);}});})();(function(){var a="blur",b="mousedown",c="qxDraggable",d="mouseout",f="Escape",g="drag",h="keydown",i="Unsupported data type: ",j="drop",k="qxDroppable",l="qx.event.handler.DragDrop",m="This method must not be used outside the drop event listener!",n="Control",o="Shift",p="!",q="mousemove",r="move",s="droprequest",t="copy",u="dragstart",v="alias",w="mouseover",x="dragchange",y="Alt",z="keyup",A="mouseup",B="keypress",C="dragleave",D="dragend",E="dragover",F="left",G="Please use a droprequest listener to the drag source to fill the manager with data!",H="on";qx.Class.define(l,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(I){qx.core.Object.call(this);this.__gi=I;this.__a=I.getWindow().document.documentElement;this.__gi.addListener(this.__a,b,this._onMouseDown,this);this.__jj();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{dragstart:1,dragend:1,dragover:1,dragleave:1,drop:1,drag:1,dragchange:1,droprequest:1},IGNORE_CAN_HANDLE:true},members:{__gi:null,__a:null,__ja:null,__jb:null,__cY:null,__jc:null,__jd:null,__d:null,__je:null,__jf:null,__jg:false,__jh:0,__ji:0,canHandleEvent:function(K,J){},registerEvent:function(N,M,L){},unregisterEvent:function(Q,P,O){},addType:function(R){this.__cY[R]=true;},addAction:function(S){this.__jc[S]=true;},supportsType:function(T){return !!this.__cY[T];},supportsAction:function(U){return !!this.__jc[U];},getData:function(V){if(!this.__jp||!this.__ja){throw new Error(m);};if(!this.__cY[V]){throw new Error(i+V+p);};if(!this.__d[V]){this.__je=V;this.__gY(s,this.__jb,this.__ja,false);};if(!this.__d[V]){throw new Error(G);};return this.__d[V]||null;},getCurrentAction:function(){return this.__jf;},addData:function(W,X){this.__d[W]=X;},getCurrentType:function(){return this.__je;},isSessionActive:function(){return this.__jg;},__jj:function(){this.__cY={};this.__jc={};this.__jd={};this.__d={};},__jk:function(){if(this.__jb==null){return;};var bc=this.__jc;var Y=this.__jd;var ba=null;if(this.__jp){if(Y.Shift&&Y.Control&&bc.alias){ba=v;}else if(Y.Shift&&Y.Alt&&bc.copy){ba=t;}else if(Y.Shift&&bc.move){ba=r;}else if(Y.Alt&&bc.alias){ba=v;}else if(Y.Control&&bc.copy){ba=t;}else if(bc.move){ba=r;}else if(bc.copy){ba=t;}else if(bc.alias){ba=v;};};var bb=this.__jf;if(ba!=bb){if(this.__ja){this.__jf=ba;this.__jl=this.__gY(x,this.__ja,this.__jb,true);if(!this.__jl){ba=null;};};if(ba!=bb){this.__jf=ba;this.__gY(x,this.__jb,this.__ja,false);};};},__gY:function(bi,be,bf,bg,bj){var bh=qx.event.Registration;var bd=bh.createEvent(bi,qx.event.type.Drag,[bg,bj]);if(be!==bf){bd.setRelatedTarget(bf);};return bh.dispatchEvent(be,bd);},__jm:function(bk){while(bk&&bk.nodeType==1){if(bk.getAttribute(c)==H){return bk;};bk=bk.parentNode;};return null;},__jn:function(bl){while(bl&&bl.nodeType==1){if(bl.getAttribute(k)==H){return bl;};bl=bl.parentNode;};return null;},__jo:function(){this.__jb=null;this.__gi.removeListener(this.__a,q,this._onMouseMove,this,true);this.__gi.removeListener(this.__a,A,this._onMouseUp,this,true);qx.event.Registration.removeListener(window,a,this._onWindowBlur,this);this.__jj();},clearSession:function(){if(this.__jg){this.__gi.removeListener(this.__a,w,this._onMouseOver,this,true);this.__gi.removeListener(this.__a,d,this._onMouseOut,this,true);this.__gi.removeListener(this.__a,h,this._onKeyDown,this,true);this.__gi.removeListener(this.__a,z,this._onKeyUp,this,true);this.__gi.removeListener(this.__a,B,this._onKeyPress,this,true);this.__gY(D,this.__jb,this.__ja,false);this.__jg=false;};this.__jp=false;this.__ja=null;this.__jo();},__jp:false,__jl:false,_onWindowBlur:function(e){this.clearSession();},_onKeyDown:function(e){var bm=e.getKeyIdentifier();switch(bm){case y:case n:case o:if(!this.__jd[bm]){this.__jd[bm]=true;this.__jk();};};},_onKeyUp:function(e){var bn=e.getKeyIdentifier();switch(bn){case y:case n:case o:if(this.__jd[bn]){this.__jd[bn]=false;this.__jk();};};},_onKeyPress:function(e){var bo=e.getKeyIdentifier();switch(bo){case f:this.clearSession();};},_onMouseDown:function(e){if(this.__jg||e.getButton()!==F){return;};var bp=this.__jm(e.getTarget());if(bp){this.__jh=e.getDocumentLeft();this.__ji=e.getDocumentTop();this.__jb=bp;this.__gi.addListener(this.__a,q,this._onMouseMove,this,true);this.__gi.addListener(this.__a,A,this._onMouseUp,this,true);qx.event.Registration.addListener(window,a,this._onWindowBlur,this);};},_onMouseUp:function(e){if(this.__jp&&this.__jl){this.__gY(j,this.__ja,this.__jb,false,e);};if(this.__jg&&e.getTarget()==this.__jb){e.stopPropagation();this.__gX();};this.clearSession();},_onMouseMove:function(e){if(this.__jg){if(!this.__gY(g,this.__jb,this.__ja,true,e)){this.clearSession();};}else {if(Math.abs(e.getDocumentLeft()-this.__jh)>3||Math.abs(e.getDocumentTop()-this.__ji)>3){if(this.__gY(u,this.__jb,this.__ja,true,e)){this.__jg=true;this.__gi.addListener(this.__a,w,this._onMouseOver,this,true);this.__gi.addListener(this.__a,d,this._onMouseOut,this,true);this.__gi.addListener(this.__a,h,this._onKeyDown,this,true);this.__gi.addListener(this.__a,z,this._onKeyUp,this,true);this.__gi.addListener(this.__a,B,this._onKeyPress,this,true);var bq=this.__jd;bq.Control=e.isCtrlPressed();bq.Shift=e.isShiftPressed();bq.Alt=e.isAltPressed();this.__jk();}else {this.__gY(D,this.__jb,this.__ja,false);this.__jo();};};};},_onMouseOver:function(e){var bt=e.getTarget();var br=qx.ui.core.DragDropCursor.getInstance();var bs=br.getContentElement().getDomElement();if(bt===bs){return;};var bu=this.__jn(bt);if(bu&&bu!=this.__ja){this.__jp=this.__gY(E,bu,this.__jb,true,e);this.__ja=bu;this.__jk();};},_onMouseOut:function(e){var bv=qx.ui.core.DragDropCursor.getInstance();var bw=bv.getContentElement().getDomElement();if(e.getTarget()===bw){return;};if(e.getRelatedTarget()===bw){return;};var by=this.__jn(e.getTarget());var bx=this.__jn(e.getRelatedTarget());if(by&&by!==bx&&by==this.__ja){this.__gY(C,this.__ja,bx,false,e);this.__ja=null;this.__jp=false;qx.event.Timer.once(this.__jk,this,0);};},__gX:function(){var bz=qx.event.Registration.getManager(window).getHandler(qx.event.handler.Mouse);bz.preventNextClick();}},destruct:function(){this.__jb=this.__ja=this.__gi=this.__a=this.__cY=this.__jc=this.__jd=this.__d=null;},defer:function(bA){if(!qx.event.handler.MouseEmulation.ON){qx.event.Registration.addHandler(bA);};}});})();(function(){var a="qx.event.type.Drag";qx.Class.define(a,{extend:qx.event.type.Event,members:{init:function(b,c){qx.event.type.Event.prototype.init.call(this,true,b);if(c){this._native=c.getNativeEvent()||null;this._originalTarget=c.getTarget()||null;}else {this._native=null;this._originalTarget=null;};return this;},clone:function(d){var e=qx.event.type.Event.prototype.clone.call(this,d);e._native=this._native;return e;},getDocumentLeft:function(){if(this._native==null){return 0;};if(this._native.pageX!==undefined){return this._native.pageX;}else {var f=qx.dom.Node.getWindow(this._native.srcElement);return this._native.clientX+qx.bom.Viewport.getScrollLeft(f);};},getDocumentTop:function(){if(this._native==null){return 0;};if(this._native.pageY!==undefined){return this._native.pageY;}else {var g=qx.dom.Node.getWindow(this._native.srcElement);return this._native.clientY+qx.bom.Viewport.getScrollTop(g);};},getManager:function(){return qx.event.Registration.getManager(this.getTarget()).getHandler(qx.event.handler.DragDrop);},addType:function(h){this.getManager().addType(h);},addAction:function(i){this.getManager().addAction(i);},supportsType:function(j){return this.getManager().supportsType(j);},supportsAction:function(k){return this.getManager().supportsAction(k);},addData:function(l,m){this.getManager().addData(l,m);},getData:function(n){return this.getManager().getData(n);},getCurrentType:function(){return this.getManager().getCurrentType();},getCurrentAction:function(){return this.getManager().getCurrentAction();},stopSession:function(){this.getManager().clearSession();}}});})();(function(){var a="best-fit",b="placementRight",c="Boolean",d="bottom-right",e="' ",f="widget",g="placementLeft",h="qx.ui.core.MPlacement",i="left-top",j="Integer",k="left-middle",l="right-middle",m="top-center",n="[qx.ui.core.MPlacement.setMoveDirection()], the value was '",o="offsetRight",p="mouse",q="interval",r="keep-align",s="bottom-left",t="direct",u="shorthand",v="Invalid value for the parameter 'direction' ",w="offsetLeft",x="top-left",y="appear",z="offsetBottom",A="top",B="top-right",C="offsetTop",D="but 'top' or 'left' are allowed.",E="right-bottom",F="disappear",G="right-top",H="bottom-center",I="left-bottom",J="left";qx.Mixin.define(h,{statics:{__gu:null,__jq:J,setVisibleElement:function(K){this.__gu=K;},getVisibleElement:function(){return this.__gu;},setMoveDirection:function(L){if(L===A||L===J){this.__jq=L;}else {throw new Error(v+n+L+e+D);};},getMoveDirection:function(){return this.__jq;}},properties:{position:{check:[x,m,B,s,H,d,i,k,I,G,l,E],init:s,themeable:true},placeMethod:{check:[f,p],init:p,themeable:true},domMove:{check:c,init:false},placementModeX:{check:[t,r,a],init:r,themeable:true},placementModeY:{check:[t,r,a],init:r,themeable:true},offsetLeft:{check:j,init:0,themeable:true},offsetTop:{check:j,init:0,themeable:true},offsetRight:{check:j,init:0,themeable:true},offsetBottom:{check:j,init:0,themeable:true},offset:{group:[C,o,z,w],mode:u,themeable:true}},members:{__jr:null,__js:null,__jt:null,getLayoutLocation:function(N){var P,O,R,top;O=N.getBounds();if(!O){return null;};R=O.left;top=O.top;var Q=O;N=N.getLayoutParent();while(N&&!N.isRootWidget()){O=N.getBounds();R+=O.left;top+=O.top;P=N.getInsets();R+=P.left;top+=P.top;N=N.getLayoutParent();};if(N.isRootWidget()){var M=N.getContentLocation();if(M){R+=M.left;top+=M.top;};};return {left:R,top:top,right:R+Q.width,bottom:top+Q.height};},moveTo:function(Y,top){var X=qx.ui.core.MPlacement.getVisibleElement();if(X){var W=this.getBounds();var V=X.getContentLocation();if(W&&V){var U=top+W.height;var T=Y+W.width;if((T>V.left&&Y<V.right)&&(U>V.top&&top<V.bottom)){var S=qx.ui.core.MPlacement.getMoveDirection();if(S===J){Y=Math.max(V.left-W.width,0);}else {top=Math.max(V.top-W.height,0);};};};};if(this.getDomMove()){this.setDomPosition(Y,top);}else {this.setLayoutProperties({left:Y,top:top});};},placeToWidget:function(bc,ba){if(ba){this.__ju();this.__jr=qx.lang.Function.bind(this.placeToWidget,this,bc,false);qx.event.Idle.getInstance().addListener(q,this.__jr);this.__jt=function(){this.__ju();};this.addListener(F,this.__jt,this);};var bb=bc.getContentLocation()||this.getLayoutLocation(bc);if(bb!=null){this.__jw(bb);return true;}else {return false;};},__ju:function(){if(this.__jr){qx.event.Idle.getInstance().removeListener(q,this.__jr);this.__jr=null;};if(this.__jt){this.removeListener(F,this.__jt,this);this.__jt=null;};},placeToMouse:function(event){var be=Math.round(event.getDocumentLeft());var top=Math.round(event.getDocumentTop());var bd={left:be,top:top,right:be,bottom:top};this.__jw(bd);},placeToElement:function(bh,bf){var location=qx.bom.element.Location.get(bh);var bg={left:location.left,top:location.top,right:location.left+bh.offsetWidth,bottom:location.top+bh.offsetHeight};if(bf){this.__jr=qx.lang.Function.bind(this.placeToElement,this,bh,false);qx.event.Idle.getInstance().addListener(q,this.__jr);this.addListener(F,function(){if(this.__jr){qx.event.Idle.getInstance().removeListener(q,this.__jr);this.__jr=null;};},this);};this.__jw(bg);},placeToPoint:function(bj){var bi={left:bj.left,top:bj.top,right:bj.left,bottom:bj.top};this.__jw(bi);},_getPlacementOffsets:function(){return {left:this.getOffsetLeft(),top:this.getOffsetTop(),right:this.getOffsetRight(),bottom:this.getOffsetBottom()};},__jv:function(bk){var bl=null;if(this._computePlacementSize){var bl=this._computePlacementSize();}else if(this.isVisible()){var bl=this.getBounds();};if(bl==null){this.addListenerOnce(y,function(){this.__jv(bk);},this);}else {bk.call(this,bl);};},__jw:function(bm){this.__jv(function(bo){var bn=qx.util.placement.Placement.compute(bo,this.getLayoutParent().getBounds(),bm,this._getPlacementOffsets(),this.getPosition(),this.getPlacementModeX(),this.getPlacementModeY());this.removeState(g);this.removeState(b);this.addState(bm.left<bn.left?b:g);this.moveTo(bn.left,bn.top);});}},destruct:function(){this.__ju();}});})();(function(){var a="Number",b="interval",c="_applyTimeoutInterval",d="qx.event.type.Event",e="qx.event.Idle",f="singleton";qx.Class.define(e,{extend:qx.core.Object,type:f,construct:function(){qx.core.Object.call(this);var g=new qx.event.Timer(this.getTimeoutInterval());g.addListener(b,this._onInterval,this);g.start();this.__jx=g;},events:{"interval":d},properties:{timeoutInterval:{check:a,init:100,apply:c}},members:{__jx:null,_applyTimeoutInterval:function(h){this.__jx.setInterval(h);},_onInterval:function(){this.fireEvent(b);}},destruct:function(){if(this.__jx){this.__jx.stop();};this.__jx=null;}});})();(function(){var a="-",b="align-start",c="best-fit",d="qx.util.placement.Placement",e='__jy',f="middle",g="bottom",h="keep-align",i="align-end",j="align-center",k="Invalid 'mode' argument!'",l="center",m="edge-start",n="Class",o="direct",p="top",q="left",r="right",s="edge-end";qx.Class.define(d,{extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__jy=qx.util.placement.DirectAxis;},properties:{axisX:{check:n},axisY:{check:n},edge:{check:[p,r,g,q],init:p},align:{check:[p,r,g,q,l,f],init:r}},statics:{__jz:null,compute:function(D,w,t,u,C,x,y){this.__jz=this.__jz||new qx.util.placement.Placement();var A=C.split(a);var z=A[0];var v=A[1];{var B;};this.__jz.set({axisX:this.__jD(x),axisY:this.__jD(y),edge:z,align:v});return this.__jz.compute(D,w,t,u);},__jA:null,__jB:null,__jC:null,__jD:function(E){switch(E){case o:this.__jA=this.__jA||qx.util.placement.DirectAxis;return this.__jA;case h:this.__jB=this.__jB||qx.util.placement.KeepAlignAxis;return this.__jB;case c:this.__jC=this.__jC||qx.util.placement.BestFitAxis;return this.__jC;default:throw new Error(k);};}},members:{__jy:null,compute:function(K,H,F,G){{};var I=this.getAxisX()||this.__jy;var L=I.computeStart(K.width,{start:F.left,end:F.right},{start:G.left,end:G.right},H.width,this.__jE());var J=this.getAxisY()||this.__jy;var top=J.computeStart(K.height,{start:F.top,end:F.bottom},{start:G.top,end:G.bottom},H.height,this.__jF());return {left:L,top:top};},__jE:function(){var N=this.getEdge();var M=this.getAlign();if(N==q){return m;}else if(N==r){return s;}else if(M==q){return b;}else if(M==l){return j;}else if(M==r){return i;};},__jF:function(){var P=this.getEdge();var O=this.getAlign();if(P==p){return m;}else if(P==g){return s;}else if(O==p){return b;}else if(O==f){return j;}else if(O==g){return i;};}},destruct:function(){this._disposeObjects(e);}});})();(function(){var a="align-start",b="align-end",c="qx.util.placement.AbstractAxis",d="edge-start",e="align-center",f="abstract method call!",g="edge-end";qx.Bootstrap.define(c,{extend:Object,statics:{computeStart:function(j,k,l,h,i){throw new Error(f);},_moveToEdgeAndAlign:function(n,o,p,m){switch(m){case d:return o.start-p.end-n;case g:return o.end+p.start;case a:return o.start+p.start;case e:return o.start+parseInt((o.end-o.start-n)/2,10)+p.start;case b:return o.end-p.end-n;};},_isInRange:function(r,s,q){return r>=0&&r+s<=q;}}});})();(function(){var a="qx.util.placement.DirectAxis";qx.Bootstrap.define(a,{statics:{_moveToEdgeAndAlign:qx.util.placement.AbstractAxis._moveToEdgeAndAlign,computeStart:function(d,e,f,b,c){return this._moveToEdgeAndAlign(d,e,f,c);}}});})();(function(){var a="qx.util.placement.KeepAlignAxis",b="edge-start",c="edge-end";qx.Bootstrap.define(a,{statics:{_moveToEdgeAndAlign:qx.util.placement.AbstractAxis._moveToEdgeAndAlign,_isInRange:qx.util.placement.AbstractAxis._isInRange,computeStart:function(k,f,g,d,j){var i=this._moveToEdgeAndAlign(k,f,g,j);var e,h;if(this._isInRange(i,k,d)){return i;};if(j==b||j==c){e=f.start-g.end;h=f.end+g.start;}else {e=f.end-g.end;h=f.start+g.start;};if(e>d-h){i=e-k;}else {i=h;};return i;}}});})();(function(){var a="qx.util.placement.BestFitAxis";qx.Bootstrap.define(a,{statics:{_isInRange:qx.util.placement.AbstractAxis._isInRange,_moveToEdgeAndAlign:qx.util.placement.AbstractAxis._moveToEdgeAndAlign,computeStart:function(g,c,d,b,f){var e=this._moveToEdgeAndAlign(g,c,d,f);if(this._isInRange(e,g,b)){return e;};if(e<0){e=Math.min(0,b-g);};if(e+g>b){e=Math.max(0,b-g);};return e;}}});})();(function(){var a="backgroundColor",b="drag",c="_applyNativeContextMenu",d="__jL",f="div",g="_applyBackgroundColor",h="qx.event.type.Data",j="_applyFocusable",k=" requires a layout, but no one was defined!",m="qx.event.type.KeyInput",n="focused",o="disabled",p="move",q="createChildControl",r="Unsupported control: ",s="dragstart",t="Font",u="qx.dynlocale",v="dragchange",w="_applyEnabled",x="_applySelectable",y="Number",z="_applyKeepActive",A="dragend",B="_applyVisibility",C="Child control '",D="qxDraggable",E="syncAppearance",F="paddingLeft",G="' of widget ",H="qx.event.type.Mouse",I="__jK",J="_applyPadding",K="#",L="At least one child in control ",M="visible",N="qx.event.type.Event",O="qx.event.type.MouseWheel",P="_applyCursor",Q="changeVisibility",R="_applyDraggable",S="resize",T="Decorator",U="Remove Error: ",V="zIndex",W="changeTextColor",X="$$widget",Y="changeContextMenu",cA="on",cB="paddingTop",cC="opacity",cw="This widget has no children!",cx="changeSelectable",cy="none",cz="outline",cH="hidden",cI="_applyAppearance",cJ="hovered",cK="_applyOpacity",cD="Boolean",cE="px",cF="qx.ui.core.Widget",cG="default",cO="TabIndex property must be between 1 and 32000",dr="_applyFont",dS="cursor",cP="qxDroppable",cL="' already created!",cM="changeZIndex",dO=": ",cN="Color",cQ="changeEnabled",cR="__jG",cS="Abstract method call: _getContentHeightForWidth()!",cX="changeFont",cY="qx.event.type.Focus",da="_applyDecorator",cT="_applyZIndex",cU="_applyTextColor",cV="Widget is not focusable!",cW="qx.ui.menu.Menu",de="engine.name",df="qx.event.type.Drag",dg="qx.event.type.KeySequence",dh="excluded",db="DOM element is not yet created!",dc="_applyToolTipText",dP="Exception while creating child control '",dd="_applyDroppable",dl=" is not a child of this widget!",dm="widget",dR="changeDecorator",dn="qx.event.type.Tap",di="Integer",dj="__jN",dQ="_applyTabIndex",dk="changeAppearance",dp="shorthand",dq="/",dC="String",dB="border-box",dA="",dG="_applyContextMenu",dF="changeToolTipText",dE="padding",dD="tabIndex",dv="paddingBottom",du="beforeContextmenuOpen",dt="changeNativeContextMenu",ds="undefined",dz="qx.ui.tooltip.ToolTip",dy="contextmenu",dx="_applyKeepFocus",dw="paddingRight",dK="changeBackgroundColor",dJ="changeLocale",dI="qxKeepFocus",dH="opera",dN="qx.event.type.Touch",dM="qxKeepActive",dL="absolute";qx.Class.define(cF,{extend:qx.ui.core.LayoutItem,include:[qx.locale.MTranslation],construct:function(){qx.ui.core.LayoutItem.call(this);this.__jG=this.__jM();this.initFocusable();this.initSelectable();this.initNativeContextMenu();},events:{appear:N,disappear:N,createChildControl:h,resize:h,move:h,syncAppearance:h,mousemove:H,mouseover:H,mouseout:H,mousedown:H,mouseup:H,click:H,dblclick:H,contextmenu:H,beforeContextmenuOpen:h,mousewheel:O,touchstart:dN,touchend:dN,touchmove:dN,touchcancel:dN,tap:dn,longtap:dn,swipe:dN,keyup:dg,keydown:dg,keypress:dg,keyinput:m,focus:cY,blur:cY,focusin:cY,focusout:cY,activate:cY,deactivate:cY,capture:N,losecapture:N,drop:df,dragleave:df,dragover:df,drag:df,dragstart:df,dragend:df,dragchange:df,droprequest:df},properties:{paddingTop:{check:di,init:0,apply:J,themeable:true},paddingRight:{check:di,init:0,apply:J,themeable:true},paddingBottom:{check:di,init:0,apply:J,themeable:true},paddingLeft:{check:di,init:0,apply:J,themeable:true},padding:{group:[cB,dw,dv,F],mode:dp,themeable:true},zIndex:{nullable:true,init:10,apply:cT,event:cM,check:di,themeable:true},decorator:{nullable:true,init:null,apply:da,event:dR,check:T,themeable:true},backgroundColor:{nullable:true,check:cN,apply:g,event:dK,themeable:true},textColor:{nullable:true,check:cN,apply:cU,event:W,themeable:true,inheritable:true},font:{nullable:true,apply:dr,check:t,event:cX,themeable:true,inheritable:true,dereference:true},opacity:{check:y,apply:cK,themeable:true,nullable:true,init:null},cursor:{check:dC,apply:P,themeable:true,inheritable:true,nullable:true,init:null},toolTip:{check:dz,nullable:true},toolTipText:{check:dC,nullable:true,event:dF,apply:dc},toolTipIcon:{check:dC,nullable:true,event:dF},blockToolTip:{check:cD,init:false},visibility:{check:[M,cH,dh],init:M,apply:B,event:Q},enabled:{init:true,check:cD,inheritable:true,apply:w,event:cQ},anonymous:{init:false,check:cD},tabIndex:{check:di,nullable:true,apply:dQ},focusable:{check:cD,init:false,apply:j},keepFocus:{check:cD,init:false,apply:dx},keepActive:{check:cD,init:false,apply:z},draggable:{check:cD,init:false,apply:R},droppable:{check:cD,init:false,apply:dd},selectable:{check:cD,init:false,event:cx,apply:x},contextMenu:{check:cW,apply:dG,nullable:true,event:Y},nativeContextMenu:{check:cD,init:false,themeable:true,event:dt,apply:c},appearance:{check:dC,init:dm,apply:cI,event:dk}},statics:{DEBUG:false,getWidgetByElement:function(dW,dU){while(dW){var dT=dW.$$widget;if(dT!=null){var dV=qx.core.ObjectRegistry.fromHashCode(dT);if(!dU||!dV.getAnonymous()){return dV;};};try{dW=dW.parentNode;}catch(e){return null;};};return null;},contains:function(parent,dX){while(dX){if(parent==dX){return true;};dX=dX.getLayoutParent();};return false;},__jH:new qx.util.ObjectPool()},members:{__jG:null,__jI:null,__jJ:null,__jK:null,_getLayout:function(){return this.__jK;},_setLayout:function(dY){{};if(this.__jK){this.__jK.connectToWidget(null);};if(dY){dY.connectToWidget(this);};this.__jK=dY;qx.ui.core.queue.Layout.add(this);},setLayoutParent:function(parent){if(this.$$parent===parent){return;};var content=this.getContentElement();if(this.$$parent&&!this.$$parent.$$disposed){this.$$parent.getContentElement().remove(content);};this.$$parent=parent||null;if(parent&&!parent.$$disposed){this.$$parent.getContentElement().add(content);};this.$$refreshInheritables();qx.ui.core.queue.Visibility.add(this);},_updateInsets:null,renderLayout:function(eg,top,ed,eb){var eh=qx.ui.core.LayoutItem.prototype.renderLayout.call(this,eg,top,ed,eb);if(!eh){return null;};if(qx.lang.Object.isEmpty(eh)&&!this._updateInsets){return null;};var content=this.getContentElement();var ek=eh.size||this._updateInsets;var ei=cE;var ea={};if(eh.position){ea.left=eg+ei;ea.top=top+ei;};if(ek||eh.margin){ea.width=ed+ei;ea.height=eb+ei;};if(Object.keys(ea).length>0){content.setStyles(ea);};if(ek||eh.local||eh.margin){if(this.__jK&&this.hasLayoutChildren()){var ef=this.getInsets();var innerWidth=ed-ef.left-ef.right;var innerHeight=eb-ef.top-ef.bottom;var ej=this.getDecorator();var ee={left:0,right:0,top:0,bottom:0};if(ej){ej=qx.theme.manager.Decoration.getInstance().resolve(ej);ee=ej.getPadding();};var ec={top:this.getPaddingTop()+ee.top,right:this.getPaddingRight()+ee.right,bottom:this.getPaddingBottom()+ee.bottom,left:this.getPaddingLeft()+ee.left};this.__jK.renderLayout(innerWidth,innerHeight,ec);}else if(this.hasLayoutChildren()){throw new Error(L+this._findTopControl()+k);};};if(eh.position&&this.hasListener(p)){this.fireDataEvent(p,this.getBounds());};if(eh.size&&this.hasListener(S)){this.fireDataEvent(S,this.getBounds());};delete this._updateInsets;return eh;},__jL:null,clearSeparators:function(){var en=this.__jL;if(!en){return;};var eo=qx.ui.core.Widget.__jH;var content=this.getContentElement();var em;for(var i=0,l=en.length;i<l;i++ ){em=en[i];eo.poolObject(em);content.remove(em.getContentElement());};en.length=0;},renderSeparator:function(eq,er){var ep=qx.ui.core.Widget.__jH.getObject(qx.ui.core.Widget);ep.set({decorator:eq});var et=ep.getContentElement();this.getContentElement().add(et);var es=et.getDomElement();if(es){es.style.top=er.top+cE;es.style.left=er.left+cE;es.style.width=er.width+cE;es.style.height=er.height+cE;}else {et.setStyles({left:er.left+cE,top:er.top+cE,width:er.width+cE,height:er.height+cE});};if(!this.__jL){this.__jL=[];};this.__jL.push(ep);},_computeSizeHint:function(){var eA=this.getWidth();var eu=this.getMinWidth();var ev=this.getMaxWidth();var ey=this.getHeight();var ew=this.getMinHeight();var ex=this.getMaxHeight();{};var eB=this._getContentHint();var ez=this.getInsets();var eD=ez.left+ez.right;var eC=ez.top+ez.bottom;if(eA==null){eA=eB.width+eD;};if(ey==null){ey=eB.height+eC;};if(eu==null){eu=eD;if(eB.minWidth!=null){eu+=eB.minWidth;if(eu>ev&&ev!=null){eu=ev;};};};if(ew==null){ew=eC;if(eB.minHeight!=null){ew+=eB.minHeight;if(ew>ex&&ex!=null){ew=ex;};};};if(ev==null){if(eB.maxWidth==null){ev=Infinity;}else {ev=eB.maxWidth+eD;if(ev<eu&&eu!=null){ev=eu;};};};if(ex==null){if(eB.maxHeight==null){ex=Infinity;}else {ex=eB.maxHeight+eC;if(ex<ew&&ew!=null){ex=ew;};};};return {width:eA,minWidth:eu,maxWidth:ev,height:ey,minHeight:ew,maxHeight:ex};},invalidateLayoutCache:function(){qx.ui.core.LayoutItem.prototype.invalidateLayoutCache.call(this);if(this.__jK){this.__jK.invalidateLayoutCache();};},_getContentHint:function(){var eF=this.__jK;if(eF){if(this.hasLayoutChildren()){var eG=eF.getSizeHint();{var eE;};return eG;}else {return {width:0,height:0};};}else {return {width:100,height:50};};},_getHeightForWidth:function(eL){var eK=this.getInsets();var eH=eK.left+eK.right;var eN=eK.top+eK.bottom;var eM=eL-eH;var eI=this._getLayout();if(eI&&eI.hasHeightForWidth()){var eO=eI.getHeightForWidth(eL);}else {eO=this._getContentHeightForWidth(eM);};var eJ=eO+eN;return eJ;},_getContentHeightForWidth:function(eP){throw new Error(cS);},getInsets:function(){var top=this.getPaddingTop();var eQ=this.getPaddingRight();var eR=this.getPaddingBottom();var eU=this.getPaddingLeft();if(this.getDecorator()){var eT=qx.theme.manager.Decoration.getInstance().resolve(this.getDecorator());var eS=eT.getInsets();{};top+=eS.top;eQ+=eS.right;eR+=eS.bottom;eU+=eS.left;};return {"top":top,"right":eQ,"bottom":eR,"left":eU};},getInnerSize:function(){var eW=this.getBounds();if(!eW){return null;};var eV=this.getInsets();return {width:eW.width-eV.left-eV.right,height:eW.height-eV.top-eV.bottom};},fadeOut:function(eX){return this.getContentElement().fadeOut(eX);},fadeIn:function(eY){return this.getContentElement().fadeIn(eY);},show:function(){this.setVisibility(M);},hide:function(){this.setVisibility(cH);},exclude:function(){this.setVisibility(dh);},isVisible:function(){return this.getVisibility()===M;},isHidden:function(){return this.getVisibility()!==M;},isExcluded:function(){return this.getVisibility()===dh;},isSeeable:function(){qx.ui.core.queue.Manager.flush();var fa=this.getContentElement().getDomElement();if(fa){return fa.offsetWidth>0;};return false;},__jM:function(){var fc=this._createContentElement();fc.setAttribute(X,this.toHashCode());{};var fb={"zIndex":10,"boxSizing":dB};if(!qx.ui.root.Inline||!(this instanceof qx.ui.root.Inline)){fb.position=dL;};fc.setStyles(fb);return fc;},_createContentElement:function(){return new qx.html.Element(f,{overflowX:cH,overflowY:cH});},getContainerElement:function(){{};return this.__jG;},getContentElement:function(){return this.__jG;},__jN:null,getLayoutChildren:function(){var fe=this.__jN;if(!fe){return this.__jO;};var ff;for(var i=0,l=fe.length;i<l;i++ ){var fd=fe[i];if(fd.hasUserBounds()||fd.isExcluded()){if(ff==null){ff=fe.concat();};qx.lang.Array.remove(ff,fd);};};return ff||fe;},scheduleLayoutUpdate:function(){qx.ui.core.queue.Layout.add(this);},invalidateLayoutChildren:function(){var fg=this.__jK;if(fg){fg.invalidateChildrenCache();};qx.ui.core.queue.Layout.add(this);},hasLayoutChildren:function(){var fi=this.__jN;if(!fi){return false;};var fh;for(var i=0,l=fi.length;i<l;i++ ){fh=fi[i];if(!fh.hasUserBounds()&&!fh.isExcluded()){return true;};};return false;},getChildrenContainer:function(){return this;},__jO:[],_getChildren:function(){return this.__jN||this.__jO;},_indexOf:function(fk){var fj=this.__jN;if(!fj){return -1;};return fj.indexOf(fk);},_hasChildren:function(){var fl=this.__jN;return fl!=null&&(!!fl[0]);},addChildrenToQueue:function(fm){var fn=this.__jN;if(!fn){return;};var fo;for(var i=0,l=fn.length;i<l;i++ ){fo=fn[i];fm.push(fo);fo.addChildrenToQueue(fm);};},_add:function(fq,fp){{};if(fq.getLayoutParent()==this){qx.lang.Array.remove(this.__jN,fq);};if(this.__jN){this.__jN.push(fq);}else {this.__jN=[fq];};this.__jP(fq,fp);},_addAt:function(fu,fr,ft){if(!this.__jN){this.__jN=[];};if(fu.getLayoutParent()==this){qx.lang.Array.remove(this.__jN,fu);};var fs=this.__jN[fr];if(fs===fu){fu.setLayoutProperties(ft);};if(fs){qx.lang.Array.insertBefore(this.__jN,fu,fs);}else {this.__jN.push(fu);};this.__jP(fu,ft);},_addBefore:function(fv,fx,fw){{};if(fv==fx){return;};if(!this.__jN){this.__jN=[];};if(fv.getLayoutParent()==this){qx.lang.Array.remove(this.__jN,fv);};qx.lang.Array.insertBefore(this.__jN,fv,fx);this.__jP(fv,fw);},_addAfter:function(fA,fy,fz){{};if(fA==fy){return;};if(!this.__jN){this.__jN=[];};if(fA.getLayoutParent()==this){qx.lang.Array.remove(this.__jN,fA);};qx.lang.Array.insertAfter(this.__jN,fA,fy);this.__jP(fA,fz);},_remove:function(fB){if(!this.__jN){throw new Error(cw);};qx.lang.Array.remove(this.__jN,fB);this.__jQ(fB);},_removeAt:function(fC){if(!this.__jN){throw new Error(cw);};var fD=this.__jN[fC];qx.lang.Array.removeAt(this.__jN,fC);this.__jQ(fD);return fD;},_removeAll:function(){if(!this.__jN){return [];};var fE=this.__jN.concat();this.__jN.length=0;for(var i=fE.length-1;i>=0;i-- ){this.__jQ(fE[i]);};qx.ui.core.queue.Layout.add(this);return fE;},_afterAddChild:null,_afterRemoveChild:null,__jP:function(fG,fF){{};var parent=fG.getLayoutParent();if(parent&&parent!=this){parent._remove(fG);};fG.setLayoutParent(this);if(fF){fG.setLayoutProperties(fF);}else {this.updateLayoutProperties();};if(this._afterAddChild){this._afterAddChild(fG);};},__jQ:function(fH){{};if(fH.getLayoutParent()!==this){throw new Error(U+fH+dl);};fH.setLayoutParent(null);if(this.__jK){this.__jK.invalidateChildrenCache();};qx.ui.core.queue.Layout.add(this);if(this._afterRemoveChild){this._afterRemoveChild(fH);};},capture:function(fI){this.getContentElement().capture(fI);},releaseCapture:function(){this.getContentElement().releaseCapture();},_applyPadding:function(fK,fJ,name){this._updateInsets=true;qx.ui.core.queue.Layout.add(this);this.__jR(name,fK);},__jR:function(fL,fO){var content=this.getContentElement();var fM=this.getDecorator();fM=qx.theme.manager.Decoration.getInstance().resolve(fM);if(fM){var fN=qx.Bootstrap.firstLow(fL.replace(dE,dA));fO+=fM.getPadding()[fN]||0;};content.setStyle(fL,fO+cE);},_applyDecorator:function(fQ,fP){var content=this.getContentElement();if(fP){fP=qx.theme.manager.Decoration.getInstance().getCssClassName(fP);content.removeClass(fP);};if(fQ){fQ=qx.theme.manager.Decoration.getInstance().addCssClass(fQ);content.addClass(fQ);};},_applyToolTipText:function(fT,fS){if(qx.core.Environment.get(u)){if(this.__jJ){return;};var fR=qx.locale.Manager.getInstance();this.__jJ=fR.addListener(dJ,function(){var fU=this.getToolTipText();if(fU&&fU.translate){this.setToolTipText(fU.translate());};},this);};},_applyTextColor:function(fW,fV){},_applyZIndex:function(fY,fX){this.getContentElement().setStyle(V,fY==null?0:fY);},_applyVisibility:function(gb,ga){var content=this.getContentElement();if(gb===M){content.show();}else {content.hide();};var parent=this.$$parent;if(parent&&(ga==null||gb==null||ga===dh||gb===dh)){parent.invalidateLayoutChildren();};qx.ui.core.queue.Visibility.add(this);},_applyOpacity:function(gd,gc){this.getContentElement().setStyle(cC,gd==1?null:gd);},_applyCursor:function(gf,ge){if(gf==null&&!this.isSelectable()){gf=cG;};this.getContentElement().setStyle(dS,gf,qx.core.Environment.get(de)==dH);},_applyBackgroundColor:function(gj,gi){var gh=this.getBackgroundColor();var content=this.getContentElement();var gg=qx.theme.manager.Color.getInstance().resolve(gh);content.setStyle(a,gg);},_applyFont:function(gl,gk){},_onChangeTheme:function(){qx.ui.core.LayoutItem.prototype._onChangeTheme.call(this);this.updateAppearance();var gm=this.getDecorator();this._applyDecorator(null,gm);this._applyDecorator(gm);gm=this.getFont();if(qx.lang.Type.isString(gm)){this._applyFont(gm,gm);};gm=this.getTextColor();if(qx.lang.Type.isString(gm)){this._applyTextColor(gm,gm);};gm=this.getBackgroundColor();if(qx.lang.Type.isString(gm)){this._applyBackgroundColor(gm,gm);};},__jS:null,$$stateChanges:null,_forwardStates:null,hasState:function(go){var gn=this.__jS;return !!gn&&!!gn[go];},addState:function(gs){var gr=this.__jS;if(!gr){gr=this.__jS={};};if(gr[gs]){return;};this.__jS[gs]=true;if(gs===cJ){this.syncAppearance();}else if(!qx.ui.core.queue.Visibility.isVisible(this)){this.$$stateChanges=true;}else {qx.ui.core.queue.Appearance.add(this);};var forward=this._forwardStates;var gq=this.__jV;if(forward&&forward[gs]&&gq){var gp;for(var gt in gq){gp=gq[gt];if(gp instanceof qx.ui.core.Widget){gq[gt].addState(gs);};};};},removeState:function(gx){var gw=this.__jS;if(!gw||!gw[gx]){return;};delete this.__jS[gx];if(gx===cJ){this.syncAppearance();}else if(!qx.ui.core.queue.Visibility.isVisible(this)){this.$$stateChanges=true;}else {qx.ui.core.queue.Appearance.add(this);};var forward=this._forwardStates;var gv=this.__jV;if(forward&&forward[gx]&&gv){for(var gy in gv){var gu=gv[gy];if(gu instanceof qx.ui.core.Widget){gu.removeState(gx);};};};},replaceState:function(gA,gD){var gC=this.__jS;if(!gC){gC=this.__jS={};};if(!gC[gD]){gC[gD]=true;};if(gC[gA]){delete gC[gA];};if(!qx.ui.core.queue.Visibility.isVisible(this)){this.$$stateChanges=true;}else {qx.ui.core.queue.Appearance.add(this);};var forward=this._forwardStates;var gB=this.__jV;if(forward&&forward[gD]&&gB){for(var gE in gB){var gz=gB[gE];if(gz instanceof qx.ui.core.Widget){gz.replaceState(gA,gD);};};};},__jT:null,__jU:null,syncAppearance:function(){var gJ=this.__jS;var gI=this.__jT;var gK=qx.theme.manager.Appearance.getInstance();var gG=qx.core.Property.$$method.setThemed;var gO=qx.core.Property.$$method.resetThemed;if(this.__jU){delete this.__jU;if(gI){var gF=gK.styleFrom(gI,gJ,null,this.getAppearance());gI=null;};};if(!gI){var gH=this;var gL=[];do {gL.push(gH.$$subcontrol||gH.getAppearance());}while(gH=gH.$$subparent);gI=gL.reverse().join(dq).replace(/#[0-9]+/g,dA);this.__jT=gI;};var gN=gK.styleFrom(gI,gJ,null,this.getAppearance());if(gN){if(gF){for(var gM in gF){if(gN[gM]===undefined){this[gO[gM]]();};};};{var gM;};for(var gM in gN){gN[gM]===undefined?this[gO[gM]]():this[gG[gM]](gN[gM]);};}else if(gF){for(var gM in gF){this[gO[gM]]();};};this.fireDataEvent(E,this.__jS);},_applyAppearance:function(gQ,gP){this.updateAppearance();},checkAppearanceNeeds:function(){if(!this.__jI){qx.ui.core.queue.Appearance.add(this);this.__jI=true;}else if(this.$$stateChanges){qx.ui.core.queue.Appearance.add(this);delete this.$$stateChanges;};},updateAppearance:function(){this.__jU=true;qx.ui.core.queue.Appearance.add(this);var gT=this.__jV;if(gT){var gR;for(var gS in gT){gR=gT[gS];if(gR instanceof qx.ui.core.Widget){gR.updateAppearance();};};};},syncWidget:function(gU){},getEventTarget:function(){var gV=this;while(gV.getAnonymous()){gV=gV.getLayoutParent();if(!gV){return null;};};return gV;},getFocusTarget:function(){var gW=this;if(!gW.getEnabled()){return null;};while(gW.getAnonymous()||!gW.getFocusable()){gW=gW.getLayoutParent();if(!gW||!gW.getEnabled()){return null;};};return gW;},getFocusElement:function(){return this.getContentElement();},isTabable:function(){return (!!this.getContentElement().getDomElement())&&this.isFocusable();},_applyFocusable:function(ha,gX){var gY=this.getFocusElement();if(ha){var hb=this.getTabIndex();if(hb==null){hb=1;};gY.setAttribute(dD,hb);gY.setStyle(cz,cy);}else {if(gY.isNativelyFocusable()){gY.setAttribute(dD,-1);}else if(gX){gY.setAttribute(dD,null);};};},_applyKeepFocus:function(hd){var hc=this.getFocusElement();hc.setAttribute(dI,hd?cA:null);},_applyKeepActive:function(hf){var he=this.getContentElement();he.setAttribute(dM,hf?cA:null);},_applyTabIndex:function(hg){if(hg==null){hg=1;}else if(hg<1||hg>32000){throw new Error(cO);};if(this.getFocusable()&&hg!=null){this.getFocusElement().setAttribute(dD,hg);};},_applySelectable:function(hi,hh){if(hh!==null){this._applyCursor(this.getCursor());};this.getContentElement().setSelectable(hi);},_applyEnabled:function(hk,hj){if(hk===false){this.addState(o);this.removeState(cJ);if(this.isFocusable()){this.removeState(n);this._applyFocusable(false,true);};if(this.isDraggable()){this._applyDraggable(false,true);};if(this.isDroppable()){this._applyDroppable(false,true);};}else {this.removeState(o);if(this.isFocusable()){this._applyFocusable(true,false);};if(this.isDraggable()){this._applyDraggable(true,false);};if(this.isDroppable()){this._applyDroppable(true,false);};};},_applyNativeContextMenu:function(hm,hl,name){},_applyContextMenu:function(ho,hn){if(hn){hn.removeState(dy);if(hn.getOpener()==this){hn.resetOpener();};if(!ho){this.removeListener(dy,this._onContextMenuOpen);hn.removeListener(Q,this._onBeforeContextMenuOpen,this);};};if(ho){ho.setOpener(this);ho.addState(dy);if(!hn){this.addListener(dy,this._onContextMenuOpen);ho.addListener(Q,this._onBeforeContextMenuOpen,this);};};},_onContextMenuOpen:function(e){this.getContextMenu().openAtMouse(e);e.stop();},_onBeforeContextMenuOpen:function(e){if(e.getData()==M&&this.hasListener(du)){this.fireDataEvent(du,e);};},_onStopEvent:function(e){e.stopPropagation();},_getDragDropCursor:function(){return qx.ui.core.DragDropCursor.getInstance();},_applyDraggable:function(hq,hp){if(qx.event.handler.MouseEmulation.ON){return;};if(!this.isEnabled()&&hq===true){hq=false;};this._getDragDropCursor();if(hq){this.addListener(s,this._onDragStart);this.addListener(b,this._onDrag);this.addListener(A,this._onDragEnd);this.addListener(v,this._onDragChange);}else {this.removeListener(s,this._onDragStart);this.removeListener(b,this._onDrag);this.removeListener(A,this._onDragEnd);this.removeListener(v,this._onDragChange);};this.getContentElement().setAttribute(D,hq?cA:null);},_applyDroppable:function(hs,hr){if(!this.isEnabled()&&hs===true){hs=false;};this.getContentElement().setAttribute(cP,hs?cA:null);},_onDragStart:function(e){this._getDragDropCursor().placeToMouse(e);this.getApplicationRoot().setGlobalCursor(cG);},_onDrag:function(e){this._getDragDropCursor().placeToMouse(e);},_onDragEnd:function(e){this._getDragDropCursor().moveTo(-1000,-1000);this.getApplicationRoot().resetGlobalCursor();},_onDragChange:function(e){var ht=this._getDragDropCursor();var hu=e.getCurrentAction();hu?ht.setAction(hu):ht.resetAction();},visualizeFocus:function(){this.addState(n);},visualizeBlur:function(){this.removeState(n);},scrollChildIntoView:function(hz,hy,hx,hw){hw=typeof hw==ds?true:hw;var hv=qx.ui.core.queue.Layout;var parent;if(hw){hw=!hv.isScheduled(hz);parent=hz.getLayoutParent();if(hw&&parent){hw=!hv.isScheduled(parent);if(hw){parent.getChildren().forEach(function(hA){hw=hw&&!hv.isScheduled(hA);});};};};this.scrollChildIntoViewX(hz,hy,hw);this.scrollChildIntoViewY(hz,hx,hw);},scrollChildIntoViewX:function(hD,hB,hC){this.getContentElement().scrollChildIntoViewX(hD.getContentElement(),hB,hC);},scrollChildIntoViewY:function(hG,hE,hF){this.getContentElement().scrollChildIntoViewY(hG.getContentElement(),hE,hF);},focus:function(){if(this.isFocusable()){this.getFocusElement().focus();}else {throw new Error(cV);};},blur:function(){if(this.isFocusable()){this.getFocusElement().blur();}else {throw new Error(cV);};},activate:function(){this.getContentElement().activate();},deactivate:function(){this.getContentElement().deactivate();},tabFocus:function(){this.getFocusElement().focus();},hasChildControl:function(hH){if(!this.__jV){return false;};return !!this.__jV[hH];},__jV:null,_getCreatedChildControls:function(){return this.__jV;},getChildControl:function(hK,hJ){if(!this.__jV){if(hJ){return null;};this.__jV={};};var hI=this.__jV[hK];if(hI){return hI;};if(hJ===true){return null;};return this._createChildControl(hK);},_showChildControl:function(hM){var hL=this.getChildControl(hM);hL.show();return hL;},_excludeChildControl:function(hO){var hN=this.getChildControl(hO,true);if(hN){hN.exclude();};},_isChildControlVisible:function(hQ){var hP=this.getChildControl(hQ,true);if(hP){return hP.isVisible();};return false;},_releaseChildControl:function(hU){var hR=this.getChildControl(hU,false);if(!hR){throw new Error(r+hU);};delete hR.$$subcontrol;delete hR.$$subparent;var hS=this.__jS;var forward=this._forwardStates;if(hS&&forward&&hR instanceof qx.ui.core.Widget){for(var hT in hS){if(forward[hT]){hR.removeState(hT);};};};delete this.__jV[hU];return hR;},_createChildControl:function(ia){if(!this.__jV){this.__jV={};}else if(this.__jV[ia]){throw new Error(C+ia+cL);};var hW=ia.indexOf(K);try{if(hW==-1){var hV=this._createChildControlImpl(ia);}else {var hV=this._createChildControlImpl(ia.substring(0,hW),ia.substring(hW+1,ia.length));};}catch(ib){ib.message=dP+ia+G+this.toString()+dO+ib.message;throw ib;};if(!hV){throw new Error(r+ia);};hV.$$subcontrol=ia;hV.$$subparent=this;var hX=this.__jS;var forward=this._forwardStates;if(hX&&forward&&hV instanceof qx.ui.core.Widget){for(var hY in hX){if(forward[hY]){hV.addState(hY);};};};this.fireDataEvent(q,hV);return this.__jV[ia]=hV;},_createChildControlImpl:function(ie,ic){return null;},_disposeChildControls:function(){var ij=this.__jV;if(!ij){return;};var ih=qx.ui.core.Widget;for(var ii in ij){var ig=ij[ii];if(!ih.contains(this,ig)){ig.destroy();}else {ig.dispose();};};delete this.__jV;},_findTopControl:function(){var ik=this;while(ik){if(!ik.$$subparent){return ik;};ik=ik.$$subparent;};return null;},getContainerLocation:function(il){{};return this.getContentLocation(il);},getContentLocation:function(io){var im=this.getContentElement().getDomElement();return im?qx.bom.element.Location.get(im,io):null;},setDomLeft:function(iq){var ip=this.getContentElement().getDomElement();if(ip){ip.style.left=iq+cE;}else {throw new Error(db);};},setDomTop:function(is){var ir=this.getContentElement().getDomElement();if(ir){ir.style.top=is+cE;}else {throw new Error(db);};},setDomPosition:function(iu,top){var it=this.getContentElement().getDomElement();if(it){it.style.left=iu+cE;it.style.top=top+cE;}else {throw new Error(db);};},destroy:function(){if(this.$$disposed){return;};var parent=this.$$parent;if(parent){parent._remove(this);};qx.ui.core.queue.Dispose.add(this);},clone:function(){var iv=qx.ui.core.LayoutItem.prototype.clone.call(this);if(this.getChildren){var iw=this.getChildren();for(var i=0,l=iw.length;i<l;i++ ){iv.add(iw[i].clone());};};return iv;}},destruct:function(){if(!qx.core.ObjectRegistry.inShutDown){if(qx.core.Environment.get(u)){if(this.__jJ){qx.locale.Manager.getInstance().removeListenerById(this.__jJ);};};var ix=this.getContentElement();if(ix){ix.setAttribute(X,null,true);};this._disposeChildControls();qx.ui.core.queue.Appearance.remove(this);qx.ui.core.queue.Layout.remove(this);qx.ui.core.queue.Visibility.remove(this);qx.ui.core.queue.Widget.remove(this);};if(this.getContextMenu()){this.setContextMenu(null);};if(!qx.core.ObjectRegistry.inShutDown){this.clearSeparators();this.__jL=null;}else {this._disposeArray(d);};this._disposeArray(dj);this.__jS=this.__jV=null;this._disposeObjects(I,cR);}});})();(function(){var a="blur",b="activate",c="focus",d="qx.ui.core.EventHandler";qx.Class.define(d,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(){qx.core.Object.call(this);this.__gi=qx.event.Registration.getManager(window);},statics:{PRIORITY:qx.event.Registration.PRIORITY_FIRST,SUPPORTED_TYPES:{mousemove:1,mouseover:1,mouseout:1,mousedown:1,mouseup:1,click:1,dblclick:1,contextmenu:1,mousewheel:1,keyup:1,keydown:1,keypress:1,keyinput:1,capture:1,losecapture:1,focusin:1,focusout:1,focus:1,blur:1,activate:1,deactivate:1,appear:1,disappear:1,dragstart:1,dragend:1,dragover:1,dragleave:1,drop:1,drag:1,dragchange:1,droprequest:1,touchstart:1,touchend:1,touchmove:1,touchcancel:1,tap:1,longtap:1,swipe:1},IGNORE_CAN_HANDLE:false},members:{__gi:null,__jW:{focusin:1,focusout:1,focus:1,blur:1},__jX:{mouseover:1,mouseout:1,appear:1,disappear:1},canHandleEvent:function(f,e){return f instanceof qx.ui.core.Widget;},_dispatchEvent:function(h){var n=h.getTarget();var m=qx.ui.core.Widget.getWidgetByElement(n);var o=false;while(m&&m.isAnonymous()){var o=true;m=m.getLayoutParent();};if(m&&o&&h.getType()==b){m.getContentElement().activate();};if(this.__jW[h.getType()]){m=m&&m.getFocusTarget();if(!m){return;};};if(h.getRelatedTarget){var v=h.getRelatedTarget();var u=qx.ui.core.Widget.getWidgetByElement(v);while(u&&u.isAnonymous()){u=u.getLayoutParent();};if(u){if(this.__jW[h.getType()]){u=u.getFocusTarget();};if(u===m){return;};};};var q=h.getCurrentTarget();var s=qx.ui.core.Widget.getWidgetByElement(q);if(!s||s.isAnonymous()){return;};if(this.__jW[h.getType()]){s=s.getFocusTarget();};var t=h.getType();if(!s||!(s.isEnabled()||this.__jX[t])){return;};var g=h.getEventPhase()==qx.event.type.Event.CAPTURING_PHASE;var p=this.__gi.getListeners(s,t,g);if(!p||p.length===0){return;};var j=qx.event.Pool.getInstance().getObject(h.constructor);h.clone(j);j.setTarget(m);j.setRelatedTarget(u||null);j.setCurrentTarget(s);var w=h.getOriginalTarget();if(w){var k=qx.ui.core.Widget.getWidgetByElement(w);while(k&&k.isAnonymous()){k=k.getLayoutParent();};j.setOriginalTarget(k);}else {j.setOriginalTarget(n);};for(var i=0,l=p.length;i<l;i++ ){var r=p[i].context||s;p[i].handler.call(r,j);};if(j.getPropagationStopped()){h.stopPropagation();};if(j.getDefaultPrevented()){h.preventDefault();};qx.event.Pool.getInstance().poolObject(j);},registerEvent:function(z,y,x){var A;if(y===c||y===a){A=z.getFocusElement();}else {A=z.getContentElement();};if(A){A.addListener(y,this._dispatchEvent,this,x);};},unregisterEvent:function(D,C,B){var E;if(C===c||C===a){E=D.getFocusElement();}else {E=D.getContentElement();};if(E){E.removeListener(C,this._dispatchEvent,this,B);};}},destruct:function(){this.__gi=null;},defer:function(F){qx.event.Registration.addHandler(F);}});})();(function(){var a="qx.ui.core.queue.Visibility",b="visibility";qx.Class.define(a,{statics:{__ed:[],__cN:{},remove:function(c){delete this.__cN[c.$$hash];qx.lang.Array.remove(this.__ed,c);},isVisible:function(d){return this.__cN[d.$$hash]||false;},__jY:function(f){var h=this.__cN;var g=f.$$hash;var e;if(f.isExcluded()){e=false;}else {var parent=f.$$parent;if(parent){e=this.__jY(parent);}else {e=f.isRootWidget();};};return h[g]=e;},add:function(k){var j=this.__ed;if(qx.lang.Array.contains(j,k)){return;};j.unshift(k);qx.ui.core.queue.Manager.scheduleFlush(b);},flush:function(){var o=this.__ed;var p=this.__cN;for(var i=o.length-1;i>=0;i-- ){var n=o[i].$$hash;if(p[n]!=null){o[i].addChildrenToQueue(o);};};var l={};for(var i=o.length-1;i>=0;i-- ){var n=o[i].$$hash;l[n]=p[n];p[n]=null;};for(var i=o.length-1;i>=0;i-- ){var m=o[i];var n=m.$$hash;o.splice(i,1);if(p[n]==null){this.__jY(m);};if(p[n]&&p[n]!=l[n]){m.checkAppearanceNeeds();};};this.__ed=[];}}});})();(function(){var a="useraction",b=" due to exceptions in user code. The application has to be reloaded!",c="event.touch",d="qx.ui.core.queue.Manager",f=" times in a row",g="Fatal Error: Flush terminated ";qx.Class.define(d,{statics:{__ka:false,__fW:false,__kb:{},__kc:0,MAX_RETRIES:10,scheduleFlush:function(h){var self=qx.ui.core.queue.Manager;self.__kb[h]=true;if(!self.__ka){self.__fW=false;qx.bom.AnimationFrame.request(function(){if(self.__fW){self.__fW=false;return;};self.flush();},self);self.__ka=true;};},flush:function(){var self=qx.ui.core.queue.Manager;if(self.__kd){return;};self.__kd=true;self.__fW=true;var i=self.__kb;self.__ke(function(){while(i.visibility||i.widget||i.appearance||i.layout||i.element){if(i.widget){delete i.widget;{qx.ui.core.queue.Widget.flush();};};if(i.visibility){delete i.visibility;{qx.ui.core.queue.Visibility.flush();};};if(i.appearance){delete i.appearance;{qx.ui.core.queue.Appearance.flush();};};if(i.widget||i.visibility||i.appearance){continue;};if(i.layout){delete i.layout;{qx.ui.core.queue.Layout.flush();};};if(i.widget||i.visibility||i.appearance||i.layout){continue;};if(i.element){delete i.element;qx.html.Element.flush();};};},function(){self.__ka=false;});self.__ke(function(){if(i.dispose){delete i.dispose;{qx.ui.core.queue.Dispose.flush();};};},function(){self.__kd=false;});self.__kc=0;},__ke:function(j,k){var self=qx.ui.core.queue.Manager;try{j();}catch(e){{};self.__ka=false;self.__kd=false;self.__kc+=1;if(self.__kc<=self.MAX_RETRIES){self.scheduleFlush();}else {throw new Error(g+(self.__kc-1)+f+b);};throw e;}finally{k();};},__kf:function(e){qx.ui.core.queue.Manager.flush();}},defer:function(l){qx.html.Element._scheduleFlush=l.scheduleFlush;qx.event.Registration.addListener(window,a,qx.core.Environment.get(c)?l.__kf:l.flush);}});})();(function(){var a="qx.ui.core.queue.Widget",b="widget",c="$$default";qx.Class.define(a,{statics:{__ed:[],__kb:{},remove:function(e,g){var d=this.__ed;if(!qx.lang.Array.contains(d,e)){return;};var f=e.$$hash;if(g==null){qx.lang.Array.remove(d,e);delete this.__kb[f];return;};if(this.__kb[f]){delete this.__kb[f][g];if(qx.lang.Object.getLength(this.__kb[f])==0){qx.lang.Array.remove(d,e);};};},add:function(j,l){var h=this.__ed;if(!qx.lang.Array.contains(h,j)){h.unshift(j);};if(l==null){l=c;};var k=j.$$hash;if(!this.__kb[k]){this.__kb[k]={};};this.__kb[k][l]=true;qx.ui.core.queue.Manager.scheduleFlush(b);},flush:function(){var m=this.__ed;var n,o;for(var i=m.length-1;i>=0;i-- ){n=m[i];o=this.__kb[n.$$hash];m.splice(i,1);n.syncWidget(o);};if(m.length!=0){return;};this.__ed=[];this.__kb={};}}});})();(function(){var a="appearance",b="qx.ui.core.queue.Appearance";qx.Class.define(b,{statics:{__ed:[],remove:function(c){qx.lang.Array.remove(this.__ed,c);},add:function(e){var d=this.__ed;if(qx.lang.Array.contains(d,e)){return;};d.unshift(e);qx.ui.core.queue.Manager.scheduleFlush(a);},has:function(f){return qx.lang.Array.contains(this.__ed,f);},flush:function(){var j=qx.ui.core.queue.Visibility;var g=this.__ed;var h;for(var i=g.length-1;i>=0;i-- ){h=g[i];g.splice(i,1);if(j.isVisible(h)){h.syncAppearance();}else {h.$$stateChanges=true;};};}}});})();(function(){var a="dispose",b="qx.ui.core.queue.Dispose";qx.Class.define(b,{statics:{__ed:[],add:function(d){var c=this.__ed;if(qx.lang.Array.contains(c,d)){return;};c.unshift(d);qx.ui.core.queue.Manager.scheduleFlush(a);},isEmpty:function(){return this.__ed.length==0;},flush:function(){var e=this.__ed;for(var i=e.length-1;i>=0;i-- ){var f=e[i];e.splice(i,1);f.dispose();};if(e.length!=0){return;};this.__ed=[];}}});})();(function(){var a='indexOf',b='slice',c='concat',d='toLocaleLowerCase',e="qx.type.BaseString",f="",g='trim',h='match',j='toLocaleUpperCase',k='search',m='replace',n='toLowerCase',o='charCodeAt',p='split',q='substring',r='lastIndexOf',s='substr',t='toUpperCase',u='charAt';qx.Class.define(e,{extend:Object,construct:function(v){var v=v||f;this.__kg=v;this.length=v.length;},members:{$$isString:true,length:0,__kg:null,toString:function(){return this.__kg;},charAt:null,valueOf:null,charCodeAt:null,concat:null,indexOf:null,lastIndexOf:null,match:null,replace:null,search:null,slice:null,split:null,substr:null,substring:null,toLowerCase:null,toUpperCase:null,toHashCode:function(){return qx.core.ObjectRegistry.toHashCode(this);},toLocaleLowerCase:null,toLocaleUpperCase:null,base:function(x,w){return qx.core.Object.prototype.base.apply(this,arguments);}},defer:function(y,z){{};var A=[u,o,c,a,r,h,m,k,b,p,s,q,n,t,d,j,g];z.valueOf=z.toString;if(new y(f).valueOf()==null){delete z.valueOf;};for(var i=0,l=A.length;i<l;i++ ){z[A[i]]=String.prototype[A[i]];};}});})();(function(){var a="qx.locale.LocalizedString";qx.Class.define(a,{extend:qx.type.BaseString,construct:function(b,d,c){qx.type.BaseString.call(this,b);this.__kh=d;this.__ki=c;},members:{__kh:null,__ki:null,translate:function(){return qx.locale.Manager.getInstance().translate(this.__kh,this.__ki);}}});})();(function(){var a="locale",b="_applyLocale",c="",d="changeLocale",e="_",f="C",g="locale.variant",h="qx.dynlocale",j="qx.locale.Manager",k="String",l="singleton";qx.Class.define(j,{type:l,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__kj=qx.$$translations||{};this.__kk=qx.$$locales||{};var m=qx.core.Environment.get(a);var n=qx.core.Environment.get(g);if(n!==c){m+=e+n;};this.__kl=m;this.setLocale(m||this.__km);},statics:{tr:function(p,q){var o=qx.lang.Array.fromArguments(arguments);o.splice(0,1);return qx.locale.Manager.getInstance().translate(p,o);},trn:function(s,v,r,u){var t=qx.lang.Array.fromArguments(arguments);t.splice(0,3);if(r!=1){return qx.locale.Manager.getInstance().translate(v,t);}else {return qx.locale.Manager.getInstance().translate(s,t);};},trc:function(z,x,y){var w=qx.lang.Array.fromArguments(arguments);w.splice(0,2);return qx.locale.Manager.getInstance().translate(x,w);},marktr:function(A){return A;}},properties:{locale:{check:k,nullable:true,apply:b,event:d}},members:{__km:f,__kn:null,__ko:null,__kj:null,__kk:null,__kl:null,getLanguage:function(){return this.__ko;},getTerritory:function(){return this.getLocale().split(e)[1]||c;},getAvailableLocales:function(C){var D=[];for(var B in this.__kk){if(B!=this.__km){if(this.__kk[B]===null&&!C){continue;};D.push(B);};};return D;},__kp:function(E){var G;if(E==null){return null;};var F=E.indexOf(e);if(F==-1){G=E;}else {G=E.substring(0,F);};return G;},_applyLocale:function(I,H){{};this.__kn=I;this.__ko=this.__kp(I);},addTranslation:function(J,M){var K=this.__kj;if(K[J]){for(var L in M){K[J][L]=M[L];};}else {K[J]=M;};},addLocale:function(Q,O){var N=this.__kk;if(N[Q]){for(var P in O){N[Q][P]=O[P];};}else {N[Q]=O;};},translate:function(U,T,R){var S=this.__kj;return this.__kq(S,U,T,R);},localize:function(Y,X,V){var W=this.__kk;return this.__kq(W,Y,X,V);},__kq:function(be,bf,bc,bd){{};var ba;if(!be){return bf;};if(bd){var bb=this.__kp(bd);}else {bd=this.__kn;bb=this.__ko;};if(!ba&&be[bd]){ba=be[bd][bf];};if(!ba&&be[bb]){ba=be[bb][bf];};if(!ba&&be[this.__km]){ba=be[this.__km][bf];};if(!ba){ba=bf;};if(bc.length>0){var bg=[];for(var i=0;i<bc.length;i++ ){var bh=bc[i];if(bh&&bh.translate){bg[i]=bh.translate();}else {bg[i]=bh;};};ba=qx.lang.String.format(ba,bg);};if(qx.core.Environment.get(h)){ba=new qx.locale.LocalizedString(ba,bf,bc);};return ba;}},destruct:function(){this.__kj=this.__kk=null;}});})();(function(){var a="qx.bom.client.Locale",b="-",c="locale",d="",e="android",f="locale.variant";qx.Bootstrap.define(a,{statics:{getLocale:function(){var g=qx.bom.client.Locale.__kr();var h=g.indexOf(b);if(h!=-1){g=g.substr(0,h);};return g;},getVariant:function(){var i=qx.bom.client.Locale.__kr();var k=d;var j=i.indexOf(b);if(j!=-1){k=i.substr(j+1);};return k;},__kr:function(){var l=(navigator.userLanguage||navigator.language||d);if(qx.bom.client.OperatingSystem.getName()==e){var m=/(\w{2})-(\w{2})/i.exec(navigator.userAgent);if(m){l=m[0];};};return l.toLowerCase();}},defer:function(n){qx.core.Environment.add(c,n.getLocale);qx.core.Environment.add(f,n.getVariant);}});})();(function(){var a="Image could not be loaded: ",b="Boolean",c="px",d=".png",e="background-image",f="engine.version",g="scale",h="changeSource",i="div",j="nonScaled",k="qx.ui.basic.Image",l="loaded",m="0 0",n="__ks",o=", no-repeat",p="replacement",q="backgroundImage",r="backgroundRepeat",s="-disabled.$1",t="class",u="qx.event.type.Event",v="loadingFailed",w="css.alphaimageloaderneeded",x="String",y="browser.documentmode",z="backgroundPosition",A="border-box",B="left",C="_applySource",D="$$widget",E="top",F="scaled",G=", ",H="image",I="mshtml",J="engine.name",K=", 0 0",L="_applyScale",M="position",N="img",O="no-repeat",P="background-position",Q="hidden",R="alphaScaled",S=",",T="absolute";qx.Class.define(k,{extend:qx.ui.core.Widget,construct:function(U){this.__ks={};qx.ui.core.Widget.call(this);if(U){this.setSource(U);};},properties:{source:{check:x,init:null,nullable:true,event:h,apply:C,themeable:true},scale:{check:b,init:false,themeable:true,apply:L},appearance:{refine:true,init:H},allowShrinkX:{refine:true,init:false},allowShrinkY:{refine:true,init:false},allowGrowX:{refine:true,init:false},allowGrowY:{refine:true,init:false}},events:{loadingFailed:u,loaded:u},members:{__kt:null,__ku:null,__hl:null,__ks:null,__kv:null,__kw:null,_onChangeTheme:function(){qx.ui.core.Widget.prototype._onChangeTheme.call(this);this._styleSource();},getContentElement:function(){return this.__kA();},_createContentElement:function(){return this.__kA();},_getContentHint:function(){return {width:this.__kt||0,height:this.__ku||0};},_applyDecorator:function(X,W){qx.ui.core.Widget.prototype._applyDecorator.call(this,X,W);var Y=this.getSource();Y=qx.util.AliasManager.getInstance().resolve(Y);var V=this.getContentElement();if(this.__kw){V=V.getChild(0);};this.__kG(V,Y);},_applyPadding:function(bb,ba,name){qx.ui.core.Widget.prototype._applyPadding.call(this,bb,ba,name);var bc=this.getContentElement();if(this.__kw){bc.getChild(0).setStyles({top:this.getPaddingTop()||0,left:this.getPaddingLeft()||0});}else {bc.setPadding(this.getPaddingLeft()||0,this.getPaddingTop()||0);};},renderLayout:function(bf,top,bd,bg){qx.ui.core.Widget.prototype.renderLayout.call(this,bf,top,bd,bg);var be=this.getContentElement();if(this.__kw){be.getChild(0).setStyles({width:bd-(this.getPaddingLeft()||0)-(this.getPaddingRight()||0),height:bg-(this.getPaddingTop()||0)-(this.getPaddingBottom()||0),top:this.getPaddingTop()||0,left:this.getPaddingLeft()||0});};},_applyEnabled:function(bi,bh){qx.ui.core.Widget.prototype._applyEnabled.call(this,bi,bh);if(this.getSource()){this._styleSource();};},_applySource:function(bj){this._styleSource();},_applyScale:function(bk){this._styleSource();},__kx:function(bl){this.__hl=bl;},__ky:function(){if(this.__hl==null){var bn=this.getSource();var bm=false;if(bn!=null){bm=qx.lang.String.endsWith(bn,d);};if(this.getScale()&&bm&&qx.core.Environment.get(w)){this.__hl=R;}else if(this.getScale()){this.__hl=F;}else {this.__hl=j;};};return this.__hl;},__kz:function(bq){var bp;var bo;if(bq==R){bp=true;bo=i;}else if(bq==j){bp=false;bo=i;}else {bp=true;bo=N;};var bs=new qx.html.Image(bo);bs.setAttribute(D,this.toHashCode());bs.setScale(bp);bs.setStyles({"overflowX":Q,"overflowY":Q,"boxSizing":A});if(qx.core.Environment.get(w)){var br=this.__kw=new qx.html.Element(i);br.setAttribute(D,this.toHashCode());br.setStyle(M,T);br.add(bs);return br;};return bs;},__kA:function(){if(this.$$disposed){return null;};var bt=this.__ky();if(this.__ks[bt]==null){this.__ks[bt]=this.__kz(bt);};var bu=this.__ks[bt];if(!this.__kv){this.__kv=bu;};return bu;},_styleSource:function(){var bv=qx.util.AliasManager.getInstance().resolve(this.getSource());var by=this.getContentElement();if(this.__kw){by=by.getChild(0);};if(!bv){by.resetSource();return;};this.__kB(bv);if((qx.core.Environment.get(J)==I)&&(parseInt(qx.core.Environment.get(f),10)<9||qx.core.Environment.get(y)<9)){var bw=this.getScale()?g:O;by.tagNameHint=qx.bom.element.Decoration.getTagName(bw,bv);};var bx=this.__kv;if(this.__kw){bx=bx.getChild(0);};if(qx.util.ResourceManager.getInstance().has(bv)){this.__kD(bx,bv);}else if(qx.io.ImageLoader.isLoaded(bv)){this.__kE(bx,bv);}else {this.__kF(bx,bv);};},__kB:qx.core.Environment.select(J,{"mshtml":function(bA){var bB=qx.core.Environment.get(w);var bz=qx.lang.String.endsWith(bA,d);if(bB&&bz){if(this.getScale()&&this.__ky()!=R){this.__kx(R);}else if(!this.getScale()&&this.__ky()!=j){this.__kx(j);};}else {if(this.getScale()&&this.__ky()!=F){this.__kx(F);}else if(!this.getScale()&&this.__ky()!=j){this.__kx(j);};};this.__kC(this.__kA());},"default":function(bC){if(this.getScale()&&this.__ky()!=F){this.__kx(F);}else if(!this.getScale()&&this.__ky(j)){this.__kx(j);};this.__kC(this.__kA());}}),__kC:function(bG){var bF=this.__kv;if(bF!=bG){if(bF!=null){var bQ=c;var bD={};var bL=this.getBounds();if(bL!=null){bD.width=bL.width+bQ;bD.height=bL.height+bQ;};var bM=this.getInsets();bD.left=parseInt(bF.getStyle(B)||bM.left)+bQ;bD.top=parseInt(bF.getStyle(E)||bM.top)+bQ;bD.zIndex=10;var bJ=this.__kw?bG.getChild(0):bG;bJ.setStyles(bD,true);bJ.setSelectable(this.getSelectable());var bN=bF.getParent();if(bN){var bE=bN.getChildren().indexOf(bF);bN.removeAt(bE);bN.addAt(bG,bE);};var bI=bJ.getNodeName();bJ.setSource(null);var bH=this.__kw?this.__kv.getChild(0):this.__kv;bJ.tagNameHint=bI;bJ.setAttribute(t,bH.getAttribute(t));qx.html.Element.flush();var bP=bH.getDomElement();var bO=bG.getDomElement();if(bP&&bO){var bK=bP.$$hash;bP.$$hash=bO.$$hash;bO.$$hash=bK;};this.__kv=bG;};};},__kD:function(bS,bU){var bT=qx.util.ResourceManager.getInstance();if(!this.getEnabled()){var bR=bU.replace(/\.([a-z]+)$/,s);if(bT.has(bR)){bU=bR;this.addState(p);}else {this.removeState(p);};};if(bS.getSource()===bU){return;};this.__kG(bS,bU);this.__kI(bT.getImageWidth(bU),bT.getImageHeight(bU));},__kE:function(bV,ca){var bX=qx.io.ImageLoader;this.__kG(bV,ca);var bY=bX.getWidth(ca);var bW=bX.getHeight(ca);this.__kI(bY,bW);},__kF:function(cb,ce){var cf=qx.io.ImageLoader;{var cd,cc,self;};if(!cf.isFailed(ce)){cf.load(ce,this.__kH,this);}else {if(cb!=null){cb.resetSource();};};},__kG:function(cg,cl){if(cg.getNodeName()==i){var co=qx.theme.manager.Decoration.getInstance().resolve(this.getDecorator());if(co){var cm=(co.getStartColor()&&co.getEndColor());var ck=co.getBackgroundImage();if(cm||ck){var ch=this.getScale()?g:O;var ci=qx.bom.element.Decoration.getAttributes(cl,ch);var cj=co.getStyles(true);var cn={"backgroundImage":ci.style.backgroundImage,"backgroundPosition":(ci.style.backgroundPosition||m),"backgroundRepeat":(ci.style.backgroundRepeat||O)};if(ck){cn[z]+=S+cj[P]||m;cn[r]+=G+co.getBackgroundRepeat();};if(cm){cn[z]+=K;cn[r]+=o;};cn[q]+=S+cj[e];cg.setStyles(cn);return;};}else {cg.setSource(null);};};cg.setSource(cl);},__kH:function(cp,cq){if(this.$$disposed===true){return;};if(cp!==qx.util.AliasManager.getInstance().resolve(this.getSource())){return;};if(cq.failed){this.warn(a+cp);this.fireEvent(v);}else if(cq.aborted){return;}else {this.fireEvent(l);};this._styleSource();},__kI:function(cr,cs){if(cr!==this.__kt||cs!==this.__ku){this.__kt=cr;this.__ku=cs;qx.ui.core.queue.Layout.add(this);};}},destruct:function(){delete this.__kv;this._disposeMap(n);}});})();(function(){var a="source",b="engine.name",c="",d="mshtml",e="px",f="px ",g="no-repeat",h="backgroundImage",i="scale",j="webkit",k="div",l="qx.html.Image",m="qx/static/blank.gif",n="backgroundPosition";qx.Class.define(l,{extend:qx.html.Element,members:{__kJ:null,__kK:null,tagNameHint:null,setPadding:function(o,p){this.__kK=o;this.__kJ=p;if(this.getNodeName()==k){this.setStyle(n,o+f+p+e);};},_applyProperty:function(name,t){qx.html.Element.prototype._applyProperty.call(this,name,t);if(name===a){var s=this.getDomElement();var q=this.getAllStyles();if(this.getNodeName()==k&&this.getStyle(h)){q.backgroundRepeat=null;};var u=this._getProperty(a);var r=this._getProperty(i);var v=r?i:g;if(u!=null){u=u||null;q.paddingTop=this.__kJ;q.paddingLeft=this.__kK;qx.bom.element.Decoration.update(s,u,v,q);};};},_removeProperty:function(x,w){if(x==a){this._setProperty(x,c,w);}else {this._setProperty(x,null,w);};},_createDomElement:function(){var z=this._getProperty(i);var A=z?i:g;if((qx.core.Environment.get(b)==d)){var y=this._getProperty(a);if(this.tagNameHint!=null){this.setNodeName(this.tagNameHint);}else {this.setNodeName(qx.bom.element.Decoration.getTagName(A,y));};}else {this.setNodeName(qx.bom.element.Decoration.getTagName(A));};return qx.html.Element.prototype._createDomElement.call(this);},_copyData:function(B){return qx.html.Element.prototype._copyData.call(this,true);},setSource:function(C){this._setProperty(a,C);return this;},getSource:function(){return this._getProperty(a);},resetSource:function(){if((qx.core.Environment.get(b)==j)){this._setProperty(a,m);}else {this._removeProperty(a,true);};return this;},setScale:function(D){this._setProperty(i,D);return this;},getScale:function(){return this._getProperty(i);}}});})();(function(){var a="qx/icon",b="repeat",c="px",d=".png",f="crop",g="px ",h="background-image",i="scale",j="no-repeat",k="div",l="Potential clipped image candidate: ",m="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='",n='<div style="',o="scale-x",p="css.alphaimageloaderneeded",q="repeat-y",r='<img src="',s="qx.bom.element.Decoration",t="Image modification not possible because elements could not be replaced at runtime anymore!",u="', sizingMethod='",v="",w='"/>',x="png",y="img",z="')",A='"></div>',B="mshtml",C="engine.name",D='" style="',E="none",F="b64",G="webkit",H=" ",I="repeat-x",J="background-repeat",K="DXImageTransform.Microsoft.AlphaImageLoader",L="qx/static/blank.gif",M="scale-y",N="absolute";qx.Class.define(s,{statics:{DEBUG:false,__kL:{},__kM:qx.core.Environment.select(C,{"mshtml":{"scale-x":true,"scale-y":true,"scale":true,"no-repeat":true},"default":null}),__kN:{"scale-x":y,"scale-y":y,"scale":y,"repeat":k,"no-repeat":k,"repeat-x":k,"repeat-y":k},update:function(R,S,P,O){var T=this.getTagName(P,S);if(T!=R.tagName.toLowerCase()){throw new Error(t);};var Q=this.getAttributes(S,P,O);if(T===y){R.src=Q.src||qx.util.ResourceManager.getInstance().toUri(L);};if(R.style.backgroundPosition!=v&&Q.style.backgroundPosition===undefined){Q.style.backgroundPosition=null;};if(R.style.clip!=v&&Q.style.clip===undefined){Q.style.clip=null;};qx.bom.element.Style.setStyles(R,Q.style);if(qx.core.Environment.get(p)){try{R.filters[K].apply();}catch(e){};};},create:function(X,V,U){var Y=this.getTagName(V,X);var W=this.getAttributes(X,V,U);var ba=qx.bom.element.Style.compile(W.style);if(Y===y){return r+W.src+D+ba+w;}else {return n+ba+A;};},getTagName:function(bc,bb){if(bb&&qx.core.Environment.get(p)&&this.__kM[bc]&&qx.lang.String.endsWith(bb,d)){return k;};return this.__kN[bc];},getAttributes:function(bh,be,bd){if(!bd){bd={};};if(!bd.position){bd.position=N;};if((qx.core.Environment.get(C)==B)){bd.fontSize=0;bd.lineHeight=0;}else if((qx.core.Environment.get(C)==G)){bd.WebkitUserDrag=E;};var bf=qx.util.ResourceManager.getInstance().getImageFormat(bh)||qx.io.ImageLoader.getFormat(bh);{};var bi;if(qx.core.Environment.get(p)&&this.__kM[be]&&bf===x){var bj=this.__kP(bh);this.__kO(bd,bj.width,bj.height);bi=this.processAlphaFix(bd,be,bh);}else {delete bd.clip;if(be===i){bi=this.__kQ(bd,be,bh);}else if(be===o||be===M){bi=this.__kR(bd,be,bh);}else {bi=this.__kU(bd,be,bh);};};return bi;},__kO:function(bl,bk,bm){if(bl.width==null&&bk!=null){bl.width=bk+c;};if(bl.height==null&&bm!=null){bl.height=bm+c;};},__kP:function(bn){var bo=qx.util.ResourceManager.getInstance().getImageWidth(bn)||qx.io.ImageLoader.getWidth(bn);var bp=qx.util.ResourceManager.getInstance().getImageHeight(bn)||qx.io.ImageLoader.getHeight(bn);return {width:bo,height:bp};},processAlphaFix:function(bs,bt,br){if(bt==b||bt==I||bt==q){return bs;};var bu=bt==j?f:i;var bq=m+qx.util.ResourceManager.getInstance().toUri(br)+u+bu+z;bs.filter=bq;bs.backgroundImage=bs.backgroundRepeat=v;delete bs[h];delete bs[J];return {style:bs};},__kQ:function(bw,bx,bv){var by=qx.util.ResourceManager.getInstance().toUri(bv);var bz=this.__kP(bv);this.__kO(bw,bz.width,bz.height);return {src:by,style:bw};},__kR:function(bA,bB,bD){var bC=qx.util.ResourceManager.getInstance();var bG=bC.getCombinedFormat(bD);var bI=this.__kP(bD);var bE;if(bG){var bH=bC.getData(bD);var bF=bH[4];if(bG==F){bE=bC.toDataUri(bD);}else {bE=bC.toUri(bF);};if(bB===o){bA=this.__kS(bA,bH,bI.height);}else {bA=this.__kT(bA,bH,bI.width);};return {src:bE,style:bA};}else {{};if(bB==o){bA.height=bI.height==null?null:bI.height+c;}else if(bB==M){bA.width=bI.width==null?null:bI.width+c;};bE=bC.toUri(bD);return {src:bE,style:bA};};},__kS:function(bJ,bK,bM){var bL=qx.util.ResourceManager.getInstance().getImageHeight(bK[4]);bJ.clip={top:-bK[6],height:bM};bJ.height=bL+c;if(bJ.top!=null){bJ.top=(parseInt(bJ.top,10)+bK[6])+c;}else if(bJ.bottom!=null){bJ.bottom=(parseInt(bJ.bottom,10)+bM-bL-bK[6])+c;};return bJ;},__kT:function(bO,bP,bN){var bQ=qx.util.ResourceManager.getInstance().getImageWidth(bP[4]);bO.clip={left:-bP[5],width:bN};bO.width=bQ+c;if(bO.left!=null){bO.left=(parseInt(bO.left,10)+bP[5])+c;}else if(bO.right!=null){bO.right=(parseInt(bO.right,10)+bN-bQ-bP[5])+c;};return bO;},__kU:function(bR,bS,bV){var bU=qx.util.ResourceManager.getInstance();var bT=bU.getCombinedFormat(bV);var ce=this.__kP(bV);if(bT&&bS!==b){var cd=bU.getData(bV);var cb=cd[4];if(bT==F){var bX=bU.toDataUri(bV);var bW=0;var bY=0;}else {var bX=bU.toUri(cb);var bW=cd[5];var bY=cd[6];if(bR.paddingTop||bR.paddingLeft||bR.paddingRight||bR.paddingBottom){var top=bR.paddingTop||0;var cf=bR.paddingLeft||0;bW+=bR.paddingLeft||0;bY+=bR.paddingTop||0;bR.clip={left:cf,top:top,width:ce.width,height:ce.height};};};var ca=qx.bom.element.Background.getStyles(bX,bS,bW,bY);for(var cc in ca){bR[cc]=ca[cc];};if(ce.width!=null&&bR.width==null&&(bS==q||bS===j)){bR.width=ce.width+c;};if(ce.height!=null&&bR.height==null&&(bS==I||bS===j)){bR.height=ce.height+c;};return {style:bR};}else {var top=bR.paddingTop||0;var cf=bR.paddingLeft||0;bR.backgroundPosition=cf+g+top+c;{};this.__kO(bR,ce.width,ce.height);this.__kV(bR,bV,bS);return {style:bR};};},__kV:function(cg,cj,ch){var top=null;var cm=null;if(cg.backgroundPosition){var ci=cg.backgroundPosition.split(H);cm=parseInt(ci[0],10);if(isNaN(cm)){cm=ci[0];};top=parseInt(ci[1],10);if(isNaN(top)){top=ci[1];};};var ck=qx.bom.element.Background.getStyles(cj,ch,cm,top);for(var cl in ck){cg[cl]=ck[cl];};if(cg.filter){cg.filter=v;};},__kW:function(cn){if(this.DEBUG&&qx.util.ResourceManager.getInstance().has(cn)&&cn.indexOf(a)==-1){if(!this.__kL[cn]){qx.log.Logger.debug(l+cn);this.__kL[cn]=true;};};},isAlphaImageLoaderEnabled:function(){{};return qx.core.Environment.get(p);}}});})();(function(){var a="load",b="html.image.naturaldimensions",c="qx.io.ImageLoader";qx.Bootstrap.define(c,{statics:{__cN:{},__kX:{width:null,height:null},__kY:/\.(png|gif|jpg|jpeg|bmp)\b/i,__la:/^data:image\/(png|gif|jpg|jpeg|bmp)\b/i,isLoaded:function(d){var e=this.__cN[d];return !!(e&&e.loaded);},isFailed:function(f){var g=this.__cN[f];return !!(g&&g.failed);},isLoading:function(h){var j=this.__cN[h];return !!(j&&j.loading);},getFormat:function(o){var n=this.__cN[o];if(!n||!n.format){var k=this.__la.exec(o);if(k!=null){var m=(n&&qx.lang.Type.isNumber(n.width)?n.width:this.__kX.width);var p=(n&&qx.lang.Type.isNumber(n.height)?n.height:this.__kX.height);n={loaded:true,format:k[1],width:m,height:p};};};return n?n.format:null;},getSize:function(q){var r=this.__cN[q];return r?{width:r.width,height:r.height}:this.__kX;},getWidth:function(s){var t=this.__cN[s];return t?t.width:null;},getHeight:function(u){var v=this.__cN[u];return v?v.height:null;},load:function(y,x,z){var A=this.__cN[y];if(!A){A=this.__cN[y]={};};if(x&&!z){z=window;};if(A.loaded||A.loading||A.failed){if(x){if(A.loading){A.callbacks.push(x,z);}else {x.call(z,y,A);};};}else {A.loading=true;A.callbacks=[];if(x){A.callbacks.push(x,z);};var w=new Image();var B=qx.lang.Function.listener(this.__lb,this,w,y);w.onload=B;w.onerror=B;w.src=y;A.element=w;};},abort:function(C){var F=this.__cN[C];if(F&&!F.loaded){F.aborted=true;var E=F.callbacks;var D=F.element;D.onload=D.onerror=null;delete F.callbacks;delete F.element;delete F.loading;for(var i=0,l=E.length;i<l;i+=2){E[i].call(E[i+1],C,F);};};this.__cN[C]=null;},__lb:qx.event.GlobalError.observeMethod(function(event,H,G){var L=this.__cN[G];var I=function(M){return (M&&M.height!==0);};if(event.type===a&&I(H)){L.loaded=true;L.width=this.__lc(H);L.height=this.__ld(H);var J=this.__kY.exec(G);if(J!=null){L.format=J[1];};}else {L.failed=true;};H.onload=H.onerror=null;var K=L.callbacks;delete L.loading;delete L.callbacks;delete L.element;for(var i=0,l=K.length;i<l;i+=2){K[i].call(K[i+1],G,L);};}),__lc:function(N){return qx.core.Environment.get(b)?N.naturalWidth:N.width;},__ld:function(O){return qx.core.Environment.get(b)?O.naturalHeight:O.height;},dispose:function(){this.__cN={};}}});})();(function(){var a="')",b="gecko",c="background-image:url(",d="0",e=");",f="",g="px",h="number",i=")",j="background-repeat:",k="engine.version",l="data:",m=" ",n="qx.bom.element.Background",o=";",p="url(",q="background-position:",r="base64",s="url('",t="engine.name",u="'";qx.Class.define(n,{statics:{__le:[c,null,e,q,null,o,j,null,o],__lf:{backgroundImage:null,backgroundPosition:null,backgroundRepeat:null},__lg:function(z,top){var v=qx.core.Environment.get(t);var x=qx.core.Environment.get(k);if(v==b&&x<1.9&&z==top&&typeof z==h){top+=0.01;};if(z){var y=(typeof z==h)?z+g:z;}else {y=d;};if(top){var w=(typeof top==h)?top+g:top;}else {w=d;};return y+m+w;},__lh:function(A){var String=qx.lang.String;var B=A.substr(0,50);return String.startsWith(B,l)&&String.contains(B,r);},compile:function(F,D,H,top){var G=this.__lg(H,top);var E=qx.util.ResourceManager.getInstance().toUri(F);if(this.__lh(E)){E=u+E+u;};var C=this.__le;C[1]=E;C[4]=G;C[7]=D;return C.join(f);},getStyles:function(L,J,N,top){if(!L){return this.__lf;};var M=this.__lg(N,top);var K=qx.util.ResourceManager.getInstance().toUri(L);var O;if(this.__lh(K)){O=s+K+a;}else {O=p+K+i;};var I={backgroundPosition:M,backgroundImage:O};if(J!=null){I.backgroundRepeat=J;};return I;},set:function(T,S,Q,U,top){var P=this.getStyles(S,Q,U,top);for(var R in P){T.style[R]=P[R];};}}});})();(function(){var a="dragdrop-cursor",b="_applyAction",c="alias",d="qx.ui.core.DragDropCursor",e="move",f="singleton",g="copy";qx.Class.define(d,{extend:qx.ui.basic.Image,include:qx.ui.core.MPlacement,type:f,construct:function(){qx.ui.basic.Image.call(this);this.setZIndex(1e8);this.setDomMove(true);var h=this.getApplicationRoot();h.add(this,{left:-1000,top:-1000});},properties:{appearance:{refine:true,init:a},action:{check:[c,g,e],apply:b,nullable:true}},members:{_applyAction:function(j,i){if(i){this.removeState(i);};if(j){this.addState(j);};}}});})();(function(){var a="offline",b="qx.event.handler.Offline",c="online";qx.Class.define(b,{extend:qx.core.Object,implement:qx.event.IEventHandler,construct:function(d){qx.core.Object.call(this);this.__gi=d;this.__cx=d.getWindow();this._initObserver();},statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{online:true,offline:true},TARGET_CHECK:qx.event.IEventHandler.TARGET_WINDOW,IGNORE_CAN_HANDLE:true},members:{__gi:null,__cx:null,__hj:null,canHandleEvent:function(f,e){},registerEvent:function(i,h,g){},unregisterEvent:function(l,k,j){},_initObserver:function(){this.__hj=qx.lang.Function.listener(this._onNative,this);qx.bom.Event.addNativeListener(this.__cx,a,this.__hj);qx.bom.Event.addNativeListener(this.__cx,c,this.__hj);},_stopObserver:function(){qx.bom.Event.removeNativeListener(this.__cx,a,this.__hj);qx.bom.Event.removeNativeListener(this.__cx,c,this.__hj);},_onNative:qx.event.GlobalError.observeMethod(function(m){qx.event.Registration.fireEvent(this.__cx,m.type,qx.event.type.Event,[]);}),isOnline:function(){return !!this.__cx.navigator.onLine;}},destruct:function(){this.__gi=null;this._stopObserver();delete qx.event.handler.Appear.__instances[this.$$hash];},defer:function(n){qx.event.Registration.addHandler(n);}});})();(function(){var a="mshtml",b="engine.name",c="qx.bom.Element";qx.Class.define(c,{statics:{addListener:function(g,f,d,self,e){return qx.event.Registration.addListener(g,f,d,self,e);},removeListener:function(n,m,h,self,k){return qx.event.Registration.removeListener(n,m,h,self,k);},removeListenerById:function(o,p){return qx.event.Registration.removeListenerById(o,p);},hasListener:function(s,r,q){return qx.event.Registration.hasListener(s,r,q);},focus:function(t){qx.event.Registration.getManager(t).getHandler(qx.event.handler.Focus).focus(t);},blur:function(u){qx.event.Registration.getManager(u).getHandler(qx.event.handler.Focus).blur(u);},activate:function(v){qx.event.Registration.getManager(v).getHandler(qx.event.handler.Focus).activate(v);},deactivate:function(w){qx.event.Registration.getManager(w).getHandler(qx.event.handler.Focus).deactivate(w);},capture:function(y,x){qx.event.Registration.getManager(y).getDispatcher(qx.event.dispatch.MouseCapture).activateCapture(y,x);},releaseCapture:function(z){qx.event.Registration.getManager(z).getDispatcher(qx.event.dispatch.MouseCapture).releaseCapture(z);},clone:function(E,L){var C;if(L||((qx.core.Environment.get(b)==a)&&!qx.xml.Document.isXmlDocument(E))){var G=qx.event.Registration.getManager(E);var A=qx.dom.Hierarchy.getDescendants(E);A.push(E);};if((qx.core.Environment.get(b)==a)){for(var i=0,l=A.length;i<l;i++ ){G.toggleAttachedEvents(A[i],false);};};var C=E.cloneNode(true);if((qx.core.Environment.get(b)==a)){for(var i=0,l=A.length;i<l;i++ ){G.toggleAttachedEvents(A[i],true);};};if(L===true){var K=qx.dom.Hierarchy.getDescendants(C);K.push(C);var B,J,I,D;for(var i=0,H=A.length;i<H;i++ ){I=A[i];B=G.serializeListeners(I);if(B.length>0){J=K[i];for(var j=0,F=B.length;j<F;j++ ){D=B[j];G.addListener(J,D.type,D.handler,D.self,D.capture);};};};};return C;}}});})();(function(){var a="mshtml",b="engine.name",c="blur",d="losecapture",e="focus",f="click",g="qx.event.dispatch.MouseCapture",h="capture",i="scroll";qx.Class.define(g,{extend:qx.event.dispatch.AbstractBubbling,construct:function(j,k){qx.event.dispatch.AbstractBubbling.call(this,j);this.__cx=j.getWindow();this.__cz=k;j.addListener(this.__cx,c,this.releaseCapture,this);j.addListener(this.__cx,e,this.releaseCapture,this);j.addListener(this.__cx,i,this.releaseCapture,this);},statics:{PRIORITY:qx.event.Registration.PRIORITY_FIRST},members:{__cz:null,__li:null,__lj:true,__cx:null,_getParent:function(l){return l.parentNode;},canDispatchEvent:function(n,event,m){return !!(this.__li&&this.__lk[m]);},dispatchEvent:function(p,event,o){if(!qx.event.handler.MouseEmulation.ON){if(o==f){event.stopPropagation();this.releaseCapture();return;};};if(this.__lj||!qx.dom.Hierarchy.contains(this.__li,p)){p=this.__li;};qx.event.dispatch.AbstractBubbling.prototype.dispatchEvent.call(this,p,event,o);},__lk:{"mouseup":1,"mousedown":1,"click":1,"dblclick":1,"mousemove":1,"mouseout":1,"mouseover":1},activateCapture:function(r,q){var q=q!==false;if(this.__li===r&&this.__lj==q){return;};if(this.__li){this.releaseCapture();};this.nativeSetCapture(r,q);if(this.hasNativeCapture){var self=this;qx.bom.Event.addNativeListener(r,d,function(){qx.bom.Event.removeNativeListener(r,d,arguments.callee);self.releaseCapture();});};this.__lj=q;this.__li=r;this.__cz.fireEvent(r,h,qx.event.type.Event,[true,false]);},getCaptureElement:function(){return this.__li;},releaseCapture:function(){var s=this.__li;if(!s){return;};this.__li=null;this.__cz.fireEvent(s,d,qx.event.type.Event,[true,false]);this.nativeReleaseCapture(s);},hasNativeCapture:qx.core.Environment.get(b)==a,nativeSetCapture:qx.core.Environment.select(b,{"mshtml":function(u,t){u.setCapture(t!==false);},"default":(function(){})}),nativeReleaseCapture:qx.core.Environment.select(b,{"mshtml":function(v){v.releaseCapture();},"default":(function(){})})},destruct:function(){this.__li=this.__cx=this.__cz=null;},defer:function(w){qx.event.Registration.addDispatcher(w);}});})();(function(){var a="function",b="plugin.silverlight.version",c="Silverlight",d="Skype.Detection",f="QuickTimeCheckObject.QuickTimeCheck.1",g="Adobe Acrobat",h="plugin.windowsmedia",k="QuickTime",l="plugin.silverlight",m="pdf",n="wmv",o="qx.bom.client.Plugin",p="application/x-skype",q="plugin.divx",r="Chrome PDF Viewer",s="divx",t="Windows Media",u="",v="mshtml",w="skype.click2call",x="plugin.skype",y="plugin.gears",z="plugin.quicktime",A="plugin.windowsmedia.version",B="quicktime",C="DivX Web Player",D="AgControl.AgControl",E="Microsoft.XMLHTTP",F="silverlight",G="plugin.pdf",H="plugin.pdf.version",I="MSXML2.DOMDocument.6.0",J="WMPlayer.OCX.7",K="AcroPDF.PDF",L="plugin.activex",M="plugin.quicktime.version",N="plugin.divx.version",O="npdivx.DivXBrowserPlugin.1",P="object";qx.Bootstrap.define(o,{statics:{getGears:function(){return !!(window.google&&window.google.gears);},getActiveX:function(){if(typeof window.ActiveXObject===a){return true;};try{return (typeof (new window.ActiveXObject(E))===P||typeof (new window.ActiveXObject(I))===P);}catch(Q){return false;};},getSkype:function(){if(qx.bom.client.Plugin.getActiveX()){try{new ActiveXObject(d);return true;}catch(e){};};var R=navigator.mimeTypes;if(R){if(p in R){return true;};for(var i=0;i<R.length;i++ ){var S=R[i];if(S.type.indexOf(w)!=-1){return true;};};};return false;},__ll:{quicktime:{plugin:[k],control:f},wmv:{plugin:[t],control:J},divx:{plugin:[C],control:O},silverlight:{plugin:[c],control:D},pdf:{plugin:[r,g],control:K}},getQuicktimeVersion:function(){var T=qx.bom.client.Plugin.__ll[B];return qx.bom.client.Plugin.__lm(T.control,T.plugin);},getWindowsMediaVersion:function(){var U=qx.bom.client.Plugin.__ll[n];return qx.bom.client.Plugin.__lm(U.control,U.plugin);},getDivXVersion:function(){var V=qx.bom.client.Plugin.__ll[s];return qx.bom.client.Plugin.__lm(V.control,V.plugin);},getSilverlightVersion:function(){var W=qx.bom.client.Plugin.__ll[F];return qx.bom.client.Plugin.__lm(W.control,W.plugin);},getPdfVersion:function(){var X=qx.bom.client.Plugin.__ll[m];return qx.bom.client.Plugin.__lm(X.control,X.plugin);},getQuicktime:function(){var Y=qx.bom.client.Plugin.__ll[B];return qx.bom.client.Plugin.__ln(Y.control,Y.plugin);},getWindowsMedia:function(){var ba=qx.bom.client.Plugin.__ll[n];return qx.bom.client.Plugin.__ln(ba.control,ba.plugin);},getDivX:function(){var bb=qx.bom.client.Plugin.__ll[s];return qx.bom.client.Plugin.__ln(bb.control,bb.plugin);},getSilverlight:function(){var bc=qx.bom.client.Plugin.__ll[F];return qx.bom.client.Plugin.__ln(bc.control,bc.plugin);},getPdf:function(){var bd=qx.bom.client.Plugin.__ll[m];return qx.bom.client.Plugin.__ln(bd.control,bd.plugin);},__lm:function(bl,bh){var be=qx.bom.client.Plugin.__ln(bl,bh);if(!be){return u;};if(qx.bom.client.Engine.getName()==v){var bf=new ActiveXObject(bl);try{var bj=bf.versionInfo;if(bj!=undefined){return bj;};bj=bf.version;if(bj!=undefined){return bj;};bj=bf.settings.version;if(bj!=undefined){return bj;};}catch(bm){return u;};return u;}else {var bk=navigator.plugins;var bi=/([0-9]\.[0-9])/g;for(var i=0;i<bk.length;i++ ){var bg=bk[i];for(var j=0;j<bh.length;j++ ){if(bg.name.indexOf(bh[j])!==-1){if(bi.test(bg.name)||bi.test(bg.description)){return RegExp.$1;};};};};return u;};},__ln:function(bq,bo){if(qx.bom.client.Engine.getName()==v){var bn=window.ActiveXObject;if(!bn){return false;};try{new ActiveXObject(bq);}catch(br){return false;};return true;}else {var bp=navigator.plugins;if(!bp){return false;};var name;for(var i=0;i<bp.length;i++ ){name=bp[i].name;for(var j=0;j<bo.length;j++ ){if(name.indexOf(bo[j])!==-1){return true;};};};return false;};}},defer:function(bs){qx.core.Environment.add(y,bs.getGears);qx.core.Environment.add(z,bs.getQuicktime);qx.core.Environment.add(M,bs.getQuicktimeVersion);qx.core.Environment.add(h,bs.getWindowsMedia);qx.core.Environment.add(A,bs.getWindowsMediaVersion);qx.core.Environment.add(q,bs.getDivX);qx.core.Environment.add(N,bs.getDivXVersion);qx.core.Environment.add(l,bs.getSilverlight);qx.core.Environment.add(b,bs.getSilverlightVersion);qx.core.Environment.add(G,bs.getPdf);qx.core.Environment.add(H,bs.getPdfVersion);qx.core.Environment.add(L,bs.getActiveX);qx.core.Environment.add(x,bs.getSkype);}});})();(function(){var a='<\?xml version="1.0" encoding="utf-8"?>\n<',b="MSXML2.DOMDocument.3.0",c="qx.xml.Document",d="",e=" />",f="xml.domparser",g="SelectionLanguage",h="'",j="MSXML2.XMLHTTP.3.0",k="plugin.activex",m="No XML implementation available!",n="MSXML2.XMLHTTP.6.0",o="xml.implementation",p=" xmlns='",q="text/xml",r="XPath",s="MSXML2.DOMDocument.6.0",t="HTML";qx.Bootstrap.define(c,{statics:{DOMDOC:null,XMLHTTP:null,isXmlDocument:function(u){if(u.nodeType===9){return u.documentElement.nodeName!==t;}else if(u.ownerDocument){return this.isXmlDocument(u.ownerDocument);}else {return false;};},create:function(v,w){if(qx.core.Environment.get(k)){var x=new ActiveXObject(this.DOMDOC);if(this.DOMDOC==b){x.setProperty(g,r);};if(w){var y=a;y+=w;if(v){y+=p+v+h;};y+=e;x.loadXML(y);};return x;};if(qx.core.Environment.get(o)){return document.implementation.createDocument(v||d,w||d,null);};throw new Error(m);},fromString:function(A){if(qx.core.Environment.get(k)){var B=qx.xml.Document.create();B.loadXML(A);return B;};if(qx.core.Environment.get(f)){var z=new DOMParser();return z.parseFromString(A,q);};throw new Error(m);}},defer:function(D){if(qx.core.Environment.get(k)){var C=[s,b];var E=[n,j];for(var i=0,l=C.length;i<l;i++ ){try{new ActiveXObject(C[i]);new ActiveXObject(E[i]);}catch(F){continue;};D.DOMDOC=C[i];D.XMLHTTP=E[i];break;};};}});})();(function(){var a="function",b="xml.implementation",c="xml.attributens",d="xml.selectnodes",e="<a></a>",f="xml.getqualifieditem",g="SelectionLanguage",h="xml.getelementsbytagnamens",i="qx.bom.client.Xml",j="xml.domproperties",k="xml.selectsinglenode",l="1.0",m="xml.createnode",n="xml.domparser",o="getProperty",p="undefined",q="XML",r="string",s="xml.createelementns";qx.Bootstrap.define(i,{statics:{getImplementation:function(){return document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature(q,l);},getDomParser:function(){return typeof window.DOMParser!==p;},getSelectSingleNode:function(){return typeof qx.xml.Document.create().selectSingleNode!==p;},getSelectNodes:function(){return typeof qx.xml.Document.create().selectNodes!==p;},getElementsByTagNameNS:function(){return typeof qx.xml.Document.create().getElementsByTagNameNS!==p;},getDomProperties:function(){var t=qx.xml.Document.create();return (o in t&&typeof t.getProperty(g)===r);},getAttributeNS:function(){var u=qx.xml.Document.fromString(e).documentElement;return typeof u.getAttributeNS===a&&typeof u.setAttributeNS===a;},getCreateElementNS:function(){return typeof qx.xml.Document.create().createElementNS===a;},getCreateNode:function(){return typeof qx.xml.Document.create().createNode!==p;},getQualifiedItem:function(){var v=qx.xml.Document.fromString(e).documentElement;return typeof v.attributes.getQualifiedItem!==p;}},defer:function(w){qx.core.Environment.add(b,w.getImplementation);qx.core.Environment.add(n,w.getDomParser);qx.core.Environment.add(k,w.getSelectSingleNode);qx.core.Environment.add(d,w.getSelectNodes);qx.core.Environment.add(h,w.getElementsByTagNameNS);qx.core.Environment.add(j,w.getDomProperties);qx.core.Environment.add(c,w.getAttributeNS);qx.core.Environment.add(s,w.getCreateElementNS);qx.core.Environment.add(m,w.getCreateNode);qx.core.Environment.add(f,w.getQualifiedItem);}});})();(function(){var a="qx.event.type.Focus";qx.Class.define(a,{extend:qx.event.type.Event,members:{init:function(d,b,c){qx.event.type.Event.prototype.init.call(this,c,false);this._target=d;this._relatedTarget=b;return this;}}});})();(function(){var a="qx.ui.core.MChildrenHandling";qx.Mixin.define(a,{members:{getChildren:function(){return this._getChildren();},hasChildren:function(){return this._hasChildren();},indexOf:function(b){return this._indexOf(b);},add:function(d,c){this._add(d,c);},addAt:function(g,e,f){this._addAt(g,e,f);},addBefore:function(h,j,i){this._addBefore(h,j,i);},addAfter:function(m,k,l){this._addAfter(m,k,l);},remove:function(n){this._remove(n);},removeAt:function(o){return this._removeAt(o);},removeAll:function(){return this._removeAll();}},statics:{remap:function(p){p.getChildren=p._getChildren;p.hasChildren=p._hasChildren;p.indexOf=p._indexOf;p.add=p._add;p.addAt=p._addAt;p.addBefore=p._addBefore;p.addAfter=p._addAfter;p.remove=p._remove;p.removeAt=p._removeAt;p.removeAll=p._removeAll;}}});})();(function(){var a="qx.ui.container.Composite",b="addChildWidget",c="removeChildWidget",d="qx.event.type.Data";qx.Class.define(a,{extend:qx.ui.core.Widget,include:[qx.ui.core.MChildrenHandling,qx.ui.core.MLayoutHandling],construct:function(e){qx.ui.core.Widget.call(this);if(e!=null){this._setLayout(e);};},events:{addChildWidget:d,removeChildWidget:d},members:{_afterAddChild:function(f){this.fireNonBubblingEvent(b,qx.event.type.Data,[f]);},_afterRemoveChild:function(g){this.fireNonBubblingEvent(c,qx.event.type.Data,[g]);}},defer:function(h,i){qx.ui.core.MChildrenHandling.remap(i);qx.ui.core.MLayoutHandling.remap(i);}});})();(function(){var a="qx.ui.popup.Popup",b="visible",c="excluded",d="popup",e="Boolean";qx.Class.define(a,{extend:qx.ui.container.Composite,include:qx.ui.core.MPlacement,construct:function(f){qx.ui.container.Composite.call(this,f);this.initVisibility();},properties:{appearance:{refine:true,init:d},visibility:{refine:true,init:c},autoHide:{check:e,init:true}},members:{show:function(){if(this.getLayoutParent()==null){qx.core.Init.getApplication().getRoot().add(this);};qx.ui.container.Composite.prototype.show.call(this);},_applyVisibility:function(i,h){qx.ui.container.Composite.prototype._applyVisibility.call(this,i,h);var g=qx.ui.popup.Manager.getInstance();i===b?g.add(this):g.remove(this);}},destruct:function(){if(!qx.ui.popup.Manager.getInstance().isDisposed()){qx.ui.popup.Manager.getInstance().remove(this);};}});})();(function(){var a="__lo",b="blur",c="mousedown",d="singleton",f="qx.ui.popup.Manager";qx.Class.define(f,{type:d,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__lo=[];qx.event.Registration.addListener(document.documentElement,c,this.__lq,this,true);qx.bom.Element.addListener(window,b,this.hideAll,this);},members:{__lo:null,add:function(g){{};this.__lo.push(g);this.__lp();},remove:function(h){{};qx.lang.Array.remove(this.__lo,h);this.__lp();},hideAll:function(){var l=this.__lo.length,j={};while(l-- ){j=this.__lo[l];if(j.getAutoHide()){j.exclude();};};},__lp:function(){var k=1e7;for(var i=0;i<this.__lo.length;i++ ){this.__lo[i].setZIndex(k++ );};},__lq:function(e){var n=qx.ui.core.Widget.getWidgetByElement(e.getTarget());var o=this.__lo;for(var i=0;i<o.length;i++ ){var m=o[i];if(!m.getAutoHide()||n==m||qx.ui.core.Widget.contains(m,n)){continue;};m.exclude();};}},destruct:function(){qx.event.Registration.removeListener(document.documentElement,c,this.__lq,this,true);this._disposeArray(a);}});})();(function(){var a="_applyRich",b="qx.ui.tooltip.ToolTip",c="_applyIcon",d="tooltip",f="qx.ui.core.Widget",g="mouseover",h="Boolean",i="arrow",j="left",k="right",l="_applyLabel",m="Integer",n="_applyArrowPosition",o="String",p="atom";qx.Class.define(b,{extend:qx.ui.popup.Popup,construct:function(q,r){qx.ui.popup.Popup.call(this);this.setLayout(new qx.ui.layout.HBox());this._createChildControl(i);this._createChildControl(p);if(q!=null){this.setLabel(q);};if(r!=null){this.setIcon(r);};this.addListener(g,this._onMouseOver,this);},properties:{appearance:{refine:true,init:d},showTimeout:{check:m,init:700,themeable:true},hideTimeout:{check:m,init:4000,themeable:true},label:{check:o,nullable:true,apply:l},icon:{check:o,nullable:true,apply:c,themeable:true},rich:{check:h,init:false,apply:a},opener:{check:f,nullable:true},arrowPosition:{check:[j,k],init:j,themeable:true,apply:n}},members:{_forwardStates:{placementLeft:true},_createChildControlImpl:function(u,t){var s;switch(u){case p:s=new qx.ui.basic.Atom();this._add(s,{flex:1});break;case i:s=new qx.ui.basic.Image();this._add(s);};return s||qx.ui.popup.Popup.prototype._createChildControlImpl.call(this,u);},_onMouseOver:function(e){},_applyIcon:function(w,v){var x=this.getChildControl(p);w==null?x.resetIcon():x.setIcon(w);},_applyLabel:function(z,y){var A=this.getChildControl(p);z==null?A.resetLabel():A.setLabel(z);},_applyRich:function(C,B){var D=this.getChildControl(p);D.setRich(C);},_applyArrowPosition:function(F,E){this._getLayout().setReversed(F==j);}}});})();(function(){var a="Missing renderLayout() implementation!",b="abstract",c="It is not possible to manually set the connected widget.",d="qx.ui.layout.Abstract",e="Missing getHeightForWidth() implementation!";qx.Class.define(d,{type:b,extend:qx.core.Object,members:{__fa:null,_invalidChildrenCache:null,__lr:null,invalidateLayoutCache:function(){this.__fa=null;},renderLayout:function(g,h,f){this.warn(a);},getSizeHint:function(){if(this.__fa){return this.__fa;};return this.__fa=this._computeSizeHint();},hasHeightForWidth:function(){return false;},getHeightForWidth:function(i){this.warn(e);return null;},_computeSizeHint:function(){return null;},invalidateChildrenCache:function(){this._invalidChildrenCache=true;},verifyLayoutProperty:null,_clearSeparators:function(){var j=this.__lr;if(j instanceof qx.ui.core.LayoutItem){j.clearSeparators();};},_renderSeparator:function(k,l){this.__lr.renderSeparator(k,l);},connectToWidget:function(m){if(m&&this.__lr){throw new Error(c);};this.__lr=m;this.invalidateChildrenCache();},_getWidget:function(){return this.__lr;},_applyLayoutChange:function(){if(this.__lr){this.__lr.scheduleLayoutUpdate();};},_getLayoutChildren:function(){return this.__lr.getLayoutChildren();}},destruct:function(){this.__lr=this.__fa=null;}});})();(function(){var a="Decorator",b="middle",c="_applyLayoutChange",d="_applyReversed",e="bottom",f="center",g="Boolean",h="top",j="left",k="right",m="Integer",n="qx.ui.layout.HBox";qx.Class.define(n,{extend:qx.ui.layout.Abstract,construct:function(o,p,q){qx.ui.layout.Abstract.call(this);if(o){this.setSpacing(o);};if(p){this.setAlignX(p);};if(q){this.setSeparator(q);};},properties:{alignX:{check:[j,f,k],init:j,apply:c},alignY:{check:[h,b,e],init:h,apply:c},spacing:{check:m,init:0,apply:c},separator:{check:a,nullable:true,apply:c},reversed:{check:g,init:false,apply:d}},members:{__ls:null,__lt:null,__lu:null,__gE:null,_applyReversed:function(){this._invalidChildrenCache=true;this._applyLayoutChange();},__lv:function(){var w=this._getLayoutChildren();var length=w.length;var t=false;var r=this.__ls&&this.__ls.length!=length&&this.__lt&&this.__ls;var u;var s=r?this.__ls:new Array(length);var v=r?this.__lt:new Array(length);if(this.getReversed()){w=w.concat().reverse();};for(var i=0;i<length;i++ ){u=w[i].getLayoutProperties();if(u.width!=null){s[i]=parseFloat(u.width)/100;};if(u.flex!=null){v[i]=u.flex;t=true;}else {v[i]=0;};};if(!r){this.__ls=s;this.__lt=v;};this.__lu=t;this.__gE=w;delete this._invalidChildrenCache;},verifyLayoutProperty:null,renderLayout:function(N,H,M){if(this._invalidChildrenCache){this.__lv();};var D=this.__gE;var length=D.length;var P=qx.ui.layout.Util;var L=this.getSpacing();var R=this.getSeparator();if(R){var A=P.computeHorizontalSeparatorGaps(D,L,R);}else {var A=P.computeHorizontalGaps(D,L,true);};var i,O,J,I;var Q=[];var E=A;for(i=0;i<length;i+=1){I=this.__ls[i];J=I!=null?Math.floor((N-A)*I):D[i].getSizeHint().width;Q.push(J);E+=J;};if(this.__lu&&E!=N){var G={};var K,y;for(i=0;i<length;i+=1){K=this.__lt[i];if(K>0){F=D[i].getSizeHint();G[i]={min:F.minWidth,value:Q[i],max:F.maxWidth,flex:K};};};var B=P.computeFlexOffsets(G,N,E);for(i in B){y=B[i].offset;Q[i]+=y;E+=y;};};var V=D[0].getMarginLeft();if(E<N&&this.getAlignX()!=j){V=N-E;if(this.getAlignX()===f){V=Math.round(V/2);};};var F,top,z,J,C,T,x;var L=this.getSpacing();this._clearSeparators();if(R){var S=qx.theme.manager.Decoration.getInstance().resolve(R).getInsets();var U=S.left+S.right;};for(i=0;i<length;i+=1){O=D[i];J=Q[i];F=O.getSizeHint();T=O.getMarginTop();x=O.getMarginBottom();z=Math.max(F.minHeight,Math.min(H-T-x,F.maxHeight));top=P.computeVerticalAlignOffset(O.getAlignY()||this.getAlignY(),z,H,T,x);if(i>0){if(R){V+=C+L;this._renderSeparator(R,{left:V+M.left,top:M.top,width:U,height:H});V+=U+L+O.getMarginLeft();}else {V+=P.collapseMargins(L,C,O.getMarginLeft());};};O.renderLayout(V+M.left,top+M.top,J,z);V+=J;C=O.getMarginRight();};},_computeSizeHint:function(){if(this._invalidChildrenCache){this.__lv();};var bl=qx.ui.layout.Util;var X=this.__gE;var bd=0,be=0,W=0;var bb=0,bc=0;var bi,Y,bk;for(var i=0,l=X.length;i<l;i+=1){bi=X[i];Y=bi.getSizeHint();be+=Y.width;var bh=this.__lt[i];var ba=this.__ls[i];if(bh){bd+=Y.minWidth;}else if(ba){W=Math.max(W,Math.round(Y.minWidth/ba));}else {bd+=Y.width;};bk=bi.getMarginTop()+bi.getMarginBottom();if((Y.height+bk)>bc){bc=Y.height+bk;};if((Y.minHeight+bk)>bb){bb=Y.minHeight+bk;};};bd+=W;var bg=this.getSpacing();var bj=this.getSeparator();if(bj){var bf=bl.computeHorizontalSeparatorGaps(X,bg,bj);}else {var bf=bl.computeHorizontalGaps(X,bg,true);};return {minWidth:bd+bf,width:be+bf,minHeight:bb,height:bc};}},destruct:function(){this.__ls=this.__lt=this.__gE=null;}});})();(function(){var a="middle",b="qx.ui.layout.Util",c="left",d="center",e="top",f="bottom",g="right";qx.Class.define(b,{statics:{PERCENT_VALUE:/[0-9]+(?:\.[0-9]+)?%/,computeFlexOffsets:function(j,n,h){var r,q,s,k;var m=n>h;var t=Math.abs(n-h);var u,o;var p={};for(q in j){r=j[q];p[q]={potential:m?r.max-r.value:r.value-r.min,flex:m?r.flex:1/r.flex,offset:0};};while(t!=0){k=Infinity;s=0;for(q in p){r=p[q];if(r.potential>0){s+=r.flex;k=Math.min(k,r.potential/r.flex);};};if(s==0){break;};k=Math.min(t,k*s)/s;u=0;for(q in p){r=p[q];if(r.potential>0){o=Math.min(t,r.potential,Math.ceil(k*r.flex));u+=o-k*r.flex;if(u>=1){u-=1;o-=1;};r.potential-=o;if(m){r.offset+=o;}else {r.offset-=o;};t-=o;};};};return p;},computeHorizontalAlignOffset:function(w,v,y,z,A){if(z==null){z=0;};if(A==null){A=0;};var x=0;switch(w){case c:x=z;break;case g:x=y-v-A;break;case d:x=Math.round((y-v)/2);if(x<z){x=z;}else if(x<A){x=Math.max(z,y-v-A);};break;};return x;},computeVerticalAlignOffset:function(C,F,B,G,D){if(G==null){G=0;};if(D==null){D=0;};var E=0;switch(C){case e:E=G;break;case f:E=B-F-D;break;case a:E=Math.round((B-F)/2);if(E<G){E=G;}else if(E<D){E=Math.max(G,B-F-D);};break;};return E;},collapseMargins:function(K){var I=0,H=0;for(var i=0,l=arguments.length;i<l;i++ ){var J=arguments[i];if(J<0){H=Math.min(H,J);}else if(J>0){I=Math.max(I,J);};};return I+H;},computeHorizontalGaps:function(O,M,L){if(M==null){M=0;};var N=0;if(L){N+=O[0].getMarginLeft();for(var i=1,l=O.length;i<l;i+=1){N+=this.collapseMargins(M,O[i-1].getMarginRight(),O[i].getMarginLeft());};N+=O[l-1].getMarginRight();}else {for(var i=1,l=O.length;i<l;i+=1){N+=O[i].getMarginLeft()+O[i].getMarginRight();};N+=(M*(l-1));};return N;},computeVerticalGaps:function(S,Q,P){if(Q==null){Q=0;};var R=0;if(P){R+=S[0].getMarginTop();for(var i=1,l=S.length;i<l;i+=1){R+=this.collapseMargins(Q,S[i-1].getMarginBottom(),S[i].getMarginTop());};R+=S[l-1].getMarginBottom();}else {for(var i=1,l=S.length;i<l;i+=1){R+=S[i].getMarginTop()+S[i].getMarginBottom();};R+=(Q*(l-1));};return R;},computeHorizontalSeparatorGaps:function(bb,U,Y){var T=qx.theme.manager.Decoration.getInstance().resolve(Y);var V=T.getInsets();var W=V.left+V.right;var X=0;for(var i=0,l=bb.length;i<l;i++ ){var ba=bb[i];X+=ba.getMarginLeft()+ba.getMarginRight();};X+=(U+W+U)*(l-1);return X;},computeVerticalSeparatorGaps:function(bj,bc,bh){var bf=qx.theme.manager.Decoration.getInstance().resolve(bh);var be=bf.getInsets();var bd=be.top+be.bottom;var bg=0;for(var i=0,l=bj.length;i<l;i++ ){var bi=bj[i];bg+=bi.getMarginTop()+bi.getMarginBottom();};bg+=(bc+bd+bc)*(l-1);return bg;},arrangeIdeals:function(bl,bn,bk,bm,bo,bp){if(bn<bl||bo<bm){if(bn<bl&&bo<bm){bn=bl;bo=bm;}else if(bn<bl){bo-=(bl-bn);bn=bl;if(bo<bm){bo=bm;};}else if(bo<bm){bn-=(bm-bo);bo=bm;if(bn<bl){bn=bl;};};};if(bn>bk||bo>bp){if(bn>bk&&bo>bp){bn=bk;bo=bp;}else if(bn>bk){bo+=(bn-bk);bn=bk;if(bo>bp){bo=bp;};}else if(bo>bp){bn+=(bo-bp);bo=bp;if(bn>bk){bn=bk;};};};return {begin:bn,end:bo};}}});})();(function(){var a="Boolean",b="changeGap",c="changeShow",d="bottom",e="bottom-right",f="_applyCenter",g="changeIcon",h="qx.ui.basic.Atom",i="changeLabel",j="both",k="Integer",l="_applyIconPosition",m="bottom-left",n="String",o="icon",p="top-left",q="top",r="top-right",s="right",t="_applyRich",u="_applyIcon",v="label",w="_applyShow",x="left",y="_applyLabel",z="_applyGap",A="atom";qx.Class.define(h,{extend:qx.ui.core.Widget,construct:function(B,C){{};qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.Atom());if(B!=null){this.setLabel(B);};if(C!==undefined){this.setIcon(C);};},properties:{appearance:{refine:true,init:A},label:{apply:y,nullable:true,check:n,event:i},rich:{check:a,init:false,apply:t},icon:{check:n,apply:u,nullable:true,themeable:true,event:g},gap:{check:k,nullable:false,event:b,apply:z,themeable:true,init:4},show:{init:j,check:[j,v,o],themeable:true,inheritable:true,apply:w,event:c},iconPosition:{init:x,check:[q,s,d,x,p,m,r,e],themeable:true,apply:l},center:{init:false,check:a,themeable:true,apply:f}},members:{_createChildControlImpl:function(F,E){var D;switch(F){case v:D=new qx.ui.basic.Label(this.getLabel());D.setAnonymous(true);D.setRich(this.getRich());this._add(D);if(this.getLabel()==null||this.getShow()===o){D.exclude();};break;case o:D=new qx.ui.basic.Image(this.getIcon());D.setAnonymous(true);this._addAt(D,0);if(this.getIcon()==null||this.getShow()===v){D.exclude();};break;};return D||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,F);},_forwardStates:{focused:true,hovered:true},_handleLabel:function(){if(this.getLabel()==null||this.getShow()===o){this._excludeChildControl(v);}else {this._showChildControl(v);};},_handleIcon:function(){if(this.getIcon()==null||this.getShow()===v){this._excludeChildControl(o);}else {this._showChildControl(o);};},_applyLabel:function(H,G){var I=this.getChildControl(v,true);if(I){I.setValue(H);};this._handleLabel();},_applyRich:function(K,J){var L=this.getChildControl(v,true);if(L){L.setRich(K);};},_applyIcon:function(N,M){var O=this.getChildControl(o,true);if(O){O.setSource(N);};this._handleIcon();},_applyGap:function(Q,P){this._getLayout().setGap(Q);},_applyShow:function(S,R){this._handleLabel();this._handleIcon();},_applyIconPosition:function(U,T){this._getLayout().setIconPosition(U);},_applyCenter:function(W,V){this._getLayout().setCenter(W);},_applySelectable:function(Y,X){qx.ui.core.Widget.prototype._applySelectable.call(this,Y,X);var ba=this.getChildControl(v,true);if(ba){this.getChildControl(v).setSelectable(Y);};}}});})();(function(){var a="middle",b="_applyLayoutChange",c="top-right",d="bottom",e="top-left",f="bottom-left",g="center",h="qx.ui.layout.Atom",j="bottom-right",k="top",l="left",m="right",n="Integer",o="Boolean";qx.Class.define(h,{extend:qx.ui.layout.Abstract,properties:{gap:{check:n,init:4,apply:b},iconPosition:{check:[l,k,m,d,e,f,c,j],init:l,apply:b},center:{check:o,init:false,apply:b}},members:{verifyLayoutProperty:null,renderLayout:function(E,y,D){var N=D.left;var top=D.top;var z=qx.ui.layout.Util;var q=this.getIconPosition();var t=this._getLayoutChildren();var length=t.length;var M,r;var G,x;var C=this.getGap();var J=this.getCenter();var L=[d,m,c,j];if(L.indexOf(q)!=-1){var A=length-1;var v=-1;var s=-1;}else {var A=0;var v=length;var s=1;};if(q==k||q==d){if(J){var F=0;for(var i=A;i!=v;i+=s){r=t[i].getSizeHint().height;if(r>0){F+=r;if(i!=A){F+=C;};};};top+=Math.round((y-F)/2);};var u=top;for(var i=A;i!=v;i+=s){G=t[i];x=G.getSizeHint();M=Math.min(x.maxWidth,Math.max(E,x.minWidth));r=x.height;N=z.computeHorizontalAlignOffset(g,M,E)+D.left;G.renderLayout(N,u,M,r);if(r>0){u=top+r+C;};};}else {var w=E;var p=null;var I=0;for(var i=A;i!=v;i+=s){G=t[i];M=G.getSizeHint().width;if(M>0){if(!p&&G instanceof qx.ui.basic.Label){p=G;}else {w-=M;};I++ ;};};if(I>1){var H=(I-1)*C;w-=H;};if(p){var x=p.getSizeHint();var B=Math.max(x.minWidth,Math.min(w,x.maxWidth));w-=B;};if(J&&w>0){N+=Math.round(w/2);};for(var i=A;i!=v;i+=s){G=t[i];x=G.getSizeHint();r=Math.min(x.maxHeight,Math.max(y,x.minHeight));if(G===p){M=B;}else {M=x.width;};var K=a;if(q==e||q==c){K=k;}else if(q==f||q==j){K=d;};var u=top+z.computeVerticalAlignOffset(K,x.height,y);G.renderLayout(N,u,M,r);if(M>0){N+=M+C;};};};},_computeSizeHint:function(){var Y=this._getLayoutChildren();var length=Y.length;var P,W;if(length===1){var P=Y[0].getSizeHint();W={width:P.width,height:P.height,minWidth:P.minWidth,minHeight:P.minHeight};}else {var U=0,V=0;var R=0,T=0;var S=this.getIconPosition();var Q=this.getGap();if(S===k||S===d){var O=0;for(var i=0;i<length;i++ ){P=Y[i].getSizeHint();V=Math.max(V,P.width);U=Math.max(U,P.minWidth);if(P.height>0){T+=P.height;R+=P.minHeight;O++ ;};};if(O>1){var X=(O-1)*Q;T+=X;R+=X;};}else {var O=0;for(var i=0;i<length;i++ ){P=Y[i].getSizeHint();T=Math.max(T,P.height);R=Math.max(R,P.minHeight);if(P.width>0){V+=P.width;U+=P.minWidth;O++ ;};};if(O>1){var X=(O-1)*Q;V+=X;U+=X;};};W={minWidth:U,width:V,minHeight:R,height:T};};return W;}}});})();(function(){var a="qx.event.type.Data",b="qx.ui.form.IStringForm";qx.Interface.define(b,{events:{"changeValue":a},members:{setValue:function(c){return arguments.length==1;},resetValue:function(){},getValue:function(){}}});})();(function(){var a="os.name",b="_applyTextAlign",c="Boolean",d="qx.ui.core.Widget",f="nowrap",g="changeStatus",h="changeTextAlign",i="_applyWrap",j="changeValue",k="color",l="qx.ui.basic.Label",m="osx",n="css.textoverflow",o="html.xul",p="_applyValue",q="center",r="_applyBuddy",s="enabled",t="String",u="toggleValue",v="whiteSpace",w="textAlign",x="function",y="qx.dynlocale",z="engine.version",A="right",B="gecko",C="justify",D="changeRich",E="normal",F="_applyRich",G="engine.name",H="click",I="label",J="changeLocale",K="left",L="A";qx.Class.define(l,{extend:qx.ui.core.Widget,implement:[qx.ui.form.IStringForm],construct:function(M){qx.ui.core.Widget.call(this);if(M!=null){this.setValue(M);};if(qx.core.Environment.get(y)){qx.locale.Manager.getInstance().addListener(J,this._onChangeLocale,this);};},properties:{rich:{check:c,init:false,event:D,apply:F},wrap:{check:c,init:true,apply:i},value:{check:t,apply:p,event:j,nullable:true},buddy:{check:d,apply:r,nullable:true,init:null,dereference:true},textAlign:{check:[K,q,A,C],nullable:true,themeable:true,apply:b,event:h},appearance:{refine:true,init:I},selectable:{refine:true,init:false},allowGrowX:{refine:true,init:false},allowGrowY:{refine:true,init:false},allowShrinkY:{refine:true,init:false}},members:{__lw:null,__lx:null,__ly:null,__lz:null,__lA:null,_getContentHint:function(){if(this.__lx){this.__lB=this.__lC();delete this.__lx;};return {width:this.__lB.width,height:this.__lB.height};},_hasHeightForWidth:function(){return this.getRich()&&this.getWrap();},_applySelectable:function(N){if(!qx.core.Environment.get(n)&&qx.core.Environment.get(o)){if(N&&!this.isRich()){{};return;};};qx.ui.core.Widget.prototype._applySelectable.call(this,N);},_getContentHeightForWidth:function(O){if(!this.getRich()&&!this.getWrap()){return null;};return this.__lC(O).height;},_createContentElement:function(){return new qx.html.Label;},_applyTextAlign:function(Q,P){this.getContentElement().setStyle(w,Q);},_applyTextColor:function(S,R){if(S){this.getContentElement().setStyle(k,qx.theme.manager.Color.getInstance().resolve(S));}else {this.getContentElement().removeStyle(k);};},__lB:{width:0,height:0},_applyFont:function(V,U){if(U&&this.__lw&&this.__lA){this.__lw.removeListenerById(this.__lA);this.__lA=null;};var T;if(V){this.__lw=qx.theme.manager.Font.getInstance().resolve(V);if(this.__lw instanceof qx.bom.webfonts.WebFont){this.__lA=this.__lw.addListener(g,this._onWebFontStatusChange,this);};T=this.__lw.getStyles();}else {this.__lw=null;T=qx.bom.Font.getDefaultStyles();};if(this.getTextColor()!=null){delete T[k];};this.getContentElement().setStyles(T);this.__lx=true;qx.ui.core.queue.Layout.add(this);},__lC:function(Y){var X=qx.bom.Label;var bb=this.getFont();var W=bb?this.__lw.getStyles():qx.bom.Font.getDefaultStyles();var content=this.getValue()||L;var ba=this.getRich();if(this.__lA){this.__lD();};return ba?X.getHtmlSize(content,W,Y):X.getTextSize(content,W);},__lD:function(){if(!this.getContentElement()){return;};if(qx.core.Environment.get(a)==m&&qx.core.Environment.get(G)==B&&parseInt(qx.core.Environment.get(z),10)<16&&parseInt(qx.core.Environment.get(z),10)>9){var bc=this.getContentElement().getDomElement();if(bc){bc.innerHTML=bc.innerHTML;};};},_applyBuddy:function(be,bd){if(bd!=null){bd.removeBinding(this.__ly);this.__ly=null;this.removeListenerById(this.__lz);this.__lz=null;};if(be!=null){this.__ly=be.bind(s,this,s);this.__lz=this.addListener(H,function(){if(be.isFocusable()){be.focus.apply(be);};if(u in be&&typeof be.toggleValue===x){be.toggleValue();};},this);};},_applyRich:function(bf){this.getContentElement().setRich(bf);this.__lx=true;qx.ui.core.queue.Layout.add(this);},_applyWrap:function(bi,bg){if(bi&&!this.isRich()){{};};if(this.isRich()){var bh=bi?E:f;this.getContentElement().setStyle(v,bh);};},_onChangeLocale:qx.core.Environment.select(y,{"true":function(e){var content=this.getValue();if(content&&content.translate){this.setValue(content.translate());};},"false":null}),_onWebFontStatusChange:function(bj){if(bj.getData().valid===true){this.__lx=true;qx.ui.core.queue.Layout.add(this);};},_applyValue:function(bl,bk){this.getContentElement().setValue(bl);this.__lx=true;qx.ui.core.queue.Layout.add(this);}},destruct:function(){if(qx.core.Environment.get(y)){qx.locale.Manager.getInstance().removeListener(J,this._onChangeLocale,this);};if(this.__ly!=null){var bm=this.getBuddy();if(bm!=null&&!bm.isDisposed()){bm.removeBinding(this.__ly);};};if(this.__lw&&this.__lA){this.__lw.removeListenerById(this.__lA);};this.__lw=this.__ly=null;}});})();(function(){var a="value",b="qx.html.Label",c="The label mode cannot be modified after initial creation";qx.Class.define(b,{extend:qx.html.Element,members:{__lE:null,_applyProperty:function(name,d){qx.html.Element.prototype._applyProperty.call(this,name,d);if(name==a){var e=this.getDomElement();qx.bom.Label.setValue(e,d);};},_createDomElement:function(){var g=this.__lE;var f=qx.bom.Label.create(this._content,g);return f;},_copyData:function(h){return qx.html.Element.prototype._copyData.call(this,true);},setRich:function(i){var j=this.getDomElement();if(j){throw new Error(c);};i=!!i;if(this.__lE==i){return this;};this.__lE=i;return this;},setValue:function(k){this._setProperty(a,k);return this;},getValue:function(){return this._getProperty(a);}}});})();(function(){var a="text",b="px",c="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",d="crop",e="nowrap",f="gecko",g="end",h="div",i="browser.name",j="100%",k="auto",l="0",m="css.textoverflow",n="html.xul",o="chrome",p="value",q="visible",r="qx.bom.Label",s="safari",t="",u="ellipsis",v="browser.version",w="engine.version",x="normal",y="mshtml",z="engine.name",A="inherit",B="block",C="label",D="-1000px",E="hidden",F="absolute";qx.Bootstrap.define(r,{statics:{__lF:{fontFamily:1,fontSize:1,fontWeight:1,fontStyle:1,lineHeight:1},__lG:function(){var G=this.__lI(false);document.body.insertBefore(G,document.body.firstChild);return this._textElement=G;},__lH:function(){var H=this.__lI(true);document.body.insertBefore(H,document.body.firstChild);return this._htmlElement=H;},__lI:function(K){var I=qx.dom.Element.create(h);var J=I.style;J.width=J.height=k;J.left=J.top=D;J.visibility=E;J.position=F;J.overflow=q;J.display=B;if(K){J.whiteSpace=x;}else {J.whiteSpace=e;if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){var L=document.createElementNS(c,C);var J=L.style;J.padding=l;J.margin=l;J.width=k;for(var M in this.__lF){J[M]=A;};I.appendChild(L);};};return I;},__lJ:function(O){var N={};if(O){N.whiteSpace=x;}else if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){N.display=B;}else {N.overflow=E;N.whiteSpace=e;N[qx.core.Environment.get(m)]=u;};return N;},create:function(content,S,R){if(!R){R=window;};var P=R.document.createElement(h);if(S){P.useHtml=true;}else if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){var T=R.document.createElementNS(c,C);var Q=T.style;Q.cursor=A;Q.color=A;Q.overflow=E;Q.maxWidth=j;Q.padding=l;Q.margin=l;Q.width=k;for(var U in this.__lF){T.style[U]=A;};T.setAttribute(d,g);P.appendChild(T);}else {qx.bom.element.Style.setStyles(P,this.__lJ(S));};if(content){this.setValue(P,content);};return P;},setValue:function(W,V){V=V||t;if(W.useHtml){W.innerHTML=V;}else if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){W.firstChild.setAttribute(p,V);}else {qx.bom.element.Attribute.set(W,a,V);};},getValue:function(X){if(X.useHtml){return X.innerHTML;}else if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){return X.firstChild.getAttribute(p)||t;}else {return qx.bom.element.Attribute.get(X,a);};},getHtmlSize:function(content,Y,ba){var bb=this._htmlElement||this.__lH();bb.style.width=ba!=undefined?ba+b:k;bb.innerHTML=content;return this.__lK(bb,Y);},getTextSize:function(bd,bc){var be=this._textElement||this.__lG();if(!qx.core.Environment.get(m)&&qx.core.Environment.get(n)){be.firstChild.setAttribute(p,bd);}else {qx.bom.element.Attribute.set(be,a,bd);};return this.__lK(be,bc);},__lK:function(bj,bf){var bg=this.__lF;if(!bf){bf={};};for(var bi in bg){bj.style[bi]=bf[bi]||t;};var bh=qx.bom.element.Dimension.getSize(bj);if((qx.core.Environment.get(z)==f)){bh.width++ ;};if((qx.core.Environment.get(z)==y)&&parseFloat(qx.core.Environment.get(w))>=9){bh.width++ ;};if(qx.core.Environment.get(i)==o&&parseFloat(qx.core.Environment.get(v))>=22){bh.width++ ;};if(qx.core.Environment.get(i)==s&&parseFloat(qx.core.Environment.get(v))>=6){bh.width++ ;};return bh;}}});})();(function(){var a="qx.ui.form.IForm",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeEnabled":b,"changeValid":b,"changeInvalidMessage":b,"changeRequired":b},members:{setEnabled:function(c){return arguments.length==1;},getEnabled:function(){},setRequired:function(d){return arguments.length==1;},getRequired:function(){},setValid:function(e){return arguments.length==1;},getValid:function(){},setInvalidMessage:function(f){return arguments.length==1;},getInvalidMessage:function(){},setRequiredInvalidMessage:function(g){return arguments.length==1;},getRequiredInvalidMessage:function(){}}});})();(function(){var a="qx.application.Standalone";qx.Class.define(a,{extend:qx.application.AbstractGui,members:{_createRootWidget:function(){return new qx.ui.root.Application(document);}}});})();(function(){var a="_applyActiveWindow",b="changeModal",c="changeVisibility",d="__gi",f="__lL",g="changeActive",h="qx.ui.window.MDesktop",i="qx.ui.window.Window";qx.Mixin.define(h,{properties:{activeWindow:{check:i,apply:a,init:null,nullable:true}},members:{__lL:null,__gi:null,getWindowManager:function(){if(!this.__gi){this.setWindowManager(new qx.ui.window.Window.DEFAULT_MANAGER_CLASS());};return this.__gi;},supportsMaximize:function(){return true;},setWindowManager:function(j){if(this.__gi){this.__gi.setDesktop(null);};j.setDesktop(this);this.__gi=j;},_onChangeActive:function(e){if(e.getData()){this.setActiveWindow(e.getTarget());}else if(this.getActiveWindow()==e.getTarget()){this.setActiveWindow(null);};},_applyActiveWindow:function(l,k){this.getWindowManager().changeActiveWindow(l,k);this.getWindowManager().updateStack();},_onChangeModal:function(e){this.getWindowManager().updateStack();},_onChangeVisibility:function(){this.getWindowManager().updateStack();},_afterAddChild:function(m){if(qx.Class.isDefined(i)&&m instanceof qx.ui.window.Window){this._addWindow(m);};},_addWindow:function(n){if(!qx.lang.Array.contains(this.getWindows(),n)){this.getWindows().push(n);n.addListener(g,this._onChangeActive,this);n.addListener(b,this._onChangeModal,this);n.addListener(c,this._onChangeVisibility,this);};if(n.getActive()){this.setActiveWindow(n);};this.getWindowManager().updateStack();},_afterRemoveChild:function(o){if(qx.Class.isDefined(i)&&o instanceof qx.ui.window.Window){this._removeWindow(o);};},_removeWindow:function(p){qx.lang.Array.remove(this.getWindows(),p);p.removeListener(g,this._onChangeActive,this);p.removeListener(b,this._onChangeModal,this);p.removeListener(c,this._onChangeVisibility,this);this.getWindowManager().updateStack();},getWindows:function(){if(!this.__lL){this.__lL=[];};return this.__lL;}},destruct:function(){this._disposeArray(f);this._disposeObjects(d);}});})();(function(){var a="qx.ui.window.IWindowManager";qx.Interface.define(a,{members:{setDesktop:function(b){this.assertInterface(b,qx.ui.window.IDesktop);},changeActiveWindow:function(c,d){},updateStack:function(){},bringToFront:function(e){this.assertInstance(e,qx.ui.window.Window);},sendToBack:function(f){this.assertInstance(f,qx.ui.window.Window);}}});})();(function(){var a="qx.ui.window.IDesktop";qx.Interface.define(a,{members:{setWindowManager:function(b){this.assertInterface(b,qx.ui.window.IWindowManager);},getWindows:function(){},supportsMaximize:function(){},blockContent:function(c){this.assertInteger(c);},unblock:function(){},isBlocked:function(){}}});})();(function(){var a="__lM",b="qx.ui.window.Manager";qx.Class.define(b,{extend:qx.core.Object,implement:qx.ui.window.IWindowManager,members:{__lM:null,setDesktop:function(c){this.__lM=c;this.updateStack();},getDesktop:function(){return this.__lM;},changeActiveWindow:function(d,e){if(d){this.bringToFront(d);d.setActive(true);};if(e){e.resetActive();};},_minZIndex:1e5,updateStack:function(){qx.ui.core.queue.Widget.add(this);},syncWidget:function(){this.__lM.forceUnblock();var h=this.__lM.getWindows();var g=this._minZIndex;var m=g+h.length*2;var j=g+h.length*4;var k=null;for(var i=0,l=h.length;i<l;i++ ){var f=h[i];if(!f.isVisible()){continue;};k=k||f;if(f.isModal()){f.setZIndex(j);this.__lM.blockContent(j-1);j+=2;k=f;}else if(f.isAlwaysOnTop()){f.setZIndex(m);m+=2;}else {f.setZIndex(g);g+=2;};if(!k.isModal()&&f.isActive()||f.getZIndex()>k.getZIndex()){k=f;};};this.__lM.setActiveWindow(k);},bringToFront:function(o){var n=this.__lM.getWindows();var p=qx.lang.Array.remove(n,o);if(p){n.push(o);this.updateStack();};},sendToBack:function(r){var q=this.__lM.getWindows();var s=qx.lang.Array.remove(q,r);if(s){q.unshift(r);this.updateStack();};}},destruct:function(){this._disposeObjects(a);}});})();(function(){var a="indexOf",b="addAfter",c="add",d="addBefore",e="_",f="addAt",g="hasChildren",h="removeAt",i="removeAll",j="getChildren",k="remove",l="qx.ui.core.MRemoteChildrenHandling";qx.Mixin.define(l,{members:{__lN:function(q,m,o,n){var p=this.getChildrenContainer();if(p===this){q=e+q;};return (p[q])(m,o,n);},getChildren:function(){return this.__lN(j);},hasChildren:function(){return this.__lN(g);},add:function(s,r){return this.__lN(c,s,r);},remove:function(t){return this.__lN(k,t);},removeAll:function(){return this.__lN(i);},indexOf:function(u){return this.__lN(a,u);},addAt:function(x,v,w){this.__lN(f,x,v,w);},addBefore:function(y,A,z){this.__lN(d,y,A,z);},addAfter:function(D,B,C){this.__lN(b,D,B,C);},removeAt:function(E){return this.__lN(h,E);}}});})();(function(){var a="qx.ui.core.MRemoteLayoutHandling";qx.Mixin.define(a,{members:{setLayout:function(b){this.getChildrenContainer().setLayout(b);},getLayout:function(){return this.getChildrenContainer().getLayout();}}});})();(function(){var a="__lO",b="mouseup",c="mousedown",d="Boolean",f="losecapture",g="mousewheel",h="qx.ui.core.MMovable",i="The move handle could not be redefined!",j="mousemove",k="move",l="maximized",m="__lP",n="move-frame";qx.Mixin.define(h,{properties:{movable:{check:d,init:true},useMoveFrame:{check:d,init:false}},members:{__lO:null,__lP:null,__lQ:null,__lR:null,__lS:null,__lT:null,__lU:null,__lV:false,__lW:null,__lX:0,_activateMoveHandle:function(o){if(this.__lO){throw new Error(i);};this.__lO=o;o.addListener(c,this._onMoveMouseDown,this);o.addListener(b,this._onMoveMouseUp,this);o.addListener(j,this._onMoveMouseMove,this);o.addListener(f,this.__mc,this);if(qx.event.handler.MouseEmulation.ON){o.addListener(g,function(e){e.stopPropagation();},this);};},__lY:function(){var p=this.__lP;if(!p){p=this.__lP=new qx.ui.core.Widget();p.setAppearance(n);p.exclude();qx.core.Init.getApplication().getRoot().add(p);};return p;},__ma:function(){var location=this.getContentLocation();var r=this.getBounds();var q=this.__lY();q.setUserBounds(location.left,location.top,r.width,r.height);q.show();q.setZIndex(this.getZIndex()+1);},__mb:function(e){var t=this.__lQ;var w=Math.max(t.left,Math.min(t.right,e.getDocumentLeft()));var s=Math.max(t.top,Math.min(t.bottom,e.getDocumentTop()));var u=this.__lR+w;var v=this.__lS+s;return {viewportLeft:parseInt(u,10),viewportTop:parseInt(v,10),parentLeft:parseInt(u-this.__lT,10),parentTop:parseInt(v-this.__lU,10)};},_onMoveMouseDown:function(e){if(!this.getMovable()||this.hasState(l)){return;};var parent=this.getLayoutParent();var x=parent.getContentLocation();var z=parent.getBounds();if(qx.Class.implementsInterface(parent,qx.ui.window.IDesktop)){if(!parent.isBlocked()){this.__lW=parent.getBlockerColor();this.__lX=parent.getBlockerOpacity();parent.setBlockerColor(null);parent.setBlockerOpacity(1);parent.blockContent(this.getZIndex()-1);this.__lV=true;};};this.__lQ={left:x.left,top:x.top,right:x.left+z.width,bottom:x.top+z.height};var y=this.getContentLocation();this.__lT=x.left;this.__lU=x.top;this.__lR=y.left-e.getDocumentLeft();this.__lS=y.top-e.getDocumentTop();this.addState(k);this.__lO.capture();if(this.getUseMoveFrame()){this.__ma();};e.stop();},_onMoveMouseMove:function(e){if(!this.hasState(k)){return;};var B=this.__mb(e);if(this.getUseMoveFrame()){this.__lY().setDomPosition(B.viewportLeft,B.viewportTop);}else {var A=this.getLayoutParent().getInsets();this.setDomPosition(B.parentLeft-(A.left||0),B.parentTop-(A.top||0));};e.stopPropagation();},_onMoveMouseUp:function(e){if(!this.hasState(k)){return;};this.removeState(k);var parent=this.getLayoutParent();if(qx.Class.implementsInterface(parent,qx.ui.window.IDesktop)){if(this.__lV){parent.unblock();parent.setBlockerColor(this.__lW);parent.setBlockerOpacity(this.__lX);this.__lW=null;this.__lX=0;this.__lV=false;};};this.__lO.releaseCapture();var D=this.__mb(e);var C=this.getLayoutParent().getInsets();this.setLayoutProperties({left:D.parentLeft-(C.left||0),top:D.parentTop-(C.top||0)});if(this.getUseMoveFrame()){this.__lY().exclude();};e.stopPropagation();},__mc:function(e){if(!this.hasState(k)){return;};this.removeState(k);if(this.getUseMoveFrame()){this.__lY().exclude();};}},destruct:function(){this._disposeObjects(m,a);this.__lQ=null;}});})();(function(){var a="resetPaddingRight",b="setPaddingTop",c="_applyContentPadding",d="setPaddingBottom",e="resetThemed",f="contentPaddingRight",g="Integer",h="contentPaddingLeft",i="setThemedPaddingLeft",j="resetPaddingTop",k="shorthand",l="setThemedPaddingRight",m="setThemed",n="setPaddingRight",o="contentPaddingBottom",p="resetPaddingBottom",q="qx.ui.core.MContentPadding",r="resetPaddingLeft",s="setThemedPaddingTop",t="setPaddingLeft",u="setThemedPaddingBottom",v="contentPaddingTop";qx.Mixin.define(q,{properties:{contentPaddingTop:{check:g,init:0,apply:c,themeable:true},contentPaddingRight:{check:g,init:0,apply:c,themeable:true},contentPaddingBottom:{check:g,init:0,apply:c,themeable:true},contentPaddingLeft:{check:g,init:0,apply:c,themeable:true},contentPadding:{group:[v,f,o,h],mode:k,themeable:true}},members:{__md:{contentPaddingTop:b,contentPaddingRight:n,contentPaddingBottom:d,contentPaddingLeft:t},__me:{contentPaddingTop:s,contentPaddingRight:l,contentPaddingBottom:u,contentPaddingLeft:i},__mf:{contentPaddingTop:j,contentPaddingRight:a,contentPaddingBottom:p,contentPaddingLeft:r},_applyContentPadding:function(z,w,name,y){var A=this._getContentPaddingTarget();if(z==null){var x=this.__mf[name];A[x]();}else {if(y==m||y==e){var B=this.__me[name];A[B](z);}else {var B=this.__md[name];A[B](z);};};}}});})();(function(){var a="mousedown",b="Boolean",c="w-resize",d="sw-resize",f="n-resize",g="resizableRight",h="ne-resize",i="se-resize",j="Integer",k="e-resize",l="resizableLeft",m="mousemove",n="move",o="shorthand",p="maximized",q="resize",r="nw-resize",s="mouseout",t="qx.ui.core.MResizable",u="mouseup",v="losecapture",w="resize-frame",x="resizableBottom",y="s-resize",z="resizableTop";qx.Mixin.define(t,{construct:function(){var content=this.getContentElement();content.addListener(a,this.__ms,this,true);content.addListener(u,this.__mt,this);content.addListener(m,this.__mv,this);content.addListener(s,this.__mw,this);content.addListener(v,this.__mu,this);var A=content.getDomElement();if(A==null){A=window;};this.__mg=qx.event.Registration.getManager(A).getHandler(qx.event.handler.DragDrop);},properties:{resizableTop:{check:b,init:true},resizableRight:{check:b,init:true},resizableBottom:{check:b,init:true},resizableLeft:{check:b,init:true},resizable:{group:[z,g,x,l],mode:o},resizeSensitivity:{check:j,init:5},useResizeFrame:{check:b,init:true}},members:{__mg:null,__mh:null,__mi:null,__mj:null,__mk:null,__ml:null,__mm:null,RESIZE_TOP:1,RESIZE_BOTTOM:2,RESIZE_LEFT:4,RESIZE_RIGHT:8,_getResizeFrame:function(){var B=this.__mh;if(!B){B=this.__mh=new qx.ui.core.Widget();B.setAppearance(w);B.exclude();qx.core.Init.getApplication().getRoot().add(B);};return B;},__mn:function(){var location=this.getContentLocation();var C=this._getResizeFrame();C.setUserBounds(location.left,location.top,location.right-location.left,location.bottom-location.top);C.show();C.setZIndex(this.getZIndex()+1);},__mo:function(e){var E=this.__mi;var D=this.getSizeHint();var H=this.__mm;var G=this.__ml;var I=G.width;var F=G.height;var K=G.left;var top=G.top;var J;if((E&this.RESIZE_TOP)||(E&this.RESIZE_BOTTOM)){J=Math.max(H.top,Math.min(H.bottom,e.getDocumentTop()))-this.__mk;if(E&this.RESIZE_TOP){F-=J;}else {F+=J;};if(F<D.minHeight){F=D.minHeight;}else if(F>D.maxHeight){F=D.maxHeight;};if(E&this.RESIZE_TOP){top+=G.height-F;};};if((E&this.RESIZE_LEFT)||(E&this.RESIZE_RIGHT)){J=Math.max(H.left,Math.min(H.right,e.getDocumentLeft()))-this.__mj;if(E&this.RESIZE_LEFT){I-=J;}else {I+=J;};if(I<D.minWidth){I=D.minWidth;}else if(I>D.maxWidth){I=D.maxWidth;};if(E&this.RESIZE_LEFT){K+=G.width-I;};};return {viewportLeft:K,viewportTop:top,parentLeft:G.bounds.left+K-G.left,parentTop:G.bounds.top+top-G.top,width:I,height:F};},__mp:{'1':f,'2':y,'4':c,'8':k,'5':r,'6':d,'9':h,'10':i},__mq:function(e){var location=this.getContentLocation();var N=this.getResizeSensitivity();var O=e.getDocumentLeft();var M=e.getDocumentTop();var L=this.__mr(location,O,M,N);if(L>0){L=L|this.__mr(location,O,M,N*2);};this.__mi=L;},__mr:function(location,S,R,P){var Q=0;if(this.getResizableTop()&&Math.abs(location.top-R)<P&&S>location.left-P&&S<location.right+P){Q+=this.RESIZE_TOP;}else if(this.getResizableBottom()&&Math.abs(location.bottom-R)<P&&S>location.left-P&&S<location.right+P){Q+=this.RESIZE_BOTTOM;};if(this.getResizableLeft()&&Math.abs(location.left-S)<P&&R>location.top-P&&R<location.bottom+P){Q+=this.RESIZE_LEFT;}else if(this.getResizableRight()&&Math.abs(location.right-S)<P&&R>location.top-P&&R<location.bottom+P){Q+=this.RESIZE_RIGHT;};return Q;},__ms:function(e){if(!this.__mi||!this.getEnabled()){return;};this.addState(q);this.__mj=e.getDocumentLeft();this.__mk=e.getDocumentTop();var location=this.getContentLocation();var U=this.getBounds();this.__ml={top:location.top,left:location.left,width:location.right-location.left,height:location.bottom-location.top,bounds:qx.lang.Object.clone(U)};var parent=this.getLayoutParent();var V=parent.getContentLocation();var T=parent.getBounds();this.__mm={left:V.left,top:V.top,right:V.left+T.width,bottom:V.top+T.height};if(this.getUseResizeFrame()){this.__mn();};this.capture();e.stop();},__mt:function(e){if(!this.hasState(q)||!this.getEnabled()){return;};if(this.getUseResizeFrame()){this._getResizeFrame().exclude();};var W=this.__mo(e);this.setWidth(W.width);this.setHeight(W.height);if(this.getResizableLeft()||this.getResizableTop()){this.setLayoutProperties({left:W.parentLeft,top:W.parentTop});};this.__mi=0;this.removeState(q);this.resetCursor();this.getApplicationRoot().resetGlobalCursor();this.releaseCapture();e.stopPropagation();},__mu:function(e){if(!this.__mi){return;};this.resetCursor();this.getApplicationRoot().resetGlobalCursor();this.removeState(n);if(this.getUseResizeFrame()){this._getResizeFrame().exclude();};},__mv:function(e){if(!this.getEnabled()){return;};if(this.hasState(q)){var Y=this.__mo(e);if(this.getUseResizeFrame()){var X=this._getResizeFrame();X.setUserBounds(Y.viewportLeft,Y.viewportTop,Y.width,Y.height);}else {this.setWidth(Y.width);this.setHeight(Y.height);if(this.getResizableLeft()||this.getResizableTop()){this.setLayoutProperties({left:Y.parentLeft,top:Y.parentTop});};};e.stopPropagation();}else if(!this.hasState(p)&&!this.__mg.isSessionActive()){this.__mq(e);var bc=this.__mi;var bb=this.getApplicationRoot();if(bc){var ba=this.__mp[bc];this.setCursor(ba);bb.setGlobalCursor(ba);}else if(this.getCursor()){this.resetCursor();bb.resetGlobalCursor();};};},__mw:function(e){if(this.getCursor()&&!this.hasState(q)){this.resetCursor();this.getApplicationRoot().resetGlobalCursor();};}},destruct:function(){if(this.__mh!=null&&!qx.core.ObjectRegistry.inShutDown){this.__mh.destroy();this.__mh=null;};this.__mg=null;}});})();(function(){var a="beforeClose",b="beforeMinimize",c="mousedown",d="Boolean",f="window-resize-frame",g="changeStatus",h="changeIcon",i="excluded",j="_applyModal",k="execute",l="dblclick",m="restore-button",n="_applyActive",o="minimize-button",p="qx.event.type.Event",q="close-button",r="beforeRestore",s="statusbar",t="captionbar",u="String",v="minimize",w="modal",x="changeModal",y="title",z="icon",A="showStatusbar",B="changeAlwaysOnTop",C="_applyShowStatusbar",D="maximized",E="_applyStatus",F="qx.ui.window.Window",G="normal",H="changeCaption",I="engine.name",J="statusbar-text",K="focusout",L="beforeMaximize",M="maximize",N="maximize-button",O="restore",P="window",Q="pane",R="close",S="changeActive",T="mshtml",U="_applyCaptionBarChange",V="active",W="minimized";qx.Class.define(F,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.core.MRemoteLayoutHandling,qx.ui.core.MResizable,qx.ui.core.MMovable,qx.ui.core.MContentPadding],construct:function(X,Y){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.VBox());this._createChildControl(t);this._createChildControl(Q);if(Y!=null){this.setIcon(Y);};if(X!=null){this.setCaption(X);};this._updateCaptionBar();this.addListener(c,this._onWindowMouseDown,this,true);this.addListener(K,this._onWindowFocusOut,this);qx.core.Init.getApplication().getRoot().add(this);this.initVisibility();qx.ui.core.FocusHandler.getInstance().addRoot(this);this._getResizeFrame().setAppearance(f);},statics:{DEFAULT_MANAGER_CLASS:qx.ui.window.Manager},events:{"beforeClose":p,"close":p,"beforeMinimize":p,"minimize":p,"beforeMaximize":p,"maximize":p,"beforeRestore":p,"restore":p},properties:{appearance:{refine:true,init:P},visibility:{refine:true,init:i},focusable:{refine:true,init:true},active:{check:d,init:false,apply:n,event:S},alwaysOnTop:{check:d,init:false,event:B},modal:{check:d,init:false,event:x,apply:j},caption:{apply:U,event:H,nullable:true},icon:{check:u,nullable:true,apply:U,event:h,themeable:true},status:{check:u,nullable:true,apply:E,event:g},showClose:{check:d,init:true,apply:U,themeable:true},showMaximize:{check:d,init:true,apply:U,themeable:true},showMinimize:{check:d,init:true,apply:U,themeable:true},allowClose:{check:d,init:true,apply:U},allowMaximize:{check:d,init:true,apply:U},allowMinimize:{check:d,init:true,apply:U},showStatusbar:{check:d,init:false,apply:C}},members:{__mx:null,__my:null,getChildrenContainer:function(){return this.getChildControl(Q);},_forwardStates:{active:true,maximized:true,showStatusbar:true,modal:true},setLayoutParent:function(parent){{};qx.ui.core.Widget.prototype.setLayoutParent.call(this,parent);},_createChildControlImpl:function(be,bd){var ba;switch(be){case s:ba=new qx.ui.container.Composite(new qx.ui.layout.HBox());this._add(ba);ba.add(this.getChildControl(J));break;case J:ba=new qx.ui.basic.Label();ba.setValue(this.getStatus());break;case Q:ba=new qx.ui.container.Composite();this._add(ba,{flex:1});break;case t:var bb=new qx.ui.layout.Grid();bb.setRowFlex(0,1);bb.setColumnFlex(1,1);ba=new qx.ui.container.Composite(bb);this._add(ba);ba.addListener(l,this._onCaptionMouseDblClick,this);this._activateMoveHandle(ba);break;case z:ba=new qx.ui.basic.Image(this.getIcon());this.getChildControl(t).add(ba,{row:0,column:0});break;case y:ba=new qx.ui.basic.Label(this.getCaption());ba.setWidth(0);ba.setAllowGrowX(true);var bc=this.getChildControl(t);bc.add(ba,{row:0,column:1});break;case o:ba=new qx.ui.form.Button();ba.setFocusable(false);ba.addListener(k,this._onMinimizeButtonClick,this);this.getChildControl(t).add(ba,{row:0,column:2});break;case m:ba=new qx.ui.form.Button();ba.setFocusable(false);ba.addListener(k,this._onRestoreButtonClick,this);this.getChildControl(t).add(ba,{row:0,column:3});break;case N:ba=new qx.ui.form.Button();ba.setFocusable(false);ba.addListener(k,this._onMaximizeButtonClick,this);this.getChildControl(t).add(ba,{row:0,column:4});break;case q:ba=new qx.ui.form.Button();ba.setFocusable(false);ba.addListener(k,this._onCloseButtonClick,this);this.getChildControl(t).add(ba,{row:0,column:6});break;};return ba||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,be);},_updateCaptionBar:function(){var bg;var bh=this.getIcon();if(bh){this.getChildControl(z).setSource(bh);this._showChildControl(z);}else {this._excludeChildControl(z);};var bf=this.getCaption();if(bf){this.getChildControl(y).setValue(bf);this._showChildControl(y);}else {this._excludeChildControl(y);};if(this.getShowMinimize()){this._showChildControl(o);bg=this.getChildControl(o);this.getAllowMinimize()?bg.resetEnabled():bg.setEnabled(false);}else {this._excludeChildControl(o);};if(this.getShowMaximize()){if(this.isMaximized()){this._showChildControl(m);this._excludeChildControl(N);}else {this._showChildControl(N);this._excludeChildControl(m);};bg=this.getChildControl(N);this.getAllowMaximize()?bg.resetEnabled():bg.setEnabled(false);}else {this._excludeChildControl(N);this._excludeChildControl(m);};if(this.getShowClose()){this._showChildControl(q);bg=this.getChildControl(q);this.getAllowClose()?bg.resetEnabled():bg.setEnabled(false);}else {this._excludeChildControl(q);};},close:function(){if(!this.isVisible()){return;};if(this.fireNonBubblingEvent(a,qx.event.type.Event,[false,true])){this.hide();this.fireEvent(R);};},open:function(){this.show();this.setActive(true);this.focus();},center:function(){var parent=this.getLayoutParent();if(parent){var bj=parent.getBounds();if(bj){var bk=this.getSizeHint();var bi=Math.round((bj.width-bk.width)/2);var top=Math.round((bj.height-bk.height)/2);if(top<0){top=0;};this.moveTo(bi,top);return;};};{};},maximize:function(){if(this.isMaximized()){return;};var parent=this.getLayoutParent();if(parent!=null&&parent.supportsMaximize()){if(this.fireNonBubblingEvent(L,qx.event.type.Event,[false,true])){if(!this.isVisible()){this.open();};var bl=this.getLayoutProperties();this.__my=bl.left===undefined?0:bl.left;this.__mx=bl.top===undefined?0:bl.top;this.setLayoutProperties({left:null,top:null,edge:0});this.addState(D);this._updateCaptionBar();this.fireEvent(M);};};},minimize:function(){if(!this.isVisible()){return;};if(this.fireNonBubblingEvent(b,qx.event.type.Event,[false,true])){var bm=this.getLayoutProperties();this.__my=bm.left===undefined?0:bm.left;this.__mx=bm.top===undefined?0:bm.top;this.removeState(D);this.hide();this.fireEvent(v);};},restore:function(){if(this.getMode()===G){return;};if(this.fireNonBubblingEvent(r,qx.event.type.Event,[false,true])){if(!this.isVisible()){this.open();};var bn=this.__my;var top=this.__mx;this.setLayoutProperties({edge:null,left:bn,top:top});this.removeState(D);this._updateCaptionBar();this.fireEvent(O);};},moveTo:function(bo,top){if(this.isMaximized()){return;};this.setLayoutProperties({left:bo,top:top});},isMaximized:function(){return this.hasState(D);},getMode:function(){if(!this.isVisible()){return W;}else {if(this.isMaximized()){return D;}else {return G;};};},_applyActive:function(bq,bp){if(bp){this.removeState(V);}else {this.addState(V);};},_applyModal:function(bs,br){if(br){this.removeState(w);}else {this.addState(w);};},_getContentPaddingTarget:function(){return this.getChildControl(Q);},_applyShowStatusbar:function(bv,bt){var bu=this._getResizeFrame();if(bv){this.addState(A);bu.addState(A);}else {this.removeState(A);bu.removeState(A);};if(bv){this._showChildControl(s);}else {this._excludeChildControl(s);};},_applyCaptionBarChange:function(bx,bw){this._updateCaptionBar();},_applyStatus:function(bz,by){var bA=this.getChildControl(J,true);if(bA){bA.setValue(bz);};},_applyFocusable:function(bC,bB){if(qx.core.Environment.get(I)!==T){qx.ui.core.Widget.prototype._applyFocusable.call(this,bC,bB);};},_onWindowEventStop:function(e){e.stopPropagation();},_onWindowMouseDown:function(e){this.setActive(true);},_onWindowFocusOut:function(e){if(this.getModal()){return;};var bD=e.getRelatedTarget();if(bD!=null&&!qx.ui.core.Widget.contains(this,bD)){this.setActive(false);};},_onCaptionMouseDblClick:function(e){if(this.getAllowMaximize()){this.isMaximized()?this.restore():this.maximize();};},_onMinimizeButtonClick:function(e){this.minimize();this.getChildControl(o).reset();},_onRestoreButtonClick:function(e){this.restore();this.getChildControl(m).reset();},_onMaximizeButtonClick:function(e){this.maximize();this.getChildControl(N).reset();},_onCloseButtonClick:function(e){this.close();this.getChildControl(q).reset();}}});})();(function(){var a="Decorator",b="_applyLayoutChange",c="center",d="_applyReversed",e="bottom",f="qx.ui.layout.VBox",g="top",h="left",j="middle",k="Integer",m="right",n="Boolean";qx.Class.define(f,{extend:qx.ui.layout.Abstract,construct:function(o,p,q){qx.ui.layout.Abstract.call(this);if(o){this.setSpacing(o);};if(p){this.setAlignY(p);};if(q){this.setSeparator(q);};},properties:{alignY:{check:[g,j,e],init:g,apply:b},alignX:{check:[h,c,m],init:h,apply:b},spacing:{check:k,init:0,apply:b},separator:{check:a,nullable:true,apply:b},reversed:{check:n,init:false,apply:d}},members:{__mz:null,__lt:null,__lu:null,__gE:null,_applyReversed:function(){this._invalidChildrenCache=true;this._applyLayoutChange();},__lv:function(){var w=this._getLayoutChildren();var length=w.length;var s=false;var r=this.__mz&&this.__mz.length!=length&&this.__lt&&this.__mz;var u;var t=r?this.__mz:new Array(length);var v=r?this.__lt:new Array(length);if(this.getReversed()){w=w.concat().reverse();};for(var i=0;i<length;i++ ){u=w[i].getLayoutProperties();if(u.height!=null){t[i]=parseFloat(u.height)/100;};if(u.flex!=null){v[i]=u.flex;s=true;}else {v[i]=0;};};if(!r){this.__mz=t;this.__lt=v;};this.__lu=s;this.__gE=w;delete this._invalidChildrenCache;},verifyLayoutProperty:null,renderLayout:function(O,G,R){if(this._invalidChildrenCache){this.__lv();};var D=this.__gE;var length=D.length;var N=qx.ui.layout.Util;var M=this.getSpacing();var T=this.getSeparator();if(T){var A=N.computeVerticalSeparatorGaps(D,M,T);}else {var A=N.computeVerticalGaps(D,M,true);};var i,S,z,H;var I=[];var P=A;for(i=0;i<length;i+=1){H=this.__mz[i];z=H!=null?Math.floor((G-A)*H):D[i].getSizeHint().height;I.push(z);P+=z;};if(this.__lu&&P!=G){var F={};var L,y;for(i=0;i<length;i+=1){L=this.__lt[i];if(L>0){E=D[i].getSizeHint();F[i]={min:E.minHeight,value:I[i],max:E.maxHeight,flex:L};};};var B=N.computeFlexOffsets(F,G,P);for(i in B){y=B[i].offset;I[i]+=y;P+=y;};};var top=D[0].getMarginTop();if(P<G&&this.getAlignY()!=g){top=G-P;if(this.getAlignY()===j){top=Math.round(top/2);};};var E,V,J,z,x,K,C;this._clearSeparators();if(T){var U=qx.theme.manager.Decoration.getInstance().resolve(T).getInsets();var Q=U.top+U.bottom;};for(i=0;i<length;i+=1){S=D[i];z=I[i];E=S.getSizeHint();K=S.getMarginLeft();C=S.getMarginRight();J=Math.max(E.minWidth,Math.min(O-K-C,E.maxWidth));V=N.computeHorizontalAlignOffset(S.getAlignX()||this.getAlignX(),J,O,K,C);if(i>0){if(T){top+=x+M;this._renderSeparator(T,{top:top+R.top,left:R.left,height:Q,width:O});top+=Q+M+S.getMarginTop();}else {top+=N.collapseMargins(M,x,S.getMarginTop());};};S.renderLayout(V+R.left,top+R.top,J,z);top+=z;x=S.getMarginBottom();};},_computeSizeHint:function(){if(this._invalidChildrenCache){this.__lv();};var W=qx.ui.layout.Util;var bl=this.__gE;var ba=0,bb=0,bj=0;var bc=0,bd=0;var bh,X,bk;for(var i=0,l=bl.length;i<l;i+=1){bh=bl[i];X=bh.getSizeHint();bb+=X.height;var bg=this.__lt[i];var Y=this.__mz[i];if(bg){ba+=X.minHeight;}else if(Y){bj=Math.max(bj,Math.round(X.minHeight/Y));}else {ba+=X.height;};bk=bh.getMarginLeft()+bh.getMarginRight();if((X.width+bk)>bd){bd=X.width+bk;};if((X.minWidth+bk)>bc){bc=X.minWidth+bk;};};ba+=bj;var bf=this.getSpacing();var bi=this.getSeparator();if(bi){var be=W.computeVerticalSeparatorGaps(bl,bf,bi);}else {var be=W.computeVerticalGaps(bl,bf,true);};return {minHeight:ba+be,height:bb+be,minWidth:bc,width:bd};}},destruct:function(){this.__mz=this.__lt=this.__gE=null;}});})();(function(){var a="keypress",b="focusout",c="__mA",d="activate",f="Tab",g="singleton",h="deactivate",j="focusin",k="qx.ui.core.FocusHandler";qx.Class.define(k,{extend:qx.core.Object,type:g,construct:function(){qx.core.Object.call(this);this.__mA={};},members:{__mA:null,__mB:null,__mC:null,__mD:null,connectTo:function(m){m.addListener(a,this.__io,this);m.addListener(j,this._onFocusIn,this,true);m.addListener(b,this._onFocusOut,this,true);m.addListener(d,this._onActivate,this,true);m.addListener(h,this._onDeactivate,this,true);},addRoot:function(n){this.__mA[n.$$hash]=n;},removeRoot:function(o){delete this.__mA[o.$$hash];},getActiveWidget:function(){return this.__mB;},isActive:function(p){return this.__mB==p;},getFocusedWidget:function(){return this.__mC;},isFocused:function(q){return this.__mC==q;},isFocusRoot:function(r){return !!this.__mA[r.$$hash];},_onActivate:function(e){var t=e.getTarget();this.__mB=t;var s=this.__mE(t);if(s!=this.__mD){this.__mD=s;};},_onDeactivate:function(e){var u=e.getTarget();if(this.__mB==u){this.__mB=null;};},_onFocusIn:function(e){var v=e.getTarget();if(v!=this.__mC){this.__mC=v;v.visualizeFocus();};},_onFocusOut:function(e){var w=e.getTarget();if(w==this.__mC){this.__mC=null;w.visualizeBlur();};},__io:function(e){if(e.getKeyIdentifier()!=f){return;};if(!this.__mD){return;};e.stopPropagation();e.preventDefault();var x=this.__mC;if(!e.isShiftPressed()){var y=x?this.__mI(x):this.__mG();}else {var y=x?this.__mJ(x):this.__mH();};if(y){y.tabFocus();};},__mE:function(z){var A=this.__mA;while(z){if(A[z.$$hash]){return z;};z=z.getLayoutParent();};return null;},__mF:function(I,H){if(I===H){return 0;};var C=I.getTabIndex()||0;var B=H.getTabIndex()||0;if(C!=B){return C-B;};var J=I.getContentElement().getDomElement();var G=H.getContentElement().getDomElement();var F=qx.bom.element.Location;var E=F.get(J);var D=F.get(G);if(E.top!=D.top){return E.top-D.top;};if(E.left!=D.left){return E.left-D.left;};var K=I.getZIndex();var L=H.getZIndex();if(K!=L){return K-L;};return 0;},__mG:function(){return this.__mM(this.__mD,null);},__mH:function(){return this.__mN(this.__mD,null);},__mI:function(M){var N=this.__mD;if(N==M){return this.__mG();};while(M&&M.getAnonymous()){M=M.getLayoutParent();};if(M==null){return [];};var O=[];this.__mK(N,M,O);O.sort(this.__mF);var P=O.length;return P>0?O[0]:this.__mG();},__mJ:function(Q){var R=this.__mD;if(R==Q){return this.__mH();};while(Q&&Q.getAnonymous()){Q=Q.getLayoutParent();};if(Q==null){return [];};var S=[];this.__mL(R,Q,S);S.sort(this.__mF);var T=S.length;return T>0?S[T-1]:this.__mH();},__mK:function(parent,U,V){var X=parent.getLayoutChildren();var W;for(var i=0,l=X.length;i<l;i++ ){W=X[i];if(!(W instanceof qx.ui.core.Widget)){continue;};if(!this.isFocusRoot(W)&&W.isEnabled()&&W.isVisible()){if(W.isTabable()&&this.__mF(U,W)<0){V.push(W);};this.__mK(W,U,V);};};},__mL:function(parent,Y,ba){var bc=parent.getLayoutChildren();var bb;for(var i=0,l=bc.length;i<l;i++ ){bb=bc[i];if(!(bb instanceof qx.ui.core.Widget)){continue;};if(!this.isFocusRoot(bb)&&bb.isEnabled()&&bb.isVisible()){if(bb.isTabable()&&this.__mF(Y,bb)>0){ba.push(bb);};this.__mL(bb,Y,ba);};};},__mM:function(parent,bd){var bf=parent.getLayoutChildren();var be;for(var i=0,l=bf.length;i<l;i++ ){be=bf[i];if(!(be instanceof qx.ui.core.Widget)){continue;};if(!this.isFocusRoot(be)&&be.isEnabled()&&be.isVisible()){if(be.isTabable()){if(bd==null||this.__mF(be,bd)<0){bd=be;};};bd=this.__mM(be,bd);};};return bd;},__mN:function(parent,bg){var bi=parent.getLayoutChildren();var bh;for(var i=0,l=bi.length;i<l;i++ ){bh=bi[i];if(!(bh instanceof qx.ui.core.Widget)){continue;};if(!this.isFocusRoot(bh)&&bh.isEnabled()&&bh.isVisible()){if(bh.isTabable()){if(bg==null||this.__mF(bh,bg)>0){bg=bh;};};bg=this.__mN(bh,bg);};};return bg;}},destruct:function(){this._disposeMap(c);this.__mC=this.__mB=this.__mD=null;}});})();(function(){var a="' must be defined!",b="height",c="hAlign",d="vAlign",e="Integer",f="'",g="_applyLayoutChange",h="qx.ui.layout.Grid",m="maxHeight",n="Cannot add widget '",o="width",p=") for '",q="'!. ",r="top",s="minHeight",t="' in this cell (",u=", ",v="The layout properties 'row' and 'column' of the child widget '",w="minWidth",z="flex",A="left",B="maxWidth",C="There is already a widget '";qx.Class.define(h,{extend:qx.ui.layout.Abstract,construct:function(E,D){qx.ui.layout.Abstract.call(this);this.__mO=[];this.__mP=[];if(E){this.setSpacingX(E);};if(D){this.setSpacingY(D);};},properties:{spacingX:{check:e,init:0,apply:g},spacingY:{check:e,init:0,apply:g}},members:{__mQ:null,__mO:null,__mP:null,__mR:null,__mS:null,__mT:null,__mU:null,__mV:null,__mW:null,verifyLayoutProperty:null,__mX:function(){var L=[];var G=[];var J=[];var I=-1;var F=-1;var K=this._getLayoutChildren();for(var i=0,l=K.length;i<l;i++ ){var M=K[i];var N=M.getLayoutProperties();var O=N.row;var H=N.column;N.colSpan=N.colSpan||1;N.rowSpan=N.rowSpan||1;if(O==null||H==null){throw new Error(v+M+a);};if(L[O]&&L[O][H]){throw new Error(n+M+q+C+L[O][H]+t+O+u+H+p+this+f);};for(var x=H;x<H+N.colSpan;x++ ){for(var y=O;y<O+N.rowSpan;y++ ){if(L[y]==undefined){L[y]=[];};L[y][x]=M;F=Math.max(F,x);I=Math.max(I,y);};};if(N.rowSpan>1){J.push(M);};if(N.colSpan>1){G.push(M);};};for(var y=0;y<=I;y++ ){if(L[y]==undefined){L[y]=[];};};this.__mQ=L;this.__mR=G;this.__mS=J;this.__mT=I;this.__mU=F;this.__mV=null;this.__mW=null;delete this._invalidChildrenCache;},_setRowData:function(S,Q,R){var P=this.__mO[S];if(!P){this.__mO[S]={};this.__mO[S][Q]=R;}else {P[Q]=R;};},_setColumnData:function(T,V,W){var U=this.__mP[T];if(!U){this.__mP[T]={};this.__mP[T][V]=W;}else {U[V]=W;};},setSpacing:function(X){this.setSpacingY(X);this.setSpacingX(X);return this;},setColumnAlign:function(Y,ba,bb){{};this._setColumnData(Y,c,ba);this._setColumnData(Y,d,bb);this._applyLayoutChange();return this;},getColumnAlign:function(bc){var bd=this.__mP[bc]||{};return {vAlign:bd.vAlign||r,hAlign:bd.hAlign||A};},setRowAlign:function(bf,be,bg){{};this._setRowData(bf,c,be);this._setRowData(bf,d,bg);this._applyLayoutChange();return this;},getRowAlign:function(bi){var bh=this.__mO[bi]||{};return {vAlign:bh.vAlign||r,hAlign:bh.hAlign||A};},getCellWidget:function(bk,bj){if(this._invalidChildrenCache){this.__mX();};var bk=this.__mQ[bk]||{};return bk[bj]||null;},getRowCount:function(){if(this._invalidChildrenCache){this.__mX();};return this.__mT+1;},getColumnCount:function(){if(this._invalidChildrenCache){this.__mX();};return this.__mU+1;},getCellAlign:function(bs,bm){var br=r;var bp=A;var bq=this.__mO[bs];var bn=this.__mP[bm];var bl=this.__mQ[bs][bm];if(bl){var bo={vAlign:bl.getAlignY(),hAlign:bl.getAlignX()};}else {bo={};};if(bo.vAlign){br=bo.vAlign;}else if(bq&&bq.vAlign){br=bq.vAlign;}else if(bn&&bn.vAlign){br=bn.vAlign;};if(bo.hAlign){bp=bo.hAlign;}else if(bn&&bn.hAlign){bp=bn.hAlign;}else if(bq&&bq.hAlign){bp=bq.hAlign;};return {vAlign:br,hAlign:bp};},setColumnFlex:function(bt,bu){this._setColumnData(bt,z,bu);this._applyLayoutChange();return this;},getColumnFlex:function(bv){var bw=this.__mP[bv]||{};return bw.flex!==undefined?bw.flex:0;},setRowFlex:function(by,bx){this._setRowData(by,z,bx);this._applyLayoutChange();return this;},getRowFlex:function(bB){var bz=this.__mO[bB]||{};var bA=bz.flex!==undefined?bz.flex:0;return bA;},setColumnMaxWidth:function(bC,bD){this._setColumnData(bC,B,bD);this._applyLayoutChange();return this;},getColumnMaxWidth:function(bE){var bF=this.__mP[bE]||{};return bF.maxWidth!==undefined?bF.maxWidth:Infinity;},setColumnWidth:function(bG,bH){this._setColumnData(bG,o,bH);this._applyLayoutChange();return this;},getColumnWidth:function(bI){var bJ=this.__mP[bI]||{};return bJ.width!==undefined?bJ.width:null;},setColumnMinWidth:function(bK,bL){this._setColumnData(bK,w,bL);this._applyLayoutChange();return this;},getColumnMinWidth:function(bM){var bN=this.__mP[bM]||{};return bN.minWidth||0;},setRowMaxHeight:function(bP,bO){this._setRowData(bP,m,bO);this._applyLayoutChange();return this;},getRowMaxHeight:function(bR){var bQ=this.__mO[bR]||{};return bQ.maxHeight||Infinity;},setRowHeight:function(bS,bT){this._setRowData(bS,b,bT);this._applyLayoutChange();return this;},getRowHeight:function(bV){var bU=this.__mO[bV]||{};return bU.height!==undefined?bU.height:null;},setRowMinHeight:function(bX,bW){this._setRowData(bX,s,bW);this._applyLayoutChange();return this;},getRowMinHeight:function(ca){var bY=this.__mO[ca]||{};return bY.minHeight||0;},__mY:function(cc){var cb=cc.getSizeHint();var ce=cc.getMarginLeft()+cc.getMarginRight();var cd=cc.getMarginTop()+cc.getMarginBottom();var cf={height:cb.height+cd,width:cb.width+ce,minHeight:cb.minHeight+cd,minWidth:cb.minWidth+ce,maxHeight:cb.maxHeight+cd,maxWidth:cb.maxWidth+ce};return cf;},_fixHeightsRowSpan:function(cA){var cm=this.getSpacingY();for(var i=0,l=this.__mS.length;i<l;i++ ){var cs=this.__mS[i];var cp=this.__mY(cs);var ci=cs.getLayoutProperties();var co=ci.row;var cx=cm*(ci.rowSpan-1);var cg=cx;var cj={};for(var j=0;j<ci.rowSpan;j++ ){var cn=ci.row+j;var cw=cA[cn];var cy=this.getRowFlex(cn);if(cy>0){cj[cn]={min:cw.minHeight,value:cw.height,max:cw.maxHeight,flex:cy};};cx+=cw.height;cg+=cw.minHeight;};if(cx<cp.height){if(!qx.lang.Object.isEmpty(cj)){var cz=qx.ui.layout.Util.computeFlexOffsets(cj,cp.height,cx);for(var k=0;k<ci.rowSpan;k++ ){var cu=cz[co+k]?cz[co+k].offset:0;cA[co+k].height+=cu;};}else {var cr=cm*(ci.rowSpan-1);var cq=cp.height-cr;var cv=Math.floor(cq/ci.rowSpan);var ct=0;var ch=0;for(var k=0;k<ci.rowSpan;k++ ){var cl=cA[co+k].height;ct+=cl;if(cl<cv){ch++ ;};};var ck=Math.floor((cq-ct)/ch);for(var k=0;k<ci.rowSpan;k++ ){if(cA[co+k].height<cv){cA[co+k].height+=ck;};};};};if(cg<cp.minHeight){var cz=qx.ui.layout.Util.computeFlexOffsets(cj,cp.minHeight,cg);for(var j=0;j<ci.rowSpan;j++ ){var cu=cz[co+j]?cz[co+j].offset:0;cA[co+j].minHeight+=cu;};};};},_fixWidthsColSpan:function(cE){var cF=this.getSpacingX();for(var i=0,l=this.__mR.length;i<l;i++ ){var cB=this.__mR[i];var cD=this.__mY(cB);var cH=cB.getLayoutProperties();var cC=cH.column;var cN=cF*(cH.colSpan-1);var cG=cN;var cI={};var cK;for(var j=0;j<cH.colSpan;j++ ){var cJ=cH.column+j;var cM=cE[cJ];var cL=this.getColumnFlex(cJ);if(cL>0){cI[cJ]={min:cM.minWidth,value:cM.width,max:cM.maxWidth,flex:cL};};cN+=cM.width;cG+=cM.minWidth;};if(cN<cD.width){var cO=qx.ui.layout.Util.computeFlexOffsets(cI,cD.width,cN);for(var j=0;j<cH.colSpan;j++ ){cK=cO[cC+j]?cO[cC+j].offset:0;cE[cC+j].width+=cK;};};if(cG<cD.minWidth){var cO=qx.ui.layout.Util.computeFlexOffsets(cI,cD.minWidth,cG);for(var j=0;j<cH.colSpan;j++ ){cK=cO[cC+j]?cO[cC+j].offset:0;cE[cC+j].minWidth+=cK;};};};},_getRowHeights:function(){if(this.__mV!=null){return this.__mV;};var cY=[];var cR=this.__mT;var cQ=this.__mU;for(var da=0;da<=cR;da++ ){var cS=0;var cU=0;var cT=0;for(var cX=0;cX<=cQ;cX++ ){var cP=this.__mQ[da][cX];if(!cP){continue;};var cV=cP.getLayoutProperties().rowSpan||0;if(cV>1){continue;};var cW=this.__mY(cP);if(this.getRowFlex(da)>0){cS=Math.max(cS,cW.minHeight);}else {cS=Math.max(cS,cW.height);};cU=Math.max(cU,cW.height);};var cS=Math.max(cS,this.getRowMinHeight(da));var cT=this.getRowMaxHeight(da);if(this.getRowHeight(da)!==null){var cU=this.getRowHeight(da);}else {var cU=Math.max(cS,Math.min(cU,cT));};cY[da]={minHeight:cS,height:cU,maxHeight:cT};};if(this.__mS.length>0){this._fixHeightsRowSpan(cY);};this.__mV=cY;return cY;},_getColWidths:function(){if(this.__mW!=null){return this.__mW;};var df=[];var dc=this.__mU;var de=this.__mT;for(var dk=0;dk<=dc;dk++ ){var di=0;var dh=0;var dd=Infinity;for(var dl=0;dl<=de;dl++ ){var db=this.__mQ[dl][dk];if(!db){continue;};var dg=db.getLayoutProperties().colSpan||0;if(dg>1){continue;};var dj=this.__mY(db);if(this.getColumnFlex(dk)>0){dh=Math.max(dh,dj.minWidth);}else {dh=Math.max(dh,dj.width);};di=Math.max(di,dj.width);};dh=Math.max(dh,this.getColumnMinWidth(dk));dd=this.getColumnMaxWidth(dk);if(this.getColumnWidth(dk)!==null){var di=this.getColumnWidth(dk);}else {var di=Math.max(dh,Math.min(di,dd));};df[dk]={minWidth:dh,width:di,maxWidth:dd};};if(this.__mR.length>0){this._fixWidthsColSpan(df);};this.__mW=df;return df;},_getColumnFlexOffsets:function(dq){var dm=this.getSizeHint();var ds=dq-dm.width;if(ds==0){return {};};var dp=this._getColWidths();var dn={};for(var i=0,l=dp.length;i<l;i++ ){var dt=dp[i];var dr=this.getColumnFlex(i);if((dr<=0)||(dt.width==dt.maxWidth&&ds>0)||(dt.width==dt.minWidth&&ds<0)){continue;};dn[i]={min:dt.minWidth,value:dt.width,max:dt.maxWidth,flex:dr};};return qx.ui.layout.Util.computeFlexOffsets(dn,dq,dm.width);},_getRowFlexOffsets:function(dw){var du=this.getSizeHint();var dy=dw-du.height;if(dy==0){return {};};var dx=this._getRowHeights();var dv={};for(var i=0,l=dx.length;i<l;i++ ){var dA=dx[i];var dz=this.getRowFlex(i);if((dz<=0)||(dA.height==dA.maxHeight&&dy>0)||(dA.height==dA.minHeight&&dy<0)){continue;};dv[i]={min:dA.minHeight,value:dA.height,max:dA.maxHeight,flex:dz};};return qx.ui.layout.Util.computeFlexOffsets(dv,dw,du.height);},renderLayout:function(dV,dB,dU){if(this._invalidChildrenCache){this.__mX();};var dP=qx.ui.layout.Util;var dD=this.getSpacingX();var dJ=this.getSpacingY();var dT=this._getColWidths();var dW=this._getColumnFlexOffsets(dV);var dE=[];var dY=this.__mU;var dC=this.__mT;var dX;for(var ea=0;ea<=dY;ea++ ){dX=dW[ea]?dW[ea].offset:0;dE[ea]=dT[ea].width+dX;};var dM=this._getRowHeights();var dO=this._getRowFlexOffsets(dB);var eg=[];for(var dK=0;dK<=dC;dK++ ){dX=dO[dK]?dO[dK].offset:0;eg[dK]=dM[dK].height+dX;};var ee=0;for(var ea=0;ea<=dY;ea++ ){var top=0;for(var dK=0;dK<=dC;dK++ ){var dR=this.__mQ[dK][ea];if(!dR){top+=eg[dK]+dJ;continue;};var dF=dR.getLayoutProperties();if(dF.row!==dK||dF.column!==ea){top+=eg[dK]+dJ;continue;};var ef=dD*(dF.colSpan-1);for(var i=0;i<dF.colSpan;i++ ){ef+=dE[ea+i];};var dS=dJ*(dF.rowSpan-1);for(var i=0;i<dF.rowSpan;i++ ){dS+=eg[dK+i];};var dG=dR.getSizeHint();var ed=dR.getMarginTop();var dQ=dR.getMarginLeft();var dN=dR.getMarginBottom();var dI=dR.getMarginRight();var dL=Math.max(dG.minWidth,Math.min(ef-dQ-dI,dG.maxWidth));var eh=Math.max(dG.minHeight,Math.min(dS-ed-dN,dG.maxHeight));var eb=this.getCellAlign(dK,ea);var ec=ee+dP.computeHorizontalAlignOffset(eb.hAlign,dL,ef,dQ,dI);var dH=top+dP.computeVerticalAlignOffset(eb.vAlign,eh,dS,ed,dN);dR.renderLayout(ec+dU.left,dH+dU.top,dL,eh);top+=eg[dK]+dJ;};ee+=dE[ea]+dD;};},invalidateLayoutCache:function(){qx.ui.layout.Abstract.prototype.invalidateLayoutCache.call(this);this.__mW=null;this.__mV=null;},_computeSizeHint:function(){if(this._invalidChildrenCache){this.__mX();};var ek=this._getColWidths();var ei=0,eq=0;for(var i=0,l=ek.length;i<l;i++ ){var ep=ek[i];if(this.getColumnFlex(i)>0){ei+=ep.minWidth;}else {ei+=ep.width;};eq+=ep.width;};var er=this._getRowHeights();var el=0,em=0;for(var i=0,l=er.length;i<l;i++ ){var es=er[i];if(this.getRowFlex(i)>0){el+=es.minHeight;}else {el+=es.height;};em+=es.height;};var eo=this.getSpacingX()*(ek.length-1);var en=this.getSpacingY()*(er.length-1);var ej={minWidth:ei+eo,width:eq+eo,minHeight:el+en,height:em+en};return ej;}},destruct:function(){this.__mQ=this.__mO=this.__mP=this.__mR=this.__mS=this.__mW=this.__mV=null;}});})();(function(){var a="toolTipText",b="icon",c="label",d="qx.ui.core.MExecutable",f="value",g="qx.event.type.Event",h="execute",j="_applyCommand",k="enabled",l="menu",m="changeCommand",n="qx.ui.core.Command";qx.Mixin.define(d,{events:{"execute":g},properties:{command:{check:n,apply:j,event:m,nullable:true}},members:{__na:null,__nb:false,__nc:null,_bindableProperties:[k,c,b,a,f,l],execute:function(){var o=this.getCommand();if(o){if(this.__nb){this.__nb=false;}else {this.__nb=true;o.execute(this);};};this.fireEvent(h);},__nd:function(e){if(this.__nb){this.__nb=false;return;};this.__nb=true;this.execute();},_applyCommand:function(r,p){if(p!=null){p.removeListenerById(this.__nc);};if(r!=null){this.__nc=r.addListener(h,this.__nd,this);};var q=this.__na;if(q==null){this.__na=q={};};var u;for(var i=0;i<this._bindableProperties.length;i++ ){var t=this._bindableProperties[i];if(p!=null&&!p.isDisposed()&&q[t]!=null){p.removeBinding(q[t]);q[t]=null;};if(r!=null&&qx.Class.hasProperty(this.constructor,t)){var s=r.get(t);if(s==null){u=this.get(t);if(u==null){this.syncAppearance();u=qx.util.PropertyUtil.getThemeValue(this,t);};}else {u=null;};q[t]=r.bind(t,this,t);if(u){this.set(t,u);};};};}},destruct:function(){this._applyCommand(null,this.getCommand());this.__na=null;}});})();(function(){var a="qx.ui.form.IExecutable",b="qx.event.type.Data";qx.Interface.define(a,{events:{"execute":b},members:{setCommand:function(c){return arguments.length==1;},getCommand:function(){},execute:function(){}}});})();(function(){var a="dblclick",b="qx.ui.form.Button",c="mouseup",d="mousedown",f="Enter",g="pressed",h="event.mspointer",i="hovered",j="mouseover",k="mouseout",l="click",m="mousemove",n="keydown",o="abandoned",p="button",q="keyup",r="Space";qx.Class.define(b,{extend:qx.ui.basic.Atom,include:[qx.ui.core.MExecutable],implement:[qx.ui.form.IExecutable],construct:function(s,u,t){qx.ui.basic.Atom.call(this,s,u);if(t!=null){this.setCommand(t);};this.addListener(j,this._onMouseOver);this.addListener(k,this._onMouseOut);this.addListener(d,this._onMouseDown);this.addListener(c,this._onMouseUp);this.addListener(l,this._onClick);this.addListener(n,this._onKeyDown);this.addListener(q,this._onKeyUp);this.addListener(a,this._onStopEvent);if(qx.event.handler.MouseEmulation.ON&&!qx.core.Environment.get(h)){this.addListener(m,function(e){var y=this.getBounds();var v={left:e.getDocumentLeft(),top:e.getDocumentTop()};var w=v.left>y.left&&v.left<y.left+y.width;var x=v.top>y.top&&v.top<y.top+y.height;if(w&&x){this.addState(g);}else {this.removeState(g);};});};},properties:{appearance:{refine:true,init:p},focusable:{refine:true,init:true}},members:{_forwardStates:{focused:true,hovered:true,pressed:true,disabled:true},press:function(){if(this.hasState(o)){return;};this.addState(g);},release:function(){if(this.hasState(g)){this.removeState(g);};},reset:function(){this.removeState(g);this.removeState(o);this.removeState(i);},_onMouseOver:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};if(this.hasState(o)){this.removeState(o);this.addState(g);};this.addState(i);},_onMouseOut:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};this.removeState(i);if(this.hasState(g)){this.removeState(g);this.addState(o);};},_onMouseDown:function(e){if(!e.isLeftPressed()){return;};e.stopPropagation();this.capture();this.removeState(o);this.addState(g);},_onMouseUp:function(e){this.releaseCapture();var z=this.hasState(g);var A=this.hasState(o);if(z){this.removeState(g);};if(A){this.removeState(o);}else {if(z){this.execute();};};e.stopPropagation();},_onClick:function(e){e.stopPropagation();},_onKeyDown:function(e){switch(e.getKeyIdentifier()){case f:case r:this.removeState(o);this.addState(g);e.stopPropagation();};},_onKeyUp:function(e){switch(e.getKeyIdentifier()){case f:case r:if(this.hasState(g)){this.removeState(o);this.removeState(g);this.execute();e.stopPropagation();};};}}});})();(function(){var a="_applyBlockerColor",b="Number",c="qx.ui.core.MBlocker",d="_applyBlockerOpacity",e="Color",f="__ne";qx.Mixin.define(c,{construct:function(){this.__ne=this._createBlocker();},properties:{blockerColor:{check:e,init:null,nullable:true,apply:a,themeable:true},blockerOpacity:{check:b,init:1,apply:d,themeable:true}},members:{__ne:null,_createBlocker:function(){return new qx.ui.core.Blocker(this);},_applyBlockerColor:function(h,g){this.__ne.setColor(h);},_applyBlockerOpacity:function(j,i){this.__ne.setOpacity(j);},block:function(){this.__ne.block();},isBlocked:function(){return this.__ne.isBlocked();},unblock:function(){this.__ne.unblock();},forceUnblock:function(){this.__ne.forceUnblock();},blockContent:function(k){this.__ne.blockContent(k);},isContentBlocked:function(){{};return this.__ne.isBlocked();},unblockContent:function(){{};this.__ne.unblock();},forceUnblockContent:function(){{};this.__ne.forceUnblock();},getBlocker:function(){return this.__ne;}},destruct:function(){this._disposeObjects(f);}});})();(function(){var a="qx.dyntheme",b="backgroundColor",c="_applyOpacity",d="Boolean",f="px",g="keydown",h="deactivate",j="changeTheme",k="opacity",l="__jx",m="Tab",n="qx.event.type.Event",o="move",p="Color",q="resize",r="zIndex",s="appear",t="qx.ui.root.Abstract",u="keyup",v="keypress",w="Number",x="unblocked",y="qx.ui.core.Blocker",z="disappear",A="blocked",B="__ne",C="_applyColor";qx.Class.define(y,{extend:qx.core.Object,events:{blocked:n,unblocked:n},construct:function(D){qx.core.Object.call(this);this._widget=D;D.addListener(q,this.__nj,this);D.addListener(o,this.__nj,this);D.addListener(z,this.__nl,this);if(qx.Class.isDefined(t)&&D instanceof qx.ui.root.Abstract){this._isRoot=true;this.setKeepBlockerActive(true);};if(qx.core.Environment.get(a)){qx.theme.manager.Color.getInstance().addListener(j,this._onChangeTheme,this);};this.__nf=[];this.__ng=[];},properties:{color:{check:p,init:null,nullable:true,apply:C,themeable:true},opacity:{check:w,init:1,apply:c,themeable:true},keepBlockerActive:{check:d,init:false}},members:{__ne:null,__nh:0,__nf:null,__ng:null,__jx:null,_widget:null,_isRoot:false,__ni:null,__nj:function(e){var E=e.getData();if(this.isBlocked()){this._updateBlockerBounds(E);};},__nk:function(){this._updateBlockerBounds(this._widget.getBounds());if(this._widget.isRootWidget()){this._widget.getContentElement().add(this.getBlockerElement());}else {this._widget.getLayoutParent().getContentElement().add(this.getBlockerElement());};},__nl:function(){if(this.isBlocked()){this.getBlockerElement().getParent().remove(this.getBlockerElement());this._widget.addListenerOnce(s,this.__nk,this);};},_updateBlockerBounds:function(F){this.getBlockerElement().setStyles({width:F.width+f,height:F.height+f,left:F.left+f,top:F.top+f});},_applyColor:function(I,H){var G=qx.theme.manager.Color.getInstance().resolve(I);this.__nm(b,G);},_applyOpacity:function(K,J){this.__nm(k,K);},_onChangeTheme:qx.core.Environment.select(a,{"true":function(){this._applyColor(this.getColor());},"false":null}),__nm:function(M,N){var L=[];this.__ne&&L.push(this.__ne);for(var i=0;i<L.length;i++ ){L[i].setStyle(M,N);};},_backupActiveWidget:function(){var O=qx.event.Registration.getManager(window).getHandler(qx.event.handler.Focus);this.__nf.push(O.getActive());this.__ng.push(O.getFocus());if(this._widget.isFocusable()){this._widget.focus();};},_restoreActiveWidget:function(){var R=this.__nf.length;if(R>0){var Q=this.__nf[R-1];if(Q){qx.bom.Element.activate(Q);};this.__nf.pop();};var P=this.__ng.length;if(P>0){var Q=this.__ng[P-1];if(Q){qx.bom.Element.focus(this.__ng[P-1]);};this.__ng.pop();};},__nn:function(){return new qx.html.Blocker(this.getColor(),this.getOpacity());},getBlockerElement:function(S){if(!this.__ne){this.__ne=this.__nn();this.__ne.setStyle(r,15);if(!S){if(this._isRoot){S=this._widget;}else {S=this._widget.getLayoutParent();};};S.getContentElement().add(this.__ne);this.__ne.exclude();};return this.__ne;},block:function(){this._block();},_block:function(T,V){if(!this._isRoot&&!this._widget.getLayoutParent()){this.__ni=this._widget.addListenerOnce(s,this._block.bind(this,T));return;};var parent;if(this._isRoot||V){parent=this._widget;}else {parent=this._widget.getLayoutParent();};var U=this.getBlockerElement(parent);if(T!=null){U.setStyle(r,T);};this.__nh++ ;if(this.__nh<2){this._backupActiveWidget();var W=this._widget.getBounds();if(W){this._updateBlockerBounds(W);};U.include();if(!V){U.activate();};U.addListener(h,this.__nq,this);U.addListener(v,this.__np,this);U.addListener(g,this.__np,this);U.addListener(u,this.__np,this);this.fireEvent(A,qx.event.type.Event);};},isBlocked:function(){return this.__nh>0;},unblock:function(){if(this.__ni){this._widget.removeListenerById(this.__ni);};if(!this.isBlocked()){return;};this.__nh-- ;if(this.__nh<1){this.__no();this.__nh=0;};},forceUnblock:function(){if(!this.isBlocked()){return;};this.__nh=0;this.__no();},__no:function(){this._restoreActiveWidget();var X=this.getBlockerElement();X.removeListener(h,this.__nq,this);X.removeListener(v,this.__np,this);X.removeListener(g,this.__np,this);X.removeListener(u,this.__np,this);X.exclude();this.fireEvent(x,qx.event.type.Event);},getContentBlockerElement:function(){{};return this.getBlockerElement();},blockContent:function(Y){this._block(Y,true);},isContentBlocked:function(){{};return this.isBlocked();},unblockContent:function(){{};this.unblock();},forceUnblockContent:function(){{};this.forceUnblock();},__np:function(e){if(e.getKeyIdentifier()==m){e.stop();};},__nq:function(){if(this.getKeepBlockerActive()){this.getBlockerElement().activate();};}},destruct:function(){if(qx.core.Environment.get(a)){qx.theme.manager.Color.getInstance().removeListener(j,this._onChangeTheme,this);};this._widget.removeListener(q,this.__nj,this);this._widget.removeListener(o,this.__nj,this);this._widget.removeListener(s,this.__nk,this);this._widget.removeListener(z,this.__nl,this);if(this.__ni){this._widget.removeListenerById(this.__ni);};this._disposeObjects(B,l);this.__nf=this.__ng=this._widget=null;}});})();(function(){var a="dblclick",b="mshtml",c="engine.name",d="repeat",f="mousedown",g="disappear",h="appear",i="url(",j="mousewheel",k=")",l="mouseover",m="mouseout",n="qx.html.Blocker",o="mouseup",p="mousemove",q="div",r="contextmenu",s="click",t="qx/static/blank.gif",u="cursor",v="absolute";qx.Class.define(n,{extend:qx.html.Element,construct:function(y,w){var y=y?qx.theme.manager.Color.getInstance().resolve(y):null;var x={position:v,opacity:w||0,backgroundColor:y};if((qx.core.Environment.get(c)==b)){x.backgroundImage=i+qx.util.ResourceManager.getInstance().toUri(t)+k;x.backgroundRepeat=d;};qx.html.Element.call(this,q,x);this.addListener(f,this._stopPropagation,this);this.addListener(o,this._stopPropagation,this);this.addListener(s,this._stopPropagation,this);this.addListener(a,this._stopPropagation,this);this.addListener(p,this._stopPropagation,this);this.addListener(l,this._stopPropagation,this);this.addListener(m,this._stopPropagation,this);this.addListener(j,this._stopPropagation,this);this.addListener(r,this._stopPropagation,this);this.addListener(h,this.__nr,this);this.addListener(g,this.__nr,this);},members:{_stopPropagation:function(e){e.stopPropagation();},__nr:function(){var z=this.getStyle(u);this.setStyle(u,null,true);this.setStyle(u,z,true);}}});})();(function(){var a="changeGlobalCursor",b="engine.name",c="keypress",d="Boolean",f="root",g="help",h="",i="contextmenu",j=" !important",k="input",l="_applyGlobalCursor",m="Space",n="_applyNativeHelp",o=";",p="event.help",q="qx.ui.root.Abstract",r="abstract",s="textarea",t="String",u="*";qx.Class.define(q,{type:r,extend:qx.ui.core.Widget,include:[qx.ui.core.MChildrenHandling,qx.ui.core.MBlocker,qx.ui.window.MDesktop],construct:function(){qx.ui.core.Widget.call(this);qx.ui.core.FocusHandler.getInstance().addRoot(this);qx.ui.core.queue.Visibility.add(this);this.initNativeHelp();this.addListener(c,this.__nt,this);},properties:{appearance:{refine:true,init:f},enabled:{refine:true,init:true},focusable:{refine:true,init:true},globalCursor:{check:t,nullable:true,themeable:true,apply:l,event:a},nativeContextMenu:{refine:true,init:false},nativeHelp:{check:d,init:false,apply:n}},members:{__ns:null,isRootWidget:function(){return true;},getLayout:function(){return this._getLayout();},_applyGlobalCursor:qx.core.Environment.select(b,{"mshtml":function(w,v){},"default":function(A,z){var y=qx.bom.Stylesheet;var x=this.__ns;if(!x){this.__ns=x=y.createElement();};y.removeAllRules(x);if(A){y.addRule(x,u,qx.bom.element.Cursor.compile(A).replace(o,h)+j);};}}),_applyNativeContextMenu:function(C,B){if(C){this.removeListener(i,this._onNativeContextMenu,this,true);}else {this.addListener(i,this._onNativeContextMenu,this,true);};},_onNativeContextMenu:function(e){if(e.getTarget().getNativeContextMenu()){return;};e.preventDefault();},__nt:function(e){if(e.getKeyIdentifier()!==m){return;};var E=e.getTarget();var D=qx.ui.core.FocusHandler.getInstance();if(!D.isFocused(E)){return;};var F=E.getContentElement().getNodeName();if(F===k||F===s){return;};e.preventDefault();},_applyNativeHelp:function(H,G){if(qx.core.Environment.get(p)){if(G===false){qx.bom.Event.removeNativeListener(document,g,(function(){return false;}));};if(H===false){qx.bom.Event.addNativeListener(document,g,(function(){return false;}));};};}},destruct:function(){this.__ns=null;},defer:function(I,J){qx.ui.core.MChildrenHandling.remap(J);}});})();(function(){var a="resize",b="rgba(0,0,0,0)",c="paddingLeft",d="WebkitTapHighlightColor",f="qx.emulatemouse",g="engine.name",h="webkit",i="0px",j="The application could not be started due to a missing body tag in the HTML file!",k="$$widget",l="qx.ui.root.Application",m="event.touch",n="div",o="paddingTop",p="hidden",q="The root widget does not support 'left', or 'top' paddings!",r="100%",s="absolute";qx.Class.define(l,{extend:qx.ui.root.Abstract,construct:function(t){this.__cx=qx.dom.Node.getWindow(t);this.__nu=t;if(qx.core.Environment.get(m)&&qx.core.Environment.get(f)){if(t.body){t.body.style[d]=b;};};qx.ui.root.Abstract.call(this);qx.event.Registration.addListener(this.__cx,a,this._onResize,this);this._setLayout(new qx.ui.layout.Canvas());qx.ui.core.queue.Layout.add(this);qx.ui.core.FocusHandler.getInstance().connectTo(this);this.getContentElement().disableScrolling();},members:{__cx:null,__nu:null,_createContentElement:function(){var u=this.__nu;if((qx.core.Environment.get(g)==h)){if(!u.body){alert(j);};};var y=u.documentElement.style;var v=u.body.style;y.overflow=v.overflow=p;y.padding=y.margin=v.padding=v.margin=i;y.width=y.height=v.width=v.height=r;var x=u.createElement(n);u.body.appendChild(x);var w=new qx.html.Root(x);w.setStyles({"position":s,"overflowX":p,"overflowY":p});w.setAttribute(k,this.toHashCode());return w;},_onResize:function(e){qx.ui.core.queue.Layout.add(this);if(qx.ui.popup&&qx.ui.popup.Manager){qx.ui.popup.Manager.getInstance().hideAll();};if(qx.ui.menu&&qx.ui.menu.Manager){qx.ui.menu.Manager.getInstance().hideAll();};},_computeSizeHint:function(){var z=qx.bom.Viewport.getWidth(this.__cx);var A=qx.bom.Viewport.getHeight(this.__cx);return {minWidth:z,width:z,maxWidth:z,minHeight:A,height:A,maxHeight:A};},_applyPadding:function(C,B,name){if(C&&(name==o||name==c)){throw new Error(q);};qx.ui.root.Abstract.prototype._applyPadding.call(this,C,B,name);}},destruct:function(){this.__cx=this.__nu=null;}});})();(function(){var a="qx.ui.layout.Canvas",b="number",c="Boolean";qx.Class.define(a,{extend:qx.ui.layout.Abstract,properties:{desktop:{check:c,init:false}},members:{verifyLayoutProperty:null,renderLayout:function(g,j,m){var s=this._getLayoutChildren();var d,u,r;var f,top,e,h,n,k;var q,p,t,o;for(var i=0,l=s.length;i<l;i++ ){d=s[i];u=d.getSizeHint();r=d.getLayoutProperties();q=d.getMarginTop();p=d.getMarginRight();t=d.getMarginBottom();o=d.getMarginLeft();f=r.left!=null?r.left:r.edge;if(qx.lang.Type.isString(f)){f=Math.round(parseFloat(f)*g/100);};e=r.right!=null?r.right:r.edge;if(qx.lang.Type.isString(e)){e=Math.round(parseFloat(e)*g/100);};top=r.top!=null?r.top:r.edge;if(qx.lang.Type.isString(top)){top=Math.round(parseFloat(top)*j/100);};h=r.bottom!=null?r.bottom:r.edge;if(qx.lang.Type.isString(h)){h=Math.round(parseFloat(h)*j/100);};if(f!=null&&e!=null){n=g-f-e-o-p;if(n<u.minWidth){n=u.minWidth;}else if(n>u.maxWidth){n=u.maxWidth;};f+=o;}else {n=r.width;if(n==null){n=u.width;}else {n=Math.round(parseFloat(n)*g/100);if(n<u.minWidth){n=u.minWidth;}else if(n>u.maxWidth){n=u.maxWidth;};};if(e!=null){f=g-n-e-p-o;}else if(f==null){f=o;}else {f+=o;};};if(top!=null&&h!=null){k=j-top-h-q-t;if(k<u.minHeight){k=u.minHeight;}else if(k>u.maxHeight){k=u.maxHeight;};top+=q;}else {k=r.height;if(k==null){k=u.height;}else {k=Math.round(parseFloat(k)*j/100);if(k<u.minHeight){k=u.minHeight;}else if(k>u.maxHeight){k=u.maxHeight;};};if(h!=null){top=j-k-h-t-q;}else if(top==null){top=q;}else {top+=q;};};f+=m.left;top+=m.top;d.renderLayout(f,top,n,k);};},_computeSizeHint:function(){var M=0,y=0;var J=0,I=0;var H,v;var E,C;var L=this._getLayoutChildren();var w,B,z;var K=this.isDesktop();var A,top,x,D;for(var i=0,l=L.length;i<l;i++ ){w=L[i];B=w.getLayoutProperties();z=w.getSizeHint();var G=w.getMarginLeft()+w.getMarginRight();var F=w.getMarginTop()+w.getMarginBottom();H=z.width+G;v=z.minWidth+G;A=B.left!=null?B.left:B.edge;if(A&&typeof A===b){H+=A;v+=A;};x=B.right!=null?B.right:B.edge;if(x&&typeof x===b){H+=x;v+=x;};M=Math.max(M,H);y=K?0:Math.max(y,v);E=z.height+F;C=z.minHeight+F;top=B.top!=null?B.top:B.edge;if(top&&typeof top===b){E+=top;C+=top;};D=B.bottom!=null?B.bottom:B.edge;if(D&&typeof D===b){E+=D;C+=D;};J=Math.max(J,E);I=K?0:Math.max(I,C);};return {width:M,minWidth:y,height:J,minHeight:I};}}});})();(function(){var a="qx.html.Root";qx.Class.define(a,{extend:qx.html.Element,construct:function(b){qx.html.Element.call(this);if(b!=null){this.useElement(b);};},members:{useElement:function(c){qx.html.Element.prototype.useElement.call(this,c);this.setRoot(true);qx.html.Element._modified[this.$$hash]=this;}}});})();(function(){var a="debug",b="frontend.Application",c="100%",d="View.Welcome",e="show";DBG_LVL=5;qx.Class.define(b,{extend:qx.application.Standalone,members:{layout:null,lay_grid:null,cont_grid:null,main:function(){qx.application.Standalone.prototype.main.call(this);app=this;root=this.getRoot();this.cont_grid=new qx.ui.container.Composite(this.lay_grid=new qx.ui.layout.Grid(2,2));this.cont_grid.add(this.layout=new frontend.Views.Ltab(this),{row:1,column:1});this.cont_grid.add(new qx.ui.core.Spacer(),{row:2,column:2});this.squeezeCenter();root.add(this.cont_grid,{width:c,height:c});if(false){this.layout.dispatch([{cmd:a}]);};rpc=new frontend.Lib.RPC;rpc.callRPC(d,e,this.layout,this.layout.dispatch);},squeezeCenter:function(){for(var i=0;i<3;i++ ){this.lay_grid.setColumnFlex(i,i!=1);this.lay_grid.setRowFlex(i,(1+i)*(i!=1));};},inflateCenter:function(){for(var i=0;i<3;i++ ){this.lay_grid.setColumnFlex(i,i==1);this.lay_grid.setRowFlex(i,i==1);};}}});})();(function(){var a="Values are: ",b="res.data is ",c="We have to show the following: ",d="Not found ",g="in dispatcher for ",h="No form -",j=" / ",k=" and field ",l="unhide",m="auto-update is 0, not updating",n="getRootContainer gives: ",o="enable: ",p="changeSelection",q="end_of_req",s="View is: ",t="show",u="list",w="parent",x="fade_in",y="empty_update",z=" in ",A="update-method is: ",B=" already here - doing nothing",C="*****===== Dispatcher ",D="table_columns_show",E="Updating children",F="res: ",G="table_columns_hide",H="Adding container ",I="parent,child,windows",J=", queuelen: ",K="Found ",L="update_view",M="adding view-tab: ",N="Unknown command: ",O="auto_update_async",P="windows",Q="New tab is: ",R="res data is ",S="update_async",T="getActiveForm",U="pass_tabs",V="res.data:",W="left",X="initValue for ",Y="View.",cq="clear",cr="empty_nonlists",cs="empty_selections",cm="none",cn="callback_button",co="window_hide",cp="- or fields found",cx="update_silent",cy="window_show",cz="tabs_update_view",cA="switch_tab",ct="Looking for ",cu="hide",cv="changeView with data ",cw="parentFields is ",cE="button",dg="init_values",dl="The following views are allowed: ",cF='visible',cB=" - ",cC="select",dw="showView - container is: ",cD="frontend.Views.Ltab",cG="eval",cH="reload",cI="Enabled",cM="session_id",cN="Focusing on ",cO="Adding something to the show - update_view",cJ="timer for update",cK="Turning debugging on",dv="update",cL="_with_values",cT="Focusing on table ",cU="bar_position",cV="child",cW="updateView: ",cP="Tab already created - updating only - ",cQ="focus",cR='',cS="excluded",db="Fading in",dc="Found new tab: ",dy="Didn't find field ",dd="empty",cX="empty_all_update",cY="debug",dx="tabs_",da="auto_update",de="",df="finished dispatcher",dq="Layout ",dp="select: ",dn="setting updating on false in ",du=" not found",dt="empty_nonlists_update",ds="fading out windows",dr="Timer for callback_button",dk="init_values for ",dj="Table ",di="Doing nothing",dh="New view is: ",dm="empty_all";qx.Class.define(cD,{extend:qx.ui.container.Composite,construct:function(dz){this.app=dz;this.alignTabs=W;this.fadedin=false;qx.ui.container.Composite.call(this);this.setLayout(this.layout=new qx.ui.layout.Grow());this.timer=new frontend.Lib.TimerF();this.selectfadein=I;},members:{app:null,layoutView:null,dataClass:null,viewClass:null,root:null,views:null,layout:null,list:null,views:null,field:null,tabs:null,timer:null,selectfadein:null,fadedin:null,alignTabs:null,parentLtab:null,initValues:null,dispatch_async:function(dC,dB){dB=dB.replace(/^.*\./,cR);var dA=this.viewClass;if(this.parentLtab){dA=this.parentLtab.viewClass.replace(/Tabs$/,cR)+dA.replace(/^[A-Z][a-z]*/,cR);};if(dB==dA){this.dispatch(dC);}else {};},dispatch:function(dH){dbg(5,g+this.viewClass);var dD=true;this.parentFadeOut();var dN=this.getActiveForm();for(var r=0;r<dH.length;r++ ){var dF=dH[r];dbg(0,C+(r+1)+j+dH.length);dbg(0,F+print_a(dF));dbg(0,V+dF.data);switch(dF.cmd){case da:case O:this.timer.stop();var dJ=Math.abs(dF.data)*1000;if(dJ>=1){var dM=dv;if(dF.cmd==O){dM=S;};if(dF.data<0){dM=dM+cL;};dbg(3,A+dM);dbg(3,s+this.viewClass);this.timer.start(this.autoUpdate,dJ,this,dM,dJ);}else {dbg(3,m);};break;case cU:this.tabs.setBarPosition(dF.data);break;case cn:dD=false;unfade=false;var dG=dF.data;qx.util.TimerManager.getInstance().start(function(dO,dP){dbg(3,dr);this.callBackend(cE,dG,this.fields.getFieldsData());},null,dN,null,500);break;case cV:if(dN.fields.childLtab){dN.fields.childLtab.dispatch(dF.data);};break;case cq:this.removeAll();break;case cY:dbg(0,cK);{qx.log.appender.Native;qx.log.appender.Console.show();};break;case dd:this.getActiveForm().fields.clearDataOnly(dF.data);break;case dm:this.getActiveForm().fields.clearDataAll();break;case cr:this.getActiveForm().fields.clearData(dF.data);break;case cs:this.getActiveForm().fields.clearSelections();break;case y:dbg(3,b+print_a(dF.data));dbg(3,b+print_a(Object.keys(dF.data)));this.getActiveForm().fields.clearDataOnly(Object.keys(dF.data));this.updateView(dF.data,false);break;case cX:this.getActiveForm().fields.clearDataAll();this.updateView(dF.data,false);break;case dt:this.getActiveForm().fields.clearData(Object.keys(dF.data));this.updateView(dF.data,false);break;case cG:window.eval(dF.data);break;case x:this.setFadeIn(dF.data);break;case cQ:this.parentFadeIn();var f=dF.data;dbg(2,R+print_a(f));if(dN&&dN.fields&&dN.fields.fields){if(f.table){var dL=dN.fields.fields[f.table];if(dL){var dE=dL.updating;dL.updating=true;dbg(2,cT+f.table);dN.fields.focus_table(dL,f.col,f.row);dL.updating=dE;}else {dbg(2,dj+f.table+du);};}else {if(dN.fields.fields[f]){dbg(2,cN+f);dN.fields.focus_if_ok(dN.fields.fields[f]);}else {dbg(2,d+f+z+print_a(dN.fields.fields));};};}else {dbg(3,h+dN+cp);};break;case cu:case l:if(!(dF.data instanceof Array)){dF.data=[dF.data];};for(var i=0;i<dF.data.length;i++ ){this.setElementVisibility(dF.data[i],dF.cmd==cu?cS:cF);};break;case dg:var dK=dF.data[0];var dI=dF.data[1];dbg(2,dk+dK+cB+print_a(dI));var f=null;for(var v=0;v<this.views.length;v++ ){dbg(2,ct+this.views[v].qv_id);if(this.views[v].qv_id==dK){dbg(2,K+this.views[v]);this.views[v].initValues=dI;};};break;case u:this.createViews(dF.data);break;case cm:dbg(5,di);break;case w:if(this.parentLtab){this.parentLtab.dispatch(dF.data);};break;case U:dN.fields.childLtab.getActiveForm().callBackend(dF.data[0],dF.data[1],dF.data[2]);dD=false;break;case cH:window.location.reload();break;case cC:this.select(dF.data,false);break;case cM:rpc.session_id=dF.data;break;case t:this.showView(dF.data);dN=this.getActiveForm();break;case cA:for(var v=0;v<this.views.length;v++ ){if(this.views[v].qv_id==dF.data){this.tabs.setSelection([this.views[v]]);dbg(3,dc+dF.data);dbg(3,Q+this.tabs.getSelection()[0].qv_id);};};break;case D:this.form.fields.set_table_columns_visible(dF.data,true);break;case G:this.form.fields.set_table_columns_visible(dF.data,false);break;case cx:this.updateView(dF.data,true);break;case dv:this.updateView(dF.data,false);break;case co:dN.fields.window_hide(dF.data);this.setFadeIn(I);break;case cy:dN.fields.window_show(dF.data);this.setFadeIn(P);break;case q:dbg(2,o+dD+J+rpc.RpcQueue.length);if(dD&&rpc.RpcQueue.length==0){dbg(2,db);this.parentFadeIn();};break;default:alert(N+dF.cmd);break;};};if(this.form){dbg(5,dn+this.form);this.form.fields.updating=false;};dbg(5,df);},setFadeIn:function(dQ){this.selectfadein=dQ;if(this.parentLtab){this.parentLtab.selectfadein=this.selectfadein;};},autoUpdate:function(dR,dS){dbg(3,cJ);var dT=[];if(dR.replace(/^update(_async)*/,cR)==cL){dT=[this.form.fields.getFieldsData()];dbg(3,a+print_a(dT));};var dU=this.dispatch_async;var dV=false;if(dR.replace(/_with_values/,cR)==dv){this.parentFadeOut();dU=this.dispatch;}else {this.timer.pause();dV=true;};rpc.callRPCarray(Y+this.viewClass,dR,this,dU,dT,dV);},parentFadeOut:function(){if(this.parentLtab){this.parentLtab.parentFadeOut();}else {this.fadeOut();var dW=null;if(this.form&&this.form.fields&&(dW=this.form.fields.childLtab)){dW.fadeOut();dW.timer.pause();};};},fadeOut:function(){if(!this.form||!this.form.fields){return;};dbg(5,ds);this.form.fields.windows_fade_to(0.5);if(!this.fadedin){return;};this.fadedin=false;this.form.fields.setEnabled(false);if(this.tabs){this.tabs.setEnabled(false);};if(this.form.fields&&this.form.fields.getContentElement()&&this.form.fields.getContentElement().getDomElement()){this.fadeOut(0.25);};},parentFadeIn:function(){if(this.parentLtab){this.parentLtab.parentFadeIn();}else {this.timer.cont();if(this.selectfadein.search(w)>=0){this.fadeIn();};var dX=null;if(this.form&&this.form.fields&&this.form.fields.childLtab){dX=this.form.fields.childLtab;dX.timer.cont();if(this.selectfadein.search(cV)>=0){dX.fadeIn();}else {dX.fadeOut();};};if(this.selectfadein.search(P)>=0){this.getActiveForm().fields.windows_fade_to(1);};};},fadeIn:function(){var dY=this.getActiveForm();this.enableThis();if(this.fadedin){return;};this.fadedin=true;if(this.tabs){this.tabs.setEnabled(true);};if(dY&&dY.fields){if(this.getContentElement().getDomElement()){this.fadeIn(0.25);};};},enableThis:function(){if(this.tabs){this.tabs.setEnabled(true);};if(this.form&&this.form.fields){this.form.fields.setEnabled(true);};var ea=this.getActiveForm();if(ea&&ea.fields){ea.fields.setEnabled(true);};},setElementVisibility:function(ec,eb){var ed=this.getActiveForm();var f;if(f=ed.fields.fields[ec]){f.setVisibility(eb);if(f.widget_label){f.widget_label.setVisibility(eb);};}else {dbg(3,dy+ec);};},showView:function(ef){this.layoutView=ef.layout;this.dataClass=ef.data_class;this.viewClass=ef.view_class;dbg(5,c+this.layoutView);this.timer.stop();if(this.tabs){if(this.tabs.getSelection()[0].qv_id!=this.viewClass){for(var v=0;v<this.views.length;v++ ){if(this.views[v].qv_id==this.viewClass){this.tabs.setSelection([this.views[v]]);};};};};var ee=this.getRootContainer();dbg(5,dw+ee);var eg=[this,this.dispatch];if(!ee.hasChildren()){dbg(4,H+this.viewClass);this.form=new frontend.Views.Form(eg,this.layoutView,this.dataClass,this.viewClass,this);ee.add(this.form);this.form.fields.focus_if_ok(this.form.fields.first_field);}else {dbg(4,dq+this.viewClass+B);};},updateView:function(eh,ei){dbg(4,cW+eh);if(eh){this.form.fields.fill(eh,ei);};},select:function(ej,ek){dbg(4,dp+ej);if(ej){this.form.fields.unselect(ej);this.form.fields.fill(ej,ek);};},createViews:function(en){var ep=en.views;dbg(5,dl+ep);this.removeAll();this.tabs=new qx.ui.tabview.TabView(this.alignTabs).set(cI,false);this.views=[];for(var v=0;v<ep.length;v++ ){dbg(2,M+ep[v][0]+cB+ep[v][1]);this.views[v]=new qx.ui.tabview.Page(ep[v][1]);this.views[v].qv_id=ep[v][0];this.views[v].setLayout(new qx.ui.layout.Grow());var eo=new qx.ui.container.Scroll();var em=new qx.ui.container.Composite(new qx.ui.layout.Grow());eo.add(em);this.views[v].add(eo);this.tabs.add(this.views[v]);};this.add(this.tabs);this.app.inflateCenter();dbg(3,n+this.getRootContainer());this.parentFadeOut();qx.event.Registration.addListener(this.tabs,p,this.changeView,this);rpc.callRPC(Y+ep[0][0],t,this,this.dispatch);this.tabs.setSelection([this.views[0]]);},changeView:function(e){this.timer.stop();if(this.form&&this.form.fields.childLtab){this.form.fields.childLtab.timer.stop();};var eq=e.getData()[0].qv_id;dbg(3,dh+eq);this.form=this.getActiveForm();var es=this.getRootContainer();var et=this.tabs.getSelection()[0];this.tabs.setEnabled(false);var eu=de;var er=null;if(this.parentLtab){dbg(3,cO);eu=dx;er=this.parentLtab.form.fields.getOwnFieldsData();}else {this.setFadeIn(I);if(this.form&&this.form.fields){er=this.form.fields.getOwnFieldsData();};};if(et.initValues){dbg(2,X+et);for(var i in et.initValues){er[i]=et.initValues[i];};dbg(2,cw+print_a(er));et.initValues=null;};this.parentFadeOut();if(!es.hasChildren()){dbg(3,cv+eq+k+this.form);rpc.callRPC(Y+eq,eu+t,this,this.dispatch,er);}else {dbg(3,cP+print_a(er));this.viewClass=eq;rpc.callRPC(Y+eq,eu+L,this,this.dispatch,er);if(this.form.fields.childLtab){dbg(3,E);if(this.form.fields.childLtab.form){var ev=this.form.fields.childLtab;var eq=ev.tabs.getSelection()[0].qv_id;var er=this.form.fields.getOwnFieldsData();rpc.callRPC(Y+eq,cz,ev,ev.dispatch,er);};};};},getActiveForm:function(){var ew=this.getRootContainer();if(ew.getChildren){return ew.getChildren()[0];}else {return null;};},getRootContainer:function(){dbg(5,T);return this.tabs?this.tabs.getSelection()[0].getChildren()[0].getChildren()[0]:this;}}});})();(function(){var a="qx.ui.layout.Grow";qx.Class.define(a,{extend:qx.ui.layout.Abstract,members:{verifyLayoutProperty:null,renderLayout:function(b,c,e){var h=this._getLayoutChildren();var g,j,f,d;for(var i=0,l=h.length;i<l;i++ ){g=h[i];j=g.getSizeHint();f=b;if(f<j.minWidth){f=j.minWidth;}else if(f>j.maxWidth){f=j.maxWidth;};d=c;if(d<j.minHeight){d=j.minHeight;}else if(d>j.maxHeight){d=j.maxHeight;};g.renderLayout(e.left,e.top,f,d);};},_computeSizeHint:function(){var r=this._getLayoutChildren();var p,t;var s=0,q=0;var o=0,m=0;var k=Infinity,n=Infinity;for(var i=0,l=r.length;i<l;i++ ){p=r[i];t=p.getSizeHint();s=Math.max(s,t.width);q=Math.max(q,t.height);o=Math.max(o,t.minWidth);m=Math.max(m,t.minHeight);k=Math.min(k,t.maxWidth);n=Math.min(n,t.maxHeight);};return {width:s,height:q,minWidth:o,minHeight:m,maxWidth:k,maxHeight:n};}}});})();(function(){var b="frontend.Lib.TimerF";qx.Class.define(b,{extend:qx.core.Object,construct:function(){this.timer=qx.util.TimerManager.getInstance();},members:{timer:null,timeout:null,callback:null,timerId:null,args:null,pause:function(){},cb:function(d,c){var a=this.args;a[0].call(a[2],a[3],c);},cont:function(){var a=this.args;if(a&&a.length==5&&!this.timerId){this.timerId=this.timer.start(this.cb,a[1],this,a[3],a[4]);}else {};},start:function(f,i,h,e,g){this.stop();this.args=[f,i,h,e,g];this.cont();},pause:function(){if(this.timerId){this.timer.stop(this.timerId);this.timerId=null;};},stop:function(){this.pause();this.args=null;}}});})();(function(){var a="qx.util.TimerManager",b="interval",c="singleton";qx.Class.define(a,{extend:qx.core.Object,type:c,statics:{__nv:[],__nw:{},__nx:0},members:{__ny:false,start:function(g,f,h,d,j){if(!j){j=f||0;};var e=(new Date()).getTime()+j;this.self(arguments).__nw[ ++this.self(arguments).__nx]={callback:g,userData:d||null,expireAt:e,recurTime:f,context:h||this};this.__nz(e,this.self(arguments).__nx);return this.self(arguments).__nx;},stop:function(k){var l=this.self(arguments).__nv;var length=l.length;for(var i=0;i<length;i++ ){if(l[i]==k){l.splice(i,1);break;};};delete this.self(arguments).__nw[k];if(l.length==0&&this.__ny){qx.event.Idle.getInstance().removeListener(b,this.__nA,this);this.__ny=false;};},__nz:function(m,p){var o=this.self(arguments).__nv;var n=this.self(arguments).__nw;var length=o.length;for(var i=0;i<length;i++ ){if(n[o[i]].expireAt>m){o.splice(i,0,p);break;};};if(o.length==length){o.push(p);};if(!this.__ny){qx.event.Idle.getInstance().addListener(b,this.__nA,this);this.__ny=true;};},__nA:function(){var r=(new Date()).getTime();var t=this.self(arguments).__nv;var s=this.self(arguments).__nw;while(t.length>0&&s[t[0]].expireAt<=r){var v=t.shift();var q=s[v];q.callback.call(q.context,q.userData,v);if(q.recurTime&&s[v]){var u=(new Date()).getTime();q.expireAt=u+q.recurTime;this.__nz(q.expireAt,v);}else {delete s[v];};};if(t.length==0&&this.__ny){qx.event.Idle.getInstance().removeListener(b,this.__nA,this);this.__ny=false;};}}});})();(function(){var a="Use qx.dev.StackTrace.FORMAT_STACKTRACE instead",b="function",c="<span class='object'>",d="]:",e="&gt;",f="<span class='object' title='Object instance with hash code: ",g="FORMAT_STACK",h="string",k="level-",l="0",m="&lt;",n="<span class='offset'>",o="</span> ",p="}",q=":",r="qx.log.appender.Util",s="&amp;",t="&#39;",u="DIV",v="",w="]",x="'>",y="<span>",z="[",A=", ",B="</span>",C="\n",D="&quot;",E="<span class='type-key'>",F="{",G="</span>:<span class='type-",H="</span>: ",I=" ",J="]</span>: ",K="map",L="?",M="<span class='type-";qx.Class.define(r,{statics:{toHtml:function(V){var X=[];var T,W,O,Q;X.push(n,this.formatOffset(V.offset,6),o);if(V.object){var N=V.win.qx.core.ObjectRegistry.fromHashCode(V.object);if(N){X.push(f+N.$$hash+x,N.classname,z,N.$$hash,J);};}else if(V.clazz){X.push(c+V.clazz.classname,H);};var P=V.items;for(var i=0,U=P.length;i<U;i++ ){T=P[i];W=T.text;if(W instanceof Array){var Q=[];for(var j=0,S=W.length;j<S;j++ ){O=W[j];if(typeof O===h){Q.push(y+this.escapeHTML(O)+B);}else if(O.key){Q.push(E+O.key+G+O.type+x+this.escapeHTML(O.text)+B);}else {Q.push(M+O.type+x+this.escapeHTML(O.text)+B);};};X.push(M+T.type+x);if(T.type===K){X.push(F,Q.join(A),p);}else {X.push(z,Q.join(A),w);};X.push(B);}else {X.push(M+T.type+x+this.escapeHTML(W)+o);};};var R=document.createElement(u);R.innerHTML=X.join(v);R.className=k+V.level;return R;},formatOffset:function(bb,length){var ba=bb.toString();var bc=(length||6)-ba.length;var Y=v;for(var i=0;i<bc;i++ ){Y+=l;};return Y+ba;},escapeHTML:function(bd){return String(bd).replace(/[<>&"']/g,this.__nB);},__nB:function(bf){var be={"<":m,">":e,"&":s,"'":t,'"':D};return be[bf]||L;},toText:function(bg){return this.toTextArray(bg).join(I);},toTextArray:function(bn){var bp=[];bp.push(this.formatOffset(bn.offset,6));if(bn.object){var bh=bn.win.qx.core.ObjectRegistry.fromHashCode(bn.object);if(bh){bp.push(bh.classname+z+bh.$$hash+d);};}else if(bn.clazz){bp.push(bn.clazz.classname+q);};var bi=bn.items;var bl,bo;for(var i=0,bm=bi.length;i<bm;i++ ){bl=bi[i];bo=bl.text;if(bl.trace&&bl.trace.length>0){if(typeof (this.FORMAT_STACK)==b){qx.log.Logger.deprecatedConstantWarning(qx.log.appender.Util,g,a);bo+=C+this.FORMAT_STACK(bl.trace);}else {bo+=C+bl.trace;};};if(bo instanceof Array){var bj=[];for(var j=0,bk=bo.length;j<bk;j++ ){bj.push(bo[j].text);};if(bl.type===K){bp.push(F,bj.join(A),p);}else {bp.push(z,bj.join(A),w);};}else {bp.push(bo);};};return bp;}}});})();(function(){var a="html.console",b="qx.log.appender.Native",c="log";qx.Class.define(b,{statics:{process:function(d){if(qx.core.Environment.get(a)){var f=console[d.level]?d.level:c;if(console[f]){var e=qx.log.appender.Util.toText(d);console[f](e);};};}},defer:function(g){qx.log.Logger.register(g);}});})();(function(){var a='.qxconsole .messages{background:white;height:100%;width:100%;overflow:auto;}',b="Enter",c="px",d='</div>',f='.qxconsole .messages .user-result{background:white}',g='.qxconsole .messages .level-error{background:#FFE2D5}',h="div",i="user-command",j='<div class="command">',k="Up",l='.qxconsole .command input:focus{outline:none;}',m='.qxconsole .messages .type-key{color:#565656;font-style:italic}',n="none",o='.qxconsole .messages .type-instance{color:#565656;font-weight:bold}',p='.qxconsole .messages div{padding:0px 4px;}',q='.qxconsole .messages .level-debug{background:white}',r='.qxconsole .messages .type-class{color:#5F3E8A;font-weight:bold}',s="DIV",t='.qxconsole .messages .level-user{background:#E3EFE9}',u='<div class="qxconsole">',v="",w="D",x='.qxconsole .messages .type-map{color:#CC3E8A;font-weight:bold;}',y='.qxconsole .messages .type-string{color:black;font-weight:normal;}',z='.qxconsole .control a{text-decoration:none;color:black;}',A='<div class="messages">',B='.qxconsole .messages .type-boolean{color:#15BC91;font-weight:normal;}',C='<input type="text"/>',D="clear",E='.qxconsole .command input{width:100%;border:0 none;font-family:Consolas,Monaco,monospace;font-size:11px;line-height:1.2;}',F="keypress",G='.qxconsole .messages .type-array{color:#CC3E8A;font-weight:bold;}',H='.qxconsole{z-index:10000;width:600px;height:300px;top:0px;right:0px;position:absolute;border-left:1px solid black;color:black;border-bottom:1px solid black;color:black;font-family:Consolas,Monaco,monospace;font-size:11px;line-height:1.2;}',I='.qxconsole .command{background:white;padding:2px 4px;border-top:1px solid black;}',J='.qxconsole .messages .user-command{color:blue}',K="F7",L="qx.log.appender.Console",M='.qxconsole .messages .level-info{background:#DEEDFA}',N="block",O='.qxconsole .messages .level-warn{background:#FFF7D5}',P='.qxconsole .messages .type-stringify{color:#565656;font-weight:bold}',Q='.qxconsole .messages .user-error{background:#FFE2D5}',R='.qxconsole .control{background:#cdcdcd;border-bottom:1px solid black;padding:4px 8px;}',S='<div class="control"><a href="javascript:qx.log.appender.Console.clear()">Clear</a> | <a href="javascript:qx.log.appender.Console.toggle()">Hide</a></div>',T=">>> ",U="Down",V='.qxconsole .messages .type-number{color:#155791;font-weight:normal;}';qx.Class.define(L,{statics:{__nC:null,__cr:null,__nD:null,__nE:null,init:function(){var W=[H,R,z,a,p,J,f,Q,q,M,O,g,t,y,V,B,G,x,m,r,o,P,I,E,l];qx.bom.Stylesheet.createElement(W.join(v));var Y=[u,S,A,d,j,C,d,d];var ba=document.createElement(s);ba.innerHTML=Y.join(v);var X=ba.firstChild;document.body.appendChild(ba.firstChild);this.__nC=X;this.__cr=X.childNodes[1];this.__nD=X.childNodes[2].firstChild;this.__nH();qx.log.Logger.register(this);qx.core.ObjectRegistry.register(this);},dispose:function(){qx.event.Registration.removeListener(document.documentElement,F,this.__io,this);qx.log.Logger.unregister(this);},clear:function(){this.__cr.innerHTML=v;},process:function(bb){this.__cr.appendChild(qx.log.appender.Util.toHtml(bb));this.__nF();},__nF:function(){this.__cr.scrollTop=this.__cr.scrollHeight;},__gu:true,toggle:function(){if(!this.__nC){this.init();}else if(this.__nC.style.display==n){this.show();}else {this.__nC.style.display=n;};},show:function(){if(!this.__nC){this.init();}else {this.__nC.style.display=N;this.__cr.scrollTop=this.__cr.scrollHeight;};},__nG:[],execute:function(){var bd=this.__nD.value;if(bd==v){return;};if(bd==D){this.clear();return;};var bc=document.createElement(h);bc.innerHTML=qx.log.appender.Util.escapeHTML(T+bd);bc.className=i;this.__nG.push(bd);this.__nE=this.__nG.length;this.__cr.appendChild(bc);this.__nF();try{var be=window.eval(bd);}catch(bf){qx.log.Logger.error(bf);};if(be!==undefined){qx.log.Logger.debug(be);};},__nH:function(e){this.__cr.style.height=(this.__nC.clientHeight-this.__nC.firstChild.offsetHeight-this.__nC.lastChild.offsetHeight)+c;},__io:function(e){var bh=e.getKeyIdentifier();if((bh==K)||(bh==w&&e.isCtrlPressed())){this.toggle();e.preventDefault();};if(!this.__nC){return;};if(!qx.dom.Hierarchy.contains(this.__nC,e.getTarget())){return;};if(bh==b&&this.__nD.value!=v){this.execute();this.__nD.value=v;};if(bh==k||bh==U){this.__nE+=bh==k?-1:1;this.__nE=Math.min(Math.max(0,this.__nE),this.__nG.length);var bg=this.__nG[this.__nE];this.__nD.value=bg||v;this.__nD.select();};}},defer:function(bi){qx.event.Registration.addListener(document.documentElement,F,bi.__io,bi);}});})();(function(){var a="Deleted succesfully!",b="new_id",c="frontend.Views.Form",d="handleButton for ",e="params is ",f="button",g="callback",h="Got changeId with ",j="callBackend arguments are: ",k="100%",l="table",m=":",n="Couldn't delete because of ",o="list_choice",p="find",q="list",r="save",s="View.",t="dataClass is ",u="int",v=" Type is: ",w="date",x="split_button",y="str",z="upload",A="This ID doesn't exist!",B="new",C="OK",D='filename';qx.Class.define(c,{extend:qx.ui.container.Composite,construct:function(I,H,F,E,G){qx.ui.container.Composite.call(this,new qx.ui.layout.HBox());this.dataClass=F;this.viewClass=E;this.callback=I;this.ltab=G;this.add(this.fields=new frontend.Lib.Fields({callback:[this,this.changeId]},H,G),{width:k,flex:1});},members:{dataClass:null,viewClass:null,callback:null,fields:null,callback:null,ltab:null,changeId:function(L){dbg(3,h+print_a(L));var O=L[0];var name=L[1];var N=L[2];var J=L[3];var M=L[4];dbg(4,e+print_a(M));dbg(5,t+this.dataClass+v+N);switch(N){case y:case u:if(M.callback){this.callBackend(g,M.callback,this.fields.getFieldsData());}else {this.callBackend(p,name,J);};break;case f:this.callBackend(f,name,this.fields.getFieldsData());break;case z:ret=this.fields.getFieldsData();ret[D]=J;this.callBackend(f,name,ret);break;case x:var K=this.fields.getFieldsData();K.menu=J;this.callBackend(f,name,K);break;case q:this.callBackend(o,name,this.fields.getFieldsData());break;case w:if(M.callback){this.callBackend(g,M.callback,this.fields.getFieldsData());};break;case l:this.callBackend(l,name,this.fields.getFieldsData());break;default:this.fields.updating=false;break;};},callBackend:function(Q){var P=[];this.ltab.parentFadeOut();for(var i=1;i<arguments.length;i++ ){P.push(arguments[i]);};dbg(5,j+P.join(m));rpc.callRPCarray(s+this.viewClass,Q,this.callback[0],this.callback[1],P);},newData:function(R){if(R){this.fields.fill_silence(R);}else {alert(A);};this.fields.updating=false;},deleteData:function(S){if(S.answer==C){alert(a);}else {alert(n+S.reason);};this.fields.updating=false;},handleButton:function(name){dbg(5,d+name);switch(name){case B:this.fields.clearData();this.callBackend(b,this,this.newData);break;case r:this.callBackend(r,this,this.newData,this.fields.getFieldsData());break;default:this.callBackend(f,this,this.newData,name,this.fields.getFieldsData());break;};}}});})();(function(){var a="-",g="Start unselecting ",j="Adding a fields_layout to ",k="setValueList ",m="array",o="Setting normal value of ",q="Window",r="Setting rowflex to ",u="pass",y="changeValue",z="Setting data to ",A="table",B="Field ",C="Adding listener: ",D="Adding value_id only for ",E=" to elements ",F="/uploadfiles",G=" has getValue",H="getValueList",I="item is ",J="hbox",K="list_tabs",L="changeSelection",M="addElement ",N="Finished",O="groupw",P="Asking for row ",Q="*",R="list",S="dynamic",T='Upload exam',U="Having valueIds ",V="Writing is ",W='lu:me:ve',X="additive",Y="getValueFromTo",he="uploaded",gH=" for index ",hf="unselecting ",hb='ve',hc="Can't call listener while he's working!",go="Need to finish fields.table.callback==click_select and\n",hd="Adding elements to ",hj="Setting str value of ",hk='found index ',hl="Clearing fields: ",hm="fields_layout",hg="uploading",hh="Adding new timer",gX='click',hi="Hiding window ",hq="text",hW="Clearing selection of ",hr=" to ",hs="visible",hn='changeSelection',ho="#ffffff",jc="Setting array value of ",hp="write",hv="Adding a shrink-group to ",hw="align_",hx='lu',hC="Rendering ",hD="string",hE="execute",hy="drop",hz="callback",hA="Adding with flex",hB="#5f5",hI='ma:je:sa',hJ="Setting value of ",hK="timer for delay",hL="input",hF="Asked for non-existing window ",hG="Adding without VBox: ",ji="addElement called with ",hH=":",hQ="clearData",hR="d is ",hS="Getting table ",hT="middle",hM="Adding a hbox to ",hN="group",hO=" on layout ",hP="html",hU="Adding new item ",hV="addFile",ik="Finished adding listener ",ij="Adding index with all values ",ii="setValueDrop: ",ip='sa-di',io="composite",im="), ",il=" left: ",ib="split_button",ia="cancelled",hY='me',hX="No file",ih=" row: ",ig="Adding new tabs ",ie="Adding a vboxgl to ",ic='click_select',ix="Adding value :",iw=" column: ",iv='not calling',iu=" - data[d] is ",iB="cellClick",iA='dblClick',iz="Asked for unknown element ",iy=" our id is ",it="Adding: ",is="hidden",ir=" delayTimer:",iM="<table bgcolor='ffffff'><tr><td><b>",iL=" to field ",iK="rendering ",iQ="GetFieldsData",iP="Listener: ",iO="changeProgress",iN="View.",iF="Adding a vbox to ",iE="clearDataAll",iD="s",iC="getFieldsData",iJ="removing selection",iI="Adding a group to ",iH="Done ",iG="Creating element with fields ",iW="adjust fields.setValueArrayTable to call the callback func.",iV=" silence: ",iU="Found alignement: ",iT="html_embed",jb="button",ja="Adding some fields to ",iY="0",iX="got data for me: ",iS="dataEdited",iR="Returning ",fn='calling',fm="Adding ",fb=" - ",fk="updating ",fl='simple array: ',fj="select",jp="str",fh="changeState",fi="fields_noflex",fg=": ",jm="vboxg",fd='lu-di',ff="shrink",fc=" with ",fw="info",fx=" and nopreselect: ",fu="keypress",fv='single',fs=" (",ft="Adding for canvas",fr="selectables are: ",fa="Found a selection: ",fp="int",fq="</b></td></tr></table>",fo=" of ",fM="Started upload",fK="date",fL="Setting colflex to ",fI="right",fJ="Adding composite: ",fG="Focusing on ",fH=" = ",fE="\n",fF="vboxgl",fC="tabs",fD="vbox",fA="<br>",fB="window",fy="all",fz="hboxg",fX="Showing window ",fY="Focusing on table ",fV="#f55",fW='lu-ve',fT='edit',fU="Clearing selections of ",fR="Enter",fS="Setting column ",fP="fields",fQ="got data for parent: ",gn='je',gq=" has getValueSpecial",gp="Found element ",gk="dd.MM.yyyy",gj="Adding a vboxg to ",gm="This is Enter for ",gl="tel",gg="getValueListArray",gf="% in ",gi=" is of value ",gh="Implementation not finished:\n",gc=" delay:",ga="100%",ge="::",gd="Adding a window with layout ",gz="kBps",gy="hi",gB=' -- ',gA="Filling with data ",gv='appear',gu=" - valueIds = ",gx="",gw="clearDataOnly ",gs="returning from calcView, string is: ",gr="Couldn't focus on table ",gt="Waiting for browser",gO="Clearing field/list ",gQ=" as editable",gP="single",gL="getFieldsData: ",gK='ma',gN="Finished focusing);",gM="cellDblclick",ju='sa',gG="Value is an array!",gJ="valueIds is ",gI="upload",gD=" is of special-value ",gC="Updating columns of table ",gF="Stopping timer",gE='setting label ',jj=" which doesn't exist",gW=" : ",ha="rpc",gY="frontend.Lib.Fields",gT="Updating column ",gS="Deleting fields ",gV="top",gU="fromto",gR='di';function fO(name){dbg(5,fr+this.getSelectables());var jv=this.getSelectables();for(var s=0;s<jv.length;s++ ){var jw=jv[s];if(jw.getLabel()==name){this.setSelection([jw]);};};};function eY(jx){dbg(5,fr+this.getSelectables());this.setSelection([this.getSelectables()[jx]]);};function ht(){var jz=0;var jA=this.getSelection()[0];dbg(5,fr+this.getSelectables());var jy=this.getSelectables();for(var s=0;s<jy.length;s++ ){if(jy[s]==jA){return jz;};jz++ ;};return null;};function jg(){return gy;};function je(){dbg(5,H);var jD=[];var jB=this.getSelection();for(var s=0;s<jB.length;s++ ){var jC=jB[s];if(this.valueIds){jD.push(this.valueIds[this.indexOf(jC)]);}else {jD.push(jC.getLabel());};};return jD;};function jt(){dbg(5,gg);var jF=[];dbg(5,fr+this.getSelectables());var jE=this.getSelectables();for(var s=0;s<jE.length;s++ ){jF.push(jE[s].getLabel());};return jF.concat(je());};function jn(jK,jI){dbg(5,k+print_a(jK));dbg(5,gJ+print_a(jI.valueIds));var jG=[];if(!jK||!jK.length){jI.setSelection(jG);dbg(5,iJ);return;};for(var v=0;v<jK.length;v++ ){var jH=jK[v];var jJ=null;dbg(5,ix+jH+hH);if(jH instanceof Array){dbg(5,gG);if(!jI.valueIds){jI.valueIds=[];};jI.valueIds.push(jH[0]);jH=jH[1];}else {if(jI.valueIds){dbg(5,fr+jI.getSelectables(true));jJ=jI.getSelectables(true)[jI.valueIds.indexOf(jH)];}else {if(jI.findItem){jJ=jI.findItem(jH);};};};dbg(3,I+jJ+fx+jI.nopreselect);if(jJ&&(!jI.nopreselect)){jG.push(jJ);dbg(5,fa+jH);}else if(jH!=gx){dbg(5,hU+jH);var jJ=new qx.ui.form.ListItem(gx+jH);jI.add(jJ);};};jI.setSelection(jG);};function jl(jL){if(this.maxheight){this.setHeight(null);this.setMaxHeight(this.maxheight);};jn(jL,this);};function jh(jN){dbg(5,ii+print_a(jN));if(this.valueIds){dbg(3,U+print_a(this.valueIds));jn(jN,this);}else if(jN.length==1&&this.getChildren().length>0){var jM=this.getChildren();dbg(5,hJ+jN+E+jM);for(var e=0;e<jM.length;e++ ){if(jM[e].getLabel()==jN){dbg(5,gp+jM[e]);this.setSelection([jM[e]]);};};}else {jn(jN,this);};};function js(jO){this.removeAll();jn(jO,this);};function jk(jP){this.valueBold=jP;text=jP.split(fE).join(fA);this.setValue(iM+text+fq);};function jr(){return this.valueBold;};function iq(){dbg(5,Y);var d=this.getChildren();var h=d[1].getChildren();var jQ=[d[0].getSelection()[0].getLabel(),h[0].getSelection()[0].getLabel(),h[2].getSelection()[0].getLabel()];dbg(4,print_a(jQ));return jQ;};function jo(){};function hu(){return this.getDateFormat().format(this.getValue());};function fN(v){this.setValue(this.getDateFormat().parse(v));};function jd(x){return x<10?iY+x:x;};function jq(jS,jV){var jT=jS;var jR=-1;if(jS&&(jS[0] instanceof Array)&&(jS[0][1] instanceof Array)){this.valueIds=[];for(var i=0;i<jS.length;i++ ){this.valueIds.push(jS[i][0]);jT[i]=jS[i][1];};}else {dbg(2,fl+print_a(jS)+gB+print_a(this.valueIds));if(this.valueIds&&this.valueIds.indexOf(jS[0])>=0){jR=this.valueIds.indexOf(jS[0]);dbg(2,hk+jR);}else {this.valueIds=null;};};dbg(2,z+print_a(jT)+gu+print_a(this.valueIds));this.cancelEditing();var jU=this.getSelectionModel();jU.resetSelection();if(jR>=0){jU.setSelectionInterval(jR,jR);}else {this.getTableModel().setData(jT);};};function jf(ka){dbg(2,hS+this);var kb=[];var jX=this;var jW=jX.valueIds;var jY=jX.getTableModel();jX.stopEditing();jX.getSelectionModel().iterateSelection(function(kc){if(jX.is_editable||!jW){dbg(2,ij+kc);var kd=jY.getRowDataAsMap(kc);if(jW){kd.element_id=jW[kc];};}else {dbg(2,D+kc+fg+kd);kd=jW[kc];};dbg(2,fm+print_a(kd));kb.push(kd);});dbg(2,iR+print_a(kb));return kb;};qx.Class.define(gY,{extend:qx.ui.container.Composite,construct:function(kh,kf,ki){qx.ui.container.Composite.call(this,this.layout=new qx.ui.layout.Canvas());var ke=[ha,hp,hz];for(var p=0;p<ke.length;p++ ){var kg=ke[p];this[kg]=kh[kg];};this.write=this.write?this.write:fy;this.fields=[];this.windows={};this.updating=false;this.field_id=null;this.needs_expansion={};this.ltab=ki;dbg(5,V+this.write+iy+this);this.index=1;this.timer=qx.util.TimerManager.getInstance();if(kf){this.calcView(kf,this);};},members:{rpc:null,write:null,callback:null,field_id:null,fields:null,windows:null,first_field:null,updating:null,index:null,timer:null,delayTimer:null,layout:null,childLtab:null,ltab:null,needs_expansion:null,getOwnFieldsData:function(){dbg(5,iC);var kk={};for(var f in this.fields){var kj=this.fields[f];if(kj.getValueSpecial){dbg(5,f+gq);if(kj.getValueSpecial()){kk[f]=kj.getValueSpecial();if(kk[f]){dbg(5,B+f+gD+kk[f]);};};}else if(kj.getValue){dbg(5,f+G);if(kj.getValue){kk[f]=kj.getValue();if(kk[f]){dbg(5,B+f+gi+kk[f]);};};};};dbg(4,gL+print_a(kk));return kk;},getFieldsData:function(){dbg(5,iQ);var km=this.getOwnFieldsData();if(this.childLtab&&this.childLtab.form&&this.childLtab.form.fields){var kn=this.childLtab.form.fields.getOwnFieldsData();for(var kl in kn){km[kl]=kn[kl];dbg(3,iX+kl+fH+km[kl]);};};if(this.ltab.parentLtab){var kn=this.ltab.parentLtab.form.fields.getOwnFieldsData();for(var kl in kn){km[kl]=kn[kl];dbg(3,fQ+kl+fH+km[kl]);};};return km;},clearDataOnly:function(ko){dbg(5,gw+print_a(ko));this.updating=true;if(ko){if(!(ko instanceof Array)){ko=[ko];};dbg(5,gS+print_a(ko));for(var f=0;f<ko.length;f++ ){var kp;if(kp=this.fields[ko[f]]){dbg(5,gO+kp);if(kp.valueIds){kp.valueIds=[];};if(kp.removeAll&&!kp.getDateFormat){kp.resetSelection();kp.removeAll();}else if(kp.resetValue){kp.resetValue();}else if(kp.setValueStr){kp.setValueStr(gx);}else if(kp.setValueArray){kp.setValueArray([]);}else if(kp.setValue){kp.setValue(gx);};};};};this.updating=false;},clearSelections:function(){this.updating=true;dbg(5,fU+print_a(this.fields)+gW+this.fields.length);for(var f in this.fields){var kq=this.fields[f];if(kq.setSelection){dbg(5,hW+f);kq.setSelection([]);}else if(kq.resetSelection){dbg(5,hW+f);kq.resetSelection();};};this.updating=false;},clearData:function(ks){dbg(5,hQ);var kr=[];if(!this.fields){return;};for(var f in this.fields){if(!this.fields[f].removeAll||this.fields[f].getDateFormat){kr.push(f);};};dbg(5,hl+print_a(kr));this.clearDataOnly(kr);this.clearDataOnly(ks);},clearDataAll:function(){dbg(5,iE);var kt=[];for(var f in this.fields){kt.push(f);};dbg(5,hl+print_a(kt));this.clearDataOnly(kt);},unselect:function(kv){var kw=this.updating;this.updating=true;dbg(3,g+print_a(kv));for(var d in kv){dbg(3,hR+d+iu+kv[d]);var ku=this.fields[d];if(ku){dbg(3,hf+ku);this.fill({field:[]},true);};};this.updating=kw;this.updating=false;},set_table_columns_visible:function(kA,kx){for(var t in kA){dbg(5,gC+t+fb+kx);var kz=this.fields[t];var kB=kA[t];for(var c in kB){var ky=kB[c];dbg(5,gT+ky);kz.getTableColumnModel().setColumnVisible(ky,kx);};};},fill:function(kD,kE){var kF=this.updating;if(kE){this.updating=true;};dbg(3,gA+print_a(kD)+iV+kE);for(var f in this.fields){var kC=this.fields[f];if(kD[f]!=null){if(kC.setValueStr){dbg(4,hj+kD[f]+iL+f);kC.setValueStr(kD[f].toString());}else if(kC.setValueArray){dbg(4,jc+kD[f]+iL+f);kC.setValueArray(kD[f],kE);}else if(kC.setValue){dbg(4,o+kD[f]+iL+f);kC.setValue(kD[f].toString());};};};this.updating=kF;},fill_silence:function(kG){this.fill(kG,true);},addElement:function(li,kP,kO){dbg(5,ji+[print_a(li),kP,kO].join(hH));var kV=li.shift();var name=li.shift();var kQ=li.shift();var kT=li[0]?li.shift():[];var kJ=null;var kW=true;var le=y;var lk=false;var kN=true;var kR=0;var kL=null;dbg(5,M+kV+fb+kQ+fb+print_a(kT));switch(kV){case m:case fp:case jp:case gl:kJ=new qx.ui.form.TextField(gx);if(kT.id||kT.callback){lk=true;le=hL;if(kT.id){this.field_id=name;};kR=1500;};if(kT.ro){kJ=new qx.ui.basic.Label(gx);kJ.setRich(true);kJ.setWrap(true);kJ.setValueStr=jk;kJ.getValueSpecial=jr;};if(kV==fp){kJ.setTextAlign(fI);};break;case jb:lk=true;le=hE;kJ=new qx.ui.form.Button(kQ);kJ.getData=function(){};kW=false;if(!kL||kT.def){kL=kJ;for(var i in this.fields){if(!this.fields[i].button_default){this.fields[i].button_default=kL;};};};break;case io:kJ=new qx.ui.container.Composite();kW=false;le=null;break;case fK:kJ=new qx.ui.form.DateField();kJ.setDateFormat(new qx.util.format.DateFormat(gk));kJ.getValueSpecial=hu;kJ.setValueStr=fN;if(kT.callback){lk=true;le=y;};if(kT.ro){kJ.setEnabled(false);};break;case gU:kJ=new qx.ui.container.Composite(new qx.ui.layout.VBox(2));kJ.add(this.createDoW());var la=new qx.ui.container.Composite(new qx.ui.layout.HBox(2));la.add(this.createHours());la.add(new qx.ui.basic.Label(a));la.add(this.createHours());kJ.add(la);kJ.getValue=iq;kJ.setValueStr=jo;kJ.resetSelection=function(){};kJ.removeAll=function(){};break;case is:this.fields[name]=new qx.ui.basic.Label(kT);if(kT.id){this.field_id=name;};break;case hP:kJ=new qx.ui.basic.Label().set({value:kT.text,rich:true,allowGrowX:true,allowGrowY:true});kW=false;break;case iT:kJ=new qx.ui.embed.Html();kJ.setHtml(kT.text);kJ.setValue=kJ.setHtml;kW=false;break;case fw:kJ=new qx.ui.basic.Label(kT.text);kJ.setRich(true);kJ.setWrap(true);kJ.setValueStr=jk;kJ.getValueSpecial=jr;break;case R:if(kT.list_type!=hy){kJ=new qx.ui.form.List();kJ.setSelectionMode(kT.list_type==fv?gP:X);if(kT.maxheight){kJ.setMinHeight(30);kJ.setMaxHeight(30);kJ.maxheight=kT.maxheight;};kJ.setMinWidth(200);if(kT.nopreselect){kJ.nopreselect=true;};}else {kJ=new qx.ui.form.SelectBox();};kJ.searchLabel=fO;kJ.searchIndex=eY;kJ.selectedIndex=ht;if(kT.list_type==m){kJ.setValueArray=js;kJ.getValue=jt;}else if(kT.list_type!=hy){kJ.setValueArray=jl;kJ.getValue=je;}else {kJ.setValueArray=jh;kJ.getValue=je;};if(kT.ro){kJ.setEnabled(false);};kJ.setValueArray(kT.list_values);le=L;if(kT.callback){lk=true;};break;case u:kJ=new qx.ui.form.PasswordField(gx);break;case fj:kJ=new qx.ui.form.SelectBox();if(kT.list_values){while(kT.list_values.length>0){kJ.add(new qx.ui.form.ListItem(kT.list_values.shift()));};};kJ.searchLabel=fO;kJ.searchIndex=eY;kJ.selectedIndex=ht;le=L;break;case ib:lk=true;le=hE;kJ=new qx.ui.form.SplitButton(kQ);kJ.getData=function(){};kJ.setAllowGrowY(false);kJ.setValueArray=function(l){var ln=this;if(typeof (l)===hD){ln.setLabel(l);}else if(l.length>0){ln.setLabel(l.shift());var lm=new qx.ui.menu.Menu;for(var i=0;i<l.length;i++ ){var n=l[i];var b=new qx.ui.menu.Button(n);b.addListener(hE,function(e){ln.fireDataEvent(hE,this.getLabel());},b);lm.add(b);};ln.setMenu(lm);};};kJ.setValueArray([kQ].concat(kT.menu));kW=false;if(!kL||kT.def){kL=kJ;for(var i in this.fields){if(!this.fields[i].button_default){this.fields[i].button_default=kL;};};};break;case A:var kK=kT.headings;var kI=new qx.ui.table.model.Simple();var kH=kT.height||250;var lg=kT.widths;kI.setColumns(kK);var kM=new qx.ui.table.Table(kI).set({decorator:null,showCellFocusIndicator:false});switch(kT.callback){case fT:lk=true;le=iS;kM.getSelectionModel().setSelectionMode(qx.ui.table.selection.Model.SINGLE_SELECTION);break;case gX:lk=true;le=iB;break;case ic:alert(gh+go+iW);lk=true;le=iB;kT.single=true;kM.callOnChange=false;kM.getSelectionModel().addListener(hn,function(e){if(kM.callOnChange){alert(fn);this.callback[1].call(this.callback[0],[id,name,kV,data,kT]);}else {alert(iv);};});break;case iA:lk=true;le=gM;break;default:kM.getSelectionModel().setSelectionMode(qx.ui.table.selection.Model.MULTIPLE_INTERVAL_SELECTION_TOGGLE);};if(kT.edit){for(var e=0;e<kT.edit.length;e++ ){var ll=kT.edit[e];dbg(2,fS+ll+gQ);kI.setColumnEditable(ll,true);kT.single=true;};kM.is_editable=true;};if(kT.single){kM.getSelectionModel().setSelectionMode(qx.ui.table.selection.Model.SINGLE_SELECTION);};kM.setValueArray=jq;kM.getValue=jf;kM.setStatusBarVisible(false);kM.setAllowShrinkY(true);kM.setAllowStretchY(true);kM.setMaxHeight(kH);if(lg){var kS=0;for(var i=0;i<lg.length;i++ ){kS+=lg[i];kM.setColumnWidth(i,lg[i]);};if(!kT.width){kT.width=kS;};};kW=false;if(kT.columns){for(var i=0;i<kT.columns.length;i++ ){var lf=null;var p=kT.columns[i];dbg(3,hC+p+gH+i);if(p==hP){lf=new qx.ui.table.cellrenderer.Html();}else if(/^align_/.test(p)){var lj=p.replace(hw,gx);dbg(3,iU+lj);lf=new qx.ui.table.cellrenderer.String(lj);}else if(p==S){lf=new qx.ui.table.cellrenderer.Dynamic();};if(lf){dbg(3,iK+lf);kM.getTableColumnModel().setDataCellRenderer(i,lf);};};};kJ=kM;break;case hq:kJ=new qx.ui.form.TextArea(gx);kJ.setAutoSize(false);kJ.setWidth(300);kN=false;if(kT.ro){kJ.setReadOnly(true);};if(kT.ro){kJ=new qx.ui.basic.Label(gx);kJ.setRich(true);kJ.setValueStr=jk;kJ.getValueSpecial=jr;};if(kT.height){kJ.setHeight(kT.height);};if(kT.width){kJ.setWidth(kT.width);};break;case gI:kW=false;var lk=[kT.callback,this.callback];kJ=new qx.ui.container.Composite(new qx.ui.layout.HBox(2));var lh=new com.zenesis.qx.upload.UploadButton(kQ);lh.setLabel(T);kJ.add(lh);var kU=new qx.ui.container.Composite(new qx.ui.layout.VBox(2));var kY=new qx.ui.indicator.ProgressBar(0,100);var lc=kY.getBackgroundColor();kU.add(kY);var ld=new qx.ui.basic.Label(hX);kU.add(ld);kJ.add(kU);kJ.progress=[kY,ld];kJ.setValue=function(lo){kY.setBackgroundColor(ho);kY.setValue(0);ld.setValue(hX);dbg(3,gE+lo);lh.setLabel(lo);};var lb=new com.zenesis.qx.upload.UploadMgr(lh,F);lb.addListener(hV,function(ls){var lt=ls.getData();var lq=(new Date).getTime();var lp=lt.addListener(iO,function(lv){var lx=Math.round(lv.getData()/lt.getSize()*100);kY.setValue(lx);var lu=((new Date).getTime()-lq)/1000;var ly=Math.round(lu)+iD;var lw=Math.round(lv.getData()/lu/1000)+gz;if(lx<100){ld.setValue(iH+lx.toString().rjust(3,iY)+gf+ly+fs+lw+im+il+(Math.round(0.8+lu*(100/lx-1))));}else {ld.setValue(gt);};},this);var lr=lt.addListener(fh,function(lA){var lz=lA.getData();if(lz==hg){kY.setBackgroundColor(fV);ld.setValue(fM);}else if(lz==he){kY.setValue(100);kY.setBackgroundColor(hB);ld.setValue(N);};if(lz==he||lz==ia){lt.removeListenerById(lr);lt.removeListenerById(lp);if(lk[0]){lk[1][1].call(lk[1][0],[0,name,gI,lt.getFilename(),0]);};};},this);});break;default:alert(iz+kV);break;};if(kJ&&!kT.hidden){dbg(5,it+kV+hH+name+hH+kQ+hr+kP.getLayout());this.fields[name]=kJ;this.fields[name].field_name=name;kJ.field_name=name;kJ.setTabIndex(this.index++ );if(!this.first_field){this.first_field=kJ;};if(kV!=jb){kL=null;};kJ.addListener(fu,function(e){if(e.getKeyIdentifier()==fR&&kN){dbg(5,gm+e+hH+name+hH+kQ);if(this.button_default){this.button_default.execute();};};},kJ);if(kT.width){kJ.setMinWidth(kT.width);};if(kW){var kX=new qx.ui.basic.Label(kQ);kX.setBuddy(kJ);kP.add(kX,{row:kO,column:0});kJ.widget_label=kX;};if(/Grid/.test(kP.getLayout().toString())){if(kT.wide){kP.add(kJ,{row:kO,column:0,colSpan:2});}else {kP.add(kJ,{row:kO,column:1});};if(kT.flex){kT.flexheight=1;kT.flexwidth=1;};if(kT.flexheight){dbg(3,r+kT.flexheight);kP.getLayout().setRowFlex(kO,kT.flexheight*10);if(kT.flexheight>0){this.needs_expansion.height=ga;};};if(kT.flexwidth){dbg(3,fL+kT.flexwidth);kP.getLayout().setColumnFlex(1,kT.flexwidth*10);if(kT.flexwidth>0){this.needs_expansion.width=ga;};};}else {dbg(5,hG+kJ+hr+kP.getLayout().toString());kP.add(kJ,{flex:1});};if(le&&this.callback&&lk){dbg(4,C+kV+hH+name+hH);if(typeof (le)===hD){le=[le];};dbg(4,print_a(le));for(var l=0;l<le.length;l++ ){kJ.addListener(le[l],function(e){dbg(4,fk+this.updating+gc+kR+ir+this.delayTimer);if(!this.updating||(kR>0&&this.delayTimer)){dbg(5,iP+kV+hH+name+hH+this.field_id);this.updating=true;var lC=null;if(this.field_id){this.fields[this.field_id].getValue();};var lB=e.getData?e.getData():gx;if(kR==0){this.callback[1].call(this.callback[0],[lC,name,kV,lB,kT]);}else {if(this.delayTimer){dbg(4,gF);this.timer.stop(this.delayTimer);this.delayTimer=null;};dbg(4,hh);this.delayTimer=this.timer.start(function(lD,lE){dbg(3,hK);this.callback[1].call(this.callback[0],[lC,name,kV,lB,kT]);},0,this,null,kR);};}else {dbg(3,hc);};e.stop();},this);dbg(5,ik+le[l]);};};};return kJ;},calcView:function(lL,lF){var lG=1;if(lL[0]&&lL[0].split){var lN=lL[0].split(hH);switch(lN[0]){case hm:dbg(5,j+lF+fb+print_a(lL[1]));this.calcView(lL[1],new qx.ui.container.Composite(new qx.ui.layout.HBox(10)));break;case fi:dbg(4,fi);lG=0;case fP:dbg(5,ja+lF);var lI=lF.add(this.calcView(lL[1],new qx.ui.container.Composite(new qx.ui.layout.Grid().setColumnAlign(0,fI,hT).setSpacing(5).setColumnFlex(0,lG).setColumnFlex(1,3))),{flex:1});break;case hN:dbg(5,iI+lF);if(!this.first_group){this.first_group=lF;};var lP=new qx.ui.groupbox.GroupBox();lP.setLayout(new qx.ui.layout.VBox(10));if(false){lF.add(this.calcView(lL[1],lP));}else {if(lF.getLayout().constructor!=qx.ui.layout.Canvas){dbg(3,hA);lF.add(this.calcView(lL[1],lP),{flex:1});}else {dbg(3,ft);var lS=this.calcView(lL[1],lP);lF.add(lS,this.needs_expansion);};};break;case O:dbg(5,iI+lF);var lP=new qx.ui.groupbox.GroupBox();lP.setLayout(new qx.ui.layout.VBox(10));if(false){lF.add(this.calcView(lL[1],lP));}else {if(lF.getLayout().constructor!=qx.ui.layout.Canvas){dbg(3,hA);lF.add(this.calcView(lL[1],lP),{flex:1});}else {dbg(3,ft);lF.add(this.calcView(lL[1],lP),{height:ga,width:ga});};};break;case J:dbg(5,hM+lF);var lU=new qx.ui.layout.HBox(10);var lR=new qx.ui.container.Composite(lU);var lT=this.needs_expansion.width;var lS=this.calcView(lL[1],lR);if(lT!=this.needs_expansion.width){lT={flex:1};}else {lT={};};lF.add(lS,lT);break;case fz:dbg(5,hM+lF);var lU=new qx.ui.layout.HBox(10);var lR=new qx.ui.container.Composite(lU);lF.add(this.calcView(lL[1],lR),{flex:1});break;case ff:dbg(5,hv+lF);var lP=new qx.ui.groupbox.GroupBox();lP.setLayout(new qx.ui.layout.VBox(10));lF.add(this.calcView(lL[1],lP));break;case fC:var lJ=lL[1][0][0];dbg(3,ig+print_a(lL)+ge+lJ);this.childLtab=new frontend.Views.Ltab(this.ltab.app);this.childLtab.alignTabs=gV;this.childLtab.parentLtab=this.ltab;var lR=new qx.ui.container.Composite(new qx.ui.layout.Grow());lR.add(this.childLtab);lF.add(lR,{flex:5});rpc.callRPC(iN+lJ,K,this.childLtab,this.childLtab.dispatch);break;case fD:dbg(5,iF+lF);var lI=new qx.ui.container.Composite(new qx.ui.layout.VBox(10).set({alignX:fI}));var lT=this.needs_expansion.height;var lK={};var lS=this.calcView(lL[1],lI);if(lT!=this.needs_expansion.height){lK={flex:1};};lF.add(lS,lK);break;case jm:dbg(5,gj+lF);var lI=new qx.ui.container.Composite(new qx.ui.layout.VBox(10).set({alignX:fI}));lF.add(this.calcView(lL[1],lI),{flex:1});break;case fF:dbg(5,ie+lF);var lI=new qx.ui.container.Composite(new qx.ui.layout.VBox(10).set({alignX:fI}));lF.add(this.calcView(lL[1],lI),{flex:1});break;case fB:dbg(5,gd+lL[1]);var lQ=this.first_field;this.first_field=null;var l=new qx.ui.container.Composite(new qx.ui.layout.VBox(10));this.calcView(lL[1],l);var lM=new qx.ui.window.Window(q).set({modal:true,allowClose:false,visibility:is});lM.setLayout(new qx.ui.layout.HBox());lM.add(l);lM.layout=l;lM.center();lM.created=false;lM.dontfade=false;lM.isfaded=1;lM.first_field=this.first_field;this.first_field=lQ;this.windows[lN[1]]=lM;lM.addListenerOnce(gv,function(){lM.created=true;});break;};}else {dbg(5,hd+lF);var lH=lL;for(var l=0;l<lH.length;l++ ){if(lH[l].push&&lH[l].length<4){dbg(5,fJ+lH[l]+fc+lF);var lO=this.calcView(lH[l],lF);}else {dbg(5,iG+lH[l]+hO+lF);this.addElement(lH[l],lF,parseInt(l));};};};dbg(5,gs+lL[0]);return lF;},focus_if_ok:function(lV){if(lV&&lV.isFocusable()){dbg(4,fG+lV);lV.focus();};},focus_table:function(lX,ma,lY){if(lX&&lX.isFocusable()){dbg(2,fY+lX+ih+lY+iw+ma);lX.stopEditing();lX.cancelEditing();lX.focus();var lW=lX.getTableModel().getRowCount();if(lY>=lW){dbg(2,P+lY+jj);return;};lX.resetCellFocus();lX.resetSelection();var mb=lX.getSelectionModel();mb.resetSelection();mb.setSelectionInterval(lY,lY);lX.setFocusedCell(ma,lY);lX.startEditing();dbg(2,gN);}else {dbg(0,gr+lX);};},window_show:function(name){dbg(2,fX+name);if(win=this.windows[name]){win.setVisibility(hs);win.focus();win.activate();win.dontfade=false;this.window_fade_to(win,1);this.focus_if_ok(win.first_field);}else {alert(hF+name);};},window_fade_to:function(mc,md){if(mc.created&&!mc.dontfade&&mc.isfaded!=md){mc.isfaded=md;if(md<1.0){}else {};mc.setEnabled(md<1?false:true);}else {};},windows_fade_to:function(me){for(var w in this.windows){this.window_fade_to(this.windows[w],me);};if(this.childLtab&&this.childLtab.form&&this.childLtab.form.fields){this.childLtab.form.fields.windows_fade_to(me);};},window_hide:function(name){dbg(2,hi+name+fo+this.windows.length);if(name==Q||!name){for(var i in this.windows){dbg(2,hi+i);this.windows[i].setVisibility(is);this.windows[i].dontfade=true;};}else {this.windows[name].setVisibility(is);};this.focus_if_ok(this.first_field);},createHours:function(){var mf=new qx.ui.form.SelectBox();for(var i=0;i<48;i++ ){var mg=new qx.ui.form.ListItem(gx+jd(Math.floor(i/2))+hH+jd((i%2)*30));mf.add(mg);};mf.setWidth(null);return mf;},createDoW:function(){var mi=new qx.ui.form.SelectBox();var mh=[fW,fd,ip,hx,gK,hY,gn,hb,ju,gR,W,hI];for(var i=0;i<mh.length;i++ ){var mj=new qx.ui.form.ListItem(mh[i]);mi.add(mj);};mi.setWidth(null);return mi;}}});})();(function(){var a="changeModel",b="qx.ui.form.MModelProperty";qx.Mixin.define(b,{properties:{model:{nullable:true,event:a,dereference:true}}});})();(function(){var a="qx.ui.form.IModel",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeModel":b},members:{setModel:function(c){},getModel:function(){},resetModel:function(){}}});})();(function(){var a="listitem",b="hovered",c="mouseover",d="mouseout",e="qx.ui.form.ListItem",f="qx.event.type.Event";qx.Class.define(e,{extend:qx.ui.basic.Atom,implement:[qx.ui.form.IModel],include:[qx.ui.form.MModelProperty],construct:function(h,i,g){qx.ui.basic.Atom.call(this,h,i);if(g!=null){this.setModel(g);};this.addListener(c,this._onMouseOver,this);this.addListener(d,this._onMouseOut,this);},events:{"action":f},properties:{appearance:{refine:true,init:a}},members:{_forwardStates:{focused:true,hovered:true,selected:true,dragover:true},_onMouseOver:function(){this.addState(b);},_onMouseOut:function(){this.removeState(b);}},destruct:function(){this.removeListener(c,this._onMouseOver,this);this.removeListener(d,this._onMouseOut,this);}});})();(function(){var a="",b="qx.ui.form.MForm",c="Boolean",d="_applyValid",f="changeLocale",g="changeRequired",h="changeValid",i="qx.dynlocale",j="changeInvalidMessage",k="String",l="invalid";qx.Mixin.define(b,{construct:function(){if(qx.core.Environment.get(i)){qx.locale.Manager.getInstance().addListener(f,this.__nI,this);};},properties:{valid:{check:c,init:true,apply:d,event:h},required:{check:c,init:false,event:g},invalidMessage:{check:k,init:a,event:j},requiredInvalidMessage:{check:k,nullable:true,event:j}},members:{_applyValid:function(n,m){n?this.removeState(l):this.addState(l);},__nI:qx.core.Environment.select(i,{"true":function(e){var o=this.getInvalidMessage();if(o&&o.translate){this.setInvalidMessage(o.translate());};var p=this.getRequiredInvalidMessage();if(p&&p.translate){this.setRequiredInvalidMessage(p.translate());};},"false":null})},destruct:function(){if(qx.core.Environment.get(i)){qx.locale.Manager.getInstance().removeListener(f,this.__nI,this);};}});})();(function(){var a="readOnly",b="text",c="outline: none;",d="_applyTextAlign",f="Boolean",g="px",h="RegExp",i=")",j="syncAppearance",k="engine.version",l="Invalid value type: ",m="A",n="input::-moz-placeholder, textarea::-moz-placeholder",o="autoComplete: off;",p="mousedown",q="input",r="color",s="border: none;",t="qx.event.type.Data",u="focusin",v="showingPlaceholder",w="resize: none;",x="center",y="change",z="changeStatus",A="placeholder",B="input.qx-placeholder-color::-webkit-input-placeholder, textarea.qx-placeholder-color::-webkit-input-placeholder",C="focused",D="qx-placeholder-color",E="visible",F="PositiveInteger",G=" !important",H="url(",I="display : block;",J="_applyReadOnly",K="browser.documentmode",L="input:-moz-placeholder, textarea:-moz-placeholder",M="readonly",N="qx.ui.form.AbstractField",O="disabled",P="",Q="textAlign",R="visibility",S="_applyMaxLength",T="input.qx-placeholder-color:-ms-input-placeholder, textarea.qx-placeholder-color:-ms-input-placeholder",U="appearance: none;",V=".qx-abstract-field",W="color: ",X="qx-abstract-field",Y="background : transparent;",bH="qx.dynlocale",bI="spellcheck",bJ="false",bD="right",bE="maxLength",bF="gecko",bG="normal",bN="mshtml",bO="engine.name",bP="padding: 0;",cc="abstract",bK="focusout",bL="position: absolute;",bM="margin: 0;",bB="css.placeholder",bS="webkit",bC="String",bT="changeLocale",bU="_applyPlaceholder",bY="hidden",bQ="border-radius: 0;",cb="left",bR="changeValue",bV="qx/static/blank.gif",bW="text-placeholder",bX="changeReadOnly",ca="absolute";qx.Class.define(N,{extend:qx.ui.core.Widget,implement:[qx.ui.form.IStringForm,qx.ui.form.IForm],include:[qx.ui.form.MForm],type:cc,statics:{__dw:null,__nJ:function(){var ce=qx.theme.manager.Color.getInstance();var cd=ce.resolve(bW);if(qx.core.Environment.get(bO)==bF){var cf;if(parseFloat(qx.core.Environment.get(k))>=19){cf=n;}else {cf=L;};qx.ui.style.Stylesheet.getInstance().addRule(cf,W+cd+G);}else if(qx.core.Environment.get(bO)==bS){cf=B;qx.ui.style.Stylesheet.getInstance().addRule(cf,W+cd);}else if(qx.core.Environment.get(bO)==bN){cf=T;qx.ui.style.Stylesheet.getInstance().addRule(cf,W+cd+G);};}},construct:function(cg){qx.ui.core.Widget.call(this);this.__nK=!qx.core.Environment.get(bB);if(cg!=null){this.setValue(cg);};this.getContentElement().addListener(y,this._onChangeContent,this);if(this.__nK){this.addListener(j,this._syncPlaceholder,this);}else {qx.ui.form.AbstractField.__nJ();this.getContentElement().addClass(D);};if(qx.core.Environment.get(bH)){qx.locale.Manager.getInstance().addListener(bT,this._onChangeLocale,this);};},events:{"input":t,"changeValue":t},properties:{textAlign:{check:[cb,x,bD],nullable:true,themeable:true,apply:d},readOnly:{check:f,apply:J,event:bX,init:false},selectable:{refine:true,init:true},focusable:{refine:true,init:true},maxLength:{apply:S,check:F,init:Infinity},liveUpdate:{check:f,init:false},placeholder:{check:bC,nullable:true,apply:bU},filter:{check:h,nullable:true,init:null}},members:{__nL:true,_placeholder:null,__iU:null,__iV:null,__nK:true,__lw:null,__lA:null,getFocusElement:function(){var ch=this.getContentElement();if(ch){return ch;};},_createInputElement:function(){return new qx.html.Input(b);},renderLayout:function(cq,top,cl,cj){var ci=this._updateInsets;var co=qx.ui.core.Widget.prototype.renderLayout.call(this,cq,top,cl,cj);if(!co){return;};var cm=co.size||ci;var cp=g;if(cm||co.local||co.margin){var innerWidth=cl;var innerHeight=cj;};var cn=this.getContentElement();if(ci&&this.__nK){if(this.__nK){var ck=this.getInsets();this._getPlaceholderElement().setStyles({paddingTop:ck.top+cp,paddingRight:ck.right+cp,paddingBottom:ck.bottom+cp,paddingLeft:ck.left+cp});};};if(cm||co.margin){if(this.__nK){var ck=this.getInsets();this._getPlaceholderElement().setStyles({"width":(innerWidth-ck.left-ck.right)+cp,"height":(innerHeight-ck.top-ck.bottom)+cp});};cn.setStyles({"width":innerWidth+cp,"height":innerHeight+cp});this._renderContentElement(innerHeight,cn);};if(co.position){if(this.__nK){this._getPlaceholderElement().setStyles({"left":cq+cp,"top":top+cp});};};},_renderContentElement:function(innerHeight,cr){},_createContentElement:function(){var cs=this._createInputElement();cs.setSelectable(this.getSelectable());cs.setEnabled(this.getEnabled());cs.addListener(q,this._onHtmlInput,this);cs.setAttribute(bI,bJ);cs.addClass(X);if((qx.core.Environment.get(bO)==bN)&&(qx.core.Environment.get(K)==8)){cs.setStyles({backgroundImage:H+qx.util.ResourceManager.getInstance().toUri(bV)+i});};return cs;},_applyEnabled:function(cv,cu){qx.ui.core.Widget.prototype._applyEnabled.call(this,cv,cu);this.getContentElement().setEnabled(cv);if(this.__nK){if(cv){this._showPlaceholder();}else {this._removePlaceholder();};}else {var ct=this.getContentElement();ct.setAttribute(A,cv?this.getPlaceholder():P);};},__nM:{width:16,height:16},_getContentHint:function(){return {width:this.__nM.width*10,height:this.__nM.height||16};},_applyFont:function(cy,cx){if(cx&&this.__lw&&this.__lA){this.__lw.removeListenerById(this.__lA);this.__lA=null;};var cw;if(cy){this.__lw=qx.theme.manager.Font.getInstance().resolve(cy);if(this.__lw instanceof qx.bom.webfonts.WebFont){this.__lA=this.__lw.addListener(z,this._onWebFontStatusChange,this);};cw=this.__lw.getStyles();}else {cw=qx.bom.Font.getDefaultStyles();};if(this.getTextColor()!=null){delete cw[r];};if(qx.core.Environment.get(bO)==bN&&qx.core.Environment.get(K)<11){qx.html.Element.flush();this.getContentElement().setStyles(cw,true);}else {this.getContentElement().setStyles(cw);};if(this.__nK){delete cw[r];this._getPlaceholderElement().setStyles(cw);};if(cy){this.__nM=qx.bom.Label.getTextSize(m,cw);}else {delete this.__nM;};qx.ui.core.queue.Layout.add(this);},_applyTextColor:function(cA,cz){if(cA){this.getContentElement().setStyle(r,qx.theme.manager.Color.getInstance().resolve(cA));}else {this.getContentElement().removeStyle(r);};},_applyMaxLength:function(cC,cB){if(cC){this.getContentElement().setAttribute(bE,cC);}else {this.getContentElement().removeAttribute(bE);};},tabFocus:function(){qx.ui.core.Widget.prototype.tabFocus.call(this);this.selectAllText();},_getTextSize:function(){return this.__nM;},_onHtmlInput:function(e){var cF=e.getData();var cE=true;this.__nL=false;if(this.__iV&&this.__iV===cF){cE=false;};if(this.getFilter()!=null){var cH=P;var cD=cF.search(this.getFilter());var cG=cF;while(cD>=0){cH=cH+(cG.charAt(cD));cG=cG.substring(cD+1,cG.length);cD=cG.search(this.getFilter());};if(cH!=cF){cE=false;cF=cH;this.getContentElement().setValue(cF);};};if(cE){this.fireDataEvent(q,cF,this.__iV);this.__iV=cF;if(this.getLiveUpdate()){this.__nN(cF);};};},_onWebFontStatusChange:function(cJ){if(cJ.getData().valid===true){var cI=this.__lw.getStyles();this.__nM=qx.bom.Label.getTextSize(m,cI);qx.ui.core.queue.Layout.add(this);};},__nN:function(cL){var cK=this.__iU;this.__iU=cL;if(cK!=cL){this.fireNonBubblingEvent(bR,qx.event.type.Data,[cL,cK]);};},setValue:function(cP){if(cP===null){if(this.__nL){return cP;};cP=P;this.__nL=true;}else {this.__nL=false;if(this.__nK){this._removePlaceholder();};};if(qx.lang.Type.isString(cP)){var cO=this.getContentElement();if(cO.getValue()!=cP){var cM=cO.getValue();cO.setValue(cP);var cN=this.__nL?null:cP;this.__iU=cM;this.__nN(cN);this.__iV=this.__iU;};if(this.__nK){this._showPlaceholder();};return cP;};throw new Error(l+cP);},getValue:function(){var cQ=this.getContentElement().getValue();return this.__nL?null:cQ;},resetValue:function(){this.setValue(null);},_onChangeContent:function(e){this.__nL=e.getData()===null;this.__nN(e.getData());},getTextSelection:function(){return this.getContentElement().getTextSelection();},getTextSelectionLength:function(){return this.getContentElement().getTextSelectionLength();},getTextSelectionStart:function(){return this.getContentElement().getTextSelectionStart();},getTextSelectionEnd:function(){return this.getContentElement().getTextSelectionEnd();},setTextSelection:function(cR,cS){this.getContentElement().setTextSelection(cR,cS);},clearTextSelection:function(){this.getContentElement().clearTextSelection();},selectAllText:function(){this.setTextSelection(0);},setLayoutParent:function(parent){qx.ui.core.Widget.prototype.setLayoutParent.call(this,parent);if(this.__nK){if(parent){this.getLayoutParent().getContentElement().add(this._getPlaceholderElement());}else {var cT=this._getPlaceholderElement();cT.getParent().remove(cT);};};},_showPlaceholder:function(){var cV=this.getValue()||P;var cU=this.getPlaceholder();if(cU!=null&&cV==P&&!this.hasState(C)&&!this.hasState(O)){if(this.hasState(v)){this._syncPlaceholder();}else {this.addState(v);};};},_onMouseDownPlaceholder:function(){window.setTimeout(function(){this.focus();}.bind(this),0);},_removePlaceholder:function(){if(this.hasState(v)){if(this.__nK){this._getPlaceholderElement().setStyle(R,bY);};this.removeState(v);};},_syncPlaceholder:function(){if(this.hasState(v)&&this.__nK){this._getPlaceholderElement().setStyle(R,E);};},_getPlaceholderElement:function(){if(this._placeholder==null){this._placeholder=new qx.html.Label();var cW=qx.theme.manager.Color.getInstance();this._placeholder.setStyles({"zIndex":11,"position":ca,"color":cW.resolve(bW),"whiteSpace":bG,"cursor":b,"visibility":bY});this._placeholder.addListener(p,this._onMouseDownPlaceholder,this);};return this._placeholder;},_onChangeLocale:qx.core.Environment.select(bH,{"true":function(e){var content=this.getPlaceholder();if(content&&content.translate){this.setPlaceholder(content.translate());};},"false":null}),_onChangeTheme:function(){qx.ui.core.Widget.prototype._onChangeTheme.call(this);if(this._placeholder){this._placeholder.dispose();this._placeholder=null;};if(!this.__nK&&qx.ui.form.AbstractField.__dw){qx.bom.Stylesheet.removeSheet(qx.ui.form.AbstractField.__dw);qx.ui.form.AbstractField.__dw=null;qx.ui.form.AbstractField.__nJ();};},_applyPlaceholder:function(cY,cX){if(this.__nK){this._getPlaceholderElement().setValue(cY);if(cY!=null){this.addListener(u,this._removePlaceholder,this);this.addListener(bK,this._showPlaceholder,this);this._showPlaceholder();}else {this.removeListener(u,this._removePlaceholder,this);this.removeListener(bK,this._showPlaceholder,this);this._removePlaceholder();};}else {if(this.getEnabled()){this.getContentElement().setAttribute(A,cY);};};},_applyTextAlign:function(db,da){this.getContentElement().setStyle(Q,db);},_applyReadOnly:function(dd,dc){var de=this.getContentElement();de.setAttribute(a,dd);if(dd){this.addState(M);this.setFocusable(false);}else {this.removeState(M);this.setFocusable(true);};}},defer:function(df){var dg=s+bP+bM+I+Y+c+U+bL+o+w+bQ;qx.ui.style.Stylesheet.getInstance().addRule(V,dg);},destruct:function(){if(this._placeholder){this._placeholder.removeListener(p,this._onMouseDownPlaceholder,this);var parent=this._placeholder.getParent();if(parent){parent.remove(this._placeholder);};this._placeholder.dispose();};this._placeholder=this.__lw=null;if(qx.core.Environment.get(bH)){qx.locale.Manager.getInstance().removeListener(bT,this._onChangeLocale,this);};if(this.__lw&&this.__lA){this.__lw.removeListenerById(this.__lA);};this.getContentElement().removeListener(q,this._onHtmlInput,this);}});})();(function(){var a="engine.name",b="",c="wrap",d="none",e="Text wrapping is only support by textareas!",f="overflow",g="input",h="qx.html.Input",i="value",j="select",k="disabled",l="read-only",m="textarea",n="overflowX",o="overflowY";qx.Class.define(h,{extend:qx.html.Element,construct:function(r,p,q){if(r===j||r===m){var s=r;}else {s=g;};qx.html.Element.call(this,s,p,q);this.__nO=r;},members:{__nO:null,__nP:null,__nQ:null,_createDomElement:function(){return qx.bom.Input.create(this.__nO);},_applyProperty:function(name,t){qx.html.Element.prototype._applyProperty.call(this,name,t);var u=this.getDomElement();if(name===i){qx.bom.Input.setValue(u,t);}else if(name===c){qx.bom.Input.setWrap(u,t);this.setStyle(f,u.style.overflow,true);this.setStyle(n,u.style.overflowX,true);this.setStyle(o,u.style.overflowY,true);};},setEnabled:qx.core.Environment.select(a,{"webkit":function(v){this.__nQ=v;if(!v){this.setStyles({"userModify":l,"userSelect":d});}else {this.setStyles({"userModify":null,"userSelect":this.__nP?null:d});};},"default":function(w){this.setAttribute(k,w===false);}}),setSelectable:qx.core.Environment.select(a,{"webkit":function(x){this.__nP=x;qx.html.Element.prototype.setSelectable.call(this,this.__nQ&&x);},"default":function(y){qx.html.Element.prototype.setSelectable.call(this,y);}}),setValue:function(z){var A=this.getDomElement();if(A){if(A.value!=z){qx.bom.Input.setValue(A,z);};}else {this._setProperty(i,z);};return this;},getValue:function(){var B=this.getDomElement();if(B){return qx.bom.Input.getValue(B);};return this._getProperty(i)||b;},setWrap:function(C,D){if(this.__nO===m){this._setProperty(c,C,D);}else {throw new Error(e);};return this;},getWrap:function(){if(this.__nO===m){return this._getProperty(c);}else {throw new Error(e);};}}});})();(function(){var a="mshtml",b="engine.name",c="qx.ui.form.TextField",d='px',e="textfield",f="engine.version",g="browser.documentmode";qx.Class.define(c,{extend:qx.ui.form.AbstractField,properties:{appearance:{refine:true,init:e},allowGrowY:{refine:true,init:false},allowShrinkY:{refine:true,init:false}},members:{_renderContentElement:function(innerHeight,h){if((qx.core.Environment.get(b)==a)&&(parseInt(qx.core.Environment.get(f),10)<9||qx.core.Environment.get(g)<9)){h.setStyles({"line-height":innerHeight+d});};}}});})();(function(){var a="qx.ui.form.IDateForm",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeValue":b},members:{setValue:function(c){return arguments.length==1;},resetValue:function(){},getValue:function(){}}});})();(function(){var a="popupOpen",b="blur",c="qx.util.format.DateFormat",d="Escape",f="changeValue",g="Left",h="Down",i="button",j="Up",k="execute",l="qx.event.type.Data",m="inner",n="list",o="changeLocale",p="visible",q="middle",r="String",s="_applyDateFormat",t="",u="changeVisibility",v="textfield",w="mouseup",x="qx.dynlocale",y="medium",z="focusin",A="popup",B="click",C="qx.ui.form.DateField",D="focusout",E="datefield",F="_applyPlaceholder",G="hidden",H="Right";qx.Class.define(C,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.form.MForm],implement:[qx.ui.form.IForm,qx.ui.form.IDateForm],construct:function(){qx.ui.core.Widget.call(this);var J=new qx.ui.layout.HBox();this._setLayout(J);J.setAlignY(q);var I=this._createChildControl(v);this._createChildControl(i);this.addListener(B,this._onClick,this);this.addListener(b,this._onBlur,this);this.addListener(z,function(e){I.fireNonBubblingEvent(z,qx.event.type.Focus);I.setTextSelection(0,0);},this);this.addListener(D,function(e){I.fireNonBubblingEvent(D,qx.event.type.Focus);},this);this._setDefaultDateFormat();this._addLocaleChangeListener();},events:{"changeValue":l},properties:{dateFormat:{check:c,apply:s},placeholder:{check:r,nullable:true,apply:F},appearance:{refine:true,init:E},focusable:{refine:true,init:true},width:{refine:true,init:120}},statics:{__nR:null,__nS:null,getDefaultDateFormatter:function(){var K=qx.locale.Date.getDateFormat(y).toString();if(K==this.__nR){return this.__nS;};if(this.__nS){this.__nS.dispose();};this.__nS=new qx.util.format.DateFormat(K,qx.locale.Manager.getInstance().getLocale());this.__nR=K;return this.__nS;}},members:{__nT:null,_forwardStates:{focused:true,invalid:true},_setDefaultDateFormat:function(){this.setDateFormat(qx.ui.form.DateField.getDefaultDateFormatter());},_addLocaleChangeListener:function(){if(qx.core.Environment.get(x)){this.__nT=qx.locale.Manager.getInstance().addListener(o,function(){this._setDefaultDateFormat();},this);};},setValue:function(N){var L=this.getChildControl(v);L.setValue(this.getDateFormat().format(N));var M=this.getChildControl(n);M.setValue(N);},getValue:function(){var O=this.getChildControl(v).getValue();try{return this.getDateFormat().parse(O);}catch(P){return null;};},resetValue:function(){var Q=this.getChildControl(v);Q.setValue(t);var R=this.getChildControl(n);R.setValue(null);},open:function(){var S=this.getChildControl(A);S.placeToWidget(this,true);S.show();},close:function(){this.getChildControl(A).hide();},toggle:function(){var T=this.getChildControl(A).isVisible();if(T){this.close();}else {this.open();};},_applyDateFormat:function(Y,W){if(!W){return;};try{var V=this.getChildControl(v);var X=V.getValue();var U=W.parse(X);V.setValue(Y.format(U));}catch(ba){};},_applyPlaceholder:function(bc,bb){this.getChildControl(v).setPlaceholder(bc);},_createChildControlImpl:function(bf,be){var bd;switch(bf){case v:bd=new qx.ui.form.TextField();bd.setFocusable(false);bd.addState(m);bd.addListener(f,this._onTextFieldChangeValue,this);bd.addListener(b,this.close,this);this._add(bd,{flex:1});break;case i:bd=new qx.ui.form.Button();bd.setFocusable(false);bd.setKeepActive(true);bd.addState(m);bd.addListener(k,this.toggle,this);this._add(bd);break;case n:bd=new qx.ui.control.DateChooser();bd.setFocusable(false);bd.setKeepFocus(true);bd.addListener(k,this._onChangeDate,this);break;case A:bd=new qx.ui.popup.Popup(new qx.ui.layout.VBox);bd.setAutoHide(false);bd.add(this.getChildControl(n));bd.addListener(w,this._onChangeDate,this);bd.addListener(u,this._onPopupChangeVisibility,this);break;};return bd||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,bf);},_onChangeDate:function(e){var bg=this.getChildControl(v);var bh=this.getChildControl(n).getValue();bg.setValue(this.getDateFormat().format(bh));this.close();},_onClick:function(e){this.close();},_onBlur:function(e){this.close();},_onKeyPress:function(e){var bi=e.getKeyIdentifier();if(bi==h&&e.isAltPressed()){this.toggle();e.stopPropagation();return;};var bj=this.getChildControl(A);if(bj.getVisibility()==G){return;};if(bi==d){this.close();e.stopPropagation();return;};if(bi===g||bi===H||bi===h||bi===j){e.preventDefault();};this.getChildControl(n).handleKeyPress(e);},_onPopupChangeVisibility:function(e){e.getData()==p?this.addState(a):this.removeState(a);var bl=this.getChildControl(A);if(bl.isVisible()){var bm=this.getChildControl(n);var bk=this.getValue();bm.setValue(bk);};},_onTextFieldChangeValue:function(e){var bn=this.getValue();if(bn!=null){var bo=this.getChildControl(n);bo.setValue(bn);};this.fireDataEvent(f,this.getValue());},isEmpty:function(){var bp=this.getChildControl(v).getValue();return bp==null||bp==t;}},destruct:function(){if(qx.core.Environment.get(x)){if(this.__nT){qx.locale.Manager.getInstance().removeListenerById(this.__nT);};};}});})();(function(){var a="format",b='format',c="short",d="HH:mm",e='_',f="HHmmsszz",g="HHmm",h="HHmmss",j="thu",k="This case should never happen.",l="sat",m="cldr_date_format_",n="HH:mm:ss zz",o="full",p="cldr_pm",q="cldr_day_",r="_",s="cldr_month_",t="long",u="wed",v="medium",w="fri",x="cldr_am",y="tue",z="qx.locale.Date",A="mon",B="cldr_date_time_format_",C="sun",D="cldr_time_format_",E="HH:mm:ss",F='stand-alone';qx.Class.define(z,{statics:{__nU:qx.locale.Manager.getInstance(),getAmMarker:function(G){return this.__nU.localize(x,[],G);},getPmMarker:function(H){return this.__nU.localize(p,[],H);},getDayNames:function(length,J,N,K){var N=N?N:a;{};var L=[C,A,y,u,j,w,l];var M=[];for(var i=0;i<L.length;i++ ){var I=q+N+r+length+r+L[i];M.push(K?this.__nV(N,N===b?F:b,I,J):this.__nU.localize(I,[],J));};return M;},getDayName:function(length,T,Q,P,S){var P=P?P:a;{};var R=[C,A,y,u,j,w,l];var O=q+P+r+length+r+R[T];return S?this.__nV(P,P===b?F:b,O,Q):this.__nU.localize(O,[],Q);},getMonthNames:function(length,V,Y,W){var Y=Y?Y:a;{};var X=[];for(var i=0;i<12;i++ ){var U=s+Y+r+length+r+(i+1);X.push(W?this.__nV(Y,Y===b?F:b,U,V):this.__nU.localize(U,[],V));};return X;},getMonthName:function(length,bd,bc,ba,bb){var ba=ba?ba:a;{};var be=s+ba+r+length+r+(bd+1);return bb?this.__nV(ba,ba===b?F:b,be,bc):this.__nU.localize(be,[],bc);},getDateFormat:function(bh,bf){{};var bg=m+bh;return this.__nU.localize(bg,[],bf);},getDateTimeFormat:function(bm,bk,bi){var bl=B+bm;var bj=this.__nU.localize(bl,[],bi);if(bj==bl){bj=bk;};return bj;},getTimeFormat:function(bq,bn){{};var bp=D+bq;var bo=this.__nU.localize(bp,[],bn);if(bo!=bp){return bo;};switch(bq){case c:case v:return qx.locale.Date.getDateTimeFormat(g,d);case t:return qx.locale.Date.getDateTimeFormat(h,E);case o:return qx.locale.Date.getDateTimeFormat(f,n);default:throw new Error(k);};},getWeekStart:function(br){var bs={"MV":5,"AE":6,"AF":6,"BH":6,"DJ":6,"DZ":6,"EG":6,"ER":6,"ET":6,"IQ":6,"IR":6,"JO":6,"KE":6,"KW":6,"LB":6,"LY":6,"MA":6,"OM":6,"QA":6,"SA":6,"SD":6,"SO":6,"TN":6,"YE":6,"AS":0,"AU":0,"AZ":0,"BW":0,"CA":0,"CN":0,"FO":0,"GE":0,"GL":0,"GU":0,"HK":0,"IE":0,"IL":0,"IS":0,"JM":0,"JP":0,"KG":0,"KR":0,"LA":0,"MH":0,"MN":0,"MO":0,"MP":0,"MT":0,"NZ":0,"PH":0,"PK":0,"SG":0,"TH":0,"TT":0,"TW":0,"UM":0,"US":0,"UZ":0,"VI":0,"ZA":0,"ZW":0,"MW":0,"NG":0,"TJ":0};var bt=qx.locale.Date._getTerritory(br);return bs[bt]!=null?bs[bt]:1;},getWeekendStart:function(bu){var bw={"EG":5,"IL":5,"SY":5,"IN":0,"AE":4,"BH":4,"DZ":4,"IQ":4,"JO":4,"KW":4,"LB":4,"LY":4,"MA":4,"OM":4,"QA":4,"SA":4,"SD":4,"TN":4,"YE":4};var bv=qx.locale.Date._getTerritory(bu);return bw[bv]!=null?bw[bv]:6;},getWeekendEnd:function(bx){var by={"AE":5,"BH":5,"DZ":5,"IQ":5,"JO":5,"KW":5,"LB":5,"LY":5,"MA":5,"OM":5,"QA":5,"SA":5,"SD":5,"TN":5,"YE":5,"AF":5,"IR":5,"EG":6,"IL":6,"SY":6};var bz=qx.locale.Date._getTerritory(bx);return by[bz]!=null?by[bz]:0;},isWeekend:function(bC,bA){var bD=qx.locale.Date.getWeekendStart(bA);var bB=qx.locale.Date.getWeekendEnd(bA);if(bB>bD){return ((bC>=bD)&&(bC<=bB));}else {return ((bC>=bD)||(bC<=bB));};},_getTerritory:function(bE){if(bE){var bF=bE.split(r)[1]||bE;}else {bF=this.__nU.getTerritory()||this.__nU.getLanguage();};return bF.toUpperCase();},__nV:function(bI,bH,bL,bK){var bJ=this.__nU.localize(bL,[],bK);if(bJ==bL){var bG=bL.replace(e+bI+e,e+bH+e);return this.__nU.localize(bG,[],bK);}else {return bJ;};}}});})();(function(){var a="qx.util.format.IFormat";qx.Interface.define(a,{members:{format:function(b){},parse:function(c){}}});})();(function(){var a="-",b="QQQ",c='W',d="qqqq",e="h",f="KK",g='L',h=" is not supported",m="Z",n="Date string '",o="GGGGG",p='abbreviated',q="Y+",r=". Wildcard ",s="eeeee",t="(\\d\\d?)",u="LL",v="abbreviated",w="EEEE",x="^",y=":",z='y',A="quoted_literal",B="weekOfYear",C="locale",D="SSS",E='a',F="day",G="(-*",H="qqq",I='3rd quarter',J="K",K='q',L="pm",M="Error parsing date '",N='Anno Domini',O='G',P="a",Q='2nd quarter',R="yyyy-MM-dd'T'HH:mm:ss",S="GMT",T="HH:mm:ss",U="dd",V="+",W="qx.util.format.DateFormat",X='weekDay',Y="am",ej="eee",ee="quarter",ek="ee",eg="q",eh="QQQQ",ed="HHmmss",ei="ww",eo="H",ep='Y+',eq="wide",er='wide',el="(\\d\\d\\d?)",em="(GMT[\\+\\-]\\d\\d:\\d\\d)",ef="_applyLocale",en="Q",ev="c",eY="(",ew="weekOfMonth",ex="ccc",es="long",et="Malformed date format: ",ga="EEEEE",eu='Y',ey="EE",ez="GGG",eA='-',eF="w",eG="mm",eH='h',eB="S",eC='s',eD='A',eE="yyyy-MM-dd",eM="G",eN='z',eO="GG",eP=")",eI="kk",eJ="ss",eK="([\\+\\-]\\d\\d\\d\\d)",eL="default",eT='BC',eU='H',ge='S',eV='1st quarter',eQ="stand-alone",eR="0",gc="MMMM",eS='c',eW="d",eX='Q',fk='Q1',fj="eeee",fi="QQ",fo="LLLLL",fn="HH",fm='k',fl="m",fd="DDD",fc="D",fb='D',fa="LLLL",fh="(\\d\\d*?)",fg='e',ff="': the value for day or month is too large",fe="literal",fv='K',fu="L",ft="hh",fs="ms",fz="(\\d\\d?\\d?)",fy="cccc",fx="e",fw='y+',fr="|",fq="W",fp="dayOfYear",fK="GGGG",fJ='Q2',fI='B',fO="MM",fN='Q4',fM="y+",fL='narrow',fD="ccccc",fC="E",fB="wildcard",fA='',fH="' does not match the date format: ",fG="short",fF='d',fE="unkown",fU="narrow",fT="\\d?",fS="'",fR="k",fY='Before Christ',fX='Z',fW='m',fV=" ",fQ="yyyy-MM-dd'T'HH:mm:ss'Z'",fP="String",dO='Q3',dN="z",gf="DD",dL="min",dM="",dK='M',gd="sec",dI='isoUtcDateTime',dJ='4th quarter',dH="(\\d?)",gb="SS",dF="MMM",dG="s",dE="M",dX='w',dY="EEE",dV="$",dW="?",dT='AD',dU="\\d",dS="+?",dD="hour",dQ="MMMMM",dR='E',dP='month',ec="LLL",ea="qq",eb="format";qx.Class.define(W,{extend:qx.core.Object,implement:qx.util.format.IFormat,construct:function(gh,gg){qx.core.Object.call(this);if(!gg){this.__kn=qx.locale.Manager.getInstance().getLocale();this.__nW=qx.locale.Manager.getInstance().bind(C,this,C);}else {this.__kn=gg;this.setLocale(gg);};this.__nX=this.__kn;if(gh!=null){this.__nY=gh.toString();if(this.__nY in qx.util.format.DateFormat.ISO_MASKS){if(this.__nY===dI){this.__oa=true;};this.__nY=qx.util.format.DateFormat.ISO_MASKS[this.__nY];};}else {this.__nY=qx.locale.Date.getDateFormat(es,this.__kn)+fV+qx.locale.Date.getDateTimeFormat(ed,T,this.__kn);};},properties:{locale:{apply:ef,nullable:true,check:fP}},statics:{getDateInstance:function(){var gi=qx.util.format.DateFormat;var gj=qx.locale.Date.getDateFormat(fG)+dM;if(gi._dateInstance==null||gi._dateInstance.__nY!=gj){gi._dateInstance=new gi(gj);};return gi._dateInstance;},getDateTimeInstance:function(){var gk=qx.util.format.DateFormat;var gl=qx.locale.Date.getDateFormat(es)+fV+qx.locale.Date.getDateTimeFormat(ed,T);if(gk._dateTimeInstance==null||gk._dateTimeInstance.__nY!=gl){gk._dateTimeInstance=new gk(gl);};return gk._dateTimeInstance;},ASSUME_YEAR_2000_THRESHOLD:30,ISO_MASKS:{isoDate:eE,isoTime:T,isoDateTime:R,isoUtcDateTime:fQ},AM_MARKER:Y,PM_MARKER:L},members:{__nW:null,__kn:null,__nX:null,__nY:null,__ob:null,__oc:null,__od:null,__oa:null,__oe:function(gn,gm){var go=dM+(gn<0?(-1*gn):gn);while(go.length<gm){go=eR+go;};return gn<0?a+go:go;},__of:function(gp){var gq=new Date(gp.getTime());var gr=gq.getDate();while(gq.getMonth()!=0){gq.setDate(-1);gr+=gq.getDate()+1;};return gr;},__og:function(gs){return new Date(gs.getTime()+(3-((gs.getDay()+6)%7))*86400000);},__oh:function(gt){var gv=this.__og(gt);var gw=gv.getFullYear();var gu=this.__og(new Date(gw,0,4));return Math.floor(1.5+(gv.getTime()-gu.getTime())/86400000/7);},__oi:function(gx){var gz=this.__og(gx);var gy=this.__og(new Date(gx.getFullYear(),gx.getMonth(),4));return Math.floor(1.5+(gz.getTime()-gy.getTime())/86400000/7);},__oj:function(gA){var gB=this.__og(gA);return gB.getFullYear();},__ok:function(gD){var gC=new Date(gD,2,1);gC.setDate(-1);return gC.getDate()+1===29;},__ol:function(gI,gJ){var gH=0;var gK=0;if(!gJ){gJ=1971;};var gE=0;for(var i=1;i<=12;i++ ){var gG=new Date(gJ,i,1);gG.setDate(-1);var gF=gG.getDate()+1;gE+=gF;if(gE<gI){gH++ ;gK+=gF;}else {gK=gI-(gE-gF);break;};};return {month:gH,day:gK};},__om:function(gO,gM,gL){var gN;switch(gM){case 11:gN=gO-1;if(gO!=this.__oj(new Date(gN,gM,gL))){gN=gO;};break;case 0:gN=gO+1;if(gO!=this.__oj(new Date(gN,gM,gL))){gN=gO;};break;default:gN=gO;};return gN;},_applyLocale:function(gQ,gP){this.__kn=gQ===null?this.setLocale(this.__nX):gQ;},format:function(hh){if(hh==null){return null;};if(isNaN(hh.getTime())){{};return null;};if(this.__oa){hh=new Date(hh.getUTCFullYear(),hh.getUTCMonth(),hh.getUTCDate(),hh.getUTCHours(),hh.getUTCMinutes(),hh.getUTCSeconds(),hh.getUTCMilliseconds());};var gT=this.__kn;var gY=hh.getFullYear();var gU=hh.getMonth();var gX=hh.getDate();var hc=hh.getDay();var hf=hh.getHours();var hm=hh.getMinutes();var hd=hh.getSeconds();var hk=hh.getMilliseconds();var hb=hh.getTimezoneOffset();var hg=hb>0?1:-1;var gR=Math.floor(Math.abs(hb)/60);var hj=Math.abs(hb)%60;this.__on();var hl=dM;for(var i=0;i<this.__od.length;i++ ){var ha=this.__od[i];if(ha.type==fe){hl+=ha.text;}else {var gS=ha.character;var he=ha.size;var hn=dW;switch(gS){case z:if(he==2){hn=this.__oe(gY%100,2);}else {var gV=Math.abs(gY);hn=gV+dM;if(he>hn.length){for(var j=hn.length;j<he;j++ ){hn=eR+hn;};};if(gY<0){hn=a+hn;};};break;case eu:hn=this.__oj(hh)+dM;var gV=hn.replace(eA,fA);if(he>hn.length){for(var j=gV.length;j<he;j++ ){gV=eR+gV;};};hn=hn.indexOf(a)!=-1?a+gV:gV;break;case O:if(he>=1&&he<=3){hn=gY>0?dT:eT;}else if(he==4){hn=gY>0?N:fY;}else if(he==5){hn=gY>0?eD:fI;};break;case eX:if(he==1||he==2){hn=this.__oe(parseInt(gU/4)+1,he);};if(he==3){hn=eX+(parseInt(gU/4)+1);};break;case K:if(he==1||he==2){hn=this.__oe(parseInt(gU/4)+1,he);};if(he==3){hn=eX+(parseInt(gU/4)+1);};break;case fb:hn=this.__oe(this.__of(hh),he);break;case fF:hn=this.__oe(gX,he);break;case dX:hn=this.__oe(this.__oh(hh),he);break;case c:hn=this.__oi(hh);break;case dR:if(he>=1&&he<=3){hn=qx.locale.Date.getDayName(v,hc,gT,eb,true);}else if(he==4){hn=qx.locale.Date.getDayName(eq,hc,gT,eb,true);}else if(he==5){hn=qx.locale.Date.getDayName(fU,hc,gT,eb,true);};break;case fg:var gW=qx.locale.Date.getWeekStart(gT);var hi=1+((hc-gW>=0)?(hc-gW):7+(hc-gW));if(he>=1&&he<=2){hn=this.__oe(hi,he);}else if(he==3){hn=qx.locale.Date.getDayName(v,hc,gT,eb,true);}else if(he==4){hn=qx.locale.Date.getDayName(eq,hc,gT,eb,true);}else if(he==5){hn=qx.locale.Date.getDayName(fU,hc,gT,eb,true);};break;case eS:var gW=qx.locale.Date.getWeekStart(gT);var hi=1+((hc-gW>=0)?(hc-gW):7+(hc-gW));if(he==1){hn=fA+hi;}else if(he==3){hn=qx.locale.Date.getDayName(v,hc,gT,eQ,true);}else if(he==4){hn=qx.locale.Date.getDayName(eq,hc,gT,eQ,true);}else if(he==5){hn=qx.locale.Date.getDayName(fU,hc,gT,eQ,true);};break;case dK:if(he==1||he==2){hn=this.__oe(gU+1,he);}else if(he==3){hn=qx.locale.Date.getMonthName(v,gU,gT,eb,true);}else if(he==4){hn=qx.locale.Date.getMonthName(eq,gU,gT,eb,true);}else if(he==5){hn=qx.locale.Date.getMonthName(fU,gU,gT,eb,true);};break;case g:if(he==1||he==2){hn=this.__oe(gU+1,he);}else if(he==3){hn=qx.locale.Date.getMonthName(v,gU,gT,eQ,true);}else if(he==4){hn=qx.locale.Date.getMonthName(eq,gU,gT,eQ,true);}else if(he==5){hn=qx.locale.Date.getMonthName(fU,gU,gT,eQ,true);};break;case E:hn=(hf<12)?qx.locale.Date.getAmMarker(gT):qx.locale.Date.getPmMarker(gT);break;case eU:hn=this.__oe(hf,he);break;case fm:hn=this.__oe((hf==0)?24:hf,he);break;case fv:hn=this.__oe(hf%12,he);break;case eH:hn=this.__oe(((hf%12)==0)?12:(hf%12),he);break;case fW:hn=this.__oe(hm,he);break;case eC:hn=this.__oe(hd,he);break;case ge:hn=this.__oe(hk,3);if(he<hn.length){hn=hn.substr(0,he);}else {while(he>hn.length){hn+=eR;};};break;case eN:if(he>=1&&he<=4){hn=S+((hg>0)?a:V)+this.__oe(Math.abs(gR),2)+y+this.__oe(hj,2);};break;case fX:if(he>=1&&he<=3){hn=((hg>0)?a:V)+this.__oe(Math.abs(gR),2)+this.__oe(hj,2);}else {hn=S+((hg>0)?a:V)+this.__oe(Math.abs(gR),2)+y+this.__oe(hj,2);};break;};hl+=hn;};};return hl;},parse:function(hu){this.__oo();var hx=this.__ob.regex.exec(hu);if(hx==null){throw new Error(n+hu+fH+this.__nY);};var ho={era:1,year:1970,quarter:1,month:0,day:1,dayOfYear:1,hour:0,ispm:false,weekDay:4,weekYear:1970,weekOfMonth:1,weekOfYear:1,min:0,sec:0,ms:0};var hs=1;var hp=false;var hq=false;for(var i=0;i<this.__ob.usedRules.length;i++ ){var hr=this.__ob.usedRules[i];var ht=hx[hs];if(hr.field!=null){ho[hr.field]=parseInt(ht,10);}else {hr.manipulator(ho,ht,hr.pattern);};if(hr.pattern==q){var hv=false;for(var k=0;k<this.__ob.usedRules.length;k++ ){if(this.__ob.usedRules[k].pattern==fw){hv=true;break;};};if(!hv){hp=true;};};if(hr.pattern.indexOf(fc)!=-1){var hz=false;for(var k=0;k<this.__ob.usedRules.length;k++ ){if(this.__ob.usedRules[k].pattern.indexOf(eW)!=-1){hz=true;break;};};if(!hz){hq=true;};};hs+=(hr.groups==null)?1:hr.groups;};if(hp){ho.year=this.__om(ho.weekYear,ho.month,ho.day);};if(hq){var hy=this.__ol(ho.dayOfYear,ho.year);ho.month=hy.month;ho.day=hy.day;};if(ho.era<0&&(ho.year*ho.era<0)){ho.year=ho.year*ho.era;};var hw=new Date(ho.year,ho.month,ho.day,(ho.ispm)?(ho.hour+12):ho.hour,ho.min,ho.sec,ho.ms);if(this.__oa){hw=new Date(hw.getUTCFullYear(),hw.getUTCMonth(),hw.getUTCDate(),hw.getUTCHours(),hw.getUTCMinutes(),hw.getUTCSeconds(),hw.getUTCMilliseconds());};if(ho.month!=hw.getMonth()||ho.year!=hw.getFullYear()){throw new Error(M+hu+ff);};return hw;},__on:function(){if(this.__od!=null){return;};this.__od=[];var hE;var hC=0;var hG=dM;var hA=this.__nY;var hD=eL;var i=0;while(i<hA.length){var hF=hA.charAt(i);switch(hD){case A:if(hF==fS){if(i+1>=hA.length){i++ ;break;};var hB=hA.charAt(i+1);if(hB==fS){hG+=hF;i++ ;}else {i++ ;hD=fE;};}else {hG+=hF;i++ ;};break;case fB:if(hF==hE){hC++ ;i++ ;}else {this.__od.push({type:fB,character:hE,size:hC});hE=null;hC=0;hD=eL;};break;default:if((hF>=E&&hF<=eN)||(hF>=eD&&hF<=fX)){hE=hF;hD=fB;}else if(hF==fS){if(i+1>=hA.length){hG+=hF;i++ ;break;};var hB=hA.charAt(i+1);if(hB==fS){hG+=hF;i++ ;};i++ ;hD=A;}else {hD=eL;};if(hD!=eL){if(hG.length>0){this.__od.push({type:fe,text:hG});hG=dM;};}else {hG+=hF;i++ ;};break;};};if(hE!=null){this.__od.push({type:fB,character:hE,size:hC});}else if(hG.length>0){this.__od.push({type:fe,text:hG});};},__oo:function(){if(this.__ob!=null){return;};var hK=this.__nY;this.__oq();this.__on();var hQ=[];var hL=x;for(var hI=0;hI<this.__od.length;hI++ ){var hR=this.__od[hI];if(hR.type==fe){hL+=qx.lang.String.escapeRegexpChars(hR.text);}else {var hJ=hR.character;var hM=hR.size;var hO;for(var hS=0;hS<this.__oc.length;hS++ ){var hN=this.__oc[hS];if(this.__op(hN,hJ,hM)){hO=hN;break;};};if(hO==null){var hP=dM;for(var i=0;i<hM;i++ ){hP+=hJ;};throw new Error(et+hK+r+hP+h);}else {hQ.push(hO);hL+=hO.regex;};};};hL+=dV;var hH;try{hH=new RegExp(hL);}catch(hT){throw new Error(et+hK);};this.__ob={regex:hH,"usedRules":hQ,pattern:hL};},__op:function(hU,hV,hW){if(hV===z&&hU.pattern===fw){hU.regex=hU.regexFunc(hW);return true;}else if(hV===eu&&hU.pattern===ep){hU.regex=hU.regexFunc(hW);return true;}else {return hV==hU.pattern.charAt(0)&&hW==hU.pattern.length;};},__oq:function(){var im=qx.util.format.DateFormat;var iq=qx.lang.String;if(this.__oc!=null){return;};var io=this.__oc=[];var ii=qx.locale.Date.getAmMarker(this.__kn).toString()||im.AM_MARKER;var ix=qx.locale.Date.getPmMarker(this.__kn).toString()||im.PM_MARKER;var hY=this.__kn;var ie=function(iA,iB){iB=parseInt(iB,10);if(iB>0){if(iB<im.ASSUME_YEAR_2000_THRESHOLD){iB+=2000;}else if(iB<100){iB+=1900;};};iA.year=iB;};var iz=function(iC,iD){iD=parseInt(iD,10);if(iD>0){if(iD<im.ASSUME_YEAR_2000_THRESHOLD){iD+=2000;}else if(iD<100){iD+=1900;};};iC.weekYear=iD;};var ih=function(iE,iF){iE.month=parseInt(iF,10)-1;};var ic=function(iI,iJ){var iH=qx.locale.Date.getWeekStart(hY);var iG=(parseInt(iJ,10)-1+iH)<=6?parseInt(iJ,10)-1+iH:(parseInt(iJ,10)-1+iH)-7;iI.weekDay=iG;};var ib=function(iK,iL){var iM=qx.locale.Date.getPmMarker(hY).toString()||im.PM_MARKER;iK.ispm=(iL==iM);};var ip=function(iN,iO){iN.hour=parseInt(iO,10)%24;};var ia=function(iP,iQ){iP.hour=parseInt(iQ,10)%12;};var is=function(iR,iS){return;};var it=[eD,fI];var iu=function(iT,iU){iT.era=iU==eD?1:-1;};var il=[dT,eT];var ik=function(iV,iW){iV.era=iW==dT?1:-1;};var iw=[N,fY];var ij=function(iX,iY){iX.era=iY==N?1:-1;};var iy=[fk,fJ,dO,fN];var hX=function(ja,jb){ja.quarter=iy.indexOf(jb);};var iv=[eV,Q,I,dJ];var ir=function(jc,jd){jc.quarter=iv.indexOf(jd);};var ig={};var id=function(jh){var jj=[g,dK];var jf=[eS,fg,dR];var jm=jh.charAt(0);var jg=jj.indexOf(jm)>=0;var ji=function(){var jo=jg?jj:jf;var jp=jm===jo[0]?eQ:eb;var jn=jh.length;var jq=p;switch(jn){case 4:jq=er;break;case 5:jq=fL;break;default:jq=p;};return [jp,jq];};if(!ig[jh]){ig[jh]={};var je=ji();var jl=jg?qx.locale.Date.getMonthNames:qx.locale.Date.getDayNames;var jk=jl.call(qx.locale.Date,je[1],hY,je[0],true);for(var i=0,l=jk.length;i<l;i++ ){jk[i]=iq.escapeRegexpChars(jk[i].toString());};ig[jh].data=jk;ig[jh].func=function(jr,js){js=iq.escapeRegexpChars(js);jr[jg?dP:X]=jk.indexOf(js);};};return ig[jh];};io.push({pattern:fM,regexFunc:function(ju){var jt=G;for(var i=0;i<ju;i++ ){jt+=dU;if(i===ju-1&&i!==1){jt+=dS;};};jt+=eP;return jt;},manipulator:ie});io.push({pattern:q,regexFunc:function(jw){var jv=G;for(var i=0;i<jw;i++ ){jv+=dU;if(i===jw-1){jv+=dS;};};jv+=eP;return jv;},manipulator:iz});io.push({pattern:eM,regex:eY+il.join(fr)+eP,manipulator:ik});io.push({pattern:eO,regex:eY+il.join(fr)+eP,manipulator:ik});io.push({pattern:ez,regex:eY+il.join(fr)+eP,manipulator:ik});io.push({pattern:fK,regex:eY+iw.join(fr)+eP,manipulator:ij});io.push({pattern:o,regex:eY+it.join(fr)+eP,manipulator:iu});io.push({pattern:en,regex:fh,field:ee});io.push({pattern:fi,regex:t,field:ee});io.push({pattern:b,regex:eY+iy.join(fr)+eP,manipulator:hX});io.push({pattern:eh,regex:eY+iv.join(fr)+eP,manipulator:ir});io.push({pattern:eg,regex:fh,field:ee});io.push({pattern:ea,regex:t,field:ee});io.push({pattern:H,regex:eY+iy.join(fr)+eP,manipulator:hX});io.push({pattern:d,regex:eY+iv.join(fr)+eP,manipulator:ir});io.push({pattern:dE,regex:fh,manipulator:ih});io.push({pattern:fO,regex:t,manipulator:ih});io.push({pattern:dF,regex:eY+id(dF).data.join(fr)+eP,manipulator:id(dF).func});io.push({pattern:gc,regex:eY+id(gc).data.join(fr)+eP,manipulator:id(gc).func});io.push({pattern:dQ,regex:eY+id(dQ).data.join(fr)+eP,manipulator:id(dQ).func});io.push({pattern:fu,regex:fh,manipulator:ih});io.push({pattern:u,regex:t,manipulator:ih});io.push({pattern:ec,regex:eY+id(ec).data.join(fr)+eP,manipulator:id(ec).func});io.push({pattern:fa,regex:eY+id(fa).data.join(fr)+eP,manipulator:id(fa).func});io.push({pattern:fo,regex:eY+id(fo).data.join(fr)+eP,manipulator:id(fo).func});io.push({pattern:U,regex:t,field:F});io.push({pattern:eW,regex:fh,field:F});io.push({pattern:fc,regex:dH,field:fp});io.push({pattern:gf,regex:t,field:fp});io.push({pattern:fd,regex:el,field:fp});io.push({pattern:fC,regex:eY+id(fC).data.join(fr)+eP,manipulator:id(fC).func});io.push({pattern:ey,regex:eY+id(ey).data.join(fr)+eP,manipulator:id(ey).func});io.push({pattern:dY,regex:eY+id(dY).data.join(fr)+eP,manipulator:id(dY).func});io.push({pattern:w,regex:eY+id(w).data.join(fr)+eP,manipulator:id(w).func});io.push({pattern:ga,regex:eY+id(ga).data.join(fr)+eP,manipulator:id(ga).func});io.push({pattern:fx,regex:dH,manipulator:ic});io.push({pattern:ek,regex:t,manipulator:ic});io.push({pattern:ej,regex:eY+id(ej).data.join(fr)+eP,manipulator:id(ej).func});io.push({pattern:fj,regex:eY+id(fj).data.join(fr)+eP,manipulator:id(fj).func});io.push({pattern:s,regex:eY+id(s).data.join(fr)+eP,manipulator:id(s).func});io.push({pattern:ev,regex:fT,manipulator:ic});io.push({pattern:ex,regex:eY+id(ex).data.join(fr)+eP,manipulator:id(ex).func});io.push({pattern:fy,regex:eY+id(fy).data.join(fr)+eP,manipulator:id(fy).func});io.push({pattern:fD,regex:eY+id(fD).data.join(fr)+eP,manipulator:id(fD).func});io.push({pattern:P,regex:eY+ii+fr+ix+eP,manipulator:ib});io.push({pattern:fq,regex:dH,field:ew});io.push({pattern:eF,regex:dH,field:B});io.push({pattern:ei,regex:t,field:B});io.push({pattern:fn,regex:t,field:dD});io.push({pattern:eo,regex:t,field:dD});io.push({pattern:eI,regex:t,manipulator:ip});io.push({pattern:fR,regex:t,manipulator:ip});io.push({pattern:f,regex:t,field:dD});io.push({pattern:J,regex:t,field:dD});io.push({pattern:ft,regex:t,manipulator:ia});io.push({pattern:e,regex:t,manipulator:ia});io.push({pattern:eG,regex:t,field:dL});io.push({pattern:fl,regex:t,field:dL});io.push({pattern:eJ,regex:t,field:gd});io.push({pattern:dG,regex:t,field:gd});io.push({pattern:D,regex:fz,field:fs});io.push({pattern:gb,regex:fz,field:fs});io.push({pattern:eB,regex:fz,field:fs});io.push({pattern:m,regex:eK,manipulator:is});io.push({pattern:dN,regex:em,manipulator:is});}},destruct:function(){if(this.__nW!=null){qx.locale.Manager.getInstance().removeBinding(this.__nW);};this.__od=this.__ob=this.__oc=null;}});})();(function(){var a="PageUp",b="day",c="mousedown",d="lastMonth",f="yyyyMMMM",g="Next month",h="Escape",j="Left",k="last-month-button",l="default",m="today",n="weekday",o="changeValue",p="Space",q="selected",r="Down",s="Integer",t="qx.ui.control.DateChooser",u="Up",v="Enter",w="dblclick",z="PageDown",A="day#",B="changeLocale",C="Next year",D="ww",E="_applyValue",F="next-month-button",G="next-month-button-tooltip",H="weekday#",I="last-month-button-tooltip",J="datechooser",K="header",L="week",M="lastYear",N="otherMonth",O="month-year-label",P="nextYear",Q="last-year-button",R="changeShownYear",S="week#",T="click",U="qx.dynlocale",V="next-year-button",W="Last month",X="Last year",Y="MMMM yyyy",bs="EE",bt="mouseup",bu="keypress",bo="",bp="navigation-bar",bq="nextMonth",br="last-year-button-tooltip",by="next-year-button-tooltip",bz="Date",bA="Right",bB="date-pane",bv="week#0",bw="weekend",bx="changeShownMonth";qx.Class.define(t,{extend:qx.ui.core.Widget,include:[qx.ui.core.MExecutable,qx.ui.form.MForm],implement:[qx.ui.form.IExecutable,qx.ui.form.IForm,qx.ui.form.IDateForm],construct:function(bC){qx.ui.core.Widget.call(this);var bF=new qx.ui.layout.VBox();this._setLayout(bF);this._createChildControl(bp);this._createChildControl(bB);this.addListener(bu,this._onKeyPress);var bD=qx.ui.control.DateChooser;if(!bD.MONTH_YEAR_FORMAT){bD.MONTH_YEAR_FORMAT=qx.locale.Date.getDateTimeFormat(f,Y);};var bE=(bC!=null)?bC:new Date();this.showMonth(bE.getMonth(),bE.getFullYear());if(qx.core.Environment.get(U)){qx.locale.Manager.getInstance().addListener(B,this._updateDatePane,this);};this.addListener(c,this._onMouseUpDown,this);this.addListener(bt,this._onMouseUpDown,this);},statics:{MONTH_YEAR_FORMAT:null,WEEKDAY_FORMAT:bs,WEEK_FORMAT:D},properties:{appearance:{refine:true,init:J},width:{refine:true,init:200},height:{refine:true,init:150},shownMonth:{check:s,init:null,nullable:true,event:bx},shownYear:{check:s,init:null,nullable:true,event:R},value:{check:bz,init:null,nullable:true,event:o,apply:E}},members:{__or:null,__os:null,__ot:null,_forwardStates:{invalid:true},_createChildControlImpl:function(bK,bH){var bG;switch(bK){case bp:bG=new qx.ui.container.Composite(new qx.ui.layout.HBox());bG.add(this.getChildControl(Q));bG.add(this.getChildControl(k));bG.add(this.getChildControl(O),{flex:1});bG.add(this.getChildControl(F));bG.add(this.getChildControl(V));this._add(bG);break;case br:bG=new qx.ui.tooltip.ToolTip(this.tr(X));break;case Q:bG=new qx.ui.toolbar.Button();bG.addState(M);bG.setFocusable(false);bG.setToolTip(this.getChildControl(br));bG.addListener(T,this._onNavButtonClicked,this);break;case I:bG=new qx.ui.tooltip.ToolTip(this.tr(W));break;case k:bG=new qx.ui.toolbar.Button();bG.addState(d);bG.setFocusable(false);bG.setToolTip(this.getChildControl(I));bG.addListener(T,this._onNavButtonClicked,this);break;case G:bG=new qx.ui.tooltip.ToolTip(this.tr(g));break;case F:bG=new qx.ui.toolbar.Button();bG.addState(bq);bG.setFocusable(false);bG.setToolTip(this.getChildControl(G));bG.addListener(T,this._onNavButtonClicked,this);break;case by:bG=new qx.ui.tooltip.ToolTip(this.tr(C));break;case V:bG=new qx.ui.toolbar.Button();bG.addState(P);bG.setFocusable(false);bG.setToolTip(this.getChildControl(by));bG.addListener(T,this._onNavButtonClicked,this);break;case O:bG=new qx.ui.basic.Label();bG.setAllowGrowX(true);bG.setAnonymous(true);break;case L:bG=new qx.ui.basic.Label();bG.setAllowGrowX(true);bG.setAllowGrowY(true);bG.setSelectable(false);bG.setAnonymous(true);bG.setCursor(l);break;case n:bG=new qx.ui.basic.Label();bG.setAllowGrowX(true);bG.setAllowGrowY(true);bG.setSelectable(false);bG.setAnonymous(true);bG.setCursor(l);break;case b:bG=new qx.ui.basic.Label();bG.setAllowGrowX(true);bG.setAllowGrowY(true);bG.setCursor(l);bG.addListener(c,this._onDayClicked,this);bG.addListener(w,this._onDayDblClicked,this);break;case bB:var bJ=new qx.ui.layout.Grid();bG=new qx.ui.container.Composite(bJ);for(var i=0;i<8;i++ ){bJ.setColumnFlex(i,1);};for(var i=0;i<7;i++ ){bJ.setRowFlex(i,1);};var bI=this.getChildControl(bv);bI.addState(K);bG.add(bI,{column:0,row:0});this.__or=[];for(var i=0;i<7;i++ ){bI=this.getChildControl(H+i);bG.add(bI,{column:i+1,row:0});this.__or.push(bI);};this.__os=[];this.__ot=[];for(var y=0;y<6;y++ ){var bI=this.getChildControl(S+(y+1));bG.add(bI,{column:0,row:y+1});this.__ot.push(bI);for(var x=0;x<7;x++ ){var bI=this.getChildControl(A+((y*7)+x));bG.add(bI,{column:x+1,row:y+1});this.__os.push(bI);};};this._add(bG);break;};return bG||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,bK);},_applyValue:function(bN,bM){if((bN!=null)&&(this.getShownMonth()!=bN.getMonth()||this.getShownYear()!=bN.getFullYear())){this.showMonth(bN.getMonth(),bN.getFullYear());}else {var bL=(bN==null)?-1:bN.getDate();for(var i=0;i<6*7;i++ ){var bO=this.__os[i];if(bO.hasState(N)){if(bO.hasState(q)){bO.removeState(q);};}else {var bP=parseInt(bO.getValue(),10);if(bP==bL){bO.addState(q);}else if(bO.hasState(q)){bO.removeState(q);};};};};},_onMouseUpDown:function(e){var bQ=e.getTarget();if(bQ==this.getChildControl(bp)||bQ==this.getChildControl(bB)){e.stopPropagation();return;};},_onNavButtonClicked:function(bS){var bR=this.getShownYear();var bT=this.getShownMonth();switch(bS.getCurrentTarget()){case this.getChildControl(Q):bR-- ;break;case this.getChildControl(k):bT-- ;if(bT<0){bT=11;bR-- ;};break;case this.getChildControl(F):bT++ ;if(bT>=12){bT=0;bR++ ;};break;case this.getChildControl(V):bR++ ;break;};this.showMonth(bT,bR);},_onDayClicked:function(bU){var bV=bU.getCurrentTarget().dateTime;this.setValue(new Date(bV));},_onDayDblClicked:function(){this.execute();},_onKeyPress:function(bY){var ca=null;var cb=null;var bX=null;if(bY.getModifiers()==0){switch(bY.getKeyIdentifier()){case j:ca=-1;break;case bA:ca=1;break;case u:ca=-7;break;case r:ca=7;break;case a:cb=-1;break;case z:cb=1;break;case h:if(this.getValue()!=null){this.setValue(null);return;};break;case v:case p:if(this.getValue()!=null){this.execute();};return;};}else if(bY.isShiftPressed()){switch(bY.getKeyIdentifier()){case a:bX=-1;break;case z:bX=1;break;};};if(ca!=null||cb!=null||bX!=null){var bW=this.getValue();if(bW!=null){bW=new Date(bW.getTime());};if(bW==null){bW=new Date();}else {if(ca!=null){bW.setDate(bW.getDate()+ca);};if(cb!=null){bW.setMonth(bW.getMonth()+cb);};if(bX!=null){bW.setFullYear(bW.getFullYear()+bX);};};this.setValue(bW);};},showMonth:function(cc,cd){if((cc!=null&&cc!=this.getShownMonth())||(cd!=null&&cd!=this.getShownYear())){if(cc!=null){this.setShownMonth(cc);};if(cd!=null){this.setShownYear(cd);};this._updateDatePane();};},handleKeyPress:function(e){this._onKeyPress(e);},_updateDatePane:function(){var ct=qx.ui.control.DateChooser;var cq=new Date();var ci=cq.getFullYear();var co=cq.getMonth();var cl=cq.getDate();var cu=this.getValue();var cx=(cu==null)?-1:cu.getFullYear();var cE=(cu==null)?-1:cu.getMonth();var cn=(cu==null)?-1:cu.getDate();var cm=this.getShownMonth();var cB=this.getShownYear();var cj=qx.locale.Date.getWeekStart();var cv=new Date(this.getShownYear(),this.getShownMonth(),1);var cs=new qx.util.format.DateFormat(ct.MONTH_YEAR_FORMAT);this.getChildControl(O).setValue(cs.format(cv));var cD=cv.getDay();var cp=1+((7-cD)%7);var cw=new qx.util.format.DateFormat(ct.WEEKDAY_FORMAT);for(var i=0;i<7;i++ ){var cy=(i+cj)%7;var cA=this.__or[i];cv.setDate(cp+cy);cA.setValue(cw.format(cv));if(qx.locale.Date.isWeekend(cy)){cA.addState(bw);}else {cA.removeState(bw);};};cv=new Date(cB,cm,1,12,0,0);var cf=(7+cD-cj)%7;cv.setDate(cv.getDate()-cf);var cz=new qx.util.format.DateFormat(ct.WEEK_FORMAT);for(var cr=0;cr<6;cr++ ){this.__ot[cr].setValue(cz.format(cv));for(var i=0;i<7;i++ ){var cA=this.__os[cr*7+i];var ch=cv.getFullYear();var cg=cv.getMonth();var ck=cv.getDate();var ce=(cx==ch&&cE==cg&&cn==ck);if(ce){cA.addState(q);}else {cA.removeState(q);};if(cg!=cm){cA.addState(N);}else {cA.removeState(N);};var cC=(ch==ci&&cg==co&&ck==cl);if(cC){cA.addState(m);}else {cA.removeState(m);};cA.setValue(bo+ck);cA.dateTime=cv.getTime();cv.setDate(cv.getDate()+1);};};cs.dispose();cw.dispose();cz.dispose();}},destruct:function(){if(qx.core.Environment.get(U)){qx.locale.Manager.getInstance().removeListener(B,this._updateDatePane,this);};this.__or=this.__os=this.__ot=null;}});})();(function(){var a="inherit",b="toolbar-button",c="keydown",d="qx.ui.toolbar.Button",e="keyup";qx.Class.define(d,{extend:qx.ui.form.Button,construct:function(f,h,g){qx.ui.form.Button.call(this,f,h,g);this.removeListener(c,this._onKeyDown);this.removeListener(e,this._onKeyUp);},properties:{appearance:{refine:true,init:b},show:{refine:true,init:a},focusable:{refine:true,init:false}},members:{_applyVisibility:function(j,i){qx.ui.form.Button.prototype._applyVisibility.call(this,j,i);var parent=this.getLayoutParent();if(parent&&parent instanceof qx.ui.toolbar.PartContainer){qx.ui.core.queue.Appearance.add(parent);};}}});})();(function(){var a="toolbar/part/container",b="icon",c="changeShow",d="qx.ui.toolbar.PartContainer",e="label",f="both";qx.Class.define(d,{extend:qx.ui.container.Composite,construct:function(){qx.ui.container.Composite.call(this);this._setLayout(new qx.ui.layout.HBox);},properties:{appearance:{refine:true,init:a},show:{init:f,check:[f,e,b],inheritable:true,event:c}}});})();(function(){var a="_applyOverflowX",b="_applyOverflowY",c="auto",d="overflowX",e="visible",f="hidden",g="qx.ui.core.MNativeOverflow",h="scroll",i="overflowY";qx.Mixin.define(g,{properties:{overflowX:{check:[f,e,h,c],nullable:true,apply:a},overflowY:{check:[f,e,h,c],nullable:true,apply:b},overflow:{group:[d,i]}},members:{_applyOverflowX:function(j){this.getContentElement().setStyle(d,j);},_applyOverflowY:function(k){this.getContentElement().setStyle(i,k);}}});})();(function(){var a="mshtml",b="engine.name",c="relative",d="",e="text",f="none",g="position",h="webkit",i="changeHtml",j="_applyCssClass",k="qx.ui.embed.Html",l="_applyHtml",m="userSelect",n="color",o="String",p="browser.documentmode",q="html";qx.Class.define(k,{extend:qx.ui.core.Widget,include:[qx.ui.core.MNativeOverflow],construct:function(r){qx.ui.core.Widget.call(this);if(r!=null){this.setHtml(r);};},properties:{html:{check:o,apply:l,event:i,nullable:true},cssClass:{check:o,init:d,apply:j},selectable:{refine:true,init:true},focusable:{refine:true,init:true}},members:{getFocusElement:function(){return this.getContentElement();},_applyHtml:function(u,s){var t=this.getContentElement();if(qx.core.Environment.get(b)==a&&qx.core.Environment.get(p)==9){t.setStyle(g,c);};t.setAttribute(q,u||d);},_applyCssClass:function(w,v){this.getContentElement().removeClass(v);this.getContentElement().addClass(w);},_applySelectable:function(x){qx.ui.core.Widget.prototype._applySelectable.call(this,x);if((qx.core.Environment.get(b)==h)){this.getContentElement().setStyle(m,x?e:f);};},_applyFont:function(A,z){var y=A?qx.theme.manager.Font.getInstance().resolve(A).getStyles():qx.bom.Font.getDefaultStyles();if(this.getTextColor()!=null){delete y[n];};this.getContentElement().setStyles(y);},_applyTextColor:function(C,B){if(C){this.getContentElement().setStyle(n,qx.theme.manager.Color.getInstance().resolve(C));}else {this.getContentElement().removeStyle(n);};}}});})();(function(){var c="os.name",d="Abstract method call: _getLastSelectable()",f="Could not select more than one items in mode: ",g="Boolean",h="one",j="Abstract method call: _getLocation()",k="Left",m="Abstract method call: _scrollBy()",n="The method getSelectedItem() is only supported in 'single' and 'one' selection mode!",o="Abstract method call: _scrollItemIntoView()",p="Escape",q="Abstract method call: _isSelectable()",r="Space",s="Abstract method call: _getPage()",t="right",u="lead",v="Down",w="Abstract method call: _getFirstSelectable()",x="Up",y="qx.event.type.Data",z="A",A="_applyMode",B="PageDown",C="Can not select multiple items in selection mode: ",D="osx",E="interval",F="Abstract method call: _styleSelectable()",G="anchor",H="Abstract method call: _capture()",I="Abstract method call: _getDimension()",J="The method invertSelection() is only supported in 'multi' and 'additive' selection mode!",K="!",L="Abstract method call: _getScroll()",M="Abstract method call: _getRelatedSelectable()",N="End",O="quick",P="selected",Q="key",R="Abstract method call: _getSelectableLocationX()",S="multi",T="left",U="Abstract method call: _selectableToHashCode()",V="Home",W="Can not select all items in selection mode: ",X="single",Y="Right",bs="Abstract method call: getSelectables()",bt="Abstract method call: _getSelectableLocationY()",bu="additive",bo="click",bp="abstract",bq="changeSelection",br="__ow",by="above",bz="Abstract method call: _getSelectableRange()",bA="under",bB="drag",bv="PageUp",bw="qx.ui.core.selection.Abstract",bx="Abstract method call: _releaseCapture()";qx.Class.define(bw,{type:bp,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__gm={};},events:{"changeSelection":y},properties:{mode:{check:[X,S,bu,h],init:X,apply:A},drag:{check:g,init:false},quick:{check:g,init:false}},members:{__ou:0,__ov:0,__ow:null,__ox:null,__oy:null,__oz:null,__oA:null,__oB:null,__oC:null,__oD:null,__oE:null,__oF:null,__oG:null,__oH:null,__oI:null,__oJ:null,__oK:null,__gm:null,__oL:null,__oM:null,_userInteraction:false,__oN:null,getSelectionContext:function(){return this.__oJ;},selectAll:function(){var bC=this.getMode();if(bC==X||bC==h){throw new Error(W+bC);};this._selectAllItems();this._fireChange();},selectItem:function(bD){this._setSelectedItem(bD);var bE=this.getMode();if(bE!==X&&bE!==h){this._setLeadItem(bD);this._setAnchorItem(bD);};this._scrollItemIntoView(bD);this._fireChange();},addItem:function(bF){var bG=this.getMode();if(bG===X||bG===h){this._setSelectedItem(bF);}else {if(this._getAnchorItem()==null){this._setAnchorItem(bF);};this._setLeadItem(bF);this._addToSelection(bF);};this._scrollItemIntoView(bF);this._fireChange();},removeItem:function(bH){this._removeFromSelection(bH);if(this.getMode()===h&&this.isSelectionEmpty()){var bI=this._applyDefaultSelection();if(bI==bH){return;};};if(this.getLeadItem()==bH){this._setLeadItem(null);};if(this._getAnchorItem()==bH){this._setAnchorItem(null);};this._fireChange();},selectItemRange:function(bJ,bK){var bL=this.getMode();if(bL==X||bL==h){throw new Error(C+bL);};this._selectItemRange(bJ,bK);this._setAnchorItem(bJ);this._setLeadItem(bK);this._scrollItemIntoView(bK);this._fireChange();},clearSelection:function(){if(this.getMode()==h){var bM=this._applyDefaultSelection(true);if(bM!=null){return;};};this._clearSelection();this._setLeadItem(null);this._setAnchorItem(null);this._fireChange();},replaceSelection:function(bN){var bO=this.getMode();if(bO==h||bO===X){if(bN.length>1){throw new Error(f+bO+K);};if(bN.length==1){this.selectItem(bN[0]);}else {this.clearSelection();};return;}else {this._replaceMultiSelection(bN);};},getSelectedItem:function(){var bP=this.getMode();if(bP===X||bP===h){var bQ=this._getSelectedItem();return bQ!=undefined?bQ:null;};throw new Error(n);},getSelection:function(){return qx.lang.Object.getValues(this.__gm);},getSortedSelection:function(){var bS=this.getSelectables();var bR=qx.lang.Object.getValues(this.__gm);bR.sort(function(a,b){return bS.indexOf(a)-bS.indexOf(b);});return bR;},isItemSelected:function(bT){var bU=this._selectableToHashCode(bT);return this.__gm[bU]!==undefined;},isSelectionEmpty:function(){return qx.lang.Object.isEmpty(this.__gm);},invertSelection:function(){var bW=this.getMode();if(bW===X||bW===h){throw new Error(J);};var bV=this.getSelectables();for(var i=0;i<bV.length;i++ ){this._toggleInSelection(bV[i]);};this._fireChange();},_setLeadItem:function(bY){var bX=this.__oK;if(bX!==null){this._styleSelectable(bX,u,false);};if(bY!==null){this._styleSelectable(bY,u,true);};this.__oK=bY;},getLeadItem:function(){return this.__oK!==null?this.__oK:null;},_setAnchorItem:function(cb){var ca=this.__oL;if(ca!=null){this._styleSelectable(ca,G,false);};if(cb!=null){this._styleSelectable(cb,G,true);};this.__oL=cb;},_getAnchorItem:function(){return this.__oL!==null?this.__oL:null;},_isSelectable:function(cc){throw new Error(q);},_getSelectableFromMouseEvent:function(event){var cd=event.getTarget();if(cd&&this._isSelectable(cd)){return cd;};return null;},_selectableToHashCode:function(ce){throw new Error(U);},_styleSelectable:function(cf,cg,ch){throw new Error(F);},_capture:function(){throw new Error(H);},_releaseCapture:function(){throw new Error(bx);},_getLocation:function(){throw new Error(j);},_getDimension:function(){throw new Error(I);},_getSelectableLocationX:function(ci){throw new Error(R);},_getSelectableLocationY:function(cj){throw new Error(bt);},_getScroll:function(){throw new Error(L);},_scrollBy:function(ck,cl){throw new Error(m);},_scrollItemIntoView:function(cm){throw new Error(o);},getSelectables:function(cn){throw new Error(bs);},_getSelectableRange:function(cp,co){throw new Error(bz);},_getFirstSelectable:function(){throw new Error(w);},_getLastSelectable:function(){throw new Error(d);},_getRelatedSelectable:function(cq,cr){throw new Error(M);},_getPage:function(ct,cs){throw new Error(s);},_applyMode:function(cv,cu){this._setLeadItem(null);this._setAnchorItem(null);this._clearSelection();if(cv===h){this._applyDefaultSelection(true);};this._fireChange();},handleMouseOver:function(event){if(this.__oN!=null&&this.__oN!=this._getScroll().top){this.__oN=null;return;};this._userInteraction=true;if(!this.getQuick()){this._userInteraction=false;return;};var cx=this.getMode();if(cx!==h&&cx!==X){this._userInteraction=false;return;};var cw=this._getSelectableFromMouseEvent(event);if(cw===null){this._userInteraction=false;return;};this._setSelectedItem(cw);this._fireChange(O);this._userInteraction=false;},handleMouseDown:function(event){this._userInteraction=true;var cB=this._getSelectableFromMouseEvent(event);if(cB===null){this._userInteraction=false;return;};var cy=event.isCtrlPressed()||(qx.core.Environment.get(c)==D&&event.isMetaPressed());var cz=event.isShiftPressed();if(this.isItemSelected(cB)&&!cz&&!cy&&!this.getDrag()){this.__oM=cB;this._userInteraction=false;return;}else {this.__oM=null;};this._scrollItemIntoView(cB);switch(this.getMode()){case X:case h:this._setSelectedItem(cB);break;case bu:this._setLeadItem(cB);this._setAnchorItem(cB);this._toggleInSelection(cB);break;case S:this._setLeadItem(cB);if(cz){var cA=this._getAnchorItem();if(cA===null){cA=this._getFirstSelectable();this._setAnchorItem(cA);};this._selectItemRange(cA,cB,cy);}else if(cy){this._setAnchorItem(cB);this._toggleInSelection(cB);}else {this._setAnchorItem(cB);this._setSelectedItem(cB);};break;};var cC=this.getMode();if(this.getDrag()&&cC!==X&&cC!==h&&!cz&&!cy){this.__oA=this._getLocation();this.__ox=this._getScroll();this.__oB=event.getDocumentLeft()+this.__ox.left;this.__oC=event.getDocumentTop()+this.__ox.top;this.__oD=true;this._capture();};this._fireChange(bo);this._userInteraction=false;},handleMouseUp:function(event){this._userInteraction=true;var cG=event.isCtrlPressed()||(qx.core.Environment.get(c)==D&&event.isMetaPressed());var cD=event.isShiftPressed();if(!cG&&!cD&&this.__oM!=null){var cE=this._getSelectableFromMouseEvent(event);if(cE===null||!this.isItemSelected(cE)){this._userInteraction=false;return;};var cF=this.getMode();if(cF===bu){this._removeFromSelection(cE);}else {this._setSelectedItem(cE);if(this.getMode()===S){this._setLeadItem(cE);this._setAnchorItem(cE);};};this._userInteraction=false;};this._cleanup();},handleLoseCapture:function(event){this._cleanup();},handleMouseMove:function(event){if(!this.__oD){return;};this.__oE=event.getDocumentLeft();this.__oF=event.getDocumentTop();this._userInteraction=true;var cH=this.__oE+this.__ox.left;if(cH>this.__oB){this.__oG=1;}else if(cH<this.__oB){this.__oG=-1;}else {this.__oG=0;};var cI=this.__oF+this.__ox.top;if(cI>this.__oC){this.__oH=1;}else if(cI<this.__oC){this.__oH=-1;}else {this.__oH=0;};var location=this.__oA;if(this.__oE<location.left){this.__ou=this.__oE-location.left;}else if(this.__oE>location.right){this.__ou=this.__oE-location.right;}else {this.__ou=0;};if(this.__oF<location.top){this.__ov=this.__oF-location.top;}else if(this.__oF>location.bottom){this.__ov=this.__oF-location.bottom;}else {this.__ov=0;};if(!this.__ow){this.__ow=new qx.event.Timer(100);this.__ow.addListener(E,this._onInterval,this);};this.__ow.start();this._autoSelect();event.stopPropagation();this._userInteraction=false;},handleAddItem:function(e){var cJ=e.getData();if(this.getMode()===h&&this.isSelectionEmpty()){this.addItem(cJ);};},handleRemoveItem:function(e){this.removeItem(e.getData());},_cleanup:function(){if(!this.getDrag()&&this.__oD){return;};if(this.__oI){this._fireChange(bo);};delete this.__oD;delete this.__oy;delete this.__oz;this._releaseCapture();if(this.__ow){this.__ow.stop();};},_onInterval:function(e){this._scrollBy(this.__ou,this.__ov);this.__ox=this._getScroll();this._autoSelect();},_autoSelect:function(){var cS=this._getDimension();var cL=Math.max(0,Math.min(this.__oE-this.__oA.left,cS.width))+this.__ox.left;var cK=Math.max(0,Math.min(this.__oF-this.__oA.top,cS.height))+this.__ox.top;if(this.__oy===cL&&this.__oz===cK){return;};this.__oy=cL;this.__oz=cK;var cP=this._getAnchorItem();var cN=cP;var cQ=this.__oG;var cT,cM;while(cQ!==0){cT=cQ>0?this._getRelatedSelectable(cN,t):this._getRelatedSelectable(cN,T);if(cT!==null){cM=this._getSelectableLocationX(cT);if((cQ>0&&cM.left<=cL)||(cQ<0&&cM.right>=cL)){cN=cT;continue;};};break;};var cR=this.__oH;var cU,cO;while(cR!==0){cU=cR>0?this._getRelatedSelectable(cN,bA):this._getRelatedSelectable(cN,by);if(cU!==null){cO=this._getSelectableLocationY(cU);if((cR>0&&cO.top<=cK)||(cR<0&&cO.bottom>=cK)){cN=cU;continue;};};break;};var cV=this.getMode();if(cV===S){this._selectItemRange(cP,cN);}else if(cV===bu){if(this.isItemSelected(cP)){this._selectItemRange(cP,cN,true);}else {this._deselectItemRange(cP,cN);};this._setAnchorItem(cN);};this._fireChange(bB);},__oO:{Home:1,Down:1,Right:1,PageDown:1,End:1,Up:1,Left:1,PageUp:1},handleKeyPress:function(event){this._userInteraction=true;var dc,db;var de=event.getKeyIdentifier();var dd=this.getMode();var cX=event.isCtrlPressed()||(qx.core.Environment.get(c)==D&&event.isMetaPressed());var cY=event.isShiftPressed();var da=false;if(de===z&&cX){if(dd!==X&&dd!==h){this._selectAllItems();da=true;};}else if(de===p){if(dd!==X&&dd!==h){this._clearSelection();da=true;};}else if(de===r){var cW=this.getLeadItem();if(cW!=null&&!cY){if(cX||dd===bu){this._toggleInSelection(cW);}else {this._setSelectedItem(cW);};da=true;};}else if(this.__oO[de]){da=true;if(dd===X||dd==h){dc=this._getSelectedItem();}else {dc=this.getLeadItem();};if(dc!==null){switch(de){case V:db=this._getFirstSelectable();break;case N:db=this._getLastSelectable();break;case x:db=this._getRelatedSelectable(dc,by);break;case v:db=this._getRelatedSelectable(dc,bA);break;case k:db=this._getRelatedSelectable(dc,T);break;case Y:db=this._getRelatedSelectable(dc,t);break;case bv:db=this._getPage(dc,true);break;case B:db=this._getPage(dc,false);break;};}else {switch(de){case V:case v:case Y:case B:db=this._getFirstSelectable();break;case N:case x:case k:case bv:db=this._getLastSelectable();break;};};if(db!==null){switch(dd){case X:case h:this._setSelectedItem(db);break;case bu:this._setLeadItem(db);break;case S:if(cY){var df=this._getAnchorItem();if(df===null){this._setAnchorItem(df=this._getFirstSelectable());};this._setLeadItem(db);this._selectItemRange(df,db,cX);}else {this._setAnchorItem(db);this._setLeadItem(db);if(!cX){this._setSelectedItem(db);};};break;};this.__oN=this._getScroll().top;this._scrollItemIntoView(db);};};if(da){event.stop();this._fireChange(Q);};this._userInteraction=false;},_selectAllItems:function(){var dg=this.getSelectables();for(var i=0,l=dg.length;i<l;i++ ){this._addToSelection(dg[i]);};},_clearSelection:function(){var dh=this.__gm;for(var di in dh){this._removeFromSelection(dh[di]);};this.__gm={};},_selectItemRange:function(dj,dn,dl){var dp=this._getSelectableRange(dj,dn);if(!dl){var dm=this.__gm;var dq=this.__oP(dp);for(var dk in dm){if(!dq[dk]){this._removeFromSelection(dm[dk]);};};};for(var i=0,l=dp.length;i<l;i++ ){this._addToSelection(dp[i]);};},_deselectItemRange:function(dt,dr){var ds=this._getSelectableRange(dt,dr);for(var i=0,l=ds.length;i<l;i++ ){this._removeFromSelection(ds[i]);};},__oP:function(dv){var dw={};var du;for(var i=0,l=dv.length;i<l;i++ ){du=dv[i];dw[this._selectableToHashCode(du)]=du;};return dw;},_getSelectedItem:function(){for(var dx in this.__gm){return this.__gm[dx];};return null;},_setSelectedItem:function(dz){if(this._isSelectable(dz)){var dy=this.__gm;var dA=this._selectableToHashCode(dz);if(!dy[dA]||(dy.length>=2)){this._clearSelection();this._addToSelection(dz);};};},_addToSelection:function(dB){var dC=this._selectableToHashCode(dB);if(this.__gm[dC]==null&&this._isSelectable(dB)){this.__gm[dC]=dB;this._styleSelectable(dB,P,true);this.__oI=true;};},_toggleInSelection:function(dD){var dE=this._selectableToHashCode(dD);if(this.__gm[dE]==null){this.__gm[dE]=dD;this._styleSelectable(dD,P,true);}else {delete this.__gm[dE];this._styleSelectable(dD,P,false);};this.__oI=true;},_removeFromSelection:function(dF){var dG=this._selectableToHashCode(dF);if(this.__gm[dG]!=null){delete this.__gm[dG];this._styleSelectable(dF,P,false);this.__oI=true;};},_replaceMultiSelection:function(dJ){var dK=false;var dN,dM;var dI={};for(var i=0,l=dJ.length;i<l;i++ ){dN=dJ[i];if(this._isSelectable(dN)){dM=this._selectableToHashCode(dN);dI[dM]=dN;};};var dO=dJ[0];var dH=dN;var dL=this.__gm;for(var dM in dL){if(dI[dM]){delete dI[dM];}else {dN=dL[dM];delete dL[dM];this._styleSelectable(dN,P,false);dK=true;};};for(var dM in dI){dN=dL[dM]=dI[dM];this._styleSelectable(dN,P,true);dK=true;};if(!dK){return false;};this._scrollItemIntoView(dH);this._setLeadItem(dO);this._setAnchorItem(dO);this.__oI=true;this._fireChange();},_fireChange:function(dP){if(this.__oI){this.__oJ=dP||null;this.fireDataEvent(bq,this.getSelection());delete this.__oI;};},_applyDefaultSelection:function(dQ){if(dQ===true||this.getMode()===h&&this.isSelectionEmpty()){var dR=this._getFirstSelectable();if(dR!=null){this.selectItem(dR);};return dR;};return null;}},destruct:function(){this._disposeObjects(br);this.__gm=this.__oM=this.__oL=null;this.__oK=null;}});})();(function(){var a="vertical",b="under",c="above",d="qx.ui.core.selection.Widget",e="left",f="right";qx.Class.define(d,{extend:qx.ui.core.selection.Abstract,construct:function(g){qx.ui.core.selection.Abstract.call(this);this.__lr=g;},members:{__lr:null,_isSelectable:function(h){return this._isItemSelectable(h)&&h.getLayoutParent()===this.__lr;},_selectableToHashCode:function(j){return j.$$hash;},_styleSelectable:function(k,m,n){n?k.addState(m):k.removeState(m);},_capture:function(){this.__lr.capture();},_releaseCapture:function(){this.__lr.releaseCapture();},_isItemSelectable:function(o){if(this._userInteraction){return o.isVisible()&&o.isEnabled();}else {return o.isVisible();};},_getWidget:function(){return this.__lr;},_getLocation:function(){var p=this.__lr.getContentElement().getDomElement();return p?qx.bom.element.Location.get(p):null;},_getDimension:function(){return this.__lr.getInnerSize();},_getSelectableLocationX:function(q){var r=q.getBounds();if(r){return {left:r.left,right:r.left+r.width};};},_getSelectableLocationY:function(s){var t=s.getBounds();if(t){return {top:t.top,bottom:t.top+t.height};};},_getScroll:function(){return {left:0,top:0};},_scrollBy:function(u,v){},_scrollItemIntoView:function(w){this.__lr.scrollChildIntoView(w);},getSelectables:function(x){var y=false;if(!x){y=this._userInteraction;this._userInteraction=true;};var B=this.__lr.getChildren();var z=[];var A;for(var i=0,l=B.length;i<l;i++ ){A=B[i];if(this._isItemSelectable(A)){z.push(A);};};this._userInteraction=y;return z;},_getSelectableRange:function(C,D){if(C===D){return [C];};var H=this.__lr.getChildren();var E=[];var G=false;var F;for(var i=0,l=H.length;i<l;i++ ){F=H[i];if(F===C||F===D){if(G){E.push(F);break;}else {G=true;};};if(G&&this._isItemSelectable(F)){E.push(F);};};return E;},_getFirstSelectable:function(){var I=this.__lr.getChildren();for(var i=0,l=I.length;i<l;i++ ){if(this._isItemSelectable(I[i])){return I[i];};};return null;},_getLastSelectable:function(){var J=this.__lr.getChildren();for(var i=J.length-1;i>0;i-- ){if(this._isItemSelectable(J[i])){return J[i];};};return null;},_getRelatedSelectable:function(N,O){var L=this.__lr.getOrientation()===a;var P=this.__lr.getChildren();var K=P.indexOf(N);var M;if((L&&O===c)||(!L&&O===e)){for(var i=K-1;i>=0;i-- ){M=P[i];if(this._isItemSelectable(M)){return M;};};}else if((L&&O===b)||(!L&&O===f)){for(var i=K+1;i<P.length;i++ ){M=P[i];if(this._isItemSelectable(M)){return M;};};};return null;},_getPage:function(R,Q){if(Q){return this._getFirstSelectable();}else {return this._getLastSelectable();};}},destruct:function(){this.__lr=null;}});})();(function(){var a="Invalid lead item: ",b="qx.ui.core.selection.ScrollArea";qx.Class.define(b,{extend:qx.ui.core.selection.Widget,members:{_isSelectable:function(c){return this._isItemSelectable(c)&&c.getLayoutParent()===this._getWidget().getChildrenContainer();},_getDimension:function(){return this._getWidget().getPaneSize();},_getScroll:function(){var d=this._getWidget();return {left:d.getScrollX(),top:d.getScrollY()};},_scrollBy:function(f,g){var e=this._getWidget();e.scrollByX(f);e.scrollByY(g);},_getPage:function(k,o){var q=this.getSelectables();var length=q.length;var p=q.indexOf(k);if(p===-1){throw new Error(a+k);};var h=this._getWidget();var r=h.getScrollY();var innerHeight=h.getInnerSize().height;var top,l,s;if(o){var n=r;var i=p;while(1){for(;i>=0;i-- ){top=h.getItemTop(q[i]);if(top<n){s=i+1;break;};};if(s==null){var t=this._getFirstSelectable();return t==k?null:t;};if(s>=p){n-=innerHeight+r-h.getItemBottom(k);s=null;continue;};return q[s];};}else {var m=innerHeight+r;var i=p;while(1){for(;i<length;i++ ){l=h.getItemBottom(q[i]);if(l>m){s=i-1;break;};};if(s==null){var j=this._getLastSelectable();return j==k?null:j;};if(s<=p){m+=h.getItemTop(k)-r;s=null;continue;};return q[s];};};}}});})();(function(){var a="mousedown",b="Boolean",c="one",d="qx.event.type.Data",f=", because it is not a child element!",g="_applyDragSelection",h="Could not add + ",j="mousemove",k="changeSelection",l="Could not test if ",m="Could not remove ",n="addItem",o=" from selection, because it is not a child element!",p="multi",q="_applyQuickSelection",r="single",s="mouseover",t=" is selected, because it is not a child element!",u="__gi",v="_applySelectionMode",w="additive",x="mouseup",y="keypress",z="losecapture",A="Could not select ",B="removeItem",C=" to selection, because it is not a child element!",D="qx.ui.core.MMultiSelectionHandling";qx.Mixin.define(D,{construct:function(){var F=this.SELECTION_MANAGER;var E=this.__gi=new F(this);this.addListener(a,E.handleMouseDown,E);this.addListener(x,E.handleMouseUp,E);this.addListener(s,E.handleMouseOver,E);this.addListener(j,E.handleMouseMove,E);this.addListener(z,E.handleLoseCapture,E);this.addListener(y,E.handleKeyPress,E);this.addListener(n,E.handleAddItem,E);this.addListener(B,E.handleRemoveItem,E);E.addListener(k,this._onSelectionChange,this);},events:{"changeSelection":d},properties:{selectionMode:{check:[r,p,w,c],init:r,apply:v},dragSelection:{check:b,init:false,apply:g},quickSelection:{check:b,init:false,apply:q}},members:{__gi:null,selectAll:function(){this.__gi.selectAll();},isSelected:function(G){if(!qx.ui.core.Widget.contains(this,G)){throw new Error(l+G+t);};return this.__gi.isItemSelected(G);},addToSelection:function(H){if(!qx.ui.core.Widget.contains(this,H)){throw new Error(h+H+C);};this.__gi.addItem(H);},removeFromSelection:function(I){if(!qx.ui.core.Widget.contains(this,I)){throw new Error(m+I+o);};this.__gi.removeItem(I);},selectRange:function(J,K){this.__gi.selectItemRange(J,K);},resetSelection:function(){this.__gi.clearSelection();},setSelection:function(L){for(var i=0;i<L.length;i++ ){if(!qx.ui.core.Widget.contains(this,L[i])){throw new Error(A+L[i]+f);};};if(L.length===0){this.resetSelection();}else {var M=this.getSelection();if(!qx.lang.Array.equals(M,L)){this.__gi.replaceSelection(L);};};},getSelection:function(){return this.__gi.getSelection();},getSortedSelection:function(){return this.__gi.getSortedSelection();},isSelectionEmpty:function(){return this.__gi.isSelectionEmpty();},getSelectionContext:function(){return this.__gi.getSelectionContext();},_getManager:function(){return this.__gi;},getSelectables:function(N){return this.__gi.getSelectables(N);},invertSelection:function(){this.__gi.invertSelection();},_getLeadItem:function(){var O=this.__gi.getMode();if(O===r||O===c){return this.__gi.getSelectedItem();}else {return this.__gi.getLeadItem();};},_applySelectionMode:function(Q,P){this.__gi.setMode(Q);},_applyDragSelection:function(S,R){this.__gi.setDrag(S);},_applyQuickSelection:function(U,T){this.__gi.setQuick(U);},_onSelectionChange:function(e){this.fireDataEvent(k,e.getData());}},destruct:function(){this._disposeObjects(u);}});})();(function(){var a="Could not set the model selection. Maybe your models are not unique? ",b="qx.ui.form.MModelSelection",c="change",d="changeSelection",f="__oQ",g="qx.event.type.Data";qx.Mixin.define(b,{construct:function(){this.__oQ=new qx.data.Array();this.__oQ.addListener(c,this.__oT,this);this.addListener(d,this.__oS,this);},events:{changeModelSelection:g},members:{__oQ:null,__oR:false,__oS:function(){if(this.__oR){return;};var l=this.getSelection();var m=[];for(var i=0;i<l.length;i++ ){var h=l[i];var k=h.getModel?h.getModel():null;if(k!==null){m.push(k);};};if(m.length===l.length){try{this.setModelSelection(m);}catch(e){throw new Error(a+e);};};},__oT:function(){this.__oR=true;var p=this.getSelectables(true);var q=[];var o=this.__oQ.toArray();for(var i=0;i<o.length;i++ ){var s=o[i];for(var j=0;j<p.length;j++ ){var t=p[j];var n=t.getModel?t.getModel():null;if(s===n){q.push(t);break;};};};this.setSelection(q);this.__oR=false;var r=this.getSelection();if(!qx.lang.Array.equals(r,q)){this.__oS();};},getModelSelection:function(){return this.__oQ;},setModelSelection:function(u){if(!u){this.__oQ.removeAll();return;};{};u.unshift(this.__oQ.getLength());u.unshift(0);var v=this.__oQ.splice.apply(this.__oQ,u);v.dispose();}},destruct:function(){this._disposeObjects(f);}});})();(function(){var a="qx.data.marshal.MEventBubbling",b="",c="]",d="idBubble-",f="[",g="changeBubble",h=".",j="qx.event.type.Data";qx.Mixin.define(a,{events:{"changeBubble":j},members:{_applyEventPropagation:function(l,k,name){this.fireDataEvent(g,{value:l,name:name,old:k,item:this});this._registerEventChaining(l,k,name);},_registerEventChaining:function(n,m,name){if(m!=null&&m.getUserData&&m.getUserData(d+this.$$hash)!=null){var p=m.getUserData(d+this.$$hash);for(var i=0;i<p.length;i++ ){m.removeListenerById(p[i]);};m.setUserData(d+this.$$hash,null);};if((n instanceof qx.core.Object)&&qx.Class.hasMixin(n.constructor,qx.data.marshal.MEventBubbling)){var o=qx.lang.Function.bind(this.__oU,this,name);var q=n.addListener(g,o,this);var p=n.getUserData(d+this.$$hash);if(p==null){p=[];n.setUserData(d+this.$$hash,p);};p.push(q);};},__oU:function(name,e){var y=e.getData();var u=y.value;var s=y.old;if(qx.Class.hasInterface(e.getTarget().constructor,qx.data.IListData)){if(y.name.indexOf){var x=y.name.indexOf(h)!=-1?y.name.indexOf(h):y.name.length;var v=y.name.indexOf(f)!=-1?y.name.indexOf(f):y.name.length;if(v==0){var t=name+y.name;}else if(x<v){var r=y.name.substring(0,x);var w=y.name.substring(x+1,y.name.length);if(w[0]!=f){w=h+w;};var t=name+f+r+c+w;}else if(v<x){var r=y.name.substring(0,v);var w=y.name.substring(v,y.name.length);var t=name+f+r+c+w;}else {var t=name+f+y.name+c;};}else {var t=name+f+y.name+c;};}else {if(parseInt(name)==name&&name!==b){name=f+name+c;};var t=name+h+y.name;};this.fireDataEvent(g,{value:u,name:t,old:s,item:y.item||e.getTarget()});}}});})();(function(){var a="-",b="add",c="order",d="add/remove",e="Boolean",f="",g="change",h="qx.data.Array",j="Type of the parameter not supported!",k="0-",l="remove",m="0",n="number",o="changeBubble",p="changeLength",q="qx.event.type.Data";qx.Class.define(h,{extend:qx.core.Object,include:qx.data.marshal.MEventBubbling,implement:[qx.data.IListData],construct:function(r){qx.core.Object.call(this);if(r==undefined){this.__oV=[];}else if(arguments.length>1){this.__oV=[];for(var i=0;i<arguments.length;i++ ){this.__oV.push(arguments[i]);};}else if(typeof r==n){this.__oV=new Array(r);}else if(r instanceof Array){this.__oV=qx.lang.Array.clone(r);}else {this.__oV=[];this.dispose();throw new Error(j);};for(var i=0;i<this.__oV.length;i++ ){this._applyEventPropagation(this.__oV[i],null,i);};this.__oW();{};},properties:{autoDisposeItems:{check:e,init:false}},events:{"change":q,"changeLength":q},members:{__oV:null,concat:function(s){if(s){var t=this.__oV.concat(s);}else {var t=this.__oV.concat();};return new qx.data.Array(t);},join:function(u){return this.__oV.join(u);},pop:function(){var v=this.__oV.pop();this.__oW();this._registerEventChaining(null,v,this.length-1);this.fireDataEvent(o,{value:[],name:this.length+f,old:[v],item:this});this.fireDataEvent(g,{start:this.length-1,end:this.length-1,type:l,items:[v],removed:[v],added:[]},null);return v;},push:function(w){for(var i=0;i<arguments.length;i++ ){this.__oV.push(arguments[i]);this.__oW();this._registerEventChaining(arguments[i],null,this.length-1);this.fireDataEvent(o,{value:[arguments[i]],name:(this.length-1)+f,old:[],item:this});this.fireDataEvent(g,{start:this.length-1,end:this.length-1,type:b,items:[arguments[i]],added:[arguments[i]],removed:[]},null);};return this.length;},reverse:function(){if(this.length==0){return;};var x=this.__oV.concat();this.__oV.reverse();this.__oX(0,this.length);this.fireDataEvent(g,{start:0,end:this.length-1,type:c,items:null,added:[],removed:[]},null);this.fireDataEvent(o,{value:this.__oV,name:k+(this.__oV.length-1),old:x,item:this});},shift:function(){if(this.length==0){return;};var y=this.__oV.shift();this.__oW();this._registerEventChaining(null,y,this.length-1);this.__oX(0,this.length);this.fireDataEvent(o,{value:[],name:m,old:[y],item:this});this.fireDataEvent(g,{start:0,end:this.length-1,type:l,items:[y],removed:[y],added:[]},null);return y;},slice:function(A,z){return new qx.data.Array(this.__oV.slice(A,z));},splice:function(G,I,K){var N=this.__oV.length;var J=this.__oV.splice.apply(this.__oV,arguments);if(this.__oV.length!=N){this.__oW();}else if(I==arguments.length-2){var B=qx.lang.Array.fromArguments(arguments,2);for(var i=0;i<B.length;i++ ){if(B[i]!==J[i]){break;};if(i==B.length-1){return new qx.data.Array();};};};var L=I>0;var D=arguments.length>2;var F=null;if(L||D){var B=qx.lang.Array.fromArguments(arguments,2);if(J.length==0){var M=b;var E=G+B.length;F=B;}else if(B.length==0){var M=l;var E=this.length-1;F=J;}else {var M=d;var E=G+Math.abs(B.length-J.length);};this.fireDataEvent(g,{start:G,end:E,type:M,items:F,added:B,removed:J},null);};for(var i=0;i<J.length;i++ ){this._registerEventChaining(null,J[i],i);};for(var i=2;i<arguments.length;i++ ){this._registerEventChaining(arguments[i],null,G+(i-2));};this.__oX(G+(arguments.length-2)-I,this.length);var H=[];for(var i=2;i<arguments.length;i++ ){H[i-2]=arguments[i];};var C=(G+Math.max(arguments.length-3,I-1));var name=G==C?C:G+a+C;this.fireDataEvent(o,{value:H,name:name+f,old:J,item:this});return (new qx.data.Array(J));},sort:function(P){if(this.length==0){return;};var O=this.__oV.concat();this.__oV.sort.apply(this.__oV,arguments);if(qx.lang.Array.equals(this.__oV,O)===true){return;};this.__oX(0,this.length);this.fireDataEvent(g,{start:0,end:this.length-1,type:c,items:null,added:[],removed:[]},null);this.fireDataEvent(o,{value:this.__oV,name:k+(this.length-1),old:O,item:this});},unshift:function(Q){for(var i=arguments.length-1;i>=0;i-- ){this.__oV.unshift(arguments[i]);this.__oW();this.__oX(0,this.length);this.fireDataEvent(o,{value:[this.__oV[0]],name:m,old:[this.__oV[1]],item:this});this.fireDataEvent(g,{start:0,end:this.length-1,type:b,items:[arguments[i]],added:[arguments[i]],removed:[]},null);};return this.length;},toArray:function(){return this.__oV;},getItem:function(R){return this.__oV[R];},setItem:function(S,U){var T=this.__oV[S];if(T===U){return;};this.__oV[S]=U;this._registerEventChaining(U,T,S);if(this.length!=this.__oV.length){this.__oW();};this.fireDataEvent(o,{value:[U],name:S+f,old:[T],item:this});this.fireDataEvent(g,{start:S,end:S,type:d,items:[U],added:[U],removed:[T]},null);},getLength:function(){return this.length;},indexOf:function(V){return this.__oV.indexOf(V);},lastIndexOf:function(W){return this.__oV.lastIndexOf(W);},toString:function(){if(this.__oV!=null){return this.__oV.toString();};return f;},contains:function(X){return this.__oV.indexOf(X)!==-1;},copy:function(){return this.concat();},insertAt:function(Y,ba){this.splice(Y,0,ba).dispose();},insertBefore:function(bc,bb){var bd=this.indexOf(bc);if(bd==-1){this.push(bb);}else {this.splice(bd,0,bb).dispose();};},insertAfter:function(bf,be){var bg=this.indexOf(bf);if(bg==-1||bg==(this.length-1)){this.push(be);}else {this.splice(bg+1,0,be).dispose();};},removeAt:function(bh){var bi=this.splice(bh,1);var bj=bi.getItem(0);bi.dispose();return bj;},removeAll:function(){for(var i=0;i<this.__oV.length;i++ ){this._registerEventChaining(null,this.__oV[i],i);};if(this.getLength()==0){return [];};var bl=this.getLength();var bk=this.__oV.concat();this.__oV.length=0;this.__oW();this.fireDataEvent(o,{value:[],name:k+(bl-1),old:bk,item:this});this.fireDataEvent(g,{start:0,end:bl-1,type:l,items:bk,removed:bk,added:[]},null);return bk;},append:function(bm){if(bm instanceof qx.data.Array){bm=bm.toArray();};{};Array.prototype.push.apply(this.__oV,bm);for(var i=0;i<bm.length;i++ ){this._registerEventChaining(bm[i],null,this.__oV.length+i);};var bn=this.length;this.__oW();var name=bn==(this.length-1)?bn:bn+a+(this.length-1);this.fireDataEvent(o,{value:bm,name:name+f,old:[],item:this});this.fireDataEvent(g,{start:bn,end:this.length-1,type:b,items:bm,added:bm,removed:[]},null);},remove:function(bo){var bp=this.indexOf(bo);if(bp!=-1){this.splice(bp,1).dispose();return bo;};},equals:function(bq){if(this.length!==bq.length){return false;};for(var i=0;i<this.length;i++ ){if(this.getItem(i)!==bq.getItem(i)){return false;};};return true;},sum:function(){var br=0;for(var i=0;i<this.length;i++ ){br+=this.getItem(i);};return br;},max:function(){var bs=this.getItem(0);for(var i=1;i<this.length;i++ ){if(this.getItem(i)>bs){bs=this.getItem(i);};};return bs===undefined?null:bs;},min:function(){var bt=this.getItem(0);for(var i=1;i<this.length;i++ ){if(this.getItem(i)<bt){bt=this.getItem(i);};};return bt===undefined?null:bt;},forEach:function(bu,bv){for(var i=0;i<this.__oV.length;i++ ){bu.call(bv,this.__oV[i],i,this);};},filter:function(bw,self){return new qx.data.Array(this.__oV.filter(bw,self));},map:function(bx,self){return new qx.data.Array(this.__oV.map(bx,self));},some:function(by,self){return this.__oV.some(by,self);},every:function(bz,self){return this.__oV.every(bz,self);},reduce:function(bB,bA){return this.__oV.reduce(bB,bA);},reduceRight:function(bD,bC){return this.__oV.reduceRight(bD,bC);},__oW:function(){var bE=this.length;this.length=this.__oV.length;this.fireDataEvent(p,this.length,bE);},__oX:function(bG,bF){for(var i=bG;i<bF;i++ ){this._registerEventChaining(this.__oV[i],this.__oV[i],i);};}},destruct:function(){for(var i=0;i<this.__oV.length;i++ ){var bH=this.__oV[i];this._applyEventPropagation(null,bH,i);if(this.isAutoDisposeItems()&&bH&&bH instanceof qx.core.Object){bH.dispose();};};this.__oV=null;}});})();(function(){var a="qx.ui.core.ISingleSelection",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeSelection":b},members:{getSelection:function(){return true;},setSelection:function(c){return arguments.length==1;},resetSelection:function(){return true;},isSelected:function(d){return arguments.length==1;},isSelectionEmpty:function(){return true;},getSelectables:function(e){return arguments.length==1;}}});})();(function(){var a="qx.ui.core.IMultiSelection";qx.Interface.define(a,{extend:qx.ui.core.ISingleSelection,members:{selectAll:function(){return true;},addToSelection:function(b){return arguments.length==1;},removeFromSelection:function(c){return arguments.length==1;}}});})();(function(){var a="qx.ui.core.scroll.MWheelHandling",b="x",c="y",d="scrollbar-x",f="scrollbar-y";qx.Mixin.define(a,{members:{_onMouseWheel:function(e){var j=this._isChildControlVisible(d);var l=this._isChildControlVisible(f);var q=l?this.getChildControl(f,true):null;var p=j?this.getChildControl(d,true):null;var m=e.getWheelDelta(c);var g=e.getWheelDelta(b);var i=!l;var o=!j;if(q){if(qx.event.handler.MouseEmulation.ON){q.scrollBy(parseInt(m));}else {var k=parseInt(m);if(k!==0){q.scrollBySteps(k);};};var n=q.getPosition();var h=q.getMaximum();if(k<0&&n<=0||k>0&&n>=h){i=true;};};if(p){if(qx.event.handler.MouseEmulation.ON){p.scrollBySteps(g);}else {var k=parseInt(g);if(k!==0){p.scrollBySteps(k);};};var n=p.getPosition();var h=p.getMaximum();if(k<0&&n<=0||k>0&&n>=h){o=true;};};if((!i&&g===0)||(!o&&m===0)||((!o||!i)&&g!==0&&m!==0)){e.stop();};}}});})();(function(){var a="qx.nativeScrollBars",b="qx.ui.core.scroll.MScrollBarFactory";qx.core.Environment.add(a,false);qx.Mixin.define(b,{members:{_createScrollBar:function(c){if(qx.core.Environment.get(a)){return new qx.ui.core.scroll.NativeScrollBar(c);}else {return new qx.ui.core.scroll.ScrollBar(c);};}}});})();(function(){var a='qx.event.type.Event',b="qx.ui.core.scroll.IScrollBar",c="qx.event.type.Data";qx.Interface.define(b,{events:{"scroll":c,"scrollAnimationEnd":a},properties:{orientation:{},maximum:{},position:{},knobFactor:{}},members:{scrollTo:function(e,d){this.assertNumber(e);},scrollBy:function(g,f){this.assertNumber(g);},scrollBySteps:function(i,h){this.assertNumber(i);}}});})();(function(){var a="mousedown",b="qx.ui.core.scroll.NativeScrollBar",c="px",d="PositiveNumber",f="__pa",g="frame",h="end",i="box-sizing",j="Integer",k="mousemove",l="_applyMaximum",m="vertical",n="_applyOrientation",o="scrollAnimationEnd",p="appear",q="content-box",r="PositiveInteger",s='qx.event.type.Event',t="mshtml",u="engine.name",v="mouseup",w="horizontal",x="Number",y="_applyPosition",z="scrollbar",A="hidden",B="native",C="scroll";qx.Class.define(b,{extend:qx.ui.core.Widget,implement:qx.ui.core.scroll.IScrollBar,construct:function(D){qx.ui.core.Widget.call(this);this.addState(B);this.getContentElement().addListener(C,this._onScroll,this);this.addListener(a,this._stopPropagation,this);this.addListener(v,this._stopPropagation,this);this.addListener(k,this._stopPropagation,this);this.addListener(p,this._onAppear,this);this.getContentElement().add(this._getScrollPaneElement());this.getContentElement().setStyle(i,q);if(D!=null){this.setOrientation(D);}else {this.initOrientation();};},events:{scrollAnimationEnd:s},properties:{appearance:{refine:true,init:z},orientation:{check:[w,m],init:w,apply:n},maximum:{check:r,apply:l,init:100},position:{check:x,init:0,apply:y,event:C},singleStep:{check:j,init:20},knobFactor:{check:d,nullable:true}},members:{__oY:null,__pa:null,__pb:null,__pc:null,_getScrollPaneElement:function(){if(!this.__pa){this.__pa=new qx.html.Element();};return this.__pa;},renderLayout:function(F,top,E,H){var G=qx.ui.core.Widget.prototype.renderLayout.call(this,F,top,E,H);this._updateScrollBar();return G;},_getContentHint:function(){var I=qx.bom.element.Scroll.getScrollbarWidth();return {width:this.__oY?100:I,maxWidth:this.__oY?null:I,minWidth:this.__oY?null:I,height:this.__oY?I:100,maxHeight:this.__oY?I:null,minHeight:this.__oY?I:null};},_applyEnabled:function(K,J){qx.ui.core.Widget.prototype._applyEnabled.call(this,K,J);this._updateScrollBar();},_applyMaximum:function(L){this._updateScrollBar();},_applyPosition:function(M){var content=this.getContentElement();if(this.__oY){content.scrollToX(M);}else {content.scrollToY(M);};},_applyOrientation:function(P,N){var O=this.__oY=P===w;this.set({allowGrowX:O,allowShrinkX:O,allowGrowY:!O,allowShrinkY:!O});if(O){this.replaceState(m,w);}else {this.replaceState(w,m);};this.getContentElement().setStyles({overflowX:O?C:A,overflowY:O?A:C});qx.ui.core.queue.Layout.add(this);},_updateScrollBar:function(){var R=this.__oY;var S=this.getBounds();if(!S){return;};if(this.isEnabled()){var T=R?S.width:S.height;var Q=this.getMaximum()+T;}else {Q=0;};if(qx.core.Environment.get(u)==t){var S=this.getBounds();this.getContentElement().setStyles({left:(R?S.left:(S.left-1))+c,top:(R?(S.top-1):S.top)+c,width:(R?S.width:S.width+1)+c,height:(R?S.height+1:S.height)+c});};this._getScrollPaneElement().setStyles({left:0,top:0,width:(R?Q:1)+c,height:(R?1:Q)+c});this.updatePosition(this.getPosition());},scrollTo:function(V,U){this.stopScrollAnimation();if(U){var W=this.getPosition();this.__pc=new qx.bom.AnimationFrame();this.__pc.on(g,function(Y){var X=parseInt(Y/U*(V-W)+W);this.updatePosition(X);},this);this.__pc.on(h,function(){this.setPosition(Math.max(0,Math.min(this.getMaximum(),V)));this.__pc=null;this.fireEvent(o);},this);this.__pc.startSequence(U);}else {this.updatePosition(V);};},updatePosition:function(ba){this.setPosition(Math.max(0,Math.min(this.getMaximum(),ba)));},scrollBy:function(bc,bb){this.scrollTo(this.getPosition()+bc,bb);},scrollBySteps:function(be,bd){var bf=this.getSingleStep();this.scrollBy(be*bf,bd);},stopScrollAnimation:function(){if(this.__pc){this.__pc.cancelSequence();this.__pc=null;};},_onScroll:function(e){var bg=this.getContentElement();var bh=this.__oY?bg.getScrollX():bg.getScrollY();this.setPosition(bh);},_onAppear:function(e){this._applyPosition(this.getPosition());},_stopPropagation:function(e){e.stopPropagation();}},destruct:function(){this._disposeObjects(f);}});})();(function(){var a="slider",b="slideAnimationEnd",c="PositiveNumber",d="changeValue",f="Integer",g="execute",h="qx.lang.Type.isNumber(value)&&value>=0&&value<=this.getMaximum()",i="_applyKnobFactor",j="visible",k="qx.event.type.Event",l="knob",m="button-begin",n="hidden",o="qx.ui.core.scroll.ScrollBar",p="resize",q="vertical",r="_applyOrientation",s="scrollAnimationEnd",t="_applyPageStep",u="right",v="PositiveInteger",w="horizontal",x="up",y="_applyPosition",z="scrollbar",A="_applyMaximum",B="left",C="button-end",D="down",E="scroll";qx.Class.define(o,{extend:qx.ui.core.Widget,implement:qx.ui.core.scroll.IScrollBar,construct:function(F){qx.ui.core.Widget.call(this);this._createChildControl(m);this._createChildControl(a).addListener(p,this._onResizeSlider,this);this._createChildControl(C);if(F!=null){this.setOrientation(F);}else {this.initOrientation();};},events:{"scrollAnimationEnd":k},properties:{appearance:{refine:true,init:z},orientation:{check:[w,q],init:w,apply:r},maximum:{check:v,apply:A,init:100},position:{check:h,init:0,apply:y,event:E},singleStep:{check:f,init:20},pageStep:{check:f,init:10,apply:t},knobFactor:{check:c,apply:i,nullable:true}},members:{__pd:2,__pe:0,_computeSizeHint:function(){var G=qx.ui.core.Widget.prototype._computeSizeHint.call(this);if(this.getOrientation()===w){this.__pe=G.minWidth;G.minWidth=0;}else {this.__pe=G.minHeight;G.minHeight=0;};return G;},renderLayout:function(L,top,I,H){var K=qx.ui.core.Widget.prototype.renderLayout.call(this,L,top,I,H);var J=this.getOrientation()===w;if(this.__pe>=(J?I:H)){this.getChildControl(m).setVisibility(n);this.getChildControl(C).setVisibility(n);}else {this.getChildControl(m).setVisibility(j);this.getChildControl(C).setVisibility(j);};return K;},_createChildControlImpl:function(O,N){var M;switch(O){case a:M=new qx.ui.core.scroll.ScrollSlider();M.setPageStep(100);M.setFocusable(false);M.addListener(d,this._onChangeSliderValue,this);M.addListener(b,this._onSlideAnimationEnd,this);this._add(M,{flex:1});break;case m:M=new qx.ui.form.RepeatButton();M.setFocusable(false);M.addListener(g,this._onExecuteBegin,this);this._add(M);break;case C:M=new qx.ui.form.RepeatButton();M.setFocusable(false);M.addListener(g,this._onExecuteEnd,this);this._add(M);break;};return M||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,O);},_applyMaximum:function(P){this.getChildControl(a).setMaximum(P);},_applyPosition:function(Q){this.getChildControl(a).setValue(Q);},_applyKnobFactor:function(R){this.getChildControl(a).setKnobFactor(R);},_applyPageStep:function(S){this.getChildControl(a).setPageStep(S);},_applyOrientation:function(V,T){var U=this._getLayout();if(U){U.dispose();};if(V===w){this._setLayout(new qx.ui.layout.HBox());this.setAllowStretchX(true);this.setAllowStretchY(false);this.replaceState(q,w);this.getChildControl(m).replaceState(x,B);this.getChildControl(C).replaceState(D,u);}else {this._setLayout(new qx.ui.layout.VBox());this.setAllowStretchX(false);this.setAllowStretchY(true);this.replaceState(w,q);this.getChildControl(m).replaceState(B,x);this.getChildControl(C).replaceState(u,D);};this.getChildControl(a).setOrientation(V);},scrollTo:function(X,W){this.getChildControl(a).slideTo(X,W);},scrollBy:function(ba,Y){this.getChildControl(a).slideBy(ba,Y);},scrollBySteps:function(bc,bb){var bd=this.getSingleStep();this.getChildControl(a).slideBy(bc*bd,bb);},updatePosition:function(be){this.getChildControl(a).updatePosition(be);},stopScrollAnimation:function(){this.getChildControl(a).stopSlideAnimation();},_onExecuteBegin:function(e){this.scrollBy(-this.getSingleStep(),50);},_onExecuteEnd:function(e){this.scrollBy(this.getSingleStep(),50);},_onSlideAnimationEnd:function(){this.fireEvent(s);},_onChangeSliderValue:function(e){this.setPosition(e.getData());},_onResizeSlider:function(e){var bf=this.getChildControl(a).getChildControl(l);var bi=bf.getSizeHint();var bg=false;var bh=this.getChildControl(a).getInnerSize();if(this.getOrientation()==q){if(bh.height<bi.minHeight+this.__pd){bg=true;};}else {if(bh.width<bi.minWidth+this.__pd){bg=true;};};if(bg){bf.exclude();}else {bf.show();};}}});})();(function(){var a="qx.ui.form.IRange";qx.Interface.define(a,{members:{setMinimum:function(b){return arguments.length==1;},getMinimum:function(){},setMaximum:function(c){return arguments.length==1;},getMaximum:function(){},setSingleStep:function(d){return arguments.length==1;},getSingleStep:function(){},setPageStep:function(e){return arguments.length==1;},getPageStep:function(){}}});})();(function(){var a="qx.ui.form.INumberForm",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeValue":b},members:{setValue:function(c){return arguments.length==1;},resetValue:function(){},getValue:function(){}}});})();(function(){var a="slider",b="hovered",c="mousedown",d="pressed",f="px",g="PageUp",h="changeValue",i="mouseout",j="frame",k="x",l="end",m='qx.event.type.Data',n="Left",o="Down",p="Integer",q="Up",r="dblclick",s="qx.ui.form.Slider",t="PageDown",u="mousewheel",v="interval",w="_applyValue",x="_applyKnobFactor",y="End",z="mousemove",A="height",B="y",C="resize",D="vertical",E="Right",F="width",G="_applyOrientation",H="left",I="Home",J="mouseover",K="floor",L="_applyMinimum",M="click",N="top",O="changeMaximum",P="keypress",Q="slideAnimationEnd",R="knob",S="ceil",T='qx.event.type.Event',U="mouseup",V="horizontal",W="losecapture",X="contextmenu",Y="_applyMaximum",bd="Number",be="typeof value==='number'&&value>=this.getMinimum()&&value<=this.getMaximum()",bf="changeMinimum";qx.Class.define(s,{extend:qx.ui.core.Widget,implement:[qx.ui.form.IForm,qx.ui.form.INumberForm,qx.ui.form.IRange],include:[qx.ui.form.MForm],construct:function(bg){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.Canvas());this.addListener(P,this._onKeyPress);this.addListener(u,this._onMouseWheel);this.addListener(c,this._onMouseDown);this.addListener(U,this._onMouseUp);this.addListener(W,this._onMouseUp);this.addListener(C,this._onUpdate);this.addListener(X,this._onStopEvent);this.addListener(M,this._onStopEvent);this.addListener(r,this._onStopEvent);if(bg!=null){this.setOrientation(bg);}else {this.initOrientation();};},events:{changeValue:m,slideAnimationEnd:T},properties:{appearance:{refine:true,init:a},focusable:{refine:true,init:true},orientation:{check:[V,D],init:V,apply:G},value:{check:be,init:0,apply:w,nullable:true},minimum:{check:p,init:0,apply:L,event:bf},maximum:{check:p,init:100,apply:Y,event:O},singleStep:{check:p,init:1},pageStep:{check:p,init:10},knobFactor:{check:bd,apply:x,nullable:true}},members:{__pf:null,__pg:null,__ph:null,__pi:null,__pj:null,__pk:null,__pl:null,__pm:null,__jx:null,__pn:null,__po:null,__pp:null,__pc:null,_forwardStates:{invalid:true},renderLayout:function(bi,top,bh,bj){qx.ui.core.Widget.prototype.renderLayout.call(this,bi,top,bh,bj);this._updateKnobPosition();},_createChildControlImpl:function(bm,bl){var bk;switch(bm){case R:bk=new qx.ui.core.Widget();bk.addListener(C,this._onUpdate,this);bk.addListener(J,this._onMouseOver);bk.addListener(i,this._onMouseOut);this._add(bk);break;};return bk||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,bm);},_onMouseOver:function(e){this.addState(b);},_onMouseOut:function(e){this.removeState(b);},_onMouseWheel:function(e){var bo=this.getOrientation()===V?k:B;var bp=e.getWheelDelta(bo);if(qx.event.handler.MouseEmulation.ON){this.slideBy(bp);}else {var bn=bp>0?1:bp<0?-1:0;this.slideBy(bn*this.getSingleStep());};e.stop();},_onKeyPress:function(e){var br=this.getOrientation()===V;var bq=br?n:q;var forward=br?E:o;switch(e.getKeyIdentifier()){case forward:this.slideForward();break;case bq:this.slideBack();break;case t:this.slidePageForward(100);break;case g:this.slidePageBack(100);break;case I:this.slideToBegin(200);break;case y:this.slideToEnd(200);break;default:return;};e.stop();},_onMouseDown:function(e){if(this.__pi){return;};var bu=this.__oY;var bs=this.getChildControl(R);var bt=bu?H:N;var by=bu?e.getDocumentLeft():e.getDocumentTop();var bA=this.getDecorator();bA=qx.theme.manager.Decoration.getInstance().resolve(bA);if(bu){var bx=bA?bA.getInsets().left:0;var bw=(this.getPaddingLeft()||0)+bx;}else {var bx=bA?bA.getInsets().top:0;var bw=(this.getPaddingTop()||0)+bx;};var bz=this.__pf=qx.bom.element.Location.get(this.getContentElement().getDomElement())[bt];bz+=bw;var bv=this.__pg=qx.bom.element.Location.get(bs.getContentElement().getDomElement())[bt];if(e.getTarget()===bs){this.__pi=true;if(!this.__pn){this.__pn=new qx.event.Timer(100);this.__pn.addListener(v,this._fireValue,this);};this.__pn.start();this.__pj=by+bz-bv;bs.addState(d);}else {this.__pk=true;this.__pl=by<=bv?-1:1;this.__pr(e);this._onInterval();if(!this.__jx){this.__jx=new qx.event.Timer(100);this.__jx.addListener(v,this._onInterval,this);};this.__jx.start();};this.addListener(z,this._onMouseMove);this.capture();e.stopPropagation();},_onMouseUp:function(e){if(this.__pi){this.releaseCapture();delete this.__pi;this.__pn.stop();this._fireValue();delete this.__pj;this.getChildControl(R).removeState(d);if(e.getType()===U){var bC;var bD;var bB;if(this.__oY){bC=e.getDocumentLeft()-(this._valueToPosition(this.getValue())+this.__pf);bB=qx.bom.element.Location.get(this.getContentElement().getDomElement())[N];bD=e.getDocumentTop()-(bB+this.getChildControl(R).getBounds().top);}else {bC=e.getDocumentTop()-(this._valueToPosition(this.getValue())+this.__pf);bB=qx.bom.element.Location.get(this.getContentElement().getDomElement())[H];bD=e.getDocumentLeft()-(bB+this.getChildControl(R).getBounds().left);};if(bD<0||bD>this.__ph||bC<0||bC>this.__ph){this.getChildControl(R).removeState(b);};};}else if(this.__pk){this.__jx.stop();this.releaseCapture();delete this.__pk;delete this.__pl;delete this.__pm;};this.removeListener(z,this._onMouseMove);if(e.getType()===U){e.stopPropagation();};},_onMouseMove:function(e){if(this.__pi){var bF=this.__oY?e.getDocumentLeft():e.getDocumentTop();var bE=bF-this.__pj;this.slideTo(this._positionToValue(bE));}else if(this.__pk){this.__pr(e);};e.stopPropagation();},_onInterval:function(e){var bG=this.getValue()+(this.__pl*this.getPageStep());if(bG<this.getMinimum()){bG=this.getMinimum();}else if(bG>this.getMaximum()){bG=this.getMaximum();};var bH=this.__pl==-1;if((bH&&bG<=this.__pm)||(!bH&&bG>=this.__pm)){bG=this.__pm;};this.slideTo(bG);},_onUpdate:function(e){var bJ=this.getInnerSize();var bK=this.getChildControl(R).getBounds();var bI=this.__oY?F:A;this._updateKnobSize();this.__pq=bJ[bI]-bK[bI];this.__ph=bK[bI];this._updateKnobPosition();},__oY:false,__pq:0,__pr:function(e){var bL=this.__oY;var bS=bL?e.getDocumentLeft():e.getDocumentTop();var bV=this.__pf;var bM=this.__pg;var bW=this.__ph;var bT=bS-bV;if(bS>=bM){bT-=bW;};var bP=this._positionToValue(bT);var bN=this.getMinimum();var bO=this.getMaximum();if(bP<bN){bP=bN;}else if(bP>bO){bP=bO;}else {var bU=this.getValue();var bR=this.getPageStep();var bQ=this.__pl<0?K:S;bP=bU+(Math[bQ]((bP-bU)/bR)*bR);};if(this.__pm==null||(this.__pl==-1&&bP<=this.__pm)||(this.__pl==1&&bP>=this.__pm)){this.__pm=bP;};},_positionToValue:function(bY){var bX=this.__pq;if(bX==null||bX==0){return 0;};var cb=bY/bX;if(cb<0){cb=0;}else if(cb>1){cb=1;};var ca=this.getMaximum()-this.getMinimum();return this.getMinimum()+Math.round(ca*cb);},_valueToPosition:function(cf){var cc=this.__pq;if(cc==null){return 0;};var cd=this.getMaximum()-this.getMinimum();if(cd==0){return 0;};var cf=cf-this.getMinimum();var ce=cf/cd;if(ce<0){ce=0;}else if(ce>1){ce=1;};return Math.round(cc*ce);},_updateKnobPosition:function(){this._setKnobPosition(this._valueToPosition(this.getValue()));},_setKnobPosition:function(ci){var cg=this.getChildControl(R);var ch=this.getDecorator();ch=qx.theme.manager.Decoration.getInstance().resolve(ch);var content=cg.getContentElement();if(this.__oY){if(ch&&ch.getPadding()){ci+=ch.getPadding().left;};ci+=this.getPaddingLeft()||0;content.setStyle(H,ci+f,true);}else {if(ch&&ch.getPadding()){ci+=ch.getPadding().top;};ci+=this.getPaddingTop()||0;content.setStyle(N,ci+f,true);};},_updateKnobSize:function(){var ck=this.getKnobFactor();if(ck==null){return;};var cj=this.getInnerSize();if(cj==null){return;};if(this.__oY){this.getChildControl(R).setWidth(Math.round(ck*cj.width));}else {this.getChildControl(R).setHeight(Math.round(ck*cj.height));};},slideToBegin:function(cl){this.slideTo(this.getMinimum(),cl);},slideToEnd:function(cm){this.slideTo(this.getMaximum(),cm);},slideForward:function(){this.slideBy(this.getSingleStep());},slideBack:function(){this.slideBy(-this.getSingleStep());},slidePageForward:function(cn){this.slideBy(this.getPageStep(),cn);},slidePageBack:function(co){this.slideBy(-this.getPageStep(),co);},slideBy:function(cq,cp){this.slideTo(this.getValue()+cq,cp);},slideTo:function(cs,cr){this.stopSlideAnimation();if(cr){this.__pt(cs,cr);}else {this.updatePosition(cs);};},updatePosition:function(ct){this.setValue(this.__ps(ct));},stopSlideAnimation:function(){if(this.__pc){this.__pc.cancelSequence();this.__pc=null;};},__ps:function(cu){if(cu<this.getMinimum()){cu=this.getMinimum();}else if(cu>this.getMaximum()){cu=this.getMaximum();}else {cu=this.getMinimum()+Math.round((cu-this.getMinimum())/this.getSingleStep())*this.getSingleStep();};return cu;},__pt:function(cw,cv){cw=this.__ps(cw);var cx=this.getValue();this.__pc=new qx.bom.AnimationFrame();this.__pc.on(j,function(cy){this.setValue(parseInt(cy/cv*(cw-cx)+cx));},this);this.__pc.on(l,function(){this.setValue(cw);this.__pc=null;this.fireEvent(Q);},this);this.__pc.startSequence(cv);},_applyOrientation:function(cB,cA){var cz=this.getChildControl(R);this.__oY=cB===V;if(this.__oY){this.removeState(D);cz.removeState(D);this.addState(V);cz.addState(V);cz.setLayoutProperties({top:0,right:null,bottom:0});}else {this.removeState(V);cz.removeState(V);this.addState(D);cz.addState(D);cz.setLayoutProperties({right:0,bottom:null,left:0});};this._updateKnobPosition();},_applyKnobFactor:function(cD,cC){if(cD!=null){this._updateKnobSize();}else {if(this.__oY){this.getChildControl(R).resetWidth();}else {this.getChildControl(R).resetHeight();};};},_applyValue:function(cF,cE){if(cF!=null){this._updateKnobPosition();if(this.__pi){this.__pp=[cF,cE];}else {this.fireEvent(h,qx.event.type.Data,[cF,cE]);};}else {this.resetValue();};},_fireValue:function(){if(!this.__pp){return;};var cG=this.__pp;this.__pp=null;this.fireEvent(h,qx.event.type.Data,cG);},_applyMinimum:function(cI,cH){if(this.getValue()<cI){this.setValue(cI);};this._updateKnobPosition();},_applyMaximum:function(cK,cJ){if(this.getValue()>cK){this.setValue(cK);};this._updateKnobPosition();}}});})();(function(){var a="horizontal",b="mousewheel",c="qx.ui.core.scroll.ScrollSlider",d="keypress";qx.Class.define(c,{extend:qx.ui.form.Slider,construct:function(e){qx.ui.form.Slider.call(this,e);this.removeListener(d,this._onKeyPress);this.removeListener(b,this._onMouseWheel);},members:{getSizeHint:function(f){var g=qx.ui.form.Slider.prototype.getSizeHint.call(this);if(this.getOrientation()===a){g.width=0;}else {g.height=0;};return g;}}});})();(function(){var a="press",b="hovered",c="qx.ui.form.RepeatButton",d="release",f="Enter",g="pressed",h="__jx",i="interval",j="qx.event.type.Event",k="Space",l="abandoned",m="Integer",n="execute";qx.Class.define(c,{extend:qx.ui.form.Button,construct:function(o,p){qx.ui.form.Button.call(this,o,p);this.__jx=new qx.event.AcceleratingTimer();this.__jx.addListener(i,this._onInterval,this);},events:{"execute":j,"press":j,"release":j},properties:{interval:{check:m,init:100},firstInterval:{check:m,init:500},minTimer:{check:m,init:20},timerDecrease:{check:m,init:2}},members:{__pu:null,__jx:null,press:function(){if(this.isEnabled()){if(!this.hasState(g)){this.__pv();};this.removeState(l);this.addState(g);};},release:function(q){if(!this.isEnabled()){return;};if(this.hasState(g)){if(!this.__pu){this.execute();};};this.removeState(g);this.removeState(l);this.__pw();},_applyEnabled:function(s,r){qx.ui.form.Button.prototype._applyEnabled.call(this,s,r);if(!s){this.removeState(g);this.removeState(l);this.__pw();};},_onMouseOver:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};if(this.hasState(l)){this.removeState(l);this.addState(g);this.__jx.start();};this.addState(b);},_onMouseOut:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};this.removeState(b);if(this.hasState(g)){this.removeState(g);this.addState(l);this.__jx.stop();};},_onMouseDown:function(e){if(!e.isLeftPressed()){return;};this.capture();this.__pv();e.stopPropagation();},_onMouseUp:function(e){this.releaseCapture();if(!this.hasState(l)){this.addState(b);if(this.hasState(g)&&!this.__pu){this.execute();};};this.__pw();e.stopPropagation();},_onKeyUp:function(e){switch(e.getKeyIdentifier()){case f:case k:if(this.hasState(g)){if(!this.__pu){this.execute();};this.removeState(g);this.removeState(l);e.stopPropagation();this.__pw();};};},_onKeyDown:function(e){switch(e.getKeyIdentifier()){case f:case k:this.removeState(l);this.addState(g);e.stopPropagation();this.__pv();};},_onInterval:function(e){this.__pu=true;this.fireEvent(n);},__pv:function(){this.fireEvent(a);this.__pu=false;this.__jx.set({interval:this.getInterval(),firstInterval:this.getFirstInterval(),minimum:this.getMinTimer(),decrease:this.getTimerDecrease()}).start();this.removeState(l);this.addState(g);},__pw:function(){this.fireEvent(d);this.__jx.stop();this.removeState(l);this.removeState(g);}},destruct:function(){this._disposeObjects(h);}});})();(function(){var a="Integer",b="__jx",c="interval",d="qx.event.type.Event",e="qx.event.AcceleratingTimer";qx.Class.define(e,{extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__jx=new qx.event.Timer(this.getInterval());this.__jx.addListener(c,this._onInterval,this);},events:{"interval":d},properties:{interval:{check:a,init:100},firstInterval:{check:a,init:500},minimum:{check:a,init:20},decrease:{check:a,init:2}},members:{__jx:null,__px:null,start:function(){this.__jx.setInterval(this.getFirstInterval());this.__jx.start();},stop:function(){this.__jx.stop();this.__px=null;},_onInterval:function(){this.__jx.stop();if(this.__px==null){this.__px=this.getInterval();};this.__px=Math.max(this.getMinimum(),this.__px-this.getDecrease());this.__jx.setInterval(this.__px);this.__jx.start();this.fireEvent(c);}},destruct:function(){this._disposeObjects(b);}});})();(function(){var a="touchmove",b="End",c="scrollY",d="_computeScrollbars",f="Left",g="X",h="auto",i="scrollAnimation",j="mousewheel",k="scrollbarX",l="scrollbar-y",m="getDocument",n="scrollbar-",o="event.touch",p="corner",q="os.scrollBarOverlayed",r="scrollarea",s="scrollAnimationEnd",t="vertical",u="scrollX",v="changeVisibility",w="off",x="touchstart",y="horizontal",z="scrollbar-x",A="Y",B='qx.event.type.Event',C="qx.ui.core.scroll.AbstractScrollArea",D="abstract",E="update",F="scrollbarY",G="pane",H="Top",I="on",J="x",K="scroll";qx.Class.define(C,{extend:qx.ui.core.Widget,include:[qx.ui.core.scroll.MScrollBarFactory,qx.ui.core.scroll.MWheelHandling],type:D,statics:{DEFAULT_SCROLLBAR_WIDTH:14},construct:function(){qx.ui.core.Widget.call(this);if(qx.core.Environment.get(q)){this._setLayout(new qx.ui.layout.Canvas());}else {var L=new qx.ui.layout.Grid();L.setColumnFlex(0,1);L.setRowFlex(0,1);this._setLayout(L);};this.addListener(j,this._onMouseWheel,this);if(qx.core.Environment.get(o)){this.addListener(a,this._onTouchMove,this);this.addListener(x,function(){this.__cO={"x":0,"y":0};},this);this.__cO={};this.__hO={};};},events:{scrollAnimationXEnd:B,scrollAnimationYEnd:B},properties:{appearance:{refine:true,init:r},width:{refine:true,init:100},height:{refine:true,init:200},scrollbarX:{check:[h,I,w],init:h,themeable:true,apply:d},scrollbarY:{check:[h,I,w],init:h,themeable:true,apply:d},scrollbar:{group:[k,F]}},members:{__cO:null,__hO:null,_createChildControlImpl:function(O,N){var M;switch(O){case G:M=new qx.ui.core.scroll.ScrollPane();M.addListener(E,this._computeScrollbars,this);M.addListener(u,this._onScrollPaneX,this);M.addListener(c,this._onScrollPaneY,this);if(qx.core.Environment.get(q)){this._add(M,{edge:0});}else {this._add(M,{row:0,column:0});};break;case z:M=this._createScrollBar(y);M.setMinWidth(0);M.exclude();M.addListener(K,this._onScrollBarX,this);M.addListener(v,this._onChangeScrollbarXVisibility,this);M.addListener(s,this._onScrollAnimationEnd.bind(this,g));if(qx.core.Environment.get(q)){M.setMinHeight(qx.ui.core.scroll.AbstractScrollArea.DEFAULT_SCROLLBAR_WIDTH);this._add(M,{bottom:0,right:0,left:0});}else {this._add(M,{row:1,column:0});};break;case l:M=this._createScrollBar(t);M.setMinHeight(0);M.exclude();M.addListener(K,this._onScrollBarY,this);M.addListener(v,this._onChangeScrollbarYVisibility,this);M.addListener(s,this._onScrollAnimationEnd.bind(this,A));if(qx.core.Environment.get(q)){M.setMinWidth(qx.ui.core.scroll.AbstractScrollArea.DEFAULT_SCROLLBAR_WIDTH);this._add(M,{right:0,bottom:0,top:0});}else {this._add(M,{row:0,column:1});};break;case p:M=new qx.ui.core.Widget();M.setWidth(0);M.setHeight(0);M.exclude();if(!qx.core.Environment.get(q)){this._add(M,{row:1,column:1});};break;};return M||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,O);},getPaneSize:function(){return this.getChildControl(G).getInnerSize();},getItemTop:function(P){return this.getChildControl(G).getItemTop(P);},getItemBottom:function(Q){return this.getChildControl(G).getItemBottom(Q);},getItemLeft:function(R){return this.getChildControl(G).getItemLeft(R);},getItemRight:function(S){return this.getChildControl(G).getItemRight(S);},scrollToX:function(U,T){qx.ui.core.queue.Manager.flush();this.getChildControl(z).scrollTo(U,T);},scrollByX:function(W,V){qx.ui.core.queue.Manager.flush();this.getChildControl(z).scrollBy(W,V);},getScrollX:function(){var X=this.getChildControl(z,true);return X?X.getPosition():0;},scrollToY:function(ba,Y){qx.ui.core.queue.Manager.flush();this.getChildControl(l).scrollTo(ba,Y);},scrollByY:function(bc,bb){qx.ui.core.queue.Manager.flush();this.getChildControl(l).scrollBy(bc,bb);},getScrollY:function(){var bd=this.getChildControl(l,true);return bd?bd.getPosition():0;},stopScrollAnimationX:function(){var be=this.getChildControl(z,true);if(be){be.stopScrollAnimation();};},stopScrollAnimationY:function(){var bf=this.getChildControl(l,true);if(bf){bf.stopScrollAnimation();};},_onScrollAnimationEnd:function(bg){this.fireEvent(i+bg+b);},_onScrollBarX:function(e){this.getChildControl(G).scrollToX(e.getData());},_onScrollBarY:function(e){this.getChildControl(G).scrollToY(e.getData());},_onScrollPaneX:function(e){var bh=this.getChildControl(z);if(bh){bh.updatePosition(e.getData());};},_onScrollPaneY:function(e){var bi=this.getChildControl(l);if(bi){bi.updatePosition(e.getData());};},_onTouchMove:function(e){},_onTouchMoveDirectional:function(bn,e){var bj=(bn==J?f:H);var bl=this.getChildControl(n+bn,true);var bk=this._isChildControlVisible(n+bn);if(bk&&bl){if(this.__cO[bn]==0){var bm=0;}else {var bm=-(e[m+bj]()-this.__cO[bn]);};this.__cO[bn]=e[m+bj]();bl.scrollBy(bm);if(this.__hO[bn]){clearTimeout(this.__hO[bn]);this.__hO[bn]=null;};this.__hO[bn]=setTimeout(qx.lang.Function.bind(function(bo){this.__hR(bo,bn);},this,bm),100);};},__hR:function(bp,br){this.__hO[br]=null;var bs=this._isChildControlVisible(n+br);if(bp==0||!bs){return;};if(bp>0){bp=Math.max(0,bp-3);}else {bp=Math.min(0,bp+3);};this.__hO[br]=setTimeout(qx.lang.Function.bind(function(bu,bt){this.__hR(bu,bt);},this,bp,br),20);var bq=this.getChildControl(n+br,true);bq.scrollBy(bp);},_onChangeScrollbarXVisibility:function(e){var bv=this._isChildControlVisible(z);var bw=this._isChildControlVisible(l);if(!bv){this.scrollToX(0);};bv&&bw?this._showChildControl(p):this._excludeChildControl(p);},_onChangeScrollbarYVisibility:function(e){var bx=this._isChildControlVisible(z);var by=this._isChildControlVisible(l);if(!by){this.scrollToY(0);};bx&&by?this._showChildControl(p):this._excludeChildControl(p);},_computeScrollbars:function(){var bF=this.getChildControl(G);var content=bF.getChildren()[0];if(!content){this._excludeChildControl(z);this._excludeChildControl(l);return;};var bz=this.getInnerSize();var bE=bF.getInnerSize();var bC=bF.getScrollSize();if(!bE||!bC){return;};var bG=this.getScrollbarX();var bH=this.getScrollbarY();if(bG===h&&bH===h){var bD=bC.width>bz.width;var bI=bC.height>bz.height;if((bD||bI)&&!(bD&&bI)){if(bD){bI=bC.height>bE.height;}else if(bI){bD=bC.width>bE.width;};};}else {var bD=bG===I;var bI=bH===I;if(bC.width>(bD?bE.width:bz.width)&&bG===h){bD=true;};if(bC.height>(bD?bE.height:bz.height)&&bH===h){bI=true;};};if(bD){var bB=this.getChildControl(z);bB.show();bB.setMaximum(Math.max(0,bC.width-bE.width));bB.setKnobFactor((bC.width===0)?0:bE.width/bC.width);}else {this._excludeChildControl(z);};if(bI){var bA=this.getChildControl(l);bA.show();bA.setMaximum(Math.max(0,bC.height-bE.height));bA.setKnobFactor((bC.height===0)?0:bE.height/bC.height);}else {this._excludeChildControl(l);};}}});})();(function(){var a="resize",b="scrollY",c="scrollAnimationEnd",d="update",f="scrollX",g="_applyScrollX",h="_applyScrollY",i="frame",j="qx.lang.Type.isNumber(value)&&value>=0&&value<=this.getScrollMaxX()",k="appear",l="qx.lang.Type.isNumber(value)&&value>=0&&value<=this.getScrollMaxY()",m="qx.event.type.Event",n="qx.ui.core.scroll.ScrollPane",o="end",p="scroll";qx.Class.define(n,{extend:qx.ui.core.Widget,construct:function(){qx.ui.core.Widget.call(this);this.set({minWidth:0,minHeight:0});this._setLayout(new qx.ui.layout.Grow());this.addListener(a,this._onUpdate);var q=this.getContentElement();q.addListener(p,this._onScroll,this);q.addListener(k,this._onAppear,this);},events:{update:m,scrollAnimationEnd:m},properties:{scrollX:{check:j,apply:g,event:f,init:0},scrollY:{check:l,apply:h,event:b,init:0}},members:{__py:null,add:function(r){var s=this._getChildren()[0];if(s){this._remove(s);s.removeListener(a,this._onUpdate,this);};if(r){this._add(r);r.addListener(a,this._onUpdate,this);};},remove:function(t){if(t){this._remove(t);t.removeListener(a,this._onUpdate,this);};},getChildren:function(){return this._getChildren();},_onUpdate:function(e){this.fireEvent(d);},_onScroll:function(e){var u=this.getContentElement();this.setScrollX(u.getScrollX());this.setScrollY(u.getScrollY());},_onAppear:function(e){var z=this.getContentElement();var v=this.getScrollX();var A=z.getScrollX();if(v!=A){z.scrollToX(v);};var w=this.getScrollY();var B=z.getScrollY();if(w!=B){z.scrollToY(w);};},getItemTop:function(C){var top=0;do {top+=C.getBounds().top;C=C.getLayoutParent();}while(C&&C!==this);return top;},getItemBottom:function(D){return this.getItemTop(D)+D.getBounds().height;},getItemLeft:function(E){var F=0;var parent;do {F+=E.getBounds().left;parent=E.getLayoutParent();if(parent){F+=parent.getInsets().left;};E=parent;}while(E&&E!==this);return F;},getItemRight:function(G){return this.getItemLeft(G)+G.getBounds().width;},getScrollSize:function(){return this.getChildren()[0].getBounds();},getScrollMaxX:function(){var I=this.getInnerSize();var H=this.getScrollSize();if(I&&H){return Math.max(0,H.width-I.width);};return 0;},getScrollMaxY:function(){var K=this.getInnerSize();var J=this.getScrollSize();if(K&&J){return Math.max(0,J.height-K.height);};return 0;},scrollToX:function(O,L){var M=this.getScrollMaxX();if(O<0){O=0;}else if(O>M){O=M;};this.stopScrollAnimation();if(L){var N=this.getScrollX();this.__py=new qx.bom.AnimationFrame();this.__py.on(o,function(){this.setScrollX(O);this.__py=null;this.fireEvent(c);},this);this.__py.on(i,function(Q){var P=parseInt(Q/L*(O-N)+N);this.setScrollX(P);},this);this.__py.startSequence(L);}else {this.setScrollX(O);};},scrollToY:function(U,R){var S=this.getScrollMaxY();if(U<0){U=0;}else if(U>S){U=S;};this.stopScrollAnimation();if(R){var T=this.getScrollY();this.__py=new qx.bom.AnimationFrame();this.__py.on(o,function(){this.setScrollY(U);this.__py=null;this.fireEvent(c);},this);this.__py.on(i,function(W){var V=parseInt(W/R*(U-T)+T);this.setScrollY(V);},this);this.__py.startSequence(R);}else {this.setScrollY(U);};},scrollByX:function(x,X){this.scrollToX(this.getScrollX()+x,X);},scrollByY:function(y,Y){this.scrollToY(this.getScrollY()+y,Y);},stopScrollAnimation:function(){if(this.__py){this.__py.cancelSequence();this.__py=null;};},_applyScrollX:function(ba){this.getContentElement().scrollToX(ba);},_applyScrollY:function(bb){this.getContentElement().scrollToY(bb);}}});})();(function(){var a="qx.ui.form.IModelSelection";qx.Interface.define(a,{members:{setModelSelection:function(b){},getModelSelection:function(){}}});})();(function(){var a="qx.ui.form.List",b="text",c="Boolean",d="one",f="addChildWidget",g="_applySpacing",h="__pz",j="Enter",k="Integer",m="action",n="keyinput",o="qx.event.type.Data",p="addItem",q="vertical",r="removeChildWidget",s="",t="_applyOrientation",u="single",v="keypress",w="list",x="horizontal",y="label",z="pane",A="removeItem";qx.Class.define(a,{extend:qx.ui.core.scroll.AbstractScrollArea,implement:[qx.ui.core.IMultiSelection,qx.ui.form.IForm,qx.ui.form.IModelSelection],include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.core.MMultiSelectionHandling,qx.ui.form.MForm,qx.ui.form.MModelSelection],construct:function(B){qx.ui.core.scroll.AbstractScrollArea.call(this);this.__pz=this._createListItemContainer();this.__pz.addListener(f,this._onAddChild,this);this.__pz.addListener(r,this._onRemoveChild,this);this.getChildControl(z).add(this.__pz);if(B){this.setOrientation(x);}else {this.initOrientation();};this.addListener(v,this._onKeyPress);this.addListener(n,this._onKeyInput);this.__pA=s;},events:{addItem:o,removeItem:o},properties:{appearance:{refine:true,init:w},focusable:{refine:true,init:true},orientation:{check:[x,q],init:q,apply:t},spacing:{check:k,init:0,apply:g,themeable:true},enableInlineFind:{check:c,init:true}},members:{__pA:null,__pB:null,__pz:null,SELECTION_MANAGER:qx.ui.core.selection.ScrollArea,getChildrenContainer:function(){return this.__pz;},_onAddChild:function(e){this.fireDataEvent(p,e.getData());},_onRemoveChild:function(e){this.fireDataEvent(A,e.getData());},handleKeyPress:function(e){if(!this._onKeyPress(e)){this._getManager().handleKeyPress(e);};},_createListItemContainer:function(){return new qx.ui.container.Composite;},_applyOrientation:function(F,C){var D=F===x;var E=D?new qx.ui.layout.HBox():new qx.ui.layout.VBox();var content=this.__pz;content.setLayout(E);content.setAllowGrowX(!D);content.setAllowGrowY(D);this._applySpacing(this.getSpacing());},_applySpacing:function(H,G){this.__pz.getLayout().setSpacing(H);},_onKeyPress:function(e){if(e.getKeyIdentifier()==j&&!e.isAltPressed()){var I=this.getSelection();for(var i=0;i<I.length;i++ ){I[i].fireEvent(m);};return true;};return false;},_onKeyInput:function(e){if(!this.getEnableInlineFind()){return;};var J=this.getSelectionMode();if(!(J===u||J===d)){return;};if(((new Date).valueOf()-this.__pB)>1000){this.__pA=s;};this.__pA+=e.getChar();var K=this.findItemByLabelFuzzy(this.__pA);if(K){this.setSelection([K]);};this.__pB=(new Date).valueOf();},findItemByLabelFuzzy:function(M){M=M.toLowerCase();var L=this.getChildren();for(var i=0,l=L.length;i<l;i++ ){var N=L[i].getLabel();if(N&&N.toLowerCase().indexOf(M)==0){return L[i];};};return null;},findItem:function(P,T){if(T!==false){P=P.toLowerCase();};var R=this.getChildren();var U;for(var i=0,l=R.length;i<l;i++ ){U=R[i];var S;if(U.isRich()){var O=U.getChildControl(y,true);if(O){var Q=O.getContentElement().getDomElement();if(Q){S=qx.bom.element.Attribute.get(Q,b);};};}else {S=U.getLabel();};if(S!=null){if(S.translate){S=S.translate();};if(T!==false){S=S.toLowerCase();};if(S.toString()==P.toString()){return U;};};};return null;}},destruct:function(){this._disposeObjects(h);}});})();(function(){var a=" array contains ",b="__gi",c="qx.ui.core.MSingleSelectionHandling",d=" items!",f="changeSelection",g="changeSelected",h="Could only select one item, but the selection",i="qx.event.type.Data";qx.Mixin.define(c,{events:{"changeSelection":i},members:{__gi:null,getSelection:function(){var j=this.__pC().getSelected();if(j){return [j];}else {return [];};},setSelection:function(k){switch(k.length){case 0:this.resetSelection();break;case 1:this.__pC().setSelected(k[0]);break;default:throw new Error(h+a+k.length+d);};},resetSelection:function(){this.__pC().resetSelected();},isSelected:function(l){return this.__pC().isSelected(l);},isSelectionEmpty:function(){return this.__pC().isSelectionEmpty();},getSelectables:function(m){return this.__pC().getSelectables(m);},_onChangeSelected:function(e){var o=e.getData();var n=e.getOldData();o==null?o=[]:o=[o];n==null?n=[]:n=[n];this.fireDataEvent(f,o,n);},__pC:function(){if(this.__gi==null){var p=this;this.__gi=new qx.ui.core.SingleSelectionManager({getItems:function(){return p._getItems();},isItemSelectable:function(q){if(p._isItemSelectable){return p._isItemSelectable(q);}else {return q.isVisible();};}});this.__gi.addListener(g,this._onChangeSelected,this);};this.__gi.setAllowEmptySelection(this._isAllowEmptySelection());return this.__gi;}},destruct:function(){this._disposeObjects(b);}});})();(function(){var a=", because it is not a child element!",b="__pF",c="__pD",d="Boolean",e="__pE",f="qx.ui.core.SingleSelectionManager",g="Could not check if ",h=" is selected,",j="Could not select ",k="changeSelected",l=" because it is not a child element!",m="qx.event.type.Data";qx.Class.define(f,{extend:qx.core.Object,construct:function(n){qx.core.Object.call(this);{};this.__pD=n;},events:{"changeSelected":m},properties:{allowEmptySelection:{check:d,init:true,apply:b}},members:{__pE:null,__pD:null,getSelected:function(){return this.__pE;},setSelected:function(o){if(!this.__pH(o)){throw new Error(j+o+a);};this.__pG(o);},resetSelected:function(){this.__pG(null);},isSelected:function(p){if(!this.__pH(p)){throw new Error(g+p+h+l);};return this.__pE===p;},isSelectionEmpty:function(){return this.__pE==null;},getSelectables:function(r){var q=this.__pD.getItems();var s=[];for(var i=0;i<q.length;i++ ){if(this.__pD.isItemSelectable(q[i])){s.push(q[i]);};};if(!r){for(var i=s.length-1;i>=0;i-- ){if(!s[i].getEnabled()){s.splice(i,1);};};};return s;},__pF:function(u,t){if(!u){this.__pG(this.__pE);};},__pG:function(v){var y=this.__pE;var w=v;if(w!=null&&y===w){return;};if(!this.isAllowEmptySelection()&&w==null){var x=this.getSelectables(true)[0];if(x){w=x;};};this.__pE=w;this.fireDataEvent(k,w,y);},__pH:function(z){var A=this.__pD.getItems();for(var i=0;i<A.length;i++ ){if(A[i]===z){return true;};};return false;}},destruct:function(){if(this.__pD.toHashCode){this._disposeObjects(c);}else {this.__pD=null;};this._disposeObjects(e);}});})();(function(){var a="popupOpen",b="PageUp",c="blur",d="mousedown",f="one",g="Escape",h="_applyMaxListHeight",i="Function",j="",k="mousewheel",l="visible",m="changeSelection",n="middle",o="Abstract method: _onListChangeSelection()",p="changeVisibility",q="resize",r="list",s="qx.ui.form.AbstractSelectBox",t="Abstract method: _onListMouseDown()",u="keypress",v="PageDown",w="click",x="abstract",y="popup",z="Number";qx.Class.define(s,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.form.MForm],implement:[qx.ui.form.IForm],type:x,construct:function(){qx.ui.core.Widget.call(this);var B=new qx.ui.layout.HBox();this._setLayout(B);B.setAlignY(n);this.addListener(u,this._onKeyPress);this.addListener(c,this._onBlur,this);var A=qx.core.Init.getApplication().getRoot();A.addListener(k,this._onMousewheel,this,true);this.addListener(q,this._onResize,this);},properties:{focusable:{refine:true,init:true},width:{refine:true,init:120},maxListHeight:{check:z,apply:h,nullable:true,init:200},format:{check:i,init:function(C){return this._defaultFormat(C);},nullable:true}},members:{_createChildControlImpl:function(F,E){var D;switch(F){case r:D=new qx.ui.form.List().set({focusable:false,keepFocus:true,height:null,width:null,maxHeight:this.getMaxListHeight(),selectionMode:f,quickSelection:true});D.addListener(m,this._onListChangeSelection,this);D.addListener(d,this._onListMouseDown,this);break;case y:D=new qx.ui.popup.Popup(new qx.ui.layout.VBox);D.setAutoHide(false);D.setKeepActive(true);D.addListener(w,this.close,this);D.add(this.getChildControl(r));D.addListener(p,this._onPopupChangeVisibility,this);break;};return D||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,F);},_applyMaxListHeight:function(H,G){this.getChildControl(r).setMaxHeight(H);},getChildrenContainer:function(){return this.getChildControl(r);},open:function(){var I=this.getChildControl(y);I.placeToWidget(this,true);I.show();},close:function(){this.getChildControl(y).hide();},toggle:function(){var J=this.getChildControl(y).isVisible();if(J){this.close();}else {this.open();};},_defaultFormat:function(K){var M=K?K.getLabel():j;var L=K?K.getRich():false;if(L){M=M.replace(/<[^>]+?>/g,j);M=qx.bom.String.unescape(M);};return M;},_onBlur:function(e){this.close();},_onKeyPress:function(e){var N=e.getKeyIdentifier();var O=this.getChildControl(y);if(O.isHidden()&&(N==v||N==b)){e.stopPropagation();}else if(!O.isHidden()&&N==g){this.close();e.stop();}else {this.getChildControl(r).handleKeyPress(e);};},_onMousewheel:function(e){var Q=e.getTarget();var P=this.getChildControl(y,true);if(P==null){return;};if(qx.ui.core.Widget.contains(P,Q)){e.preventDefault();}else {this.close();};},_onResize:function(e){this.getChildControl(y).setMinWidth(e.getData().width);},_onListChangeSelection:function(e){throw new Error(o);},_onListMouseDown:function(e){throw new Error(t);},_onPopupChangeVisibility:function(e){e.getData()==l?this.addState(a):this.removeState(a);}},destruct:function(){var R=qx.core.Init.getApplication().getRoot();if(R){R.removeListener(k,this._onMousewheel,this,true);};}});})();(function(){var a="<br",b="",c=" &nbsp;",d="<br>",e=" ",f="\n",g="qx.bom.String";qx.Class.define(g,{statics:{TO_CHARCODE:{"quot":34,"amp":38,"lt":60,"gt":62,"nbsp":160,"iexcl":161,"cent":162,"pound":163,"curren":164,"yen":165,"brvbar":166,"sect":167,"uml":168,"copy":169,"ordf":170,"laquo":171,"not":172,"shy":173,"reg":174,"macr":175,"deg":176,"plusmn":177,"sup2":178,"sup3":179,"acute":180,"micro":181,"para":182,"middot":183,"cedil":184,"sup1":185,"ordm":186,"raquo":187,"frac14":188,"frac12":189,"frac34":190,"iquest":191,"Agrave":192,"Aacute":193,"Acirc":194,"Atilde":195,"Auml":196,"Aring":197,"AElig":198,"Ccedil":199,"Egrave":200,"Eacute":201,"Ecirc":202,"Euml":203,"Igrave":204,"Iacute":205,"Icirc":206,"Iuml":207,"ETH":208,"Ntilde":209,"Ograve":210,"Oacute":211,"Ocirc":212,"Otilde":213,"Ouml":214,"times":215,"Oslash":216,"Ugrave":217,"Uacute":218,"Ucirc":219,"Uuml":220,"Yacute":221,"THORN":222,"szlig":223,"agrave":224,"aacute":225,"acirc":226,"atilde":227,"auml":228,"aring":229,"aelig":230,"ccedil":231,"egrave":232,"eacute":233,"ecirc":234,"euml":235,"igrave":236,"iacute":237,"icirc":238,"iuml":239,"eth":240,"ntilde":241,"ograve":242,"oacute":243,"ocirc":244,"otilde":245,"ouml":246,"divide":247,"oslash":248,"ugrave":249,"uacute":250,"ucirc":251,"uuml":252,"yacute":253,"thorn":254,"yuml":255,"fnof":402,"Alpha":913,"Beta":914,"Gamma":915,"Delta":916,"Epsilon":917,"Zeta":918,"Eta":919,"Theta":920,"Iota":921,"Kappa":922,"Lambda":923,"Mu":924,"Nu":925,"Xi":926,"Omicron":927,"Pi":928,"Rho":929,"Sigma":931,"Tau":932,"Upsilon":933,"Phi":934,"Chi":935,"Psi":936,"Omega":937,"alpha":945,"beta":946,"gamma":947,"delta":948,"epsilon":949,"zeta":950,"eta":951,"theta":952,"iota":953,"kappa":954,"lambda":955,"mu":956,"nu":957,"xi":958,"omicron":959,"pi":960,"rho":961,"sigmaf":962,"sigma":963,"tau":964,"upsilon":965,"phi":966,"chi":967,"psi":968,"omega":969,"thetasym":977,"upsih":978,"piv":982,"bull":8226,"hellip":8230,"prime":8242,"Prime":8243,"oline":8254,"frasl":8260,"weierp":8472,"image":8465,"real":8476,"trade":8482,"alefsym":8501,"larr":8592,"uarr":8593,"rarr":8594,"darr":8595,"harr":8596,"crarr":8629,"lArr":8656,"uArr":8657,"rArr":8658,"dArr":8659,"hArr":8660,"forall":8704,"part":8706,"exist":8707,"empty":8709,"nabla":8711,"isin":8712,"notin":8713,"ni":8715,"prod":8719,"sum":8721,"minus":8722,"lowast":8727,"radic":8730,"prop":8733,"infin":8734,"ang":8736,"and":8743,"or":8744,"cap":8745,"cup":8746,"int":8747,"there4":8756,"sim":8764,"cong":8773,"asymp":8776,"ne":8800,"equiv":8801,"le":8804,"ge":8805,"sub":8834,"sup":8835,"sube":8838,"supe":8839,"oplus":8853,"otimes":8855,"perp":8869,"sdot":8901,"lceil":8968,"rceil":8969,"lfloor":8970,"rfloor":8971,"lang":9001,"rang":9002,"loz":9674,"spades":9824,"clubs":9827,"hearts":9829,"diams":9830,"OElig":338,"oelig":339,"Scaron":352,"scaron":353,"Yuml":376,"circ":710,"tilde":732,"ensp":8194,"emsp":8195,"thinsp":8201,"zwnj":8204,"zwj":8205,"lrm":8206,"rlm":8207,"ndash":8211,"mdash":8212,"lsquo":8216,"rsquo":8217,"sbquo":8218,"ldquo":8220,"rdquo":8221,"bdquo":8222,"dagger":8224,"Dagger":8225,"permil":8240,"lsaquo":8249,"rsaquo":8250,"euro":8364},escape:function(h){return qx.util.StringEscape.escape(h,qx.bom.String.FROM_CHARCODE);},unescape:function(i){return qx.util.StringEscape.unescape(i,qx.bom.String.TO_CHARCODE);},fromText:function(j){return qx.bom.String.escape(j).replace(/( |\n)/g,function(l){var k={" ":c,"\n":d};return k[l]||l;});},toText:function(m){return qx.bom.String.unescape(m.replace(/\s+|<([^>])+>/gi,function(n){if(n.indexOf(a)===0){return f;}else if(n.length>0&&n.replace(/^\s*/,b).replace(/\s*$/,b)==b){return e;}else {return b;};}));}},defer:function(o){o.FROM_CHARCODE=qx.lang.Object.invert(o.TO_CHARCODE);}});})();(function(){var a="&",b='X',c="",d='#',e="&#",f=";",g="qx.util.StringEscape";qx.Class.define(g,{statics:{escape:function(o,m){var j,n=c;for(var i=0,l=o.length;i<l;i++ ){var k=o.charAt(i);var h=k.charCodeAt(0);if(m[h]){j=a+m[h]+f;}else {if(h>0x7F){j=e+h+f;}else {j=k;};};n+=j;};return n;},unescape:function(p,q){return p.replace(/&[#\w]+;/gi,function(t){var r=t;var t=t.substring(1,t.length-1);var s=q[t];if(s){r=String.fromCharCode(s);}else {if(t.charAt(0)==d){if(t.charAt(1).toUpperCase()==b){s=t.substring(2);if(s.match(/^[0-9A-Fa-f]+$/gi)){r=String.fromCharCode(parseInt(s,16));};}else {s=t.substring(1);if(s.match(/^\d+$/gi)){r=String.fromCharCode(parseInt(s,10));};};};};return r;});}}});})();(function(){var a="hovered",b="Enter",c="pressed",d="one",f="changeLabel",g="mouseout",h="changeIcon",i="Space",j="abandoned",k="key",l="list",m="mousewheel",n="keyinput",o="arrow",p="changeSelection",q="y",r="",s="qx.ui.form.SelectBox",t="spacer",u="mouseover",v="selectbox",w="click",x="popup",y="quick",z=" ",A="atom";qx.Class.define(s,{extend:qx.ui.form.AbstractSelectBox,implement:[qx.ui.core.ISingleSelection,qx.ui.form.IModelSelection],include:[qx.ui.core.MSingleSelectionHandling,qx.ui.form.MModelSelection],construct:function(){qx.ui.form.AbstractSelectBox.call(this);this._createChildControl(A);this._createChildControl(t);this._createChildControl(o);this.addListener(u,this._onMouseOver,this);this.addListener(g,this._onMouseOut,this);this.addListener(w,this._onClick,this);if(!(qx.event.handler.MouseEmulation.ON)){this.addListener(m,this._onMouseWheel,this);};this.addListener(n,this._onKeyInput,this);this.addListener(p,this.__pJ,this);},properties:{appearance:{refine:true,init:v}},members:{__pI:null,_createChildControlImpl:function(D,C){var B;switch(D){case t:B=new qx.ui.core.Spacer();this._add(B,{flex:1});break;case A:B=new qx.ui.basic.Atom(z);B.setCenter(false);B.setAnonymous(true);this._add(B,{flex:1});break;case o:B=new qx.ui.basic.Image();B.setAnonymous(true);this._add(B);break;};return B||qx.ui.form.AbstractSelectBox.prototype._createChildControlImpl.call(this,D);},_forwardStates:{focused:true},_getItems:function(){return this.getChildrenContainer().getChildren();},_isAllowEmptySelection:function(){return this.getChildrenContainer().getSelectionMode()!==d;},__pJ:function(e){var F=e.getData()[0];var E=this.getChildControl(l);if(E.getSelection()[0]!=F){if(F){E.setSelection([F]);}else {E.resetSelection();};};this.__pK();this.__pL();},__pK:function(){var H=this.getChildControl(l).getSelection()[0];var G=this.getChildControl(A);var I=H?H.getIcon():r;I==null?G.resetIcon():G.setIcon(I);},__pL:function(){var L=this.getChildControl(l).getSelection()[0];var J=this.getChildControl(A);var K=L?L.getLabel():r;var M=this.getFormat();if(M!=null){K=M.call(this,L);};if(K&&K.translate){K=K.translate();};K==null?J.resetLabel():J.setLabel(K);},_onMouseOver:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};if(this.hasState(j)){this.removeState(j);this.addState(c);};this.addState(a);},_onMouseOut:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};this.removeState(a);if(this.hasState(c)){this.removeState(c);this.addState(j);};},_onClick:function(e){this.toggle();},_onMouseWheel:function(e){if(this.getChildControl(x).isVisible()){return;};var O=e.getWheelDelta(q)>0?1:-1;var R=this.getSelectables();var Q=this.getSelection()[0];if(!Q){if(!R[0]){return;};Q=R[0];};var N=R.indexOf(Q)+O;var P=R.length-1;if(N<0){N=0;}else if(N>=P){N=P;};this.setSelection([R[N]]);e.stopPropagation();e.preventDefault();},_onKeyPress:function(e){var S=e.getKeyIdentifier();if(S==b||S==i){if(this.__pI){this.setSelection([this.__pI]);this.__pI=null;};this.toggle();}else {qx.ui.form.AbstractSelectBox.prototype._onKeyPress.call(this,e);};},_onKeyInput:function(e){var T=e.clone();T.setTarget(this._list);T.setBubbles(false);this.getChildControl(l).dispatchEvent(T);},_onListMouseDown:function(e){if(this.__pI){this.setSelection([this.__pI]);this.__pI=null;};},_onListChangeSelection:function(e){var X=e.getData();var V=e.getOldData();if(V&&V.length>0){V[0].removeListener(h,this.__pK,this);V[0].removeListener(f,this.__pL,this);};if(X.length>0){var U=this.getChildControl(x);var W=this.getChildControl(l);var Y=W.getSelectionContext();if(U.isVisible()&&(Y==y||Y==k)){this.__pI=X[0];}else {this.setSelection([X[0]]);this.__pI=null;};X[0].addListener(h,this.__pK,this);X[0].addListener(f,this.__pL,this);}else {this.resetSelection();};},_onPopupChangeVisibility:function(e){qx.ui.form.AbstractSelectBox.prototype._onPopupChangeVisibility.call(this,e);var bb=this.getChildControl(x);if(!bb.isVisible()){var bd=this.getChildControl(l);if(bd.hasChildren()){bd.setSelection(this.getSelection());};}else {var ba=bb.getLayoutLocation(this);var bf=qx.bom.Viewport.getHeight();var be=ba.top;var bg=bf-ba.bottom;var bc=be>bg?be:bg;var bh=this.getMaxListHeight();var bd=this.getChildControl(l);if(bh==null||bh>bc){bd.setMaxHeight(bc);}else if(bh<bc){bd.setMaxHeight(bh);};};}},destruct:function(){this.__pI=null;}});})();(function(){var a="qx.ui.core.Spacer";qx.Class.define(a,{extend:qx.ui.core.LayoutItem,construct:function(b,c){qx.ui.core.LayoutItem.call(this);this.setWidth(b!=null?b:0);this.setHeight(c!=null?c:0);},members:{checkAppearanceNeeds:function(){},addChildrenToQueue:function(d){},destroy:function(){if(this.$$disposed){return;};var parent=this.$$parent;if(parent){parent._remove(this);};qx.ui.core.queue.Dispose.add(this);}}});})();(function(){var a="password",b="qx.ui.form.PasswordField";qx.Class.define(b,{extend:qx.ui.form.TextField,members:{_createInputElement:function(){return new qx.html.Input(a);}}});})();(function(){var a="splitbutton",b="hovered",c="Enter",d="pressed",f="changeShow",g="mouseout",h="Space",i="keydown",j="abandoned",k="both",l="button",m="execute",n="_applyMenu",o="arrow",p="String",q="icon",r="changeVisibility",s="mouseover",t="keyup",u="qx.ui.menu.Menu",v="_applyIcon",w="label",x="_applyShow",y="changeMenu",z="_applyLabel",A="qx.ui.form.SplitButton";qx.Class.define(A,{extend:qx.ui.core.Widget,include:[qx.ui.core.MExecutable],implement:[qx.ui.form.IExecutable],construct:function(E,C,B,D){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.HBox);this._createChildControl(o);this.addListener(s,this._onMouseOver,this,true);this.addListener(g,this._onMouseOut,this,true);this.addListener(i,this._onKeyDown);this.addListener(t,this._onKeyUp);if(E!=null){this.setLabel(E);};if(C!=null){this.setIcon(C);};if(B!=null){this.setMenu(B);};if(D!=null){this.setCommand(D);};},properties:{appearance:{refine:true,init:a},focusable:{refine:true,init:true},label:{apply:z,nullable:true,check:p},icon:{check:p,apply:v,nullable:true,themeable:true},show:{init:k,check:[k,w,q],themeable:true,inheritable:true,apply:x,event:f},menu:{check:u,nullable:true,apply:n,event:y}},members:{__pM:null,_createChildControlImpl:function(H,G){var F;switch(H){case l:F=new qx.ui.form.Button;F.addListener(m,this._onButtonExecute,this);F.setFocusable(false);this._addAt(F,0,{flex:1});break;case o:F=new qx.ui.form.MenuButton;F.setFocusable(false);this._addAt(F,1);break;};return F||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,H);},_forwardStates:{hovered:1,focused:1},_applyLabel:function(K,J){var I=this.getChildControl(l);K==null?I.resetLabel():I.setLabel(K);},_applyIcon:function(N,M){var L=this.getChildControl(l);N==null?L.resetIcon():L.setIcon(N);},_applyMenu:function(P,O){var Q=this.getChildControl(o);if(P){Q.resetEnabled();Q.setMenu(P);P.setOpener(this);P.addListener(r,this._onChangeMenuVisibility,this);}else {Q.setEnabled(false);Q.resetMenu();};if(O){O.removeListener(r,this._onChangeMenuVisibility,this);O.resetOpener();};},_applyShow:function(S,R){},_onMouseOver:function(e){e.stopPropagation();this.addState(b);delete this.__pM;},_onMouseOut:function(e){e.stopPropagation();if(!this.hasState(b)){return;};var U=e.getRelatedTarget();if(qx.ui.core.Widget.contains(this,U)){return;};var T=this.getMenu();if(T&&T.isVisible()){this.__pM=true;return;};this.removeState(b);},_onKeyDown:function(e){var V=this.getChildControl(l);switch(e.getKeyIdentifier()){case c:case h:V.removeState(j);V.addState(d);};},_onKeyUp:function(e){var W=this.getChildControl(l);switch(e.getKeyIdentifier()){case c:case h:if(W.hasState(d)){W.removeState(j);W.removeState(d);W.execute();};};},_onButtonExecute:function(e){this.execute();},_onChangeMenuVisibility:function(e){if(!this.getMenu().isVisible()&&this.__pM){this.removeState(b);};}}});})();(function(){var a="qx.ui.menu.Menu",b="submenu",c="hovered",d="Enter",f="pressed",g="abandoned",h="contextmenu",i="changeVisibility",j="changeMenu",k="qx.ui.form.MenuButton",l="menubutton",m="visible",n="left",o="_applyMenu";qx.Class.define(k,{extend:qx.ui.form.Button,construct:function(q,r,p){qx.ui.form.Button.call(this,q,r);if(p!=null){this.setMenu(p);};},properties:{menu:{check:a,nullable:true,apply:o,event:j},appearance:{refine:true,init:l}},members:{_applyVisibility:function(u,t){qx.ui.form.Button.prototype._applyVisibility.call(this,u,t);var s=this.getMenu();if(u!=m&&s){s.hide();};},_applyMenu:function(w,v){if(v){v.removeListener(i,this._onMenuChange,this);v.resetOpener();};if(w){w.addListener(i,this._onMenuChange,this);w.setOpener(this);w.removeState(b);w.removeState(h);};},open:function(x){var y=this.getMenu();if(y){qx.ui.menu.Manager.getInstance().hideAll();y.setOpener(this);y.open();if(x){var z=y.getSelectables()[0];if(z){y.setSelectedButton(z);};};};},_onMenuChange:function(e){var A=this.getMenu();if(A.isVisible()){this.addState(f);}else {this.removeState(f);};},_onMouseDown:function(e){qx.ui.form.Button.prototype._onMouseDown.call(this,e);if(e.getButton()!=n){return;};var B=this.getMenu();if(B){if(!B.isVisible()){this.open();}else {B.exclude();};e.stopPropagation();};},_onMouseUp:function(e){qx.ui.form.Button.prototype._onMouseUp.call(this,e);e.stopPropagation();},_onMouseOver:function(e){this.addState(c);},_onMouseOut:function(e){this.removeState(c);},_onKeyDown:function(e){switch(e.getKeyIdentifier()){case d:this.removeState(g);this.addState(f);var C=this.getMenu();if(C){if(!C.isVisible()){this.open();}else {C.exclude();};};e.stopPropagation();};},_onKeyUp:function(e){}}});})();(function(){var a="__lo",b="blur",c="mousedown",d="Enter",f="__pO",g="mousewheel",h="interval",j="Up",k="__pN",l="Escape",m="event.touch",n="qx.ui.menu.Manager",o="keydown",p="Left",q="keypress",r="Down",s="Right",t="keyup",u="singleton",v="Space";qx.Class.define(n,{type:u,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__lo=[];var w=document.body;var x=qx.event.Registration;x.addListener(window.document.documentElement,c,this._onMouseDown,this,true);x.addListener(w,g,this._onMouseWheel,this,true);x.addListener(w,o,this._onKeyUpDown,this,true);x.addListener(w,t,this._onKeyUpDown,this,true);x.addListener(w,q,this._onKeyPress,this,true);if(!qx.core.Environment.get(m)){qx.bom.Element.addListener(window,b,this.hideAll,this);};this.__pN=new qx.event.Timer;this.__pN.addListener(h,this._onOpenInterval,this);this.__pO=new qx.event.Timer;this.__pO.addListener(h,this._onCloseInterval,this);},members:{__pP:null,__pQ:null,__pN:null,__pO:null,__lo:null,_getChild:function(y,A,z,D){var C=y.getChildren();var length=C.length;var B;for(var i=A;i<length&&i>=0;i+=z){B=C[i];if(B.isEnabled()&&!B.isAnonymous()&&B.isVisible()){return B;};};if(D){i=i==length?0:length-1;for(;i!=A;i+=z){B=C[i];if(B.isEnabled()&&!B.isAnonymous()&&B.isVisible()){return B;};};};return null;},_isInMenu:function(E){while(E){if(E instanceof qx.ui.menu.Menu){return true;};E=E.getLayoutParent();};return false;},_isMenuOpener:function(G){var F=this.__lo;for(var i=0;i<F.length;i++ ){if(F[i].getOpener()===G){return true;};};return false;},_getMenuButton:function(H){while(H){if(H instanceof qx.ui.menu.AbstractButton){return H;};H=H.getLayoutParent();};return null;},add:function(I){{};var J=this.__lo;J.push(I);I.setZIndex(1e6+J.length);},remove:function(K){{};var L=this.__lo;if(L){qx.lang.Array.remove(L,K);};},hideAll:function(){var M=this.__lo;if(M){for(var i=M.length-1;i>=0;i-- ){M[i].exclude();};};},getActiveMenu:function(){var N=this.__lo;return N.length>0?N[N.length-1]:null;},scheduleOpen:function(O){this.cancelClose(O);if(O.isVisible()){if(this.__pP){this.cancelOpen(this.__pP);};}else if(this.__pP!=O){this.__pP=O;this.__pN.restartWith(O.getOpenInterval());};},scheduleClose:function(P){this.cancelOpen(P);if(!P.isVisible()){if(this.__pQ){this.cancelClose(this.__pQ);};}else if(this.__pQ!=P){this.__pQ=P;this.__pO.restartWith(P.getCloseInterval());};},cancelOpen:function(Q){if(this.__pP==Q){this.__pN.stop();this.__pP=null;};},cancelClose:function(R){if(this.__pQ==R){this.__pO.stop();this.__pQ=null;};},_onOpenInterval:function(e){this.__pN.stop();this.__pP.open();this.__pP=null;},_onCloseInterval:function(e){this.__pO.stop();this.__pQ.exclude();this.__pQ=null;},_onMouseDown:function(e){var S=e.getTarget();S=qx.ui.core.Widget.getWidgetByElement(S,true);if(S==null){this.hideAll();return;};if(S.getMenu&&S.getMenu()&&S.getMenu().isVisible()){return;};if(this.__lo.length>0&&!this._isInMenu(S)){this.hideAll();};},__pR:{"Enter":1,"Space":1},__oO:{"Escape":1,"Up":1,"Down":1,"Left":1,"Right":1},_onKeyUpDown:function(e){var T=this.getActiveMenu();if(!T){return;};var U=e.getKeyIdentifier();if(this.__oO[U]||(this.__pR[U]&&T.getSelectedButton())){e.stopPropagation();};},_onKeyPress:function(e){var X=this.getActiveMenu();if(!X){return;};var V=e.getKeyIdentifier();var ba=this.__oO[V];var W=this.__pR[V];if(ba){switch(V){case j:this._onKeyPressUp(X);break;case r:this._onKeyPressDown(X);break;case p:this._onKeyPressLeft(X);break;case s:this._onKeyPressRight(X);break;case l:this.hideAll();break;};e.stopPropagation();e.preventDefault();}else if(W){var Y=X.getSelectedButton();if(Y){switch(V){case d:this._onKeyPressEnter(X,Y,e);break;case v:this._onKeyPressSpace(X,Y,e);break;};e.stopPropagation();e.preventDefault();};};},_onKeyPressUp:function(bf){var bb=bf.getSelectedButton();var bc=bf.getChildren();var bd=bb?bf.indexOf(bb)-1:bc.length-1;var be=this._getChild(bf,bd,-1,true);if(be){bf.setSelectedButton(be);}else {bf.resetSelectedButton();};},_onKeyPressDown:function(bg){var bh=bg.getSelectedButton();var bj=bh?bg.indexOf(bh)+1:0;var bi=this._getChild(bg,bj,1,true);if(bi){bg.setSelectedButton(bi);}else {bg.resetSelectedButton();};},_onKeyPressLeft:function(bm){var bo=bm.getOpener();if(!bo){return;};if(bo instanceof qx.ui.menu.AbstractButton){var bl=bo.getLayoutParent();bl.resetOpenedButton();bl.setSelectedButton(bo);}else if(bo instanceof qx.ui.menubar.Button){var bp=bo.getMenuBar().getMenuButtons();var bk=bp.indexOf(bo);if(bk===-1){return;};var bq=null;var length=bp.length;for(var i=1;i<=length;i++ ){var bn=bp[(bk-i+length)%length];if(bn.isEnabled()&&bn.isVisible()){bq=bn;break;};};if(bq&&bq!=bo){bq.open(true);};};},_onKeyPressRight:function(bu){var bs=bu.getSelectedButton();if(bs){var br=bs.getMenu();if(br){bu.setOpenedButton(bs);var bz=this._getChild(br,0,1);if(bz){br.setSelectedButton(bz);};return;};}else if(!bu.getOpenedButton()){var bz=this._getChild(bu,0,1);if(bz){bu.setSelectedButton(bz);if(bz.getMenu()){bu.setOpenedButton(bz);};return;};};var bw=bu.getOpener();if(bw instanceof qx.ui.menu.Button&&bs){while(bw){bw=bw.getLayoutParent();if(bw instanceof qx.ui.menu.Menu){bw=bw.getOpener();if(bw instanceof qx.ui.menubar.Button){break;};}else {break;};};if(!bw){return;};};if(bw instanceof qx.ui.menubar.Button){var bx=bw.getMenuBar().getMenuButtons();var bt=bx.indexOf(bw);if(bt===-1){return;};var by=null;var length=bx.length;for(var i=1;i<=length;i++ ){var bv=bx[(bt+i)%length];if(bv.isEnabled()&&bv.isVisible()){by=bv;break;};};if(by&&by!=bw){by.open(true);};};},_onKeyPressEnter:function(bA,bB,e){if(bB.hasListener(q)){var bC=e.clone();bC.setBubbles(false);bC.setTarget(bB);bB.dispatchEvent(bC);};this.hideAll();},_onKeyPressSpace:function(bD,bE,e){if(bE.hasListener(q)){var bF=e.clone();bF.setBubbles(false);bF.setTarget(bE);bE.dispatchEvent(bF);};},_onMouseWheel:function(e){var bG=e.getTarget();bG=qx.ui.core.Widget.getWidgetByElement(bG,true);if(this.__lo.length>0&&!this._isInMenu(bG)&&!this._isMenuOpener(bG)){this.hideAll();};}},destruct:function(){var bI=qx.event.Registration;var bH=document.body;bI.removeListener(window.document.documentElement,c,this._onMouseDown,this,true);bI.removeListener(bH,o,this._onKeyUpDown,this,true);bI.removeListener(bH,t,this._onKeyUpDown,this,true);bI.removeListener(bH,q,this._onKeyPress,this,true);this._disposeObjects(k,f);this._disposeArray(a);}});})();(function(){var a="Boolean",b="qx.ui.core.Widget",c="mouseout",d="excluded",f="selected",g="Integer",h="slidebar",j="menu",k="visible",l="_applySelectedButton",m="_applyOpenInterval",n="_applySpacingY",o="resize",p="_blocker",q="_applyCloseInterval",r="_applyBlockerColor",s="The menu instance needs a configured 'opener' widget!",t="_applyIconColumnWidth",u="mouseover",v="qx.ui.menu.Menu",w="Color",x="Number",y="_applyOpenedButton",z="Unknown target: ",A="_applySpacingX",B="_applyBlockerOpacity",C="Could not open menu instance because 'opener' widget is not visible",D="_applyArrowColumnWidth";qx.Class.define(v,{extend:qx.ui.core.Widget,include:[qx.ui.core.MPlacement,qx.ui.core.MRemoteChildrenHandling],construct:function(){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.menu.Layout);var E=this.getApplicationRoot();E.add(this);this.addListener(u,this._onMouseOver);this.addListener(c,this._onMouseOut);this.addListener(o,this._onResize,this);E.addListener(o,this._onResize,this);this._blocker=new qx.ui.core.Blocker(E);this.initVisibility();this.initKeepFocus();this.initKeepActive();},properties:{appearance:{refine:true,init:j},allowGrowX:{refine:true,init:false},allowGrowY:{refine:true,init:false},visibility:{refine:true,init:d},keepFocus:{refine:true,init:true},keepActive:{refine:true,init:true},spacingX:{check:g,apply:A,init:0,themeable:true},spacingY:{check:g,apply:n,init:0,themeable:true},iconColumnWidth:{check:g,init:0,themeable:true,apply:t},arrowColumnWidth:{check:g,init:0,themeable:true,apply:D},blockerColor:{check:w,init:null,nullable:true,apply:r,themeable:true},blockerOpacity:{check:x,init:1,apply:B,themeable:true},selectedButton:{check:b,nullable:true,apply:l},openedButton:{check:b,nullable:true,apply:y},opener:{check:b,nullable:true},openInterval:{check:g,themeable:true,init:250,apply:m},closeInterval:{check:g,themeable:true,init:250,apply:q},blockBackground:{check:a,themeable:true,init:false}},members:{__pS:null,__pT:null,_blocker:null,open:function(){if(this.getOpener()!=null){var F=this.placeToWidget(this.getOpener());if(F){this.__pV();this.show();this._placementTarget=this.getOpener();}else {this.warn(C);};}else {this.warn(s);};},openAtMouse:function(e){this.placeToMouse(e);this.__pV();this.show();this._placementTarget={left:e.getDocumentLeft(),top:e.getDocumentTop()};},openAtPoint:function(G){this.placeToPoint(G);this.__pV();this.show();this._placementTarget=G;},addSeparator:function(){this.add(new qx.ui.menu.Separator);},getColumnSizes:function(){return this._getMenuLayout().getColumnSizes();},getSelectables:function(){var H=[];var I=this.getChildren();for(var i=0;i<I.length;i++ ){if(I[i].isEnabled()){H.push(I[i]);};};return H;},_applyIconColumnWidth:function(K,J){this._getMenuLayout().setIconColumnWidth(K);},_applyArrowColumnWidth:function(M,L){this._getMenuLayout().setArrowColumnWidth(M);},_applySpacingX:function(O,N){this._getMenuLayout().setColumnSpacing(O);},_applySpacingY:function(Q,P){this._getMenuLayout().setSpacing(Q);},_applyVisibility:function(T,S){qx.ui.core.Widget.prototype._applyVisibility.call(this,T,S);var R=qx.ui.menu.Manager.getInstance();if(T===k){R.add(this);var U=this.getParentMenu();if(U){U.setOpenedButton(this.getOpener());};}else if(S===k){R.remove(this);var U=this.getParentMenu();if(U&&U.getOpenedButton()==this.getOpener()){U.resetOpenedButton();};this.resetOpenedButton();this.resetSelectedButton();};this.__pU();},__pU:function(){if(this.isVisible()){if(this.getBlockBackground()){var V=this.getZIndex();this._blocker.blockContent(V-1);};}else {if(this._blocker.isBlocked()){this._blocker.unblock();};};},getParentMenu:function(){var W=this.getOpener();if(!W||!(W instanceof qx.ui.menu.AbstractButton)){return null;};if(W&&W.getContextMenu()===this){return null;};while(W&&!(W instanceof qx.ui.menu.Menu)){W=W.getLayoutParent();};return W;},_applySelectedButton:function(Y,X){if(X){X.removeState(f);};if(Y){Y.addState(f);};},_applyOpenedButton:function(bb,ba){if(ba&&ba.getMenu()){ba.getMenu().exclude();};if(bb){bb.getMenu().open();};},_applyBlockerColor:function(bd,bc){this._blocker.setColor(bd);},_applyBlockerOpacity:function(bf,be){this._blocker.setOpacity(bf);},getChildrenContainer:function(){return this.getChildControl(h,true)||this;},_createChildControlImpl:function(bi,bh){var bg;switch(bi){case h:var bg=new qx.ui.menu.MenuSlideBar();var bk=this._getLayout();this._setLayout(new qx.ui.layout.Grow());var bj=bg.getLayout();bg.setLayout(bk);bj.dispose();var bl=qx.lang.Array.clone(this.getChildren());for(var i=0;i<bl.length;i++ ){bg.add(bl[i]);};this.removeListener(o,this._onResize,this);bg.getChildrenContainer().addListener(o,this._onResize,this);this._add(bg);break;};return bg||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,bi);},_getMenuLayout:function(){if(this.hasChildControl(h)){return this.getChildControl(h).getChildrenContainer().getLayout();}else {return this._getLayout();};},_getMenuBounds:function(){if(this.hasChildControl(h)){return this.getChildControl(h).getChildrenContainer().getBounds();}else {return this.getBounds();};},_computePlacementSize:function(){return this._getMenuBounds();},__pV:function(){var bn=this._getMenuBounds();if(!bn){this.addListenerOnce(o,this.__pV,this);return;};var bm=this.getLayoutParent().getBounds().height;var top=this.getLayoutProperties().top;var bo=this.getLayoutProperties().left;if(top<0){this._assertSlideBar(function(){this.setHeight(bn.height+top);this.moveTo(bo,0);});}else if(top+bn.height>bm){this._assertSlideBar(function(){this.setHeight(bm-top);});}else {this.setHeight(null);};},_assertSlideBar:function(bp){if(this.hasChildControl(h)){return bp.call(this);};this.__pT=bp;qx.ui.core.queue.Widget.add(this);},syncWidget:function(bq){this.getChildControl(h);if(this.__pT){this.__pT.call(this);delete this.__pT;};},_onResize:function(){if(this.isVisible()){var br=this._placementTarget;if(!br){return;}else if(br instanceof qx.ui.core.Widget){this.placeToWidget(br);}else if(br.top!==undefined){this.placeToPoint(br);}else {throw new Error(z+br);};this.__pV();};},_onMouseOver:function(e){var bt=qx.ui.menu.Manager.getInstance();bt.cancelClose(this);var bu=e.getTarget();if(bu.isEnabled()&&bu instanceof qx.ui.menu.AbstractButton){this.setSelectedButton(bu);var bs=bu.getMenu&&bu.getMenu();if(bs){bs.setOpener(bu);bt.scheduleOpen(bs);this.__pS=bs;}else {var bv=this.getOpenedButton();if(bv){bt.scheduleClose(bv.getMenu());};if(this.__pS){bt.cancelOpen(this.__pS);this.__pS=null;};};}else if(!this.getOpenedButton()){this.resetSelectedButton();};},_onMouseOut:function(e){var bw=qx.ui.menu.Manager.getInstance();if(!qx.ui.core.Widget.contains(this,e.getRelatedTarget())){var bx=this.getOpenedButton();bx?this.setSelectedButton(bx):this.resetSelectedButton();if(bx){bw.cancelClose(bx.getMenu());};if(this.__pS){bw.cancelOpen(this.__pS);};};}},destruct:function(){if(!qx.core.ObjectRegistry.inShutDown){qx.ui.menu.Manager.getInstance().remove(this);};this.getApplicationRoot().removeListener(o,this._onResize,this);this._placementTarget=null;this._disposeObjects(p);}});})();(function(){var a="qx.ui.menu.Layout",b="Integer",c="_applyLayoutChange";qx.Class.define(a,{extend:qx.ui.layout.VBox,properties:{columnSpacing:{check:b,init:0,apply:c},spanColumn:{check:b,init:1,nullable:true,apply:c},iconColumnWidth:{check:b,init:0,themeable:true,apply:c},arrowColumnWidth:{check:b,init:0,themeable:true,apply:c}},members:{__pW:null,_computeSizeHint:function(){var q=this._getLayoutChildren();var o,g,k;var e=this.getSpanColumn();var j=this.__pW=[0,0,0,0];var n=this.getColumnSpacing();var m=0;var f=0;for(var i=0,l=q.length;i<l;i++ ){o=q[i];if(o.isAnonymous()){continue;};g=o.getChildrenSizes();for(var h=0;h<g.length;h++ ){if(e!=null&&h==e&&g[e+1]==0){m=Math.max(m,g[h]);}else {j[h]=Math.max(j[h],g[h]);};};var d=q[i].getInsets();f=Math.max(f,d.left+d.right);};if(e!=null&&j[e]+n+j[e+1]<m){j[e]=m-j[e+1]-n;};if(m==0){k=n*2;}else {k=n*3;};if(j[0]==0){j[0]=this.getIconColumnWidth();};if(j[3]==0){j[3]=this.getArrowColumnWidth();};var p=qx.ui.layout.VBox.prototype._computeSizeHint.call(this).height;return {minHeight:p,height:p,width:qx.lang.Array.sum(j)+f+k};},getColumnSizes:function(){return this.__pW||null;}},destruct:function(){this.__pW=null;}});})();(function(){var a="menu-separator",b="qx.ui.menu.Separator";qx.Class.define(b,{extend:qx.ui.core.Widget,properties:{appearance:{refine:true,init:a},anonymous:{refine:true,init:true}}});})();(function(){var a="Boolean",b="changeIcon",c="changeLabel",d="shortcut",f="_applyMenu",g="submenu",h="changeLocale",i="arrow",j="_applyShowCommandLabel",k="String",l="qx.ui.menu.AbstractButton",m="",n="icon",o="qx.dynlocale",p="abstract",q="qx.ui.menu.Menu",r="click",s="keypress",t="_applyIcon",u="changeShowCommandLabel",v="label",w="changeMenu",x="_applyLabel",y="changeCommand";qx.Class.define(l,{extend:qx.ui.core.Widget,include:[qx.ui.core.MExecutable],implement:[qx.ui.form.IExecutable],type:p,construct:function(){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.menu.ButtonLayout);this.addListener(r,this._onClick);this.addListener(s,this._onKeyPress);this.addListener(y,this._onChangeCommand,this);},properties:{blockToolTip:{refine:true,init:true},label:{check:k,apply:x,nullable:true,event:c},menu:{check:q,apply:f,nullable:true,dereference:true,event:w},icon:{check:k,apply:t,themeable:true,nullable:true,event:b},showCommandLabel:{check:a,apply:j,themeable:true,init:true,event:u}},members:{_createChildControlImpl:function(B,A){var z;switch(B){case n:z=new qx.ui.basic.Image;z.setAnonymous(true);this._add(z,{column:0});break;case v:z=new qx.ui.basic.Label;z.setAnonymous(true);this._add(z,{column:1});break;case d:z=new qx.ui.basic.Label;z.setAnonymous(true);if(!this.getShowCommandLabel()){z.exclude();};this._add(z,{column:2});break;case i:z=new qx.ui.basic.Image;z.setAnonymous(true);this._add(z,{column:3});break;};return z||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,B);},_forwardStates:{selected:1},getChildrenSizes:function(){var C=0,D=0,E=0,I=0;if(this._isChildControlVisible(n)){var J=this.getChildControl(n);C=J.getMarginLeft()+J.getSizeHint().width+J.getMarginRight();};if(this._isChildControlVisible(v)){var G=this.getChildControl(v);D=G.getMarginLeft()+G.getSizeHint().width+G.getMarginRight();};if(this._isChildControlVisible(d)){var F=this.getChildControl(d);E=F.getMarginLeft()+F.getSizeHint().width+F.getMarginRight();};if(this._isChildControlVisible(i)){var H=this.getChildControl(i);I=H.getMarginLeft()+H.getSizeHint().width+H.getMarginRight();};return [C,D,E,I];},_onClick:function(e){},_onKeyPress:function(e){},_onChangeCommand:function(e){var K=e.getData();if(K==null){return;};if(qx.core.Environment.get(o)){var M=e.getOldData();if(!M){qx.locale.Manager.getInstance().addListener(h,this._onChangeLocale,this);};if(!K){qx.locale.Manager.getInstance().removeListener(h,this._onChangeLocale,this);};};var L=K!=null?K.toString():m;this.getChildControl(d).setValue(L);},_onChangeLocale:qx.core.Environment.select(o,{"true":function(e){var N=this.getCommand();if(N!=null){this.getChildControl(d).setValue(N.toString());};},"false":null}),_applyIcon:function(P,O){if(P){this._showChildControl(n).setSource(P);}else {this._excludeChildControl(n);};},_applyLabel:function(R,Q){if(R){this._showChildControl(v).setValue(R);}else {this._excludeChildControl(v);};},_applyMenu:function(T,S){if(S){S.resetOpener();S.removeState(g);};if(T){this._showChildControl(i);T.setOpener(this);T.addState(g);}else {this._excludeChildControl(i);};},_applyShowCommandLabel:function(V,U){if(V){this._showChildControl(d);}else {this._excludeChildControl(d);};}},destruct:function(){this.removeListener(y,this._onChangeCommand,this);if(this.getMenu()){if(!qx.core.ObjectRegistry.inShutDown){this.getMenu().destroy();};};if(qx.core.Environment.get(o)){qx.locale.Manager.getInstance().removeListener(h,this._onChangeLocale,this);};}});})();(function(){var a="middle",b="qx.ui.menu.ButtonLayout",c="left";qx.Class.define(b,{extend:qx.ui.layout.Abstract,members:{verifyLayoutProperty:null,renderLayout:function(g,k,d){var s=this._getLayoutChildren();var e;var o;var j=[];for(var i=0,l=s.length;i<l;i++ ){e=s[i];o=e.getLayoutProperties().column;j[o]=e;};var r=this.__pX(s[0]);var q=r.getColumnSizes();var m=r.getSpacingX();var t=qx.lang.Array.sum(q)+m*(q.length-1);if(t<g){q[1]+=g-t;};var u=d.left,top=d.top;var n=qx.ui.layout.Util;for(var i=0,l=q.length;i<l;i++ ){e=j[i];if(e){var h=e.getSizeHint();var f=top+n.computeVerticalAlignOffset(e.getAlignY()||a,h.height,k,0,0);var p=n.computeHorizontalAlignOffset(e.getAlignX()||c,h.width,q[i],e.getMarginLeft(),e.getMarginRight());e.renderLayout(u+p,f,h.width,h.height);};if(q[i]>0){u+=q[i]+m;};};},__pX:function(v){while(!(v instanceof qx.ui.menu.Menu)){v=v.getLayoutParent();};return v;},_computeSizeHint:function(){var y=this._getLayoutChildren();var x=0;var z=0;for(var i=0,l=y.length;i<l;i++ ){var w=y[i].getSizeHint();z+=w.width;x=Math.max(x,w.height);};return {width:z,height:x};}}});})();(function(){var a="qx.ui.container.SlideBar",b="scrollY",c="button-backward",d="horizontal",f="update",g="scrollX",h="_applyOrientation",i="button-forward",j="mousewheel",k="content",l="x",m="qx.event.type.Event",n="y",o="scrollpane",p="vertical",q="Integer",r="slidebar",s="scrollAnimationEnd",t="execute";qx.Class.define(a,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.core.MRemoteLayoutHandling],construct:function(u){qx.ui.core.Widget.call(this);var v=this.getChildControl(o);this._add(v,{flex:1});if(u!=null){this.setOrientation(u);}else {this.initOrientation();};this.addListener(j,this._onMouseWheel,this);},properties:{appearance:{refine:true,init:r},orientation:{check:[d,p],init:d,apply:h},scrollStep:{check:q,init:15,themeable:true}},events:{scrollAnimationEnd:m},members:{getChildrenContainer:function(){return this.getChildControl(k);},_createChildControlImpl:function(y,x){var w;switch(y){case i:w=new qx.ui.form.RepeatButton;w.addListener(t,this._onExecuteForward,this);w.setFocusable(false);this._addAt(w,2);break;case c:w=new qx.ui.form.RepeatButton;w.addListener(t,this._onExecuteBackward,this);w.setFocusable(false);this._addAt(w,0);break;case k:w=new qx.ui.container.Composite();this.getChildControl(o).add(w);break;case o:w=new qx.ui.core.scroll.ScrollPane();w.addListener(f,this._onResize,this);w.addListener(g,this._onScroll,this);w.addListener(b,this._onScroll,this);w.addListener(s,this._onScrollAnimationEnd,this);break;};return w||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,y);},_forwardStates:{barLeft:true,barTop:true,barRight:true,barBottom:true},scrollBy:function(B,z){var A=this.getChildControl(o);if(this.getOrientation()===d){A.scrollByX(B,z);}else {A.scrollByY(B,z);};},scrollTo:function(D,C){var E=this.getChildControl(o);if(this.getOrientation()===d){E.scrollToX(D,C);}else {E.scrollToY(D,C);};},_applyEnabled:function(G,F,name){qx.ui.core.Widget.prototype._applyEnabled.call(this,G,F,name);this._updateArrowsEnabled();},_applyOrientation:function(K,I){var J=[this.getLayout(),this._getLayout()];var L=this.getChildControl(i);var H=this.getChildControl(c);if(I==p&&K==d){L.removeState(p);H.removeState(p);L.addState(d);H.addState(d);}else if(I==d&&K==p){L.removeState(d);H.removeState(d);L.addState(p);H.addState(p);};if(K==d){this._setLayout(new qx.ui.layout.HBox());this.setLayout(new qx.ui.layout.HBox());}else {this._setLayout(new qx.ui.layout.VBox());this.setLayout(new qx.ui.layout.VBox());};if(J[0]){J[0].dispose();};if(J[1]){J[1].dispose();};},_onMouseWheel:function(e){var P=0;var O=this.getChildControl(o);if(this.getOrientation()===d){P=e.getWheelDelta(l);var Q=O.getScrollX();var M=O.getScrollMaxX();var N=parseInt(P);if(!(N<0&&Q<=0||N>0&&Q>=M||P==0)){e.stop();};}else {P=e.getWheelDelta(n);var Q=O.getScrollY();var M=O.getScrollMaxY();var N=parseInt(P);if(!(N<0&&Q<=0||N>0&&Q>=M||P==0)){e.stop();};};if(qx.event.handler.MouseEmulation.ON){this.scrollBy(P);}else {this.scrollBy(P*this.getScrollStep());};},_onScroll:function(){this._updateArrowsEnabled();},_onScrollAnimationEnd:function(){this.fireEvent(s);},_onResize:function(e){var content=this.getChildControl(o).getChildren()[0];if(!content){return;};var R=this.getInnerSize();var T=content.getBounds();var S=(this.getOrientation()===d)?T.width>R.width:T.height>R.height;if(S){this._showArrows();this._updateArrowsEnabled();}else {this._hideArrows();};},_onExecuteBackward:function(){this.scrollBy(-this.getScrollStep());},_onExecuteForward:function(){this.scrollBy(this.getScrollStep());},_updateArrowsEnabled:function(){if(!this.getEnabled()){this.getChildControl(c).setEnabled(false);this.getChildControl(i).setEnabled(false);return;};var V=this.getChildControl(o);if(this.getOrientation()===d){var U=V.getScrollX();var W=V.getScrollMaxX();}else {var U=V.getScrollY();var W=V.getScrollMaxY();};this.getChildControl(c).setEnabled(U>0);this.getChildControl(i).setEnabled(U<W);},_showArrows:function(){this._showChildControl(i);this._showChildControl(c);},_hideArrows:function(){this._excludeChildControl(i);this._excludeChildControl(c);this.scrollTo(0);}}});})();(function(){var a="button-backward",b="vertical",c="button-forward",d="menu-slidebar",e="qx.ui.menu.MenuSlideBar",f="execute";qx.Class.define(e,{extend:qx.ui.container.SlideBar,construct:function(){qx.ui.container.SlideBar.call(this,b);},properties:{appearance:{refine:true,init:d}},members:{_createChildControlImpl:function(i,h){var g;switch(i){case c:g=new qx.ui.form.HoverButton();g.addListener(f,this._onExecuteForward,this);this._addAt(g,2);break;case a:g=new qx.ui.form.HoverButton();g.addListener(f,this._onExecuteBackward,this);this._addAt(g,0);break;};return g||qx.ui.container.SlideBar.prototype._createChildControlImpl.call(this,i);}}});})();(function(){var a="hovered",b="hover-button",c="__jx",d="interval",f="mouseover",g="mouseout",h="qx.ui.form.HoverButton",i="Integer";qx.Class.define(h,{extend:qx.ui.basic.Atom,include:[qx.ui.core.MExecutable],implement:[qx.ui.form.IExecutable],construct:function(j,k){qx.ui.basic.Atom.call(this,j,k);this.addListener(f,this._onMouseOver,this);this.addListener(g,this._onMouseOut,this);this.__jx=new qx.event.AcceleratingTimer();this.__jx.addListener(d,this._onInterval,this);},properties:{appearance:{refine:true,init:b},interval:{check:i,init:80},firstInterval:{check:i,init:200},minTimer:{check:i,init:20},timerDecrease:{check:i,init:2}},members:{__jx:null,_onMouseOver:function(e){if(!this.isEnabled()||e.getTarget()!==this){return;};this.__jx.set({interval:this.getInterval(),firstInterval:this.getFirstInterval(),minimum:this.getMinTimer(),decrease:this.getTimerDecrease()}).start();this.addState(a);},_onMouseOut:function(e){this.__jx.stop();this.removeState(a);if(!this.isEnabled()||e.getTarget()!==this){return;};},_onInterval:function(){if(this.isEnabled()){this.execute();}else {this.__jx.stop();};}},destruct:function(){this._disposeObjects(c);}});})();(function(){var a="hovered",b="inherit",c="pressed",d="qx.ui.menubar.Button",f="keydown",g="menubar-button",h="keyup";qx.Class.define(d,{extend:qx.ui.form.MenuButton,construct:function(j,k,i){qx.ui.form.MenuButton.call(this,j,k,i);this.removeListener(f,this._onKeyDown);this.removeListener(h,this._onKeyUp);},properties:{appearance:{refine:true,init:g},show:{refine:true,init:b},focusable:{refine:true,init:false}},members:{getMenuBar:function(){var parent=this;while(parent){if(parent instanceof qx.ui.toolbar.ToolBar){return parent;};parent=parent.getLayoutParent();};return null;},open:function(l){qx.ui.form.MenuButton.prototype.open.call(this,l);var menubar=this.getMenuBar();menubar._setAllowMenuOpenHover(true);},_onMenuChange:function(e){var m=this.getMenu();var menubar=this.getMenuBar();if(m.isVisible()){this.addState(c);if(menubar){menubar.setOpenMenu(m);};}else {this.removeState(c);if(menubar&&menubar.getOpenMenu()==m){menubar.resetOpenMenu();menubar._setAllowMenuOpenHover(false);};};},_onMouseUp:function(e){qx.ui.form.MenuButton.prototype._onMouseUp.call(this,e);var n=this.getMenu();if(n&&n.isVisible()&&!this.hasState(c)){this.addState(c);};},_onMouseOver:function(e){this.addState(a);if(this.getMenu()){var menubar=this.getMenuBar();if(menubar._isAllowMenuOpenHover()){qx.ui.menu.Manager.getInstance().hideAll();menubar._setAllowMenuOpenHover(true);if(this.isEnabled()){this.open();};};};}}});})();(function(){var a="Boolean",b="changeShow",c="qx.ui.core.Widget",d="_applyOverflowHandling",f="both",g="_applySpacing",h="qx.ui.toolbar.ToolBar",j="qx.event.type.Data",k="Integer",m="showItem",n="Widget must be child of the toolbar.",o="visible",p="changeOpenMenu",q="resize",r="icon",s="_applyOverflowIndicator",t="toolbar",u="qx.ui.menu.Menu",v="Priority already in use!",w="label",x="_applyShow",y="excluded",z="show",A="hideItem";qx.Class.define(h,{extend:qx.ui.core.Widget,include:qx.ui.core.MChildrenHandling,construct:function(){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.HBox());this.__pY=[];this.__qa=[];},properties:{appearance:{refine:true,init:t},openMenu:{check:u,event:p,nullable:true},show:{init:f,check:[f,w,r],inheritable:true,apply:x,event:b},spacing:{nullable:true,check:k,themeable:true,apply:g},overflowIndicator:{check:c,nullable:true,apply:s},overflowHandling:{init:false,check:a,apply:d}},events:{"hideItem":j,"showItem":j},members:{__pY:null,__qa:null,_computeSizeHint:function(){var D=qx.ui.core.Widget.prototype._computeSizeHint.call(this);if(true&&this.getOverflowHandling()){var B=0;var C=this.getOverflowIndicator();if(C){B=C.getSizeHint().width+this.getSpacing();};D.minWidth=B;};return D;},_onResize:function(e){this._recalculateOverflow(e.getData().width);},_recalculateOverflow:function(F,G){if(!this.getOverflowHandling()){return;};G=G||this.getSizeHint().width;var E=this.getOverflowIndicator();var L=0;if(E){L=E.getSizeHint().width;};if(F==undefined&&this.getBounds()!=null){F=this.getBounds().width;};if(F==undefined){return;};if(F<G){do {var K=this._getNextToHide();if(!K){return;};var P=K.getMarginLeft()+K.getMarginRight();P=Math.max(P,this.getSpacing());var J=K.getSizeHint().width+P;this.__qc(K);G-=J;if(E&&E.getVisibility()!=o){E.setVisibility(o);G+=L;var H=E.getMarginLeft()+E.getMarginRight();G+=Math.max(H,this.getSpacing());};}while(G>F);}else if(this.__pY.length>0){do {var Q=this.__pY[0];if(Q){var P=Q.getMarginLeft()+Q.getMarginRight();P=Math.max(P,this.getSpacing());if(Q.getContentElement().getDomElement()==null){Q.syncAppearance();Q.invalidateLayoutCache();};var I=Q.getSizeHint().width;var O=false;if(this.__pY.length==1&&L>0){var N=P-this.getSpacing();var M=G-L+I+N;O=F>M;};if(F>G+I+P||O){this.__qb(Q);G+=I;if(E&&this.__pY.length==0){E.setVisibility(y);};}else {return;};};}while(F>=G&&this.__pY.length>0);};},__qb:function(R){R.setVisibility(o);this.__pY.shift();this.fireDataEvent(m,R);},__qc:function(S){if(!S){return;};this.__pY.unshift(S);S.setVisibility(y);this.fireDataEvent(A,S);},_getNextToHide:function(){for(var i=this.__qa.length-1;i>=0;i-- ){var T=this.__qa[i];if(T&&T.getVisibility&&T.getVisibility()==o){return T;};};var U=this._getChildren();for(var i=U.length-1;i>=0;i-- ){var V=U[i];if(V==this.getOverflowIndicator()){continue;};if(V.getVisibility&&V.getVisibility()==o){return V;};};},setRemovePriority:function(X,W,Y){if(!Y&&this.__qa[W]!=undefined){throw new Error(v);};this.__qa[W]=X;},_applyOverflowHandling:function(bc,ba){this.invalidateLayoutCache();var parent=this.getLayoutParent();if(parent){parent.invalidateLayoutCache();};var bb=this.getBounds();if(bb&&bb.width){this._recalculateOverflow(bb.width);};if(bc){this.addListener(q,this._onResize,this);}else {this.removeListener(q,this._onResize,this);var bd=this.getOverflowIndicator();if(bd){bd.setVisibility(y);};for(var i=0;i<this.__pY.length;i++ ){this.__pY[i].setVisibility(o);};this.__pY=[];};},_applyOverflowIndicator:function(bf,be){if(be){this._remove(be);};if(bf){if(this._indexOf(bf)==-1){throw new Error(n);};bf.setVisibility(y);};},__qd:false,_setAllowMenuOpenHover:function(bg){this.__qd=bg;},_isAllowMenuOpenHover:function(){return this.__qd;},_applySpacing:function(bj,bh){var bi=this._getLayout();bj==null?bi.resetSpacing():bi.setSpacing(bj);},_applyShow:function(bl){var bk=this._getChildren();for(var i=0;i<bk.length;i++ ){if(bk[i].setShow){bk[i].setShow(bl);};};},_add:function(bo,bm){qx.ui.core.Widget.prototype._add.call(this,bo,bm);if(bo.setShow&&!qx.util.PropertyUtil.getUserValue(bo,z)){bo.setShow(this.getShow());};var bn=this.getSizeHint().width+bo.getSizeHint().width+2*this.getSpacing();this._recalculateOverflow(null,bn);},_addAt:function(bs,bp,bq){qx.ui.core.Widget.prototype._addAt.call(this,bs,bp,bq);if(bs.setShow&&!qx.util.PropertyUtil.getUserValue(bs,z)){bs.setShow(this.getShow());};var br=this.getSizeHint().width+bs.getSizeHint().width+2*this.getSpacing();this._recalculateOverflow(null,br);},_addBefore:function(bw,bt,bu){qx.ui.core.Widget.prototype._addBefore.call(this,bw,bt,bu);if(bw.setShow&&!qx.util.PropertyUtil.getUserValue(bw,z)){bw.setShow(this.getShow());};var bv=this.getSizeHint().width+bw.getSizeHint().width+2*this.getSpacing();this._recalculateOverflow(null,bv);},_addAfter:function(bA,bx,by){qx.ui.core.Widget.prototype._addAfter.call(this,bA,bx,by);if(bA.setShow&&!qx.util.PropertyUtil.getUserValue(bA,z)){bA.setShow(this.getShow());};var bz=this.getSizeHint().width+bA.getSizeHint().width+2*this.getSpacing();this._recalculateOverflow(null,bz);},_remove:function(bC){qx.ui.core.Widget.prototype._remove.call(this,bC);var bB=this.getSizeHint().width-bC.getSizeHint().width-2*this.getSpacing();this._recalculateOverflow(null,bB);},_removeAt:function(bD){var bF=this._getChildren()[bD];qx.ui.core.Widget.prototype._removeAt.call(this,bD);var bE=this.getSizeHint().width-bF.getSizeHint().width-2*this.getSpacing();this._recalculateOverflow(null,bE);},_removeAll:function(){qx.ui.core.Widget.prototype._removeAll.call(this);this._recalculateOverflow(null,0);},addSpacer:function(){var bG=new qx.ui.core.Spacer;this._add(bG,{flex:1});return bG;},addSeparator:function(){this.add(new qx.ui.toolbar.Separator);},getMenuButtons:function(){var bI=this.getChildren();var bH=[];var bJ;for(var i=0,l=bI.length;i<l;i++ ){bJ=bI[i];if(bJ instanceof qx.ui.menubar.Button){bH.push(bJ);}else if(bJ instanceof qx.ui.toolbar.Part){bH.push.apply(bH,bJ.getMenuButtons());};};return bH;}},destruct:function(){if(this.hasListener(q)){this.removeListener(q,this._onResize,this);};}});})();(function(){var a="toolbar-separator",b="qx.ui.toolbar.Separator";qx.Class.define(b,{extend:qx.ui.core.Widget,properties:{appearance:{refine:true,init:a},anonymous:{refine:true,init:true},width:{refine:true,init:0},height:{refine:true,init:0}}});})();(function(){var a="Integer",b="middle",c="qx.ui.toolbar.Part",d="icon",e="label",f="handle",g="left",h="container",j="syncAppearance",k="visible",m="changeShow",n="_applySpacing",o="both",p="toolbar/part",q="right";qx.Class.define(c,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling],construct:function(){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.HBox);this._createChildControl(f);},properties:{appearance:{refine:true,init:p},show:{init:o,check:[o,e,d],inheritable:true,event:m},spacing:{nullable:true,check:a,themeable:true,apply:n}},members:{_createChildControlImpl:function(t,s){var r;switch(t){case f:r=new qx.ui.basic.Image();r.setAlignY(b);this._add(r);break;case h:r=new qx.ui.toolbar.PartContainer();r.addListener(j,this.__qe,this);this._add(r);break;};return r||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,t);},getChildrenContainer:function(){return this.getChildControl(h);},_applySpacing:function(w,u){var v=this.getChildControl(h).getLayout();w==null?v.resetSpacing():v.setSpacing(w);},__qe:function(){var x=this.getChildrenContainer().getChildren();x=x.filter(function(y){return y.getVisibility()==k;});for(var i=0;i<x.length;i++ ){if(i==0&&i!=x.length-1){x[i].addState(g);x[i].removeState(q);x[i].removeState(b);}else if(i==x.length-1&&i!=0){x[i].addState(q);x[i].removeState(g);x[i].removeState(b);}else if(i==0&&i==x.length-1){x[i].removeState(g);x[i].removeState(b);x[i].removeState(q);}else {x[i].addState(b);x[i].removeState(q);x[i].removeState(g);};};},addSeparator:function(){this.add(new qx.ui.toolbar.Separator);},getMenuButtons:function(){var A=this.getChildren();var z=[];var B;for(var i=0,l=A.length;i<l;i++ ){B=A[i];if(B instanceof qx.ui.menubar.Button){z.push(B);};};return z;}}});})();(function(){var a="qx.ui.menu.Button",b="menu-button";qx.Class.define(a,{extend:qx.ui.menu.AbstractButton,construct:function(g,d,f,c){qx.ui.menu.AbstractButton.call(this);if(g!=null){this.setLabel(g);};if(d!=null){this.setIcon(d);};if(f!=null){this.setCommand(f);};if(c!=null){this.setMenu(c);};},properties:{appearance:{refine:true,init:b}},members:{_onClick:function(e){if(e.isLeftPressed()){this.execute();if(this.getMenu()){this.getMenu().open();return;};}else {if(this.getContextMenu()){return;};};qx.ui.menu.Manager.getInstance().hideAll();},_onKeyPress:function(e){this.execute();}}});})();(function(){var a="qx.event.type.Event",b="qx.ui.table.ITableModel",c="qx.event.type.Data";qx.Interface.define(b,{events:{"dataChanged":c,"metaDataChanged":a,"sorted":c},members:{getRowCount:function(){},getRowData:function(d){},getColumnCount:function(){},getColumnId:function(e){},getColumnIndexById:function(f){},getColumnName:function(g){},isColumnEditable:function(h){},isColumnSortable:function(i){},sortByColumn:function(j,k){},getSortColumnIndex:function(){},isSortAscending:function(){},prefetchRows:function(m,l){},getValue:function(o,n){},getValueById:function(q,p){},setValue:function(s,r,t){},setValueById:function(v,u,w){}}});})();(function(){var a=" != ",b="abstract",c="metaDataChanged",d="columnIdArr and columnNameArr have different length: ",e="getValue is abstract",f="qx.ui.table.model.Abstract",g="qx.event.type.Event",h="this.__columnIdArr and columnNameArr have different length: ",j="setValue is abstract",k="getRowCount is abstract",l="qx.event.type.Data";qx.Class.define(f,{type:b,extend:qx.core.Object,implement:qx.ui.table.ITableModel,events:{"dataChanged":l,"metaDataChanged":g,"sorted":l},construct:function(){qx.core.Object.call(this);this.__qf=[];this.__qg=[];this.__qh={};},members:{__qf:null,__qg:null,__qh:null,__qi:null,init:function(m){},getRowCount:function(){throw new Error(k);},getRowData:function(n){return null;},isColumnEditable:function(o){return false;},isColumnSortable:function(p){return false;},sortByColumn:function(q,r){},getSortColumnIndex:function(){return -1;},isSortAscending:function(){return true;},prefetchRows:function(t,s){},getValue:function(v,u){throw new Error(e);},getValueById:function(x,w){return this.getValue(this.getColumnIndexById(x),w);},setValue:function(z,y,A){throw new Error(j);},setValueById:function(C,B,D){this.setValue(this.getColumnIndexById(C),B,D);},getColumnCount:function(){return this.__qf.length;},getColumnIndexById:function(E){return this.__qh[E];},getColumnId:function(F){return this.__qf[F];},getColumnName:function(G){return this.__qg[G];},setColumnIds:function(H){this.__qf=H;this.__qh={};for(var i=0;i<H.length;i++ ){this.__qh[H[i]]=i;};this.__qg=new Array(H.length);if(!this.__qi){this.fireEvent(c);};},setColumnNamesByIndex:function(I){if(this.__qf.length!=I.length){throw new Error(h+this.__qf.length+a+I.length);};this.__qg=I;this.fireEvent(c);},setColumnNamesById:function(J){this.__qg=new Array(this.__qf.length);for(var i=0;i<this.__qf.length; ++i){this.__qg[i]=J[this.__qf[i]];};},setColumns:function(K,L){var M=this.__qf.length==0||L;if(L==null){if(this.__qf.length==0){L=K;}else {L=this.__qf;};};if(L.length!=K.length){throw new Error(d+L.length+a+K.length);};if(M){this.__qi=true;this.setColumnIds(L);this.__qi=false;};this.setColumnNamesByIndex(K);}},destruct:function(){this.__qf=this.__qg=this.__qh=null;}});})();(function(){var a="qx.ui.table.model.Simple",b="Boolean",c="this.__rowArr out of bounds: ",d="metaDataChanged",e=")",f="dataChanged",g=" (0..",h="sorted";qx.Class.define(a,{extend:qx.ui.table.model.Abstract,construct:function(){qx.ui.table.model.Abstract.call(this);this.__qj=[];this.__qk=-1;this.__ql=[];this.__qm=null;},properties:{caseSensitiveSorting:{check:b,init:true}},statics:{_defaultSortComparatorAscending:function(l,m){var k=l[arguments.callee.columnIndex];var n=m[arguments.callee.columnIndex];if(qx.lang.Type.isNumber(k)&&qx.lang.Type.isNumber(n)){var o=isNaN(k)?isNaN(n)?0:1:isNaN(n)?-1:null;if(o!=null){return o;};};return (k>n)?1:((k==n)?0:-1);},_defaultSortComparatorInsensitiveAscending:function(q,r){var p=(q[arguments.callee.columnIndex].toLowerCase?q[arguments.callee.columnIndex].toLowerCase():q[arguments.callee.columnIndex]);var s=(r[arguments.callee.columnIndex].toLowerCase?r[arguments.callee.columnIndex].toLowerCase():r[arguments.callee.columnIndex]);if(qx.lang.Type.isNumber(p)&&qx.lang.Type.isNumber(s)){var t=isNaN(p)?isNaN(s)?0:1:isNaN(s)?-1:null;if(t!=null){return t;};};return (p>s)?1:((p==s)?0:-1);},_defaultSortComparatorDescending:function(v,w){var u=v[arguments.callee.columnIndex];var x=w[arguments.callee.columnIndex];if(qx.lang.Type.isNumber(u)&&qx.lang.Type.isNumber(x)){var y=isNaN(u)?isNaN(x)?0:1:isNaN(x)?-1:null;if(y!=null){return y;};};return (u<x)?1:((u==x)?0:-1);},_defaultSortComparatorInsensitiveDescending:function(A,B){var z=(A[arguments.callee.columnIndex].toLowerCase?A[arguments.callee.columnIndex].toLowerCase():A[arguments.callee.columnIndex]);var C=(B[arguments.callee.columnIndex].toLowerCase?B[arguments.callee.columnIndex].toLowerCase():B[arguments.callee.columnIndex]);if(qx.lang.Type.isNumber(z)&&qx.lang.Type.isNumber(C)){var D=isNaN(z)?isNaN(C)?0:1:isNaN(C)?-1:null;if(D!=null){return D;};};return (z<C)?1:((z==C)?0:-1);}},members:{__qj:null,__qm:null,__qn:null,__ql:null,__qk:null,__qo:null,getRowData:function(E){var F=this.__qj[E];if(F==null||F.originalData==null){return F;}else {return F.originalData;};},getRowDataAsMap:function(G){var I=this.__qj[G];if(I!=null){var H={};for(var J=0;J<this.getColumnCount();J++ ){H[this.getColumnId(J)]=I[J];};if(I.originalData!=null){for(var K in I.originalData){if(H[K]==undefined){H[K]=I.originalData[K];};};};return H;};return (I&&I.originalData)?I.originalData:null;},getDataAsMapArray:function(){var M=this.getRowCount();var L=[];for(var i=0;i<M;i++ ){L.push(this.getRowDataAsMap(i));};return L;},setEditable:function(N){this.__qm=[];for(var O=0;O<this.getColumnCount();O++ ){this.__qm[O]=N;};this.fireEvent(d);},setColumnEditable:function(P,Q){if(Q!=this.isColumnEditable(P)){if(this.__qm==null){this.__qm=[];};this.__qm[P]=Q;this.fireEvent(d);};},isColumnEditable:function(R){return this.__qm?(this.__qm[R]==true):false;},setColumnSortable:function(S,T){if(T!=this.isColumnSortable(S)){if(this.__qn==null){this.__qn=[];};this.__qn[S]=T;this.fireEvent(d);};},isColumnSortable:function(U){return (this.__qn?(this.__qn[U]!==false):true);},sortByColumn:function(V,ba){var Y;var X=this.__ql[V];if(X){Y=(ba?X.ascending:X.descending);}else {if(this.getCaseSensitiveSorting()){Y=(ba?qx.ui.table.model.Simple._defaultSortComparatorAscending:qx.ui.table.model.Simple._defaultSortComparatorDescending);}else {Y=(ba?qx.ui.table.model.Simple._defaultSortComparatorInsensitiveAscending:qx.ui.table.model.Simple._defaultSortComparatorInsensitiveDescending);};};Y.columnIndex=V;this.__qj.sort(Y);this.__qk=V;this.__qo=ba;var W={columnIndex:V,ascending:ba};this.fireDataEvent(h,W);this.fireEvent(d);},setSortMethods:function(bb,bc){var bd;if(qx.lang.Type.isFunction(bc)){bd={ascending:bc,descending:function(be,bf){return bc(bf,be);}};}else {bd=bc;};this.__ql[bb]=bd;},getSortMethods:function(bg){return this.__ql[bg];},clearSorting:function(){if(this.__qk!=-1){this.__qk=-1;this.__qo=true;this.fireEvent(d);};},getSortColumnIndex:function(){return this.__qk;},_setSortColumnIndex:function(bh){this.__qk=bh;},isSortAscending:function(){return this.__qo;},_setSortAscending:function(bi){this.__qo=bi;},getRowCount:function(){return this.__qj.length;},getValue:function(bk,bj){if(bj<0||bj>=this.__qj.length){throw new Error(c+bj+g+this.__qj.length+e);};return this.__qj[bj][bk];},setValue:function(bm,bl,bo){if(this.__qj[bl][bm]!=bo){this.__qj[bl][bm]=bo;if(this.hasListener(f)){var bn={firstRow:bl,lastRow:bl,firstColumn:bm,lastColumn:bm};this.fireDataEvent(f,bn);};if(bm==this.__qk){this.clearSorting();};};},setData:function(bq,bp){this.__qj=bq;if(this.hasListener(f)){var br={firstRow:0,lastRow:bq.length-1,firstColumn:0,lastColumn:this.getColumnCount()-1};this.fireDataEvent(f,br);};if(bp!==false){this.clearSorting();};},getData:function(){return this.__qj;},setDataAsMapArray:function(bt,bs,bu){this.setData(this._mapArray2RowArr(bt,bs),bu);},addRows:function(bx,bw,bv){if(bw==null){bw=this.__qj.length;};bx.splice(0,0,bw,0);Array.prototype.splice.apply(this.__qj,bx);var by={firstRow:bw,lastRow:this.__qj.length-1,firstColumn:0,lastColumn:this.getColumnCount()-1};this.fireDataEvent(f,by);if(bv!==false){this.clearSorting();};},addRowsAsMapArray:function(bA,bB,bz,bC){this.addRows(this._mapArray2RowArr(bA,bz),bB,bC);},setRows:function(bF,bE,bD){if(bE==null){bE=0;};bF.splice(0,0,bE,bF.length);Array.prototype.splice.apply(this.__qj,bF);var bG={firstRow:bE,lastRow:this.__qj.length-1,firstColumn:0,lastColumn:this.getColumnCount()-1};this.fireDataEvent(f,bG);if(bD!==false){this.clearSorting();};},setRowsAsMapArray:function(bI,bJ,bH,bK){this.setRows(this._mapArray2RowArr(bI,bH),bJ,bK);},removeRows:function(bM,bN,bL){this.__qj.splice(bM,bN);var bO={firstRow:bM,lastRow:this.__qj.length-1,firstColumn:0,lastColumn:this.getColumnCount()-1,removeStart:bM,removeCount:bN};this.fireDataEvent(f,bO);if(bL!==false){this.clearSorting();};},_mapArray2RowArr:function(bQ,bU){var bT=bQ.length;var bP=this.getColumnCount();var bS=new Array(bT);var bR;for(var i=0;i<bT; ++i){bR=[];if(bU){bR.originalData=bQ[i];};for(var j=0;j<bP; ++j){bR[j]=bQ[i][this.getColumnId(j)];};bS[i]=bR;};return bS;}},destruct:function(){this.__qj=this.__qm=this.__ql=this.__qn=null;}});})();(function(){var a="_applyStatusBarVisible",b="columnVisibilityMenuCreateStart",c="function",d="blur",e="qx.ui.table.Table",f="Boolean",g="column-button",h="columnVisibilityMenuCreateEnd",k="changeVisible",m="_applyResetSelectionOnHeaderClick",n="_applyMetaColumnCounts",o="PageUp",p="focus",q="changeDataRowRenderer",r="dataChanged",s="changeHeaderCellHeight",t="Escape",u="A",v="changeSelectionModel",w="Left",y="__qx",z="Down",A="Integer",B="_applyHeaderCellHeight",C="qx.event.type.Data",D="statusbar",E="Function",F="visibilityChanged",G="qx.ui.table.ITableModel",H="orderChanged",I="_applySelectionModel",J="changeLocale",K="__jx",L="menu-button",M="menu",N="_applyAdditionalStatusBarText",O="_applyFocusCellOnMouseMove",P="table",Q="_applyColumnVisibilityButtonVisible",R="changeTableModel",S="qx.event.type.Event",T="tableWidthChanged",U="changeSelection",V="_applyHeaderCellsVisible",W="Object",X="__qp",Y="_applyShowCellFocusIndicator",bP="resize",bQ="verticalScrollBarChanged",bR="changeScrollY",bL="_applyTableModel",bM="__qq",bN="End",bO="_applyKeepFirstVisibleRowComplete",bV="widthChanged",bW="one of one row",bX="Home",cq="_applyRowHeight",bS="F2",bT="appear",bU="Up",bI="qx.dynlocale",co="%1 rows",bK="qx.ui.table.selection.Model",cb='"',cc="one row",bJ="__qy",bY="PageDown",cm="%1 of %2 rows",ca="keypress",cd="changeRowHeight",ce="Enter",cf="Number",cj="metaDataChanged",ck="__qw",cn="header",cp="_applyContextMenuFromDataCellsOnly",cg="qx.ui.table.IRowRenderer",ch="Right",ci="qx.ui.table.pane.CellEvent",cl="Space";qx.Class.define(e,{extend:qx.ui.core.Widget,construct:function(cr,ct){qx.ui.core.Widget.call(this);if(!ct){ct={};};if(ct.initiallyHiddenColumns){this.setInitiallyHiddenColumns(ct.initiallyHiddenColumns);};if(ct.selectionManager){this.setNewSelectionManager(ct.selectionManager);};if(ct.selectionModel){this.setNewSelectionModel(ct.selectionModel);};if(ct.tableColumnModel){this.setNewTableColumnModel(ct.tableColumnModel);};if(ct.tablePane){this.setNewTablePane(ct.tablePane);};if(ct.tablePaneHeader){this.setNewTablePaneHeader(ct.tablePaneHeader);};if(ct.tablePaneScroller){this.setNewTablePaneScroller(ct.tablePaneScroller);};if(ct.tablePaneModel){this.setNewTablePaneModel(ct.tablePaneModel);};if(ct.columnMenu){this.setNewColumnMenu(ct.columnMenu);};this._setLayout(new qx.ui.layout.VBox());this.__qp=new qx.ui.container.Composite(new qx.ui.layout.HBox());this._add(this.__qp,{flex:1});this.setDataRowRenderer(new qx.ui.table.rowrenderer.Default(this));this.__qq=this.getNewSelectionManager()(this);this.setSelectionModel(this.getNewSelectionModel()(this));this.setTableModel(cr||this.getEmptyTableModel());this.setMetaColumnCounts([-1]);this.setTabIndex(1);this.addListener(ca,this._onKeyPress);this.addListener(p,this._onFocusChanged);this.addListener(d,this._onFocusChanged);var cs=new qx.ui.core.Widget().set({height:0});this._add(cs);cs.addListener(bP,this._onResize,this);this.__qr=null;this.__qs=null;if(qx.core.Environment.get(bI)){qx.locale.Manager.getInstance().addListener(J,this._onChangeLocale,this);};this.initStatusBarVisible();cr=this.getTableModel();if(cr.init&&typeof (cr.init)==c){cr.init(this);};},events:{"columnVisibilityMenuCreateStart":C,"columnVisibilityMenuCreateEnd":C,"tableWidthChanged":S,"verticalScrollBarChanged":C,"cellClick":ci,"cellDblclick":ci,"cellContextmenu":ci,"dataEdited":C},statics:{__qt:{cellClick:1,cellDblclick:1,cellContextmenu:1}},properties:{appearance:{refine:true,init:P},focusable:{refine:true,init:true},minWidth:{refine:true,init:50},initiallyHiddenColumns:{init:null},selectable:{refine:true,init:false},selectionModel:{check:bK,apply:I,event:v},tableModel:{check:G,apply:bL,event:R},rowHeight:{check:cf,init:20,apply:cq,event:cd,themeable:true},forceLineHeight:{check:f,init:true},headerCellsVisible:{check:f,init:true,apply:V,themeable:true},headerCellHeight:{check:A,init:16,apply:B,event:s,nullable:true,themeable:true},statusBarVisible:{check:f,init:true,apply:a},additionalStatusBarText:{nullable:true,init:null,apply:N},columnVisibilityButtonVisible:{check:f,init:true,apply:Q,themeable:true},metaColumnCounts:{check:W,apply:n},focusCellOnMouseMove:{check:f,init:false,apply:O},rowFocusChangeModifiesSelection:{check:f,init:true},showCellFocusIndicator:{check:f,init:true,apply:Y},contextMenuFromDataCellsOnly:{check:f,init:true,apply:cp},keepFirstVisibleRowComplete:{check:f,init:true,apply:bO},alwaysUpdateCells:{check:f,init:false},resetSelectionOnHeaderClick:{check:f,init:true,apply:m},dataRowRenderer:{check:cg,init:null,nullable:true,event:q},modalCellEditorPreOpenFunction:{check:E,init:null,nullable:true},newColumnMenu:{check:E,init:function(){return new qx.ui.table.columnmenu.Button();}},newSelectionManager:{check:E,init:function(cu){return new qx.ui.table.selection.Manager(cu);}},newSelectionModel:{check:E,init:function(cv){return new qx.ui.table.selection.Model(cv);}},newTableColumnModel:{check:E,init:function(cw){return new qx.ui.table.columnmodel.Basic(cw);}},newTablePane:{check:E,init:function(cx){return new qx.ui.table.pane.Pane(cx);}},newTablePaneHeader:{check:E,init:function(cy){return new qx.ui.table.pane.Header(cy);}},newTablePaneScroller:{check:E,init:function(cz){return new qx.ui.table.pane.Scroller(cz);}},newTablePaneModel:{check:E,init:function(cA){return new qx.ui.table.pane.Model(cA);}}},members:{__qr:null,__qs:null,__qp:null,__qq:null,__qu:null,__qv:null,__qi:null,__qw:null,__qx:null,__qy:null,__qz:null,__jx:null,_createChildControlImpl:function(cE,cD){var cB;switch(cE){case D:cB=new qx.ui.basic.Label();cB.set({allowGrowX:true});this._add(cB);break;case g:cB=this.getNewColumnMenu()();cB.set({focusable:false});var cC=cB.factory(M,{table:this});cC.addListener(bT,this._initColumnMenu,this);break;};return cB||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,cE);},_applySelectionModel:function(cG,cF){this.__qq.setSelectionModel(cG);if(cF!=null){cF.removeListener(U,this._onSelectionChanged,this);};cG.addListener(U,this._onSelectionChanged,this);},_applyRowHeight:function(cJ,cI){var cH=this._getPaneScrollerArr();for(var i=0;i<cH.length;i++ ){cH[i].updateVerScrollBarMaximum();};},_applyHeaderCellsVisible:function(cM,cL){var cK=this._getPaneScrollerArr();for(var i=0;i<cK.length;i++ ){if(cM){cK[i]._showChildControl(cn);}else {cK[i]._excludeChildControl(cn);};};if(this.getColumnVisibilityButtonVisible()){this._applyColumnVisibilityButtonVisible(cM);};},_applyHeaderCellHeight:function(cP,cO){var cN=this._getPaneScrollerArr();for(var i=0;i<cN.length;i++ ){cN[i].getHeader().setHeight(cP);};},getEmptyTableModel:function(){if(!this.__qy){this.__qy=new qx.ui.table.model.Simple();this.__qy.setColumns([]);this.__qy.setData([]);};return this.__qy;},_applyTableModel:function(cR,cQ){this.getTableColumnModel().init(cR.getColumnCount(),this);if(cQ!=null){cQ.removeListener(cj,this._onTableModelMetaDataChanged,this);cQ.removeListener(r,this._onTableModelDataChanged,this);};cR.addListener(cj,this._onTableModelMetaDataChanged,this);cR.addListener(r,this._onTableModelDataChanged,this);this._updateStatusBar();this._updateTableData(0,cR.getRowCount(),0,cR.getColumnCount());this._onTableModelMetaDataChanged();if(cQ&&cR.init&&typeof (cR.init)==c){cR.init(this);};},getTableColumnModel:function(){if(!this.__qx){var cV=this.__qx=this.getNewTableColumnModel()(this);cV.addListener(F,this._onColVisibilityChanged,this);cV.addListener(bV,this._onColWidthChanged,this);cV.addListener(H,this._onColOrderChanged,this);var cT=this.getTableModel();cV.init(cT.getColumnCount(),this);var cS=this._getPaneScrollerArr();for(var i=0;i<cS.length;i++ ){var cW=cS[i];var cU=cW.getTablePaneModel();cU.setTableColumnModel(cV);};};return this.__qx;},_applyStatusBarVisible:function(cY,cX){if(cY){this._showChildControl(D);}else {this._excludeChildControl(D);};if(cY){this._updateStatusBar();};},_applyAdditionalStatusBarText:function(db,da){this.__qu=db;this._updateStatusBar();},_applyColumnVisibilityButtonVisible:function(dd,dc){if(dd){this._showChildControl(g);}else {this._excludeChildControl(g);};},_applyMetaColumnCounts:function(dm,dh){var dl=dm;var de=this._getPaneScrollerArr();var dj={};if(dm>dh){var dp=qx.event.Registration.getManager(de[0]);for(var dg in qx.ui.table.Table.__qt){dj[dg]={};dj[dg].capture=dp.getListeners(de[0],dg,true);dj[dg].bubble=dp.getListeners(de[0],dg,false);};};this._cleanUpMetaColumns(dl.length);var dk=0;for(var i=0;i<de.length;i++ ){var dr=de[i];var dn=dr.getTablePaneModel();dn.setFirstColumnX(dk);dn.setMaxColumnCount(dl[i]);dk+=dl[i];};if(dl.length>de.length){var dq=this.getTableColumnModel();for(var i=de.length;i<dl.length;i++ ){var dn=this.getNewTablePaneModel()(dq);dn.setFirstColumnX(dk);dn.setMaxColumnCount(dl[i]);dk+=dl[i];var dr=this.getNewTablePaneScroller()(this);dr.setTablePaneModel(dn);dr.addListener(bR,this._onScrollY,this);for(dg in qx.ui.table.Table.__qt){if(!dj[dg]){break;};if(dj[dg].capture&&dj[dg].capture.length>0){var df=dj[dg].capture;for(var j=0;j<df.length;j++ ){var di=df[j].context;if(!di){di=this;}else if(di==de[0]){di=dr;};dr.addListener(dg,df[j].handler,di,true);};};if(dj[dg].bubble&&dj[dg].bubble.length>0){var dt=dj[dg].bubble;for(var j=0;j<dt.length;j++ ){var di=dt[j].context;if(!di){di=this;}else if(di==de[0]){di=dr;};dr.addListener(dg,dt[j].handler,di,false);};};};var ds=(i==dl.length-1)?1:0;this.__qp.add(dr,{flex:ds});de=this._getPaneScrollerArr();};};for(var i=0;i<de.length;i++ ){var dr=de[i];var du=(i==(de.length-1));dr.getHeader().setHeight(this.getHeaderCellHeight());dr.setTopRightWidget(du?this.getChildControl(g):null);};if(!this.isColumnVisibilityButtonVisible()){this._excludeChildControl(g);};this._updateScrollerWidths();this._updateScrollBarVisibility();},_applyFocusCellOnMouseMove:function(dx,dw){var dv=this._getPaneScrollerArr();for(var i=0;i<dv.length;i++ ){dv[i].setFocusCellOnMouseMove(dx);};},_applyShowCellFocusIndicator:function(dA,dz){var dy=this._getPaneScrollerArr();for(var i=0;i<dy.length;i++ ){dy[i].setShowCellFocusIndicator(dA);};},_applyContextMenuFromDataCellsOnly:function(dD,dC){var dB=this._getPaneScrollerArr();for(var i=0;i<dB.length;i++ ){dB[i].setContextMenuFromDataCellsOnly(dD);};},_applyKeepFirstVisibleRowComplete:function(dG,dF){var dE=this._getPaneScrollerArr();for(var i=0;i<dE.length;i++ ){dE[i].onKeepFirstVisibleRowCompleteChanged();};},_applyResetSelectionOnHeaderClick:function(dJ,dI){var dH=this._getPaneScrollerArr();for(var i=0;i<dH.length;i++ ){dH[i].setResetSelectionOnHeaderClick(dJ);};},getSelectionManager:function(){return this.__qq;},_getPaneScrollerArr:function(){return this.__qp.getChildren();},getPaneScroller:function(dK){return this._getPaneScrollerArr()[dK];},_cleanUpMetaColumns:function(dM){var dL=this._getPaneScrollerArr();if(dL!=null){for(var i=dL.length-1;i>=dM;i-- ){dL[i].destroy();};};},_onChangeLocale:function(dN){this.updateContent();this._updateStatusBar();},_onChangeTheme:function(){qx.ui.core.Widget.prototype._onChangeTheme.call(this);this.getDataRowRenderer().initThemeValues();this.updateContent();this._updateStatusBar();},_onSelectionChanged:function(dP){var dO=this._getPaneScrollerArr();for(var i=0;i<dO.length;i++ ){dO[i].onSelectionChanged();};this._updateStatusBar();},_onTableModelMetaDataChanged:function(dR){var dQ=this._getPaneScrollerArr();for(var i=0;i<dQ.length;i++ ){dQ[i].onTableModelMetaDataChanged();};this._updateStatusBar();},_onTableModelDataChanged:function(dS){var dT=dS.getData();this._updateTableData(dT.firstRow,dT.lastRow,dT.firstColumn,dT.lastColumn,dT.removeStart,dT.removeCount);},_updateTableData:function(dY,ec,dW,dV,dX,eb){var dU=this._getPaneScrollerArr();if(eb){this.getSelectionModel().removeSelectionInterval(dX,dX+eb);if(this.__qs>=dX&&this.__qs<(dX+eb)){this.setFocusedCell();};};for(var i=0;i<dU.length;i++ ){dU[i].onTableModelDataChanged(dY,ec,dW,dV);};var ea=this.getTableModel().getRowCount();if(ea!=this.__qv){this.__qv=ea;this._updateScrollBarVisibility();this._updateStatusBar();};},_onScrollY:function(ee){if(!this.__qi){this.__qi=true;var ed=this._getPaneScrollerArr();for(var i=0;i<ed.length;i++ ){ed[i].setScrollY(ee.getData());};this.__qi=false;};},_onKeyPress:function(en){if(!this.getEnabled()){return;};var el=this.__qs;var ei=true;var em=en.getKeyIdentifier();if(this.isEditing()){if(en.getModifiers()==0){switch(em){case ce:this.stopEditing();var el=this.__qs;this.moveFocusedCell(0,1);if(this.__qs!=el){ei=this.startEditing();};break;case t:this.cancelEditing();this.focus();break;default:ei=false;break;};};}else {if(en.isCtrlPressed()){ei=true;switch(em){case u:var ej=this.getTableModel().getRowCount();if(ej>0){this.getSelectionModel().setSelectionInterval(0,ej-1);};break;default:ei=false;break;};}else {switch(em){case cl:this.__qq.handleSelectKeyDown(this.__qs,en);break;case bS:case ce:this.startEditing();ei=true;break;case bX:this.setFocusedCell(this.__qr,0,true);break;case bN:var ej=this.getTableModel().getRowCount();this.setFocusedCell(this.__qr,ej-1,true);break;case w:this.moveFocusedCell(-1,0);break;case ch:this.moveFocusedCell(1,0);break;case bU:this.moveFocusedCell(0,-1);break;case z:this.moveFocusedCell(0,1);break;case o:case bY:var eh=this.getPaneScroller(0);var ek=eh.getTablePane();var eg=this.getRowHeight();var ef=(em==o)?-1:1;ej=ek.getVisibleRowCount()-1;eh.setScrollY(eh.getScrollY()+ef*ej*eg);this.moveFocusedCell(0,ef*ej);break;default:ei=false;};};};if(el!=this.__qs&&this.getRowFocusChangeModifiesSelection()){this.__qq.handleMoveKeyDown(this.__qs,en);};if(ei){en.preventDefault();en.stopPropagation();};},_onFocusChanged:function(ep){var eo=this._getPaneScrollerArr();for(var i=0;i<eo.length;i++ ){eo[i].onFocusChanged();};},_onColVisibilityChanged:function(er){var eq=this._getPaneScrollerArr();for(var i=0;i<eq.length;i++ ){eq[i].onColVisibilityChanged();};var es=er.getData();if(this.__qw!=null&&es.col!=null&&es.visible!=null){this.__qw[es.col].setVisible(es.visible);};this._updateScrollerWidths();this._updateScrollBarVisibility();},_onColWidthChanged:function(eu){var et=this._getPaneScrollerArr();for(var i=0;i<et.length;i++ ){var ev=eu.getData();et[i].setColumnWidth(ev.col,ev.newWidth);};this._updateScrollerWidths();this._updateScrollBarVisibility();},_onColOrderChanged:function(ex){var ew=this._getPaneScrollerArr();for(var i=0;i<ew.length;i++ ){ew[i].onColOrderChanged();};this._updateScrollerWidths();this._updateScrollBarVisibility();},getTablePaneScrollerAtPageX:function(ez){var ey=this._getMetaColumnAtPageX(ez);return (ey!=-1)?this.getPaneScroller(ey):null;},setFocusedCell:function(eC,eD,eB){if(!this.isEditing()&&(eC!=this.__qr||eD!=this.__qs)){if(eC===null){eC=0;};this.__qr=eC;this.__qs=eD;var eA=this._getPaneScrollerArr();for(var i=0;i<eA.length;i++ ){eA[i].setFocusedCell(eC,eD);};if(eC!=null&&eB){this.scrollCellVisible(eC,eD);};};},resetSelection:function(){this.getSelectionModel().resetSelection();},resetCellFocus:function(){this.setFocusedCell(null,null,false);},getFocusedColumn:function(){return this.__qr;},getFocusedRow:function(){return this.__qs;},highlightFocusedRow:function(eE){this.getDataRowRenderer().setHighlightFocusRow(eE);},clearFocusedRowHighlight:function(eG){if(eG){var eH=eG.getRelatedTarget();if(eH instanceof qx.ui.table.pane.Pane||eH instanceof qx.ui.table.pane.FocusIndicator){return;};};this.resetCellFocus();var eF=this._getPaneScrollerArr();for(var i=0;i<eF.length;i++ ){eF[i].onFocusChanged();};},moveFocusedCell:function(eI,eJ){var eN=this.__qr;var eO=this.__qs;if(eN==null||eO==null){return;};if(eI!=0){var eM=this.getTableColumnModel();var x=eM.getVisibleX(eN);var eL=eM.getVisibleColumnCount();x=qx.lang.Number.limit(x+eI,0,eL-1);eN=eM.getVisibleColumnAtX(x);};if(eJ!=0){var eK=this.getTableModel();eO=qx.lang.Number.limit(eO+eJ,0,eK.getRowCount()-1);};this.setFocusedCell(eN,eO,true);},scrollCellVisible:function(eS,eT){var eQ=this.getContentElement().getDomElement();if(!eQ){this.addListenerOnce(bT,function(){this.scrollCellVisible(eS,eT);},this);};var eR=this.getTableColumnModel();var x=eR.getVisibleX(eS);var eP=this._getMetaColumnAtColumnX(x);if(eP!=-1){this.getPaneScroller(eP).scrollCellVisible(eS,eT);};},isEditing:function(){if(this.__qr!=null){var x=this.getTableColumnModel().getVisibleX(this.__qr);var eU=this._getMetaColumnAtColumnX(x);return this.getPaneScroller(eU).isEditing();};return false;},startEditing:function(){if(this.__qr!=null){var x=this.getTableColumnModel().getVisibleX(this.__qr);var eW=this._getMetaColumnAtColumnX(x);var eV=this.getPaneScroller(eW).startEditing();return eV;};return false;},stopEditing:function(){if(this.__qr!=null){var x=this.getTableColumnModel().getVisibleX(this.__qr);var eX=this._getMetaColumnAtColumnX(x);this.getPaneScroller(eX).stopEditing();};},cancelEditing:function(){if(this.__qr!=null){var x=this.getTableColumnModel().getVisibleX(this.__qr);var eY=this._getMetaColumnAtColumnX(x);this.getPaneScroller(eY).cancelEditing();};},updateContent:function(){var fa=this._getPaneScrollerArr();for(var i=0;i<fa.length;i++ ){fa[i].getTablePane().updateContent(true);};},blockHeaderElements:function(){var fb=this._getPaneScrollerArr();for(var i=0;i<fb.length;i++ ){fb[i].getHeader().getBlocker().blockContent(20);};this.getChildControl(g).getBlocker().blockContent(20);},unblockHeaderElements:function(){var fc=this._getPaneScrollerArr();for(var i=0;i<fc.length;i++ ){fc[i].getHeader().getBlocker().unblock();};this.getChildControl(g).getBlocker().unblock();},_getMetaColumnAtPageX:function(ff){var fd=this._getPaneScrollerArr();for(var i=0;i<fd.length;i++ ){var fe=fd[i].getContentLocation();if(ff>=fe.left&&ff<=fe.right){return i;};};return -1;},_getMetaColumnAtColumnX:function(fh){var fi=this.getMetaColumnCounts();var fj=0;for(var i=0;i<fi.length;i++ ){var fg=fi[i];fj+=fg;if(fg==-1||fh<fj){return i;};};return -1;},_updateStatusBar:function(){var fk=this.getTableModel();if(this.getStatusBarVisible()){var fl=this.getSelectionModel().getSelectedCount();var fm=fk.getRowCount();var fn;if(fm>=0){if(fl==0){fn=this.trn(cc,co,fm,fm);}else {fn=this.trn(bW,cm,fm,fl,fm);};};if(this.__qu){if(fn){fn+=this.__qu;}else {fn=this.__qu;};};if(fn){this.getChildControl(D).setValue(fn);};};},_updateScrollerWidths:function(){var fo=this._getPaneScrollerArr();for(var i=0;i<fo.length;i++ ){var fq=(i==(fo.length-1));var fr=fo[i].getTablePaneModel().getTotalWidth();fo[i].setPaneWidth(fr);var fp=fq?1:0;fo[i].setLayoutProperties({flex:fp});};},_updateScrollBarVisibility:function(){if(!this.getBounds()){return;};var fv=qx.ui.table.pane.Scroller.HORIZONTAL_SCROLLBAR;var fx=qx.ui.table.pane.Scroller.VERTICAL_SCROLLBAR;var fs=this._getPaneScrollerArr();var fu=false;var fw=false;for(var i=0;i<fs.length;i++ ){var fy=(i==(fs.length-1));var ft=fs[i].getNeededScrollBars(fu,!fy);if(ft&fv){fu=true;};if(fy&&(ft&fx)){fw=true;};};for(var i=0;i<fs.length;i++ ){var fy=(i==(fs.length-1));fs[i].setHorizontalScrollBarVisible(fu);if(fy){if(this.__qz==null){this.__qz=fs[i].getVerticalScrollBarVisible();this.__jx=qx.event.Timer.once(function(){this.__qz=null;this.__jx=null;},this,0);};};fs[i].setVerticalScrollBarVisible(fy&&fw);if(fy&&fw!=this.__qz){this.fireDataEvent(bQ,fw);};};},_initColumnMenu:function(){var fB=this.getTableModel();var fC=this.getTableColumnModel();var fD=this.getChildControl(g);fD.empty();var fA=fD.getMenu();var fE={table:this,menu:fA,columnButton:fD};this.fireDataEvent(b,fE);this.__qw={};for(var fF=0,l=fB.getColumnCount();fF<l;fF++ ){var fz=fD.factory(L,{text:fB.getColumnName(fF),column:fF,bVisible:fC.isColumnVisible(fF)});qx.core.Assert.assertInterface(fz,qx.ui.table.IColumnMenuItem);fz.addListener(k,this._createColumnVisibilityCheckBoxHandler(fF),this);this.__qw[fF]=fz;};fE={table:this,menu:fA,columnButton:fD};this.fireDataEvent(h,fE);},_createColumnVisibilityCheckBoxHandler:function(fG){return function(fH){var fI=this.getTableColumnModel();fI.setColumnVisible(fG,fH.getData());};},setColumnWidth:function(fK,fJ){this.getTableColumnModel().setColumnWidth(fK,fJ);},_onResize:function(){this.fireEvent(T);this._updateScrollerWidths();this._updateScrollBarVisibility();},addListener:function(fO,fN,self,fL){if(this.self(arguments).__qt[fO]){var fP=[fO];for(var i=0,fM=this._getPaneScrollerArr();i<fM.length;i++ ){fP.push(fM[i].addListener.apply(fM[i],arguments));};return fP.join(cb);}else {return qx.ui.core.Widget.prototype.addListener.call(this,fO,fN,self,fL);};},removeListener:function(fT,fS,self,fQ){if(this.self(arguments).__qt[fT]){for(var i=0,fR=this._getPaneScrollerArr();i<fR.length;i++ ){fR[i].removeListener.apply(fR[i],arguments);};}else {qx.ui.core.Widget.prototype.removeListener.call(this,fT,fS,self,fQ);};},removeListenerById:function(fY){var fV=fY.split(cb);var fX=fV.shift();if(this.self(arguments).__qt[fX]){var fW=true;for(var i=0,fU=this._getPaneScrollerArr();i<fU.length;i++ ){fW=fU[i].removeListenerById.call(fU[i],fV[i])&&fW;};return fW;}else {return qx.ui.core.Widget.prototype.removeListenerById.call(this,fY);};},destroy:function(){this.getChildControl(g).getMenu().destroy();qx.ui.core.Widget.prototype.destroy.call(this);}},destruct:function(){if(qx.core.Environment.get(bI)){qx.locale.Manager.getInstance().removeListener(J,this._onChangeLocale,this);};var gb=this.getSelectionModel();if(gb){gb.dispose();};var ga=this.getDataRowRenderer();if(ga){ga.dispose();};this._cleanUpMetaColumns(0);this.getTableColumnModel().dispose();this._disposeObjects(bM,X,bJ,bJ,y,K);this._disposeMap(ck);}});})();(function(){var a="qx.ui.table.IRowRenderer";qx.Interface.define(a,{members:{updateDataRowElement:function(c,b){},getRowHeightStyle:function(d){},createRowStyle:function(e){},getRowClass:function(f){}}});})();(function(){var a="table-row-background-even",b="Boolean",c="content",d="default",e="height:",f="changeTheme",g="'",h="table-row",i="table-row-background-focused",j="css.boxmodel",k=';color:',l="table-row-background-odd",m="1px solid ",n="table-row-line",o="qx.dyntheme",p="table-row-background-selected",q="background-color:",r="",s=';border-bottom: 1px solid ',t="table-row-selected",u="table-row-background-focused-selected",v="px;",w="qx.ui.table.rowrenderer.Default",x=";";qx.Class.define(w,{extend:qx.core.Object,implement:qx.ui.table.IRowRenderer,construct:function(){qx.core.Object.call(this);this.initThemeValues();if(qx.core.Environment.get(o)){qx.theme.manager.Color.getInstance().addListener(f,this.initThemeValues,this);qx.theme.manager.Font.getInstance().addListener(f,this.initThemeValues,this);};},properties:{highlightFocusRow:{check:b,init:true}},members:{_colors:null,__qA:null,__qB:null,initThemeValues:function(){this.__qB=r;this.__qA={};this._colors={};this._renderFont(qx.theme.manager.Font.getInstance().resolve(d));var y=qx.theme.manager.Color.getInstance();this._colors.bgcolFocusedSelected=y.resolve(u);this._colors.bgcolFocused=y.resolve(i);this._colors.bgcolSelected=y.resolve(p);this._colors.bgcolEven=y.resolve(a);this._colors.bgcolOdd=y.resolve(l);this._colors.colSelected=y.resolve(t);this._colors.colNormal=y.resolve(h);this._colors.horLine=y.resolve(n);},_insetY:1,_renderFont:function(z){if(z){this.__qA=z.getStyles();this.__qB=qx.bom.element.Style.compile(this.__qA);this.__qB=this.__qB.replace(/"/g,g);}else {this.__qB=r;this.__qA=qx.bom.Font.getDefaultStyles();};},updateDataRowElement:function(D,A){var B=this.__qA;var C=A.style;qx.bom.element.Style.setStyles(A,B);if(D.focusedRow&&this.getHighlightFocusRow()){C.backgroundColor=D.selected?this._colors.bgcolFocusedSelected:this._colors.bgcolFocused;}else {if(D.selected){C.backgroundColor=this._colors.bgcolSelected;}else {C.backgroundColor=(D.row%2==0)?this._colors.bgcolEven:this._colors.bgcolOdd;};};C.color=D.selected?this._colors.colSelected:this._colors.colNormal;C.borderBottom=m+this._colors.horLine;},getRowHeightStyle:function(E){if(qx.core.Environment.get(j)==c){E-=this._insetY;};return e+E+v;},createRowStyle:function(G){var F=[];F.push(x);F.push(this.__qB);F.push(q);if(G.focusedRow&&this.getHighlightFocusRow()){F.push(G.selected?this._colors.bgcolFocusedSelected:this._colors.bgcolFocused);}else {if(G.selected){F.push(this._colors.bgcolSelected);}else {F.push((G.row%2==0)?this._colors.bgcolEven:this._colors.bgcolOdd);};};F.push(k);F.push(G.selected?this._colors.colSelected:this._colors.colNormal);F.push(s,this._colors.horLine);return F.join(r);},getRowClass:function(H){return r;},getRowAttributes:function(I){return r;}},destruct:function(){this._colors=this.__qA=this.__qB=null;if(qx.core.Environment.get(o)){qx.theme.manager.Color.getInstance().removeListener(f,this.initThemeValues,this);qx.theme.manager.Font.getInstance().removeListener(f,this.initThemeValues,this);};}});})();(function(){var a="qx.ui.table.IColumnMenuButton";qx.Interface.define(a,{properties:{menu:{}},members:{factory:function(b,c){return true;},empty:function(){return true;}}});})();(function(){var a="Unrecognized factory request: ",b="menu-button",c="table-column-reset-button",d="separator",e="user-button",f="qx.ui.table.columnmenu.Button",g="menu";qx.Class.define(f,{extend:qx.ui.form.MenuButton,implement:qx.ui.table.IColumnMenuButton,construct:function(){qx.ui.form.MenuButton.call(this);this.__ne=new qx.ui.core.Blocker(this);},members:{__qw:null,__ne:null,factory:function(h,k){switch(h){case g:var m=new qx.ui.menu.Menu();this.setMenu(m);return m;case b:var n=new qx.ui.table.columnmenu.MenuItem(k.text);n.setVisible(k.bVisible);this.getMenu().add(n);return n;case e:var j=new qx.ui.menu.Button(k.text);j.set({appearance:c});return j;case d:return new qx.ui.menu.Separator();default:throw new Error(a+h);};},getBlocker:function(){return this.__ne;},empty:function(){var o=this.getMenu();var p=o.getChildren();for(var i=0,l=p.length;i<l;i++ ){p[0].destroy();};}},destruct:function(){this.__ne.dispose();}});})();(function(){var a="qx.ui.table.IColumnMenuItem",b="qx.event.type.Data";qx.Interface.define(a,{properties:{visible:{}},events:{changeVisible:b}});})();(function(){var a="qx.ui.form.IBooleanForm",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeValue":b},members:{setValue:function(c){return arguments.length==1;},resetValue:function(){},getValue:function(){}}});})();(function(){var a="menu-checkbox",b="Boolean",c="label",d="_applyValue",f="value",g="changeValue",h="toolTipText",i="enabled",j="qx.ui.menu.CheckBox",k="checked",l="menu",m="execute";qx.Class.define(j,{extend:qx.ui.menu.AbstractButton,implement:[qx.ui.form.IBooleanForm],construct:function(o,n){qx.ui.menu.AbstractButton.call(this);if(o!=null){if(o.translate){this.setLabel(o.translate());}else {this.setLabel(o);};};if(n!=null){this.setMenu(n);};this.addListener(m,this._onExecute,this);},properties:{appearance:{refine:true,init:a},value:{check:b,init:false,apply:d,event:g,nullable:true}},members:{_bindableProperties:[i,c,h,f,l],_applyValue:function(q,p){q?this.addState(k):this.removeState(k);},_onExecute:function(e){this.toggleValue();},_onClick:function(e){if(e.isLeftPressed()){this.execute();}else {if(this.getContextMenu()){return;};};qx.ui.menu.Manager.getInstance().hideAll();},_onKeyPress:function(e){this.execute();}}});})();(function(){var a="changeVisible",b="qx.ui.table.columnmenu.MenuItem",c="_applyVisible",d="Boolean",f="changeValue";qx.Class.define(b,{extend:qx.ui.menu.CheckBox,implement:qx.ui.table.IColumnMenuItem,properties:{visible:{check:d,init:true,apply:c,event:a}},construct:function(g){qx.ui.menu.CheckBox.call(this,g);this.addListener(f,function(e){this.bInListener=true;this.setVisible(e.getData());this.bInListener=false;});},members:{__qC:false,_applyVisible:function(i,h){if(!this.bInListener){this.setValue(i);};}}});})();(function(){var a="qx.ui.table.selection.Model",b="qx.ui.table.selection.Manager";qx.Class.define(b,{extend:qx.core.Object,construct:function(){qx.core.Object.call(this);},properties:{selectionModel:{check:a}},members:{__qD:null,handleMouseDown:function(c,d){if(d.isLeftPressed()){var e=this.getSelectionModel();if(!e.isSelectedIndex(c)){this._handleSelectEvent(c,d);this.__qD=true;}else {this.__qD=false;};}else if(d.isRightPressed()&&d.getModifiers()==0){var e=this.getSelectionModel();if(!e.isSelectedIndex(c)){e.setSelectionInterval(c,c);};};},handleMouseUp:function(f,g){if(g.isLeftPressed()&&!this.__qD){this._handleSelectEvent(f,g);};},handleClick:function(h,i){},handleSelectKeyDown:function(j,k){this._handleSelectEvent(j,k);},handleMoveKeyDown:function(l,m){var o=this.getSelectionModel();switch(m.getModifiers()){case 0:o.setSelectionInterval(l,l);break;case qx.event.type.Dom.SHIFT_MASK:var n=o.getAnchorSelectionIndex();if(n==-1){o.setSelectionInterval(l,l);}else {o.setSelectionInterval(n,l);};break;};},_handleSelectEvent:function(p,r){var t=this.getSelectionModel();var q=t.getLeadSelectionIndex();var s=t.getAnchorSelectionIndex();if(r.isShiftPressed()){if(p!=q||t.isSelectionEmpty()){if(s==-1){s=p;};if(r.isCtrlOrCommandPressed()){t.addSelectionInterval(s,p);}else {t.setSelectionInterval(s,p);};};}else if(r.isCtrlOrCommandPressed()){if(t.isSelectedIndex(p)){t.removeSelectionInterval(p,p);}else {t.addSelectionInterval(p,p);};}else {t.setSelectionInterval(p,p);};}}});})();(function(){var a="..",b="changeSelection",c="Try to turn off batch mode althoug it was not turned on.",d="_applySelectionMode",f="]",g="qx.event.type.Event",h="Ranges:",k="qx.ui.table.selection.Model",l=" [";qx.Class.define(k,{extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__qE=[];this.__qF=-1;this.__qG=-1;this.hasBatchModeRefCount=0;this.__qH=false;},events:{"changeSelection":g},statics:{NO_SELECTION:1,SINGLE_SELECTION:2,SINGLE_INTERVAL_SELECTION:3,MULTIPLE_INTERVAL_SELECTION:4,MULTIPLE_INTERVAL_SELECTION_TOGGLE:5},properties:{selectionMode:{init:2,check:[1,2,3,4,5],apply:d}},members:{__qH:null,__qF:null,__qG:null,__qE:null,_applySelectionMode:function(m){this.resetSelection();},setBatchMode:function(n){if(n){this.hasBatchModeRefCount+=1;}else {if(this.hasBatchModeRefCount==0){throw new Error(c);};this.hasBatchModeRefCount-=1;if(this.__qH){this.__qH=false;this._fireChangeSelection();};};return this.hasBatchMode();},hasBatchMode:function(){return this.hasBatchModeRefCount>0;},getAnchorSelectionIndex:function(){return this.__qF;},_setAnchorSelectionIndex:function(o){this.__qF=o;},getLeadSelectionIndex:function(){return this.__qG;},_setLeadSelectionIndex:function(p){this.__qG=p;},_getSelectedRangeArr:function(){return this.__qE;},resetSelection:function(){if(!this.isSelectionEmpty()){this._resetSelection();this._fireChangeSelection();};},isSelectionEmpty:function(){return this.__qE.length==0;},getSelectedCount:function(){var r=0;for(var i=0;i<this.__qE.length;i++ ){var q=this.__qE[i];r+=q.maxIndex-q.minIndex+1;};return r;},isSelectedIndex:function(s){for(var i=0;i<this.__qE.length;i++ ){var t=this.__qE[i];if(s>=t.minIndex&&s<=t.maxIndex){return true;};};return false;},getSelectedRanges:function(){var u=[];for(var i=0;i<this.__qE.length;i++ ){u.push({minIndex:this.__qE[i].minIndex,maxIndex:this.__qE[i].maxIndex});};return u;},iterateSelection:function(w,v){for(var i=0;i<this.__qE.length;i++ ){for(var j=this.__qE[i].minIndex;j<=this.__qE[i].maxIndex;j++ ){w.call(v,j);};};},setSelectionInterval:function(z,y){var x=this.self(arguments);switch(this.getSelectionMode()){case x.NO_SELECTION:return;case x.SINGLE_SELECTION:if(this.isSelectedIndex(y)){return;};z=y;break;case x.MULTIPLE_INTERVAL_SELECTION_TOGGLE:this.setBatchMode(true);try{for(var i=z;i<=y;i++ ){if(!this.isSelectedIndex(i)){this._addSelectionInterval(i,i);}else {this.removeSelectionInterval(i,i);};};}catch(e){throw e;}finally{this.setBatchMode(false);};this._fireChangeSelection();return;};this._resetSelection();this._addSelectionInterval(z,y);this._fireChangeSelection();},addSelectionInterval:function(B,A){var C=qx.ui.table.selection.Model;switch(this.getSelectionMode()){case C.NO_SELECTION:return;case C.MULTIPLE_INTERVAL_SELECTION:case C.MULTIPLE_INTERVAL_SELECTION_TOGGLE:this._addSelectionInterval(B,A);this._fireChangeSelection();break;default:this.setSelectionInterval(B,A);break;};},removeSelectionInterval:function(G,E){this.__qF=G;this.__qG=E;var D=Math.min(G,E);var H=Math.max(G,E);for(var i=0;i<this.__qE.length;i++ ){var J=this.__qE[i];if(J.minIndex>H){break;}else if(J.maxIndex>=D){var K=(J.minIndex>=D)&&(J.minIndex<=H);var F=(J.maxIndex>=D)&&(J.maxIndex<=H);if(K&&F){this.__qE.splice(i,1);i-- ;}else if(K){J.minIndex=H+1;}else if(F){J.maxIndex=D-1;}else {var I={minIndex:H+1,maxIndex:J.maxIndex};this.__qE.splice(i+1,0,I);J.maxIndex=D-1;break;};};};this._fireChangeSelection();},_resetSelection:function(){this.__qE=[];this.__qF=-1;this.__qG=-1;},_addSelectionInterval:function(O,M){this.__qF=O;this.__qG=M;var L=Math.min(O,M);var P=Math.max(O,M);var N=0;for(;N<this.__qE.length;N++ ){var Q=this.__qE[N];if(Q.minIndex>L){break;};};this.__qE.splice(N,0,{minIndex:L,maxIndex:P});var R=this.__qE[0];for(var i=1;i<this.__qE.length;i++ ){var Q=this.__qE[i];if(R.maxIndex+1>=Q.minIndex){R.maxIndex=Math.max(R.maxIndex,Q.maxIndex);this.__qE.splice(i,1);i-- ;}else {R=Q;};};},_dumpRanges:function(){var S=h;for(var i=0;i<this.__qE.length;i++ ){var T=this.__qE[i];S+=l+T.minIndex+a+T.maxIndex+f;};this.debug(S);},_fireChangeSelection:function(){if(this.hasBatchMode()){this.__qH=true;}else {this.fireEvent(b);};}},destruct:function(){this.__qE=null;}});})();(function(){var a="qx.ui.table.ICellRenderer";qx.Interface.define(a,{members:{createDataCellHtml:function(b,c){return true;}}});})();(function(){var a="qooxdoo-table-cell",b="content",c='</div>',d="nowrap",e="default",f="changeTheme",g="}",h="width:",i=".qooxdoo-table-cell-right { text-align:right } ",j="css.boxsizing",k="css.boxmodel",l="0px 6px",m='<div class="',n="0px",o="height:",p="1px solid ",q=".qooxdoo-table-cell-bold { font-weight:bold } ",r="String",s="} ",t="qx.dyntheme",u='>',v="",w='" ',x="ellipsis",y="content-box",z="px;",A='left:',B="qx.ui.table.cellrenderer.Abstract",C='" style="',D="abstract",E="none",F=".qooxdoo-table-cell {",G="hidden",H="table-column-line",I='px;',J=".qooxdoo-table-cell-italic { font-style:italic} ",K="absolute";qx.Class.define(B,{type:D,implement:qx.ui.table.ICellRenderer,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);var L=qx.ui.table.cellrenderer.Abstract;if(!L.__qI){L.__qI=this.self(arguments);this._createStyleSheet();if(qx.core.Environment.get(t)){qx.theme.manager.Color.getInstance().addListener(f,this._onChangeTheme,this);};};},properties:{defaultCellStyle:{init:null,check:r,nullable:true}},members:{_onChangeTheme:qx.core.Environment.select(t,{"true":function(){qx.bom.Stylesheet.removeAllRules(qx.ui.table.cellrenderer.Abstract.__qI.stylesheet);this._createStyleSheet();},"false":null}),_insetX:6+6+1,_insetY:0,_createStyleSheet:function(){var M=qx.theme.manager.Color.getInstance();var N=F+qx.bom.element.Style.compile({position:K,top:n,overflow:G,whiteSpace:d,borderRight:p+M.resolve(H),padding:l,cursor:e,textOverflow:x,userSelect:E})+s+i+J+q;if(qx.core.Environment.get(j)){N+=F+qx.bom.element.BoxSizing.compile(y)+g;};qx.ui.table.cellrenderer.Abstract.__qI.stylesheet=qx.bom.Stylesheet.createElement(N);},_getCellClass:function(O){return a;},_getCellStyle:function(P){return P.style||v;},_getCellAttributes:function(Q){return v;},_getContentHtml:function(R){return R.value||v;},_getCellSizeStyle:function(S,W,U,V){var T=v;if(qx.core.Environment.get(k)==b){S-=U;W-=V;};T+=h+Math.max(S,0)+z;T+=o+Math.max(W,0)+z;return T;},createDataCellHtml:function(X,Y){Y.push(m,this._getCellClass(X),C,A,X.styleLeft,I,this._getCellSizeStyle(X.styleWidth,X.styleHeight,this._insetX,this._insetY),this._getCellStyle(X),w,this._getCellAttributes(X),u+this._getContentHtml(X),c);}},destruct:function(){if(qx.core.Environment.get(t)){qx.theme.manager.Color.getInstance().removeListener(f,this._onChangeTheme,this);};}});})();(function(){var a="Boolean",b="",c="qx.ui.table.cellrenderer.Default",d="number",e=" qooxdoo-table-cell-bold",f=" qooxdoo-table-cell-right",g=" qooxdoo-table-cell-italic",h="string";qx.Class.define(c,{extend:qx.ui.table.cellrenderer.Abstract,statics:{STYLEFLAG_ALIGN_RIGHT:1,STYLEFLAG_BOLD:2,STYLEFLAG_ITALIC:4,_numberFormat:null},properties:{useAutoAlign:{check:a,init:true}},members:{_getStyleFlags:function(i){if(this.getUseAutoAlign()){if(typeof i.value==d){return qx.ui.table.cellrenderer.Default.STYLEFLAG_ALIGN_RIGHT;};};return 0;},_getCellClass:function(j){var k=qx.ui.table.cellrenderer.Abstract.prototype._getCellClass.call(this,j);if(!k){return b;};var l=this._getStyleFlags(j);if(l&qx.ui.table.cellrenderer.Default.STYLEFLAG_ALIGN_RIGHT){k+=f;};if(l&qx.ui.table.cellrenderer.Default.STYLEFLAG_BOLD){k+=e;};if(l&qx.ui.table.cellrenderer.Default.STYLEFLAG_ITALIC){k+=g;};return k;},_getContentHtml:function(m){return qx.bom.String.escape(this._formatValue(m));},_formatValue:function(n){var p=n.value;var o;if(p==null){return b;};if(typeof p==h){return p;}else if(typeof p==d){if(!qx.ui.table.cellrenderer.Default._numberFormat){qx.ui.table.cellrenderer.Default._numberFormat=new qx.util.format.NumberFormat();qx.ui.table.cellrenderer.Default._numberFormat.setMaximumFractionDigits(2);};o=qx.ui.table.cellrenderer.Default._numberFormat.format(p);}else if(p instanceof Date){o=qx.util.format.DateFormat.getDateInstance().format(p);}else {o=p.toString();};return o;}}});})();(function(){var a="-",b="Boolean",c="^",d="Number string '",e="' does not match the number format",f="0",g="NaN",h='(',i="-Infinity",j="String",k='{0,1}[0-9]{3}){0,})',l="",m='([0-9]{1,3}(?:',n="qx.util.format.NumberFormat",o='([-+]){0,1}',p="g",q="$",r="Number",s='\\d+){0,1}',t=".",u="changeNumberFormat",v="Infinity";qx.Class.define(n,{extend:qx.core.Object,implement:qx.util.format.IFormat,construct:function(w){qx.core.Object.call(this);this.__kn=w;},properties:{minimumIntegerDigits:{check:r,init:0},maximumIntegerDigits:{check:r,nullable:true},minimumFractionDigits:{check:r,init:0},maximumFractionDigits:{check:r,nullable:true},groupingUsed:{check:b,init:true},prefix:{check:j,init:l,event:u},postfix:{check:j,init:l,event:u}},members:{__kn:null,format:function(C){switch(C){case Infinity:return v;case -Infinity:return i;case NaN:return g;};var A=(C<0);if(A){C=-C;};if(this.getMaximumFractionDigits()!=null){var I=Math.pow(10,this.getMaximumFractionDigits());C=Math.round(C*I)/I;};var G=String(Math.floor(C)).length;var x=l+C;var E=x.substring(0,G);while(E.length<this.getMinimumIntegerDigits()){E=f+E;};if(this.getMaximumIntegerDigits()!=null&&E.length>this.getMaximumIntegerDigits()){E=E.substring(E.length-this.getMaximumIntegerDigits());};var D=x.substring(G+1);while(D.length<this.getMinimumFractionDigits()){D+=f;};if(this.getMaximumFractionDigits()!=null&&D.length>this.getMaximumFractionDigits()){D=D.substring(0,this.getMaximumFractionDigits());};if(this.getGroupingUsed()){var z=E;E=l;var H;for(H=z.length;H>3;H-=3){E=l+qx.locale.Number.getGroupSeparator(this.__kn)+z.substring(H-3,H)+E;};E=z.substring(0,H)+E;};var B=this.getPrefix()?this.getPrefix():l;var y=this.getPostfix()?this.getPostfix():l;var F=B+(A?a:l)+E;if(D.length>0){F+=l+qx.locale.Number.getDecimalSeparator(this.__kn)+D;};F+=y;return F;},parse:function(R){var N=qx.lang.String.escapeRegexpChars(qx.locale.Number.getGroupSeparator(this.__kn)+l);var L=qx.lang.String.escapeRegexpChars(qx.locale.Number.getDecimalSeparator(this.__kn)+l);var J=new RegExp(c+qx.lang.String.escapeRegexpChars(this.getPrefix())+o+m+N+k+h+L+s+qx.lang.String.escapeRegexpChars(this.getPostfix())+q);var M=J.exec(R);if(M==null){throw new Error(d+R+e);};var O=(M[1]==a);var Q=M[2];var P=M[3];Q=Q.replace(new RegExp(N,p),l);var K=(O?a:l)+Q;if(P!=null&&P.length!=0){P=P.replace(new RegExp(L),l);K+=t+P;};return parseFloat(K);}}});})();(function(){var a="cldr_number_decimal_separator",b="cldr_number_percent_format",c="qx.locale.Number",d="cldr_number_group_separator";qx.Class.define(c,{statics:{getDecimalSeparator:function(e){return qx.locale.Manager.getInstance().localize(a,[],e);},getGroupSeparator:function(f){return qx.locale.Manager.getInstance().localize(d,[],f);},getPercentFormat:function(g){return qx.locale.Manager.getInstance().localize(b,[],g);}}});})();(function(){var a="qx.ui.table.ICellEditorFactory";qx.Interface.define(a,{members:{createCellEditor:function(b){return true;},getCellEditorValue:function(c){return true;}}});})();(function(){var a="Function",b="abstract",c="",d="number",e="appear",f="Abstract method call!",g="qx.ui.table.celleditor.AbstractField";qx.Class.define(g,{extend:qx.core.Object,implement:qx.ui.table.ICellEditorFactory,type:b,properties:{validationFunction:{check:a,nullable:true,init:null}},members:{_createEditor:function(){throw new Error(f);},createCellEditor:function(h){var i=this._createEditor();i.originalValue=h.value;if(h.value===null||h.value===undefined){h.value=c;};i.setValue(c+h.value);i.addListener(e,function(){i.selectAllText();});return i;},getCellEditorValue:function(j){var k=j.getValue();var l=this.getValidationFunction();if(l){k=l(k,j.originalValue);};if(typeof j.originalValue==d){k=parseFloat(k);};return k;}}});})();(function(){var a="number",b="qx.ui.table.celleditor.TextField",c="table-editor-textfield";qx.Class.define(b,{extend:qx.ui.table.celleditor.AbstractField,members:{getCellEditorValue:function(d){var e=d.getValue();var f=this.getValidationFunction();if(f){e=f(e,d.originalValue);};if(typeof d.originalValue==a){if(e!=null){e=parseFloat(e);};};return e;},_createEditor:function(){var g=new qx.ui.form.TextField();g.setAppearance(c);return g;}}});})();(function(){var a="qx.ui.table.IHeaderRenderer";qx.Interface.define(a,{members:{createHeaderCell:function(b){return true;},updateHeaderCell:function(c,d){return true;}}});})();(function(){var a="qx.ui.table.headerrenderer.Default",b="sortedAscending",c="sorted",d="String";qx.Class.define(a,{extend:qx.core.Object,implement:qx.ui.table.IHeaderRenderer,statics:{STATE_SORTED:c,STATE_SORTED_ASCENDING:b},properties:{toolTip:{check:d,init:null,nullable:true}},members:{createHeaderCell:function(e){var f=new qx.ui.table.headerrenderer.HeaderCell();this.updateHeaderCell(e,f);return f;},updateHeaderCell:function(j,i){var h=qx.ui.table.headerrenderer.Default;if(j.name&&j.name.translate){i.setLabel(j.name.translate());}else {i.setLabel(j.name);};var g=i.getToolTip();if(this.getToolTip()!=null){if(g==null){g=new qx.ui.tooltip.ToolTip(this.getToolTip());i.setToolTip(g);qx.util.DisposeUtil.disposeTriggeredBy(g,i);}else {g.setLabel(this.getToolTip());};};j.sorted?i.addState(h.STATE_SORTED):i.removeState(h.STATE_SORTED);j.sortedAscending?i.addState(h.STATE_SORTED_ASCENDING):i.removeState(h.STATE_SORTED_ASCENDING);}}});})();(function(){var a="_applySortIcon",b="_applyIcon",c="icon",d="label",e="table-header-cell",f="qx.ui.table.headerrenderer.HeaderCell",g="_applyLabel",h="String",i="sort-icon";qx.Class.define(f,{extend:qx.ui.container.Composite,construct:function(){qx.ui.container.Composite.call(this);var j=new qx.ui.layout.Grid();j.setRowFlex(0,1);j.setColumnFlex(1,1);j.setColumnFlex(2,1);this.setLayout(j);},properties:{appearance:{refine:true,init:e},label:{check:h,init:null,nullable:true,apply:g},sortIcon:{check:h,init:null,nullable:true,apply:a,themeable:true},icon:{check:h,init:null,nullable:true,apply:b}},members:{_applyLabel:function(l,k){if(l){this._showChildControl(d).setValue(l);}else {this._excludeChildControl(d);};},_applySortIcon:function(n,m){if(n){this._showChildControl(i).setSource(n);}else {this._excludeChildControl(i);};},_applyIcon:function(p,o){if(p){this._showChildControl(c).setSource(p);}else {this._excludeChildControl(c);};},_createChildControlImpl:function(s,r){var q;switch(s){case d:q=new qx.ui.basic.Label(this.getLabel()).set({anonymous:true,allowShrinkX:true});this._add(q,{row:0,column:1});break;case i:q=new qx.ui.basic.Image(this.getSortIcon());q.setAnonymous(true);this._add(q,{row:0,column:2});break;case c:q=new qx.ui.basic.Image(this.getIcon()).set({anonymous:true,allowShrinkX:true});this._add(q,{row:0,column:0});break;};return q||qx.ui.container.Composite.prototype._createChildControlImpl.call(this,s);}}});})();(function(){var a="__qP",b="visibilityChanged",c="orderChanged",d="widthChanged",e="qx.ui.table.columnmodel.Basic",f=". The column is not added to this TablePaneModel.",g="__qN",h="Showing column failed: ",j=", got ",k="setColumnsOrder: Invalid number of column positions given, expected ",l="headerCellRendererChanged",m="qx.event.type.Data",n="__qO",o="visibilityChangedPre";qx.Class.define(e,{extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__qJ=[];this.__qK=[];},events:{"widthChanged":m,"visibilityChangedPre":m,"visibilityChanged":m,"orderChanged":m,"headerCellRendererChanged":m},statics:{DEFAULT_WIDTH:100,DEFAULT_HEADER_RENDERER:qx.ui.table.headerrenderer.Default,DEFAULT_DATA_RENDERER:qx.ui.table.cellrenderer.Default,DEFAULT_EDITOR_FACTORY:qx.ui.table.celleditor.TextField},members:{__qi:null,__qL:null,__qK:null,__qJ:null,__qM:null,__qN:null,__qO:null,__qP:null,init:function(s,v){{};this.__qM=[];var r=qx.ui.table.columnmodel.Basic.DEFAULT_WIDTH;var t=this.__qN||(this.__qN=new qx.ui.table.columnmodel.Basic.DEFAULT_HEADER_RENDERER());var q=this.__qO||(this.__qO=new qx.ui.table.columnmodel.Basic.DEFAULT_DATA_RENDERER());var p=this.__qP||(this.__qP=new qx.ui.table.columnmodel.Basic.DEFAULT_EDITOR_FACTORY());this.__qJ=[];this.__qK=[];var u;if(v){u=v.getInitiallyHiddenColumns();};u=u||[];for(var z=0;z<s;z++ ){this.__qM[z]={width:r,headerRenderer:t,dataRenderer:q,editorFactory:p};this.__qJ[z]=z;this.__qK[z]=z;};this.__qL=null;this.__qi=true;for(var w=0;w<u.length;w++ ){this.setColumnVisible(u[w],false);};this.__qi=false;for(z=0;z<s;z++ ){var y={col:z,visible:this.isColumnVisible(z)};this.fireDataEvent(o,y);this.fireDataEvent(b,y);};},getVisibleColumns:function(){return this.__qK!=null?this.__qK:[];},setColumnWidth:function(E,A,D){{};var C=this.__qM[E].width;if(C!=A){this.__qM[E].width=A;var B={col:E,newWidth:A,oldWidth:C,isMouseAction:D||false};this.fireDataEvent(d,B);};},getColumnWidth:function(F){{};return this.__qM[F].width;},setHeaderCellRenderer:function(H,I){{};var G=this.__qM[H].headerRenderer;if(G!==this.__qN){G.dispose();};this.__qM[H].headerRenderer=I;this.fireDataEvent(l,{col:H});},getHeaderCellRenderer:function(J){{};return this.__qM[J].headerRenderer;},setDataCellRenderer:function(L,M){{};this.__qM[L].dataRenderer=M;var K=this.__qM[L].dataRenderer;if(K!==this.__qO){return K;};return null;},getDataCellRenderer:function(N){{};return this.__qM[N].dataRenderer;},setCellEditorFactory:function(P,O){{};var Q=this.__qM[P].editorFactory;if(Q!==this.__qP){Q.dispose();};this.__qM[P].editorFactory=O;},getCellEditorFactory:function(R){{};return this.__qM[R].editorFactory;},_getColToXPosMap:function(){if(this.__qL==null){this.__qL={};for(var U=0;U<this.__qJ.length;U++ ){var T=this.__qJ[U];this.__qL[T]={overX:U};};for(var S=0;S<this.__qK.length;S++ ){var T=this.__qK[S];this.__qL[T].visX=S;};};return this.__qL;},getVisibleColumnCount:function(){return this.__qK!=null?this.__qK.length:0;},getVisibleColumnAtX:function(V){{};return this.__qK[V];},getVisibleX:function(W){{};return this._getColToXPosMap()[W].visX;},getOverallColumnCount:function(){return this.__qJ.length;},getOverallColumnAtX:function(X){{};return this.__qJ[X];},getOverallX:function(Y){{};return this._getColToXPosMap()[Y].overX;},isColumnVisible:function(ba){{};return (this._getColToXPosMap()[ba].visX!=null);},setColumnVisible:function(bj,bd){{};if(bd!=this.isColumnVisible(bj)){if(bd){var bh=this._getColToXPosMap();var bf=bh[bj].overX;if(bf==null){throw new Error(h+bj+f);};var be;for(var x=bf+1;x<this.__qJ.length;x++ ){var bg=this.__qJ[x];var bb=bh[bg].visX;if(bb!=null){be=bb;break;};};if(be==null){be=this.__qK.length;};this.__qK.splice(be,0,bj);}else {var bc=this.getVisibleX(bj);this.__qK.splice(bc,1);};this.__qL=null;if(!this.__qi){var bi={col:bj,visible:bd};this.fireDataEvent(o,bi);this.fireDataEvent(b,bi);};};},moveColumn:function(bk,bn){{};this.__qi=true;var bo=this.__qJ[bk];var bl=this.isColumnVisible(bo);if(bl){this.setColumnVisible(bo,false);};this.__qJ.splice(bk,1);this.__qJ.splice(bn,0,bo);this.__qL=null;if(bl){this.setColumnVisible(bo,true);};this.__qi=false;var bm={col:bo,fromOverXPos:bk,toOverXPos:bn};this.fireDataEvent(c,bm);},setColumnsOrder:function(br){{};if(br.length==this.__qJ.length){this.__qi=true;var bq=new Array(br.length);for(var bp=0;bp<this.__qJ.length;bp++ ){var bs=this.isColumnVisible(bp);bq[bp]=bs;if(bs){this.setColumnVisible(bp,false);};};this.__qJ=qx.lang.Array.clone(br);this.__qL=null;for(var bp=0;bp<this.__qJ.length;bp++ ){if(bq[bp]){this.setColumnVisible(bp,true);};};this.__qi=false;this.fireDataEvent(c);}else {throw new Error(k+this.__qJ.length+j+br.length);};}},destruct:function(){for(var i=0;i<this.__qM.length;i++ ){this.__qM[i].headerRenderer.dispose();this.__qM[i].dataRenderer.dispose();this.__qM[i].editorFactory.dispose();};this.__qJ=this.__qK=this.__qM=this.__qL=null;this._disposeObjects(g,n,a);}});})();(function(){var a='<div>',b="</div>",c="overflow: hidden;",d="qx.event.type.Data",e='</div>',f="paneReloadsData",g="div",h='style="',j="_applyMaxCacheLines",k="qx.ui.table.pane.Pane",l="width: 100%;",m="qx.event.type.Event",n="_applyVisibleRowCount",o='>',p="",q='" ',r="line-height: ",s="paneUpdated",t="appear",u='class="',v="width:100%;",w="px;",z='<div ',A="'>",B="Number",C="_applyFirstVisibleRow",D="<div style='",E=";position:relative;";qx.Class.define(k,{extend:qx.ui.core.Widget,construct:function(F){qx.ui.core.Widget.call(this);this.__qQ=F;this.__qR=0;this.__qv=0;this.__qS=[];},events:{"paneReloadsData":d,"paneUpdated":m},properties:{firstVisibleRow:{check:B,init:0,apply:C},visibleRowCount:{check:B,init:0,apply:n},maxCacheLines:{check:B,init:1000,apply:j},allowShrinkX:{refine:true,init:false}},members:{__qv:null,__qR:null,__qQ:null,__qT:null,__qs:null,__qr:null,__qS:null,__qU:0,_applyFirstVisibleRow:function(H,G){this.updateContent(false,H-G);},_applyVisibleRowCount:function(J,I){this.updateContent(true);},_getContentHint:function(){return {width:this.getPaneScroller().getTablePaneModel().getTotalWidth(),height:400};},getPaneScroller:function(){return this.__qQ;},getTable:function(){return this.__qQ.getTable();},setFocusedCell:function(M,L,K){if(M!=this.__qr||L!=this.__qs){var N=this.__qs;this.__qr=M;this.__qs=L;if(L!=N&&!K){if(N!==null){this.updateContent(false,null,N,true);};if(L!==null){this.updateContent(false,null,L,true);};};};},onSelectionChanged:function(){this.updateContent(false,null,null,true);},onFocusChanged:function(){this.updateContent(false,null,null,true);},setColumnWidth:function(P,O){this.updateContent(true);},onColOrderChanged:function(){this.updateContent(true);},onPaneModelChanged:function(){this.updateContent(true);},onTableModelDataChanged:function(T,V,R,Q){this.__qV();var S=this.getFirstVisibleRow();var U=this.getVisibleRowCount();if(V==-1||V>=S&&T<S+U){this.updateContent();};},onTableModelMetaDataChanged:function(){this.updateContent(true);},_applyMaxCacheLines:function(X,W){if(this.__qU>=X&&X!==-1){this.__qV();};},__qV:function(){this.__qS=[];this.__qU=0;},__qW:function(bb,Y,ba){if(!Y&&!ba&&this.__qS[bb]){return this.__qS[bb];}else {return null;};},__qX:function(bg,bf,bd,be){var bc=this.getMaxCacheLines();if(!bd&&!be&&!this.__qS[bg]&&bc>0){this._applyMaxCacheLines(bc);this.__qS[bg]=bf;this.__qU+=1;};},updateContent:function(bh,bk,bj,bi){if(bh){this.__qV();};if(bk&&Math.abs(bk)<=Math.min(10,this.getVisibleRowCount())){this._scrollContent(bk);}else if(bi&&!this.getTable().getAlwaysUpdateCells()){this._updateRowStyles(bj);}else {this._updateAllRows();};},_updateRowStyles:function(bq){var bp=this.getContentElement().getDomElement();if(!bp||!bp.firstChild){this._updateAllRows();return;};var bt=this.getTable();var bm=bt.getSelectionModel();var br=bt.getTableModel();var bu=bt.getDataRowRenderer();var bo=bp.firstChild.childNodes;var bn={table:bt};var bv=this.getFirstVisibleRow();var y=0;var bl=bo.length;if(bq!=null){var bs=bq-bv;if(bs>=0&&bs<bl){bv=bq;y=bs;bl=bs+1;}else {return;};};for(;y<bl;y++ ,bv++ ){bn.row=bv;bn.selected=bm.isSelectedIndex(bv);bn.focusedRow=(this.__qs==bv);bn.rowData=br.getRowData(bv);bu.updateDataRowElement(bn,bo[y]);};},_getRowsHtml:function(bH,bQ){var bB=this.getTable();var bE=bB.getSelectionModel();var bz=bB.getTableModel();var bA=bB.getTableColumnModel();var bV=this.getPaneScroller().getTablePaneModel();var bK=bB.getDataRowRenderer();bz.prefetchRows(bH,bH+bQ-1);var bS=bB.getRowHeight();var bU=bV.getColumnCount();var ca=0;var by=[];for(var x=0;x<bU;x++ ){var bY=bV.getColumnAtX(x);var bD=bA.getColumnWidth(bY);by.push({col:bY,xPos:x,editable:bz.isColumnEditable(bY),focusedCol:this.__qr==bY,styleLeft:ca,styleWidth:bD});ca+=bD;};var bX=[];var bw=false;for(var bC=bH;bC<bH+bQ;bC++ ){var bF=bE.isSelectedIndex(bC);var bJ=(this.__qs==bC);var bL=this.__qW(bC,bF,bJ);if(bL){bX.push(bL);continue;};var bM=[];var bR={table:bB};bR.styleHeight=bS;bR.row=bC;bR.selected=bF;bR.focusedRow=bJ;bR.rowData=bz.getRowData(bC);if(!bR.rowData){bw=true;};bM.push(z);var bN=bK.getRowAttributes(bR);if(bN){bM.push(bN);};var bx=bK.getRowClass(bR);if(bx){bM.push(u,bx,q);};var bO=bK.createRowStyle(bR);bO+=E+bK.getRowHeightStyle(bS)+v;if(bO){bM.push(h,bO,q);};bM.push(o);var bW=false;for(x=0;x<bU&&!bW;x++ ){var bG=by[x];for(var bT in bG){bR[bT]=bG[bT];};var bY=bR.col;bR.value=bz.getValue(bY,bC);var bI=bA.getDataCellRenderer(bY);bR.style=bI.getDefaultCellStyle();bW=bI.createDataCellHtml(bR,bM)||false;};bM.push(e);var bP=bM.join(p);this.__qX(bC,bP,bF,bJ);bX.push(bP);};this.fireDataEvent(f,bw);return bX.join(p);},_scrollContent:function(cm){var cb=this.getContentElement().getDomElement();if(!(cb&&cb.firstChild)){this._updateAllRows();return;};var ck=cb.firstChild;var cc=ck.childNodes;var ce=this.getVisibleRowCount();var ch=this.getFirstVisibleRow();var cf=this.getTable().getTableModel();var cl=0;cl=cf.getRowCount();if(ch+ce>cl){this._updateAllRows();return;};var cn=cm<0?ce+cm:0;var cd=cm<0?0:ce-cm;for(var i=Math.abs(cm)-1;i>=0;i-- ){var cg=cc[cn];try{ck.removeChild(cg);}catch(co){break;};};if(!this.__qT){this.__qT=document.createElement(g);};var cj=a;cj+=this._getRowsHtml(ch+cd,Math.abs(cm));cj+=e;this.__qT.innerHTML=cj;var ci=this.__qT.firstChild.childNodes;if(cm>0){for(var i=ci.length-1;i>=0;i-- ){var cg=ci[0];ck.appendChild(cg);};}else {for(var i=ci.length-1;i>=0;i-- ){var cg=ci[ci.length-1];ck.insertBefore(cg,ck.firstChild);};};if(this.__qs!==null){this._updateRowStyles(this.__qs-cm);this._updateRowStyles(this.__qs);};this.fireEvent(s);},_updateAllRows:function(){var cs=this.getContentElement().getDomElement();if(!cs){this.addListenerOnce(t,arguments.callee,this);return;};var cy=this.getTable();var cv=cy.getTableModel();var cx=this.getPaneScroller().getTablePaneModel();var cw=cx.getColumnCount();var cp=cy.getRowHeight();var ct=this.getFirstVisibleRow();var cq=this.getVisibleRowCount();var cz=cv.getRowCount();if(ct+cq>cz){cq=Math.max(0,cz-ct);};var cr=cx.getTotalWidth();var cu;if(cq>0){cu=[D,l,(cy.getForceLineHeight()?r+cp+w:p),c,A,this._getRowsHtml(ct,cq),b];}else {cu=[];};var cA=cu.join(p);cs.innerHTML=cA;this.setWidth(cr);this.__qR=cw;this.__qv=cq;this.fireEvent(s);}},destruct:function(){this.__qT=this.__qQ=this.__qS=null;}});})();(function(){var a="first",b="hovered",c="__qQ",d="last",e="qx.ui.table.pane.Header";qx.Class.define(e,{extend:qx.ui.core.Widget,construct:function(f){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.HBox());this.__ne=new qx.ui.core.Blocker(this);this.__qQ=f;},members:{__qQ:null,__qY:null,__ra:null,__ne:null,getPaneScroller:function(){return this.__qQ;},getTable:function(){return this.__qQ.getTable();},getBlocker:function(){return this.__ne;},onColOrderChanged:function(){this._updateContent(true);},onPaneModelChanged:function(){this._updateContent(true);},onTableModelMetaDataChanged:function(){this._updateContent();},setColumnWidth:function(h,g,i){var j=this.getHeaderWidgetAtColumn(h);if(j!=null){j.setWidth(g);};},setMouseOverColumn:function(l){if(l!=this.__ra){if(this.__ra!=null){var k=this.getHeaderWidgetAtColumn(this.__ra);if(k!=null){k.removeState(b);};};if(l!=null){this.getHeaderWidgetAtColumn(l).addState(b);};this.__ra=l;};},getHeaderWidgetAtColumn:function(n){var m=this.getPaneScroller().getTablePaneModel().getX(n);return this._getChildren()[m];},showColumnMoveFeedback:function(y,x){var r=this.getContentLocation();if(this.__qY==null){var w=this.getTable();var o=this.getPaneScroller().getTablePaneModel().getX(y);var q=this._getChildren()[o];var s=w.getTableModel();var u=w.getTableColumnModel();var v={xPos:o,col:y,name:s.getColumnName(y),table:w};var t=u.getHeaderCellRenderer(y);var p=t.createHeaderCell(v);var z=q.getBounds();p.setWidth(z.width);p.setHeight(z.height);p.setZIndex(1000000);p.setOpacity(0.8);p.setLayoutProperties({top:r.top});this.getApplicationRoot().add(p);this.__qY=p;};this.__qY.setLayoutProperties({left:r.left+x});this.__qY.show();},hideColumnMoveFeedback:function(){if(this.__qY!=null){this.__qY.destroy();this.__qY=null;};},isShowingColumnMoveFeedback:function(){return this.__qY!=null;},_updateContent:function(B){var L=this.getTable();var E=L.getTableModel();var H=L.getTableColumnModel();var A=this.getPaneScroller().getTablePaneModel();var D=this._getChildren();var F=A.getColumnCount();var I=E.getSortColumnIndex();if(B){this._cleanUpCells();};var J={};J.sortedAscending=E.isSortAscending();for(var x=0;x<F;x++ ){var M=A.getColumnAtX(x);if(M===undefined){continue;};var K=H.getColumnWidth(M);var G=H.getHeaderCellRenderer(M);J.xPos=x;J.col=M;J.name=E.getColumnName(M);J.editable=E.isColumnEditable(M);J.sorted=(M==I);J.table=L;var C=D[x];if(C==null){C=G.createHeaderCell(J);C.set({width:K});this._add(C);}else {G.updateHeaderCell(J,C);};if(x===0){C.addState(a);C.removeState(d);}else if(x===F-1){C.removeState(a);C.addState(d);}else {C.removeState(a);C.removeState(d);};};},_cleanUpCells:function(){var O=this._getChildren();for(var x=O.length-1;x>=0;x-- ){var N=O[x];N.destroy();};}},destruct:function(){this.__ne.dispose();this._disposeObjects(c);}});})();(function(){var a="touchmove",b="qx.ui.core.scroll.MTouchScroll",c="touchend",d="getDocument",f="scrollbar-",g="touchstart",h="Top",i="Left",j="x",k="y";qx.Mixin.define(b,{construct:function(){if(!qx.event.handler.MouseEmulation.ON){this.addListener(a,this._onTouchMove,this);this.addListener(g,this._onTouchStart,this);this.addListener(c,this._onTouchEnd,this,true);};this.__cO={};this.__hO={};},members:{__rb:false,__rc:false,__hO:null,__cO:null,inTouchMomentum:function(){{};return this.__rb;},_onTouchStart:function(e){if(this.__hO){clearTimeout(this.__hO.x);clearTimeout(this.__hO.y);};this.__cO={"x":0,"y":0};if(this.__rb){this.__rc=true;this.__rb=false;};},_onTouchEnd:function(e){if(this.__rc){this.__rc=false;e.stop();};},_onTouchMove:function(e){this._onTouchMoveDirectional(j,e);this._onTouchMoveDirectional(k,e);this.__rb=true;e.stop();},_onTouchMoveDirectional:function(p,e){var l=(p==j?i:h);var n=this.getChildControl(f+p,true);var m=this._isChildControlVisible(f+p);if(m&&n){var o=null;if(this.__cO[p]==0){o=0;}else {o=-(e[d+l]()-this.__cO[p]);};this.__cO[p]=e[d+l]();n.scrollBy(o);if(this.__hO[p]){clearTimeout(this.__hO[p]);this.__hO[p]=null;};this.__hO[p]=setTimeout(qx.lang.Function.bind(function(q){this.__hR(q,p);},this,o),100);};},__hR:function(r,t){this.__hO[t]=null;var u=this._isChildControlVisible(f+t);if(r==0||!u){this.__rb=false;return;};if(r>0){r=Math.max(0,r-3);}else {r=Math.min(0,r+3);};this.__hO[t]=setTimeout(qx.lang.Function.bind(function(w,v){this.__hR(w,v);},this,r,t),10);var s=this.getChildControl(f+t,true);s.scrollBy(r);}},destruct:function(){clearTimeout(this.__hO.x);clearTimeout(this.__hO.y);this.__hO=this.__cO=this.__rb=null;}});})();(function(){var a="mousedown",b="Boolean",c="__rk",d="scroll",g="focus-indicator",h="mouseout",i="__rm",j="changeHorizontalScrollBarVisible",k="excluded",l="bottom",m="_applyScrollTimeout",n="changeScrollX",o="_applyTablePaneModel",p="Integer",q="scrollbar-y",r="qx.event.type.Data",s="dblclick",t="dataEdited",u="mousewheel",v="interval",w="__re",y="qx.ui.table.pane.Scroller",z="table-scroller-focus-indicator",A="visible",B="__ri",C="mousemove",D="resize-line",E="_applyShowCellFocusIndicator",F="y",G="header",H="resize",I="__rf",J="__rh",K="vertical",L="changeScrollY",M="editing",N="appear",O="__rg",P="click",Q="modelChanged",R="__rl",S="table-scroller",T="beforeSort",U="scrollbar-x",V="cellDblclick",W="mouseup",X="horizontal",Y="cellClick",bx="losecapture",by="contextmenu",bz="__jx",bt="col-resize",bu="disappear",bv="_applyVerticalScrollBarVisible",bw="__rj",bD="_applyHorizontalScrollBarVisible",bE="os.scrollBarOverlayed",bF="pane",bH="cellContextmenu",bA="close",bB="changeTablePaneModel",bC="x",br="qx.ui.table.pane.Model",bG="qx.ui.table.pane.CellEvent",bs="changeVerticalScrollBarVisible";qx.Class.define(y,{extend:qx.ui.core.Widget,include:qx.core.Environment.filter({"event.touch":qx.ui.core.scroll.MTouchScroll,"true":qx.ui.core.scroll.MScrollBarFactory}),construct:function(bI){qx.ui.core.Widget.call(this);this.__rd=bI;var bJ=new qx.ui.layout.Grid();bJ.setColumnFlex(0,1);bJ.setRowFlex(1,1);this._setLayout(bJ);this.__re=this._showChildControl(G);this.__rf=this._showChildControl(bF);this.__rg=new qx.ui.container.Composite(new qx.ui.layout.HBox()).set({minWidth:0});this._add(this.__rg,{row:0,column:0,colSpan:2});this.__rh=new qx.ui.table.pane.Clipper();this.__rh.add(this.__re);this.__rh.addListener(bx,this._onChangeCaptureHeader,this);this.__rh.addListener(C,this._onMousemoveHeader,this);this.__rh.addListener(a,this._onMousedownHeader,this);this.__rh.addListener(W,this._onMouseupHeader,this);this.__rh.addListener(P,this._onClickHeader,this);this.__rg.add(this.__rh,{flex:1});this.__ri=new qx.ui.table.pane.Clipper();this.__ri.add(this.__rf);this.__ri.addListener(u,this._onMousewheel,this);this.__ri.addListener(C,this._onMousemovePane,this);this.__ri.addListener(a,this._onMousedownPane,this);this.__ri.addListener(W,this._onMouseupPane,this);this.__ri.addListener(P,this._onClickPane,this);this.__ri.addListener(by,this._onContextMenu,this);this.__ri.addListener(s,this._onDblclickPane,this);this.__ri.addListener(H,this._onResizePane,this);if(qx.core.Environment.get(bE)){this.__rj=new qx.ui.container.Composite();this.__rj.setLayout(new qx.ui.layout.Canvas());this.__rj.add(this.__ri,{edge:0});this._add(this.__rj,{row:1,column:0});}else {this._add(this.__ri,{row:1,column:0});};this.__rk=this._showChildControl(U);this.__rl=this._showChildControl(q);this.__rm=this.getChildControl(g);this.initShowCellFocusIndicator();this.getChildControl(D).hide();this.addListener(h,this._onMouseout,this);this.addListener(N,this._onAppear,this);this.addListener(bu,this._onDisappear,this);this.__jx=new qx.event.Timer();this.__jx.addListener(v,this._oninterval,this);this.initScrollTimeout();},statics:{MIN_COLUMN_WIDTH:10,RESIZE_REGION_RADIUS:5,CLICK_TOLERANCE:5,HORIZONTAL_SCROLLBAR:1,VERTICAL_SCROLLBAR:2},events:{"changeScrollY":r,"changeScrollX":r,"cellClick":bG,"cellDblclick":bG,"cellContextmenu":bG,"beforeSort":r},properties:{horizontalScrollBarVisible:{check:b,init:false,apply:bD,event:j},verticalScrollBarVisible:{check:b,init:false,apply:bv,event:bs},tablePaneModel:{check:br,apply:o,event:bB},liveResize:{check:b,init:false},focusCellOnMouseMove:{check:b,init:false},selectBeforeFocus:{check:b,init:false},showCellFocusIndicator:{check:b,init:true,apply:E},contextMenuFromDataCellsOnly:{check:b,init:true},resetSelectionOnHeaderClick:{check:b,init:true},scrollTimeout:{check:p,init:100,apply:m},appearance:{refine:true,init:S}},members:{__qv:null,__rd:null,__rn:null,__ro:null,__rp:null,__rq:null,__rr:null,__rs:null,__rt:null,__ru:null,__rv:null,__rw:null,__rx:null,__ry:null,__rz:false,__rA:null,__rB:null,__rC:null,__qr:null,__qs:null,__rD:null,__rE:null,__rF:null,__rk:null,__rl:null,__re:null,__rh:null,__rf:null,__ri:null,__rj:null,__rm:null,__rg:null,__jx:null,getPaneInsetRight:function(){var bM=this.getTopRightWidget();var bN=bM&&bM.isVisible()&&bM.getBounds()?bM.getBounds().width+bM.getMarginLeft()+bM.getMarginRight():0;var bL=this.__rl;var bK=this.getVerticalScrollBarVisible()?this.getVerticalScrollBarWidth()+bL.getMarginLeft()+bL.getMarginRight():0;return Math.max(bN,bK);},setPaneWidth:function(bO){if(this.isVerticalScrollBarVisible()){bO+=this.getPaneInsetRight();};this.setWidth(bO);},_createChildControlImpl:function(bR,bQ){var bP;switch(bR){case G:bP=(this.getTable().getNewTablePaneHeader())(this);break;case bF:bP=(this.getTable().getNewTablePane())(this);break;case g:bP=new qx.ui.table.pane.FocusIndicator(this);bP.setUserBounds(0,0,0,0);bP.setZIndex(1000);bP.addListener(W,this._onMouseupFocusIndicator,this);this.__ri.add(bP);bP.show();bP.setDecorator(null);break;case D:bP=new qx.ui.core.Widget();bP.setUserBounds(0,0,0,0);bP.setZIndex(1000);this.__ri.add(bP);break;case U:bP=this._createScrollBar(X).set({alignY:l});bP.addListener(d,this._onScrollX,this);if(this.__rj!=null){bP.setMinHeight(qx.ui.core.scroll.AbstractScrollArea.DEFAULT_SCROLLBAR_WIDTH);this.__rj.add(bP,{bottom:0,right:0,left:0});}else {this._add(bP,{row:2,column:0});};break;case q:bP=this._createScrollBar(K);bP.addListener(d,this._onScrollY,this);if(this.__rj!=null){this.__rj.add(bP,{right:0,bottom:0,top:0});}else {this._add(bP,{row:1,column:1});};break;};return bP||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,bR);},_applyHorizontalScrollBarVisible:function(bT,bS){this.__rk.setVisibility(bT?A:k);},_applyVerticalScrollBarVisible:function(bV,bU){this.__rl.setVisibility(bV?A:k);},_applyTablePaneModel:function(bX,bW){if(bW!=null){bW.removeListener(Q,this._onPaneModelChanged,this);};bX.addListener(Q,this._onPaneModelChanged,this);},_applyShowCellFocusIndicator:function(ca,bY){if(ca){this.__rm.setDecorator(z);this._updateFocusIndicator();}else {if(this.__rm){this.__rm.setDecorator(null);};};},getScrollY:function(){return this.__rl.getPosition();},setScrollY:function(scrollY,cb){this.__rl.scrollTo(scrollY);if(cb){this._updateContent();};},getScrollX:function(){return this.__rk.getPosition();},setScrollX:function(scrollX){this.__rk.scrollTo(scrollX);},getTable:function(){return this.__rd;},onColVisibilityChanged:function(){this.updateHorScrollBarMaximum();this._updateFocusIndicator();},setColumnWidth:function(ce,cd){this.__re.setColumnWidth(ce,cd);this.__rf.setColumnWidth(ce,cd);var cc=this.getTablePaneModel();var x=cc.getX(ce);if(x!=-1){this.updateHorScrollBarMaximum();this._updateFocusIndicator();};},onColOrderChanged:function(){this.__re.onColOrderChanged();this.__rf.onColOrderChanged();this.updateHorScrollBarMaximum();},onTableModelDataChanged:function(ci,cg,cj,ch){this.__rf.onTableModelDataChanged(ci,cg,cj,ch);var cf=this.getTable().getTableModel().getRowCount();if(cf!=this.__qv){this.updateVerScrollBarMaximum();if(this.getFocusedRow()>=cf){if(cf==0){this.setFocusedCell(null,null);}else {this.setFocusedCell(this.getFocusedColumn(),cf-1);};};this.__qv=cf;};},onSelectionChanged:function(){this.__rf.onSelectionChanged();},onFocusChanged:function(){this.__rf.onFocusChanged();},onTableModelMetaDataChanged:function(){this.__re.onTableModelMetaDataChanged();this.__rf.onTableModelMetaDataChanged();},_onPaneModelChanged:function(){this.__re.onPaneModelChanged();this.__rf.onPaneModelChanged();},_onResizePane:function(){this.updateHorScrollBarMaximum();this.updateVerScrollBarMaximum();this._updateContent();this.__re._updateContent();this.__rd._updateScrollBarVisibility();},updateHorScrollBarMaximum:function(){var co=this.__ri.getInnerSize();if(!co){return;};var cl=this.getTablePaneModel().getTotalWidth();var cm=this.__rk;if(co.width<cl){var ck=Math.max(0,cl-co.width);cm.setMaximum(ck);cm.setKnobFactor(co.width/cl);var cn=cm.getPosition();cm.setPosition(Math.min(cn,ck));}else {cm.setMaximum(0);cm.setKnobFactor(1);cm.setPosition(0);};},updateVerScrollBarMaximum:function(){var cw=this.__ri.getInnerSize();if(!cw){return;};var cu=this.getTable().getTableModel();var cq=cu.getRowCount();if(this.getTable().getKeepFirstVisibleRowComplete()){cq+=1;};var cp=this.getTable().getRowHeight();var cs=cq*cp;var cv=this.__rl;if(cw.height<cs){var cr=Math.max(0,cs-cw.height);cv.setMaximum(cr);cv.setKnobFactor(cw.height/cs);var ct=cv.getPosition();cv.setPosition(Math.min(ct,cr));}else {cv.setMaximum(0);cv.setKnobFactor(1);cv.setPosition(0);};},onKeepFirstVisibleRowCompleteChanged:function(){this.updateVerScrollBarMaximum();this._updateContent();},_onAppear:function(){this._startInterval(this.getScrollTimeout());},_onDisappear:function(){this._stopInterval();},_onScrollX:function(e){var cx=e.getData();this.fireDataEvent(n,cx,e.getOldData());this.__rh.scrollToX(cx);this.__ri.scrollToX(cx);},_onScrollY:function(e){this.fireDataEvent(L,e.getData(),e.getOldData());this._postponedUpdateContent();},_onMousewheel:function(e){var cz=this.getTable();if(!cz.getEnabled()){return;};var cA=e.getWheelDelta(F);if(cA>0&&cA<1){cA=1;}else if(cA<0&&cA>-1){cA=-1;};if(qx.event.handler.MouseEmulation.ON){this.__rl.scrollBy(cA);}else {this.__rl.scrollBySteps(cA);};var cy=cA!=0&&!this.__rG(this.__rl,cA);cA=e.getWheelDelta(bC);if(cA>0&&cA<1){cA=1;}else if(cA<0&&cA>-1){cA=-1;};if(qx.event.handler.MouseEmulation.ON){this.__rk.scrollBy(cA);}else {this.__rk.scrollBySteps(cA);};if(this.__rB&&this.getFocusCellOnMouseMove()){this._focusCellAtPagePos(this.__rB,this.__rC);};cy=cy||(cA!=0&&!this.__rG(this.__rk,cA));if(cy){e.stop();};},__rG:function(cC,cD){var cB=cC.getPosition();return (cD<0&&cB<=0)||(cD>0&&cB>=cC.getMaximum());},__rH:function(cJ){var cH=this.getTable();var cK=this.__re.getHeaderWidgetAtColumn(this.__rv);var cE=cK.getSizeHint().minWidth;var cG=Math.max(cE,this.__rx+cJ-this.__rw);if(this.getLiveResize()){var cF=cH.getTableColumnModel();cF.setColumnWidth(this.__rv,cG,true);}else {this.__re.setColumnWidth(this.__rv,cG,true);var cI=this.getTablePaneModel();this._showResizeLine(cI.getColumnLeft(this.__rv)+cG);};this.__rw+=cG-this.__rx;this.__rx=cG;},__rI:function(cM){var cL=qx.ui.table.pane.Scroller.CLICK_TOLERANCE;if(this.__re.isShowingColumnMoveFeedback()||cM>this.__ru+cL||cM<this.__ru-cL){this.__rr+=cM-this.__ru;this.__re.showColumnMoveFeedback(this.__rq,this.__rr);var cN=this.__rd.getTablePaneScrollerAtPageX(cM);if(this.__rt&&this.__rt!=cN){this.__rt.hideColumnMoveFeedback();};if(cN!=null){this.__rs=cN.showColumnMoveFeedback(cM);}else {this.__rs=null;};this.__rt=cN;this.__ru=cM;};},_onMousemoveHeader:function(e){var cU=this.getTable();if(!cU.getEnabled()){return;};var cV=false;var cO=null;var cS=e.getDocumentLeft();var cT=e.getDocumentTop();this.__rB=cS;this.__rC=cT;if(this.__rv!=null){this.__rH(cS);cV=true;e.stopPropagation();}else if(this.__rq!=null){this.__rI(cS);e.stopPropagation();}else {var cP=this._getResizeColumnForPageX(cS);if(cP!=-1){cV=true;}else {var cR=cU.getTableModel();var cW=this._getColumnForPageX(cS);if(cW!=null&&cR.isColumnSortable(cW)){cO=cW;};};};var cQ=cV?bt:null;this.getApplicationRoot().setGlobalCursor(cQ);this.setCursor(cQ);this.__re.setMouseOverColumn(cO);},_onMousemovePane:function(e){var cX=this.getTable();if(!cX.getEnabled()){return;};var da=e.getDocumentLeft();var db=e.getDocumentTop();this.__rB=da;this.__rC=db;var cY=this._getRowForPagePos(da,db);if(cY!=null&&this._getColumnForPageX(da)!=null){if(this.getFocusCellOnMouseMove()){this._focusCellAtPagePos(da,db);};};this.__re.setMouseOverColumn(null);},_onMousedownHeader:function(e){if(!this.getTable().getEnabled()){return;};var dd=e.getDocumentLeft();var de=this._getResizeColumnForPageX(dd);if(de!=-1){this._startResizeHeader(de,dd);e.stop();}else {var dc=this._getColumnForPageX(dd);if(dc!=null){this._startMoveHeader(dc,dd);e.stop();};};},_startResizeHeader:function(dh,df){var dg=this.getTable().getTableColumnModel();this.__rv=dh;this.__rw=df;this.__rx=dg.getColumnWidth(this.__rv);this.__rh.capture();},_startMoveHeader:function(di,dj){this.__rq=di;this.__ru=dj;this.__rr=this.getTablePaneModel().getColumnLeft(di);this.__rh.capture();},_onMousedownPane:function(e){var dn=this.getTable();if(!dn.getEnabled()){return;};if(dn.isEditing()){dn.stopEditing();};var dl=e.getDocumentLeft();var dm=e.getDocumentTop();var dq=this._getRowForPagePos(dl,dm);var dp=this._getColumnForPageX(dl);if(dq!==null){this.__ry={row:dq,col:dp};this.__rz=false;var dk=this.getSelectBeforeFocus();if(dk){dn.getSelectionManager().handleMouseDown(dq,e);};if(!this.getFocusCellOnMouseMove()){this._focusCellAtPagePos(dl,dm);};if(!dk){dn.getSelectionManager().handleMouseDown(dq,e);};};},_onMouseupFocusIndicator:function(e){if(this.__ry&&!this.__rz&&!this.isEditing()&&this.__rm.getRow()==this.__ry.row&&this.__rm.getColumn()==this.__ry.col){this.fireEvent(Y,qx.ui.table.pane.CellEvent,[this,e,this.__ry.row,this.__ry.col],true);this.__rz=true;}else if(!this.isEditing()){this._onMousedownPane(e);};},_onChangeCaptureHeader:function(e){if(this.__rv!=null){this._stopResizeHeader();};if(this.__rq!=null){this._stopMoveHeader();};},_stopResizeHeader:function(){var dr=this.getTable().getTableColumnModel();if(!this.getLiveResize()){this._hideResizeLine();dr.setColumnWidth(this.__rv,this.__rx,true);};this.__rv=null;this.__rh.releaseCapture();this.getApplicationRoot().setGlobalCursor(null);this.setCursor(null);if(this.isEditing()){var ds=this.__rD.getBounds().height;this.__rD.setUserBounds(0,0,this.__rx,ds);};},_stopMoveHeader:function(){var dx=this.getTable().getTableColumnModel();var dy=this.getTablePaneModel();this.__re.hideColumnMoveFeedback();if(this.__rt){this.__rt.hideColumnMoveFeedback();};if(this.__rs!=null){var dA=dy.getFirstColumnX()+dy.getX(this.__rq);var dw=this.__rs;if(dw!=dA&&dw!=dA+1){var dz=dx.getVisibleColumnAtX(dA);var dv=dx.getVisibleColumnAtX(dw);var du=dx.getOverallX(dz);var dt=(dv!=null)?dx.getOverallX(dv):dx.getOverallColumnCount();if(dt>du){dt-- ;};dx.moveColumn(du,dt);this._updateFocusIndicator();};};this.__rq=null;this.__rs=null;this.__rh.releaseCapture();},_onMouseupPane:function(e){var dB=this.getTable();if(!dB.getEnabled()){return;};var dC=this._getRowForPagePos(e.getDocumentLeft(),e.getDocumentTop());if(dC!=-1&&dC!=null&&this._getColumnForPageX(e.getDocumentLeft())!=null){dB.getSelectionManager().handleMouseUp(dC,e);};},_onMouseupHeader:function(e){var dD=this.getTable();if(!dD.getEnabled()){return;};if(this.__rv!=null){this._stopResizeHeader();this.__rA=true;e.stop();}else if(this.__rq!=null){this._stopMoveHeader();e.stop();};},_onClickHeader:function(e){if(this.__rA){this.__rA=false;return;};var dI=this.getTable();if(!dI.getEnabled()){return;};var dG=dI.getTableModel();var dH=e.getDocumentLeft();var dF=this._getResizeColumnForPageX(dH);if(dF==-1){var dL=this._getColumnForPageX(dH);if(dL!=null&&dG.isColumnSortable(dL)){var dE=dG.getSortColumnIndex();var dJ=(dL!=dE)?true:!dG.isSortAscending();var dK={column:dL,ascending:dJ,clickEvent:e};if(this.fireDataEvent(T,dK,null,true)){if(dI.isEditing()){dI.stopEditing();};dG.sortByColumn(dL,dJ);if(this.getResetSelectionOnHeaderClick()){dI.getSelectionModel().resetSelection();};};};};e.stop();},_onClickPane:function(e){var dO=this.getTable();if(!dO.getEnabled()){return;};var dM=e.getDocumentLeft();var dN=e.getDocumentTop();var dQ=this._getRowForPagePos(dM,dN);var dP=this._getColumnForPageX(dM);if(dQ!=null&&dP!=null){dO.getSelectionManager().handleClick(dQ,e);if(this.__rm.isHidden()||(this.__ry&&!this.__rz&&!this.isEditing()&&dQ==this.__ry.row&&dP==this.__ry.col)){this.fireEvent(Y,qx.ui.table.pane.CellEvent,[this,e,dQ,dP],true);this.__rz=true;};};},_onContextMenu:function(e){var dS=e.getDocumentLeft();var dT=e.getDocumentTop();var dV=this._getRowForPagePos(dS,dT);var dU=this._getColumnForPageX(dS);if(dV===null&&this.getContextMenuFromDataCellsOnly()){return;};if(!this.getShowCellFocusIndicator()||dV===null||(this.__ry&&dV==this.__ry.row&&dU==this.__ry.col)){this.fireEvent(bH,qx.ui.table.pane.CellEvent,[this,e,dV,dU],true);var dR=this.getTable().getContextMenu();if(dR){if(dR.getChildren().length>0){dR.openAtMouse(e);}else {dR.exclude();};e.preventDefault();};};},_onContextMenuOpen:function(e){},_onDblclickPane:function(e){var dX=e.getDocumentLeft();var dY=e.getDocumentTop();this._focusCellAtPagePos(dX,dY);this.startEditing();var dW=this._getRowForPagePos(dX,dY);if(dW!=-1&&dW!=null){this.fireEvent(V,qx.ui.table.pane.CellEvent,[this,e,dW],true);};},_onMouseout:function(e){var ea=this.getTable();if(!ea.getEnabled()){return;};if(this.__rv==null){this.setCursor(null);this.getApplicationRoot().setGlobalCursor(null);};this.__re.setMouseOverColumn(null);if(this.getFocusCellOnMouseMove()){this.__rd.setFocusedCell();};},_showResizeLine:function(x){var ec=this._showChildControl(D);var eb=ec.getWidth();var ed=this.__ri.getBounds();ec.setUserBounds(x-Math.round(eb/2),0,eb,ed.height);},_hideResizeLine:function(){this._excludeChildControl(D);},showColumnMoveFeedback:function(em){var en=this.getTablePaneModel();var eg=this.getTable().getTableColumnModel();var eh=this.__rf.getContentLocation().left;var el=en.getColumnCount();var ei=0;var eq=0;var ef=eh;for(var ee=0;ee<el;ee++ ){var ep=en.getColumnAtX(ee);var eo=eg.getColumnWidth(ep);if(em<ef+eo/2){break;};ef+=eo;ei=ee+1;eq=ef-eh;};var ek=this.__ri.getContentLocation().left;var ej=this.__ri.getBounds().width;var scrollX=ek-eh;eq=qx.lang.Number.limit(eq,scrollX+2,scrollX+ej-1);this._showResizeLine(eq);return en.getFirstColumnX()+ei;},hideColumnMoveFeedback:function(){this._hideResizeLine();},_focusCellAtPagePos:function(et,er){var eu=this._getRowForPagePos(et,er);if(eu!=-1&&eu!=null){var es=this._getColumnForPageX(et);this.__rd.setFocusedCell(es,eu);};},setFocusedCell:function(ev,ew){if(!this.isEditing()){this.__rf.setFocusedCell(ev,ew,this.__ro);this.__qr=ev;this.__qs=ew;this._updateFocusIndicator();};},getFocusedColumn:function(){return this.__qr;},getFocusedRow:function(){return this.__qs;},scrollCellVisible:function(eJ,eK){var eH=this.getTablePaneModel();var ex=eH.getX(eJ);if(ex!=-1){var eE=this.__ri.getInnerSize();if(!eE){return;};var eA=this.getTable().getTableColumnModel();var eB=eH.getColumnLeft(eJ);var eI=eA.getColumnWidth(eJ);var ez=this.getTable().getRowHeight();var ey=eK*ez;var scrollX=this.getScrollX();var scrollY=this.getScrollY();var eG=Math.min(eB,eB+eI-eE.width);var eD=eB;this.setScrollX(Math.max(eG,Math.min(eD,scrollX)));var eF=ey+ez-eE.height;if(this.getTable().getKeepFirstVisibleRowComplete()){eF+=ez;};var eC=ey;this.setScrollY(Math.max(eF,Math.min(eC,scrollY)),true);};},isEditing:function(){return this.__rD!=null;},startEditing:function(){var eP=this.getTable();var eN=eP.getTableModel();var eR=this.__qr;if(!this.isEditing()&&(eR!=null)&&eN.isColumnEditable(eR)){var eQ=this.__qs;var eL=this.getTablePaneModel().getX(eR);var eM=eN.getValue(eR,eQ);this.scrollCellVisible(eL,eQ);this.__rE=eP.getTableColumnModel().getCellEditorFactory(eR);var eO={col:eR,row:eQ,xPos:eL,value:eM,table:eP};this.__rD=this.__rE.createCellEditor(eO);if(this.__rD===null){return false;}else if(this.__rD instanceof qx.ui.window.Window){this.__rD.setModal(true);this.__rD.setShowClose(false);this.__rD.addListener(bA,this._onCellEditorModalWindowClose,this);var f=eP.getModalCellEditorPreOpenFunction();if(f!=null){f(this.__rD,eO);};this.__rD.open();}else {var eS=this.__rm.getInnerSize();this.__rD.setUserBounds(0,0,eS.width,eS.height);this.__rm.addListener(a,function(e){this.__ry={row:this.__qs,col:this.__qr};e.stopPropagation();},this);this.__rm.add(this.__rD);this.__rm.addState(M);this.__rm.setKeepActive(false);this.__rm.setDecorator(z);this.__rD.focus();this.__rD.activate();};return true;};return false;},stopEditing:function(){if(!this.getShowCellFocusIndicator()){this.__rm.setDecorator(null);};this.flushEditor();this.cancelEditing();},flushEditor:function(){if(this.isEditing()){var eT=this.__rE.getCellEditorValue(this.__rD);var eU=this.getTable().getTableModel().getValue(this.__qr,this.__qs);this.getTable().getTableModel().setValue(this.__qr,this.__qs,eT);this.__rd.focus();this.__rd.fireDataEvent(t,{row:this.__qs,col:this.__qr,oldValue:eU,value:eT});};},cancelEditing:function(){if(this.isEditing()&&!this.__rD.pendingDispose){if(this._cellEditorIsModalWindow){this.__rD.destroy();this.__rD=null;this.__rE=null;this.__rD.pendingDispose=true;}else {this.__rm.removeState(M);this.__rm.setKeepActive(true);this.__rD.destroy();this.__rD=null;this.__rE=null;};};},_onCellEditorModalWindowClose:function(e){this.stopEditing();},_getColumnForPageX:function(eV){var eY=this.getTable().getTableColumnModel();var fa=this.getTablePaneModel();var eX=fa.getColumnCount();var eW=this.__rf.getContentLocation().left;for(var x=0;x<eX;x++ ){var fc=fa.getColumnAtX(x);var fb=eY.getColumnWidth(fc);eW+=fb;if(eV<eW){return fc;};};return null;},_getResizeColumnForPageX:function(fe){var fh=this.getTable().getTableColumnModel();var fi=this.getTablePaneModel();var fg=fi.getColumnCount();var ff=this.__re.getContentLocation().left;var fd=qx.ui.table.pane.Scroller.RESIZE_REGION_RADIUS;for(var x=0;x<fg;x++ ){var fk=fi.getColumnAtX(x);var fj=fh.getColumnWidth(fk);ff+=fj;if(fe>=(ff-fd)&&fe<=(ff+fd)){return fk;};};return -1;},_getRowForPagePos:function(fr,fs){var fl=this.__rf.getContentLocation();if(fr<fl.left||fr>fl.right){return null;};if(fs>=fl.top&&fs<=fl.bottom){var fm=this.getTable().getRowHeight();var scrollY=this.__rl.getPosition();if(this.getTable().getKeepFirstVisibleRowComplete()){scrollY=Math.floor(scrollY/fm)*fm;};var fp=scrollY+fs-fl.top;var ft=Math.floor(fp/fm);var fn=this.getTable().getTableModel();var fq=fn.getRowCount();return (ft<fq)?ft:null;};var fo=this.__re.getContentLocation();if(fs>=fo.top&&fs<=fo.bottom&&fr<=fo.right){return -1;};return null;},setTopRightWidget:function(fu){var fv=this.__rF;if(fv!=null){this.__rg.remove(fv);};if(fu!=null){this.__rg.add(fu);};this.__rF=fu;},getTopRightWidget:function(){return this.__rF;},getHeader:function(){return this.__re;},getTablePane:function(){return this.__rf;},getVerticalScrollBarWidth:function(){var fw=this.__rl;return fw.isVisible()?(fw.getSizeHint().width||0):0;},getNeededScrollBars:function(fA,fB){var fM=this.__rl;var fL=fM.getSizeHint().width+fM.getMarginLeft()+fM.getMarginRight();var fG=this.__rk;var fJ=fG.getSizeHint().height+fG.getMarginTop()+fG.getMarginBottom();var fD=this.__ri.getInnerSize();var fx=fD?fD.width:0;if(this.getVerticalScrollBarVisible()){fx+=fL;};var fH=fD?fD.height:0;if(this.getHorizontalScrollBarVisible()){fH+=fJ;};var fE=this.getTable().getTableModel();var fF=fE.getRowCount();var fy=this.getTablePaneModel().getTotalWidth();var fI=this.getTable().getRowHeight()*fF;var fz=false;var fN=false;if(fy>fx){fz=true;if(fI>fH-fJ){fN=true;};}else if(fI>fH){fN=true;if(!fB&&(fy>fx-fL)){fz=true;};};var fC=qx.ui.table.pane.Scroller.HORIZONTAL_SCROLLBAR;var fK=qx.ui.table.pane.Scroller.VERTICAL_SCROLLBAR;return ((fA||fz)?fC:0)|((fB||!fN)?0:fK);},getPaneClipper:function(){return this.__ri;},_applyScrollTimeout:function(fP,fO){this._startInterval(fP);},_startInterval:function(fQ){this.__jx.setInterval(fQ);this.__jx.start();},_stopInterval:function(){this.__jx.stop();},_postponedUpdateContent:function(){this._updateContent();},_oninterval:qx.event.GlobalError.observeMethod(function(){if(this.__ro&&!this.__rf._layoutPending){this.__ro=false;this._updateContent();};}),_updateContent:function(){var fY=this.__ri.getInnerSize();if(!fY){return;};var fW=fY.height;var scrollX=this.__rk.getPosition();var scrollY=this.__rl.getPosition();var fS=this.getTable().getRowHeight();var fU=Math.floor(scrollY/fS);var fX=this.__rf.getFirstVisibleRow();this.__rf.setFirstVisibleRow(fU);var fT=Math.ceil(fW/fS);var fR=0;var fV=this.getTable().getKeepFirstVisibleRowComplete();if(!fV){fT++ ;fR=scrollY%fS;};this.__rf.setVisibleRowCount(fT);if(fU!=fX){this._updateFocusIndicator();};this.__ri.scrollToX(scrollX);if(!fV){this.__ri.scrollToY(fR);};},_updateFocusIndicator:function(){var ga=this.getTable();if(!ga.getEnabled()){return;};this.__rm.moveToCell(this.__qr,this.__qs);}},destruct:function(){this._stopInterval();var gb=this.getTablePaneModel();if(gb){gb.dispose();};this.__ry=this.__rF=this.__rd=null;this._disposeObjects(c,R,J,B,i,w,I,O,bz,bw);}});})();(function(){var a="qx.ui.table.pane.Clipper";qx.Class.define(a,{extend:qx.ui.container.Composite,construct:function(){qx.ui.container.Composite.call(this,new qx.ui.layout.Grow());this.setMinWidth(0);},members:{scrollToX:function(b){this.getContentElement().scrollToX(b,false);},scrollToY:function(c){this.getContentElement().scrollToY(c,true);}}});})();(function(){var a="Escape",b="keypress",c="Enter",d="excluded",f="Integer",g="qx.ui.table.pane.FocusIndicator";qx.Class.define(g,{extend:qx.ui.container.Composite,construct:function(h){qx.ui.container.Composite.call(this);this.__rJ=h;this.setKeepActive(true);this.addListener(b,this._onKeyPress,this);},properties:{visibility:{refine:true,init:d},row:{check:f,nullable:true},column:{check:f,nullable:true}},members:{__rJ:null,_onKeyPress:function(e){var i=e.getKeyIdentifier();if(i!==a&&i!==c){e.stopPropagation();};},moveToCell:function(p,q){if(!this.__rJ.getShowCellFocusIndicator()&&!this.__rJ.getTable().getTableModel().isColumnEditable(p)){this.exclude();return;}else {this.show();};if(p==null){this.hide();this.setRow(null);this.setColumn(null);}else {var j=this.__rJ.getTablePaneModel().getX(p);if(j==-1){this.hide();this.setRow(null);this.setColumn(null);}else {var o=this.__rJ.getTable();var m=o.getTableColumnModel();var n=this.__rJ.getTablePaneModel();var l=this.__rJ.getTablePane().getFirstVisibleRow();var k=o.getRowHeight();this.setUserBounds(n.getColumnLeft(p)-2,(q-l)*k-2,m.getColumnWidth(p)+3,k+3);this.show();this.setRow(q);this.setColumn(p);};};}},destruct:function(){this.__rJ=null;}});})();(function(){var a="Integer",b="qx.ui.table.pane.CellEvent";qx.Class.define(b,{extend:qx.event.type.Mouse,properties:{row:{check:a,nullable:true},column:{check:a,nullable:true}},members:{init:function(e,c,f,d){c.clone(this);this.setBubbles(false);if(f!=null){this.setRow(f);}else {this.setRow(e._getRowForPagePos(this.getDocumentLeft(),this.getDocumentTop()));};if(d!=null){this.setColumn(d);}else {this.setColumn(e._getColumnForPageX(this.getDocumentLeft()));};},clone:function(g){var h=qx.event.type.Mouse.prototype.clone.call(this,g);h.set({row:this.getRow(),column:this.getColumn()});return h;}}});})();(function(){var a="qx.lang.Number";qx.Class.define(a,{statics:{isInRange:function(c,d,b){return c>=d&&c<=b;},isBetweenRange:function(f,g,e){return f>g&&f<e;},limit:function(i,j,h){if(h!=null&&i>h){return h;}else if(j!=null&&i<j){return j;}else {return i;};}}});})();(function(){var a="Number",b="qx.event.type.Event",c="modelChanged",d="_applyFirstColumnX",e="headerCellRendererChanged",f="Integer",g="qx.ui.table.pane.Model",h="_applyMaxColumnCount",i="visibilityChangedPre";qx.Class.define(g,{extend:qx.core.Object,construct:function(j){qx.core.Object.call(this);this.setTableColumnModel(j);},events:{"modelChanged":b},statics:{EVENT_TYPE_MODEL_CHANGED:c},properties:{firstColumnX:{check:f,init:0,apply:d},maxColumnCount:{check:a,init:-1,apply:h}},members:{__rK:null,__rL:null,_applyFirstColumnX:function(l,k){this.__rK=null;this.fireEvent(qx.ui.table.pane.Model.EVENT_TYPE_MODEL_CHANGED);},_applyMaxColumnCount:function(n,m){this.__rK=null;this.fireEvent(qx.ui.table.pane.Model.EVENT_TYPE_MODEL_CHANGED);},setTableColumnModel:function(o){if(this.__rL){this.__rL.removeListener(i,this._onColVisibilityChanged,this);this.__rL.removeListener(e,this._onColVisibilityChanged,this);};this.__rL=o;this.__rL.addListener(i,this._onColVisibilityChanged,this);this.__rL.addListener(e,this._onHeaderCellRendererChanged,this);this.__rK=null;},_onColVisibilityChanged:function(p){this.__rK=null;this.fireEvent(qx.ui.table.pane.Model.EVENT_TYPE_MODEL_CHANGED);},_onHeaderCellRendererChanged:function(q){this.fireEvent(qx.ui.table.pane.Model.EVENT_TYPE_MODEL_CHANGED);},getColumnCount:function(){if(this.__rK==null){var r=this.getFirstColumnX();var t=this.getMaxColumnCount();var s=this.__rL.getVisibleColumnCount();if(t==-1||(r+t)>s){this.__rK=s-r;}else {this.__rK=t;};};return this.__rK;},getColumnAtX:function(v){var u=this.getFirstColumnX();return this.__rL.getVisibleColumnAtX(u+v);},getX:function(z){var w=this.getFirstColumnX();var y=this.getMaxColumnCount();var x=this.__rL.getVisibleX(z)-w;if(x>=0&&(y==-1||x<y)){return x;}else {return -1;};},getColumnLeft:function(D){var B=0;var C=this.getColumnCount();for(var x=0;x<C;x++ ){var A=this.getColumnAtX(x);if(A==D){return B;};B+=this.__rL.getColumnWidth(A);};return -1;},getTotalWidth:function(){var E=0;var F=this.getColumnCount();for(var x=0;x<F;x++ ){var G=this.getColumnAtX(x);E+=this.__rL.getColumnWidth(G);};return E;}},destruct:function(){if(this.__rL){this.__rL.removeListener(i,this._onColVisibilityChanged,this);this.__rL.removeListener(e,this._onColVisibilityChanged,this);};this.__rL=null;}});})();(function(){var a="regex cannot be null!",b="font-weight",c="==",d="Condition not recognized or value1/value2 is null!",e="Condition not recognized or value is null!",f="",g=">",h="text-align",j="between",k="<",l=";",m='g',n="regex",o=":",p="qx.ui.table.cellrenderer.Conditional",q="!between",r=">=",s="color",t="font-style",u="!=",v="<=";qx.Class.define(p,{extend:qx.ui.table.cellrenderer.Default,construct:function(y,w,x,z){qx.ui.table.cellrenderer.Default.call(this);this.numericAllowed=[c,u,g,k,r,v];this.betweenAllowed=[j,q];this.conditions=[];this.__rM=y||f;this.__rN=w||f;this.__rO=x||f;this.__rP=z||f;},members:{__rM:null,__rN:null,__rO:null,__rP:null,__rQ:function(B,A){if(B[1]!=null){A[h]=B[1];};if(B[2]!=null){A[s]=B[2];};if(B[3]!=null){A[t]=B[3];};if(B[4]!=null){A[b]=B[4];};},addNumericCondition:function(J,I,G,F,C,E,D){var H=null;if(qx.lang.Array.contains(this.numericAllowed,J)){if(I!=null){H=[J,G,F,C,E,I,D];};};if(H!=null){this.conditions.push(H);}else {throw new Error(e);};},addBetweenCondition:function(R,Q,S,O,N,K,M,L){if(qx.lang.Array.contains(this.betweenAllowed,R)){if(Q!=null&&S!=null){var P=[R,O,N,K,M,Q,S,L];};};if(P!=null){this.conditions.push(P);}else {throw new Error(d);};},addRegex:function(T,Y,X,U,W,V){if(T!=null){var ba=[n,Y,X,U,W,T,V];};if(ba!=null){this.conditions.push(ba);}else {throw new Error(a);};},_getCellStyle:function(bi){var bf=bi.table.getTableModel();var i;var be;var bb;var bd={"text-align":this.__rM,"color":this.__rN,"font-style":this.__rO,"font-weight":this.__rP};for(i in this.conditions){be=false;if(qx.lang.Array.contains(this.numericAllowed,this.conditions[i][0])){if(this.conditions[i][6]==null){bb=bi.value;}else {bb=bf.getValueById(this.conditions[i][6],bi.row);};switch(this.conditions[i][0]){case c:if(bb==this.conditions[i][5]){be=true;};break;case u:if(bb!=this.conditions[i][5]){be=true;};break;case g:if(bb>this.conditions[i][5]){be=true;};break;case k:if(bb<this.conditions[i][5]){be=true;};break;case r:if(bb>=this.conditions[i][5]){be=true;};break;case v:if(bb<=this.conditions[i][5]){be=true;};break;};}else if(qx.lang.Array.contains(this.betweenAllowed,this.conditions[i][0])){if(this.conditions[i][7]==null){bb=bi.value;}else {bb=bf.getValueById(this.conditions[i][7],bi.row);};switch(this.conditions[i][0]){case j:if(bb>=this.conditions[i][5]&&bb<=this.conditions[i][6]){be=true;};break;case q:if(bb<this.conditions[i][5]||bb>this.conditions[i][6]){be=true;};break;};}else if(this.conditions[i][0]==n){if(this.conditions[i][6]==null){bb=bi.value;}else {bb=bf.getValueById(this.conditions[i][6],bi.row);};var bc=new RegExp(this.conditions[i][5],m);be=bc.test(bb);};if(be==true){this.__rQ(this.conditions[i],bd);};};var bg=[];for(var bh in bd){if(bd[bh]){bg.push(bh,o,bd[bh],l);};};return bg.join(f);}},destruct:function(){this.numericAllowed=this.betweenAllowed=this.conditions=null;}});})();(function(){var a="qooxdoo-table-cell",b="qx.ui.table.cellrenderer.Html",c="";qx.Class.define(b,{extend:qx.ui.table.cellrenderer.Conditional,members:{_getContentHtml:function(d){return (d.value||c);},_getCellClass:function(e){return a;}}});})();(function(){var a="qx.ui.table.cellrenderer.String",b="qooxdoo-table-cell",c="";qx.Class.define(a,{extend:qx.ui.table.cellrenderer.Conditional,members:{_getContentHtml:function(d){return qx.bom.String.escape(d.value||c);},_getCellClass:function(e){return b;}}});})();(function(){var a="Function",b="No function provided! Aborting.",c="qx.ui.table.cellrenderer.Dynamic";qx.Class.define(c,{extend:qx.ui.table.cellrenderer.Default,construct:function(d){qx.ui.table.cellrenderer.Default.call(this);if(d){this.setCellRendererFactoryFunction(d);};},properties:{cellRendererFactoryFunction:{check:a,nullable:true,init:null}},members:{createDataCellHtml:function(e,h){var g=this.getCellRendererFactoryFunction();if(!g){throw new Error(b);};var f=g(e);return f.createDataCellHtml(e,h);}}});})();(function(){var a="Boolean",b="px",c="nowrap",d="_applyWrap",f="-1",g="_applyMinimalLineHeight",h="Integer",i="textarea",j="auto",k="0",l="mousewheel",m="-9999px",n="input",o="whiteSpace",p="visible",q="y",r="browser.documentmode",s="",t="width",u="_applyAutoSize",v="appear",w="tabIndex",x='name',y='autoSize is ignored when the height property is set. If you want to set an initial height, use the minHeight property instead.',z="normal",A="mshtml",B="engine.name",C="qx.ui.form.TextArea",D="webkit",E='id',F="hidden",G="overflowY",H="absolute";qx.Class.define(C,{extend:qx.ui.form.AbstractField,construct:function(I){qx.ui.form.AbstractField.call(this,I);this.initWrap();this.addListener(l,this._onMousewheel,this);},properties:{wrap:{check:a,init:true,apply:d},appearance:{refine:true,init:i},singleStep:{check:h,init:20},minimalLineHeight:{check:h,apply:g,init:4},autoSize:{check:a,apply:u,init:false}},members:{__rR:null,__rS:null,__rT:null,setValue:function(J){J=qx.ui.form.AbstractField.prototype.setValue.call(this,J);this.__rU();return J;},_onMousewheel:function(e){var L=this.getContentElement();var scrollY=L.getScrollY();if(qx.event.handler.MouseEmulation.ON){L.scrollToY(scrollY+e.getWheelDelta(q));}else {L.scrollToY(scrollY+e.getWheelDelta(q)*this.getSingleStep());};var K=L.getScrollY();if(K!=scrollY){e.stop();};},__rU:function(){if(this.isAutoSize()){var O=this.__rV();if(O&&this.getBounds()){this.__rT=this.__rT||this._getAreaHeight();var Q=this._getScrolledAreaHeight();if(this.getMaxHeight()){var M=this.getInsets();var N=-M.top+this.getMaxHeight()-M.bottom;if(Q>N){this.getContentElement().setStyle(G,j);}else {this.getContentElement().setStyle(G,F);};};var P=Math.max(Q,this.__rT);this._setAreaHeight(P);}else {this.getContentElement().addListenerOnce(v,function(){this.__rU();},this);};};},_getAreaHeight:function(){return this.getInnerSize().height;},_setAreaHeight:function(R){if(this._getAreaHeight()!==R){this.__rS=R;qx.ui.core.queue.Layout.add(this);qx.ui.core.queue.Manager.flush();this.__rY();};},_getScrolledAreaHeight:function(){var T=this.__rV();var S=T.getDomElement();if(S){if(!S.parentNode){qx.html.Element.flush();return this._getScrolledAreaHeight();};if(qx.core.Environment.get(B)===D||(qx.core.Environment.get(B)==A)){T.setWrap(!this.getWrap(),true);};T.setWrap(this.getWrap(),true);if(qx.core.Environment.get(B)===D||(qx.core.Environment.get(B)==A)){S.style.overflow=F;};if(qx.core.Environment.get(B)==A&&qx.core.Environment.get(r)>=8){S.style.overflow=p;S.style.overflowX=F;};T.setValue(this.getValue()||s);if(qx.core.Environment.get(B)==A){S.style.height=j;qx.html.Element.flush();S.style.height=k;};this.__rX(T);if(qx.core.Environment.get(B)==A&&qx.core.Environment.get(r)==8){if(!S.scrollTop){qx.html.Element.flush();};};return S.scrollTop;};},__rV:function(){this.__rR=this.__rR||this.__rW();return this.__rR;},__rW:function(){var W,V,X,U;W=this.getContentElement();if(!W.getDomElement()){return null;};X=qx.bom.Element.clone(W.getDomElement());U=new qx.html.Input(i);U.useElement(X);V=U;V.setStyles({position:H,top:0,left:m,height:0,overflow:F},true);V.removeAttribute(E);V.removeAttribute(x);V.setAttribute(w,f);V.setValue(W.getValue()||s);V.insertBefore(W);this.__rX(V);return V;},__rX:function(Y){Y=Y.getDomElement();if(Y){Y.scrollTop=10000;};},_createInputElement:function(){return new qx.html.Input(i,{overflowX:j,overflowY:j});},_applyWrap:function(bc,ba){this.getContentElement().setWrap(bc);if(this._placeholder){var bb=bc?z:c;this._placeholder.setStyle(o,bb);};this.__rU();},_applyMinimalLineHeight:function(){qx.ui.core.queue.Layout.add(this);},_applyAutoSize:function(be,bd){{};if(be){this.__rU();this.addListener(n,this.__rU,this);if(!this.getBounds()){this.addListenerOnce(v,function(){this.getContentElement().setStyle(G,F);});}else {this.getContentElement().setStyle(G,F);};}else {this.removeListener(n,this.__rU);this.getContentElement().setStyle(G,j);};},_applyDimension:function(bf){qx.ui.form.AbstractField.prototype._applyDimension.call(this);{};if(bf===this.getMaxHeight()){this.__rU();};},__rY:function(){var content=this.getContentElement();var bh=content.getDomElement();var bg=content.getStyle(t);content.setStyle(t,parseInt(bg,10)+1000+b,true);if(bh){qx.bom.element.Dimension.getWidth(bh);};content.setStyle(t,bg,true);},__sa:function(){if(this.isAutoSize()&&this.getHeight()){this.warn(y);};},_getContentHint:function(){var bi=qx.ui.form.AbstractField.prototype._getContentHint.call(this);bi.height=bi.height*this.getMinimalLineHeight();bi.width=this._getTextSize().width*20;if(this.isAutoSize()){bi.height=this.__rS||bi.height;};return bi;}},destruct:function(){this.setAutoSize(false);if(this.__rR){this.__rR.dispose();};}});})();(function(){var a="complete",b="0%",c="progressbar",d="change",e="progress",f="qx.ui.indicator.ProgressBar",g="qx.event.type.Event",h="%",i="qx.event.type.Data";qx.Class.define(f,{extend:qx.ui.container.Composite,construct:function(k,j){qx.ui.container.Composite.call(this);this._createChildControl(e);this.setLayout(new qx.ui.layout.HBox());if(j!=null){this.setMaximum(j);};if(k!=null){this.setValue(k);};},properties:{appearance:{refine:true,init:c}},events:{complete:g,change:i},members:{__sb:0,__sc:100,getValue:function(){return this.__sb;},setValue:function(m){var l=this.getMaximum();if(!qx.lang.Type.isNumber(m)||!isFinite(m)){return null;};if(m<0){m=0;};if(m>l){m=l;};this.__sb=m;this._changeProgress(m/l);return m;},getMaximum:function(){return this.__sc;},setMaximum:function(o){var n=o;var p=this.getValue();if(!qx.lang.Type.isNumber(n)||!isFinite(n)||n<=0){return null;};if(n<p){n=p;};this.__sc=n;this._changeProgress(p/n);return n;},_createChildControlImpl:function(s,r){var q;switch(s){case e:q=new qx.ui.container.Composite(new qx.ui.layout.Canvas());this._add(q,{width:b});break;};return q||qx.ui.container.Composite.prototype._createChildControlImpl.call(this,s);},_changeProgress:function(v){var u=this.getChildControl(e);var t=Math.floor(v*100);var w=parseInt(u.getLayoutProperties().width,10);u.setLayoutProperties({width:t+h});if(t!=w){this.fireDataEvent(d,t,w);};if(t===100){this.fireEvent(a);};}}});})();(function(){var a="com.zenesis.qx.upload.MParameters",b="string",c="";qx.Mixin.define(a,{members:{__sd:null,setParam:function(name,d){if(d!==null&&typeof d!=b)d=c+d;if(!this.__sd)this.__sd={};this.__sd[name]=d;},getParam:function(name){return this.__sd&&this.__sd[name];},getParamNames:function(){var e=[];if(this.__sd)for(var name in this.__sd)e.push(name);return e;}}});})();(function(){var a="com.zenesis.qx.upload.MUploadButton";qx.Mixin.define(a,{include:[com.zenesis.qx.upload.MParameters],members:{capture:qx.lang.Function.empty,releaseCapture:qx.lang.Function.empty}});})();(function(){var a="com.zenesis.qx.upload.UploadButton";qx.Class.define(a,{extend:qx.ui.form.Button,include:[com.zenesis.qx.upload.MUploadButton],members:{}});})();(function(){var a="function",b="Boolean",c="px",d="changeInputNamePrefix",e="_applyMultiple",f="gecko",g="changeUploadUrl",h='-',i="com.zenesis.qx.upload.UploadMgr",j="qx.event.type.Data",k="change",l="Changing the requireMultipartFormData property of ",m="changeRequireMultipartFormData",n="String",o="resize",p="changeAutoUpload",q="",r=" has no effect once uploads have started",s="appear",t="_applyRequireMultipartFormData",u="uploadMgrInput",v="keydown",w="engine.name",x="overflow",y="_applyAutoUpload",z="hidden",A="changeMultiple";qx.Class.define(i,{extend:qx.core.Object,include:[com.zenesis.qx.upload.MParameters],construct:function(B,C){qx.core.Object.call(this);this.__se={};if(B)this.addWidget(B);if(C)this.setUploadUrl(C);},events:{"addFile":j,"beginUpload":j,"completeUpload":j,"cancelUpload":j},properties:{uploadUrl:{check:n,nullable:false,init:q,event:g},autoUpload:{check:b,init:true,nullable:false,event:p,apply:y},multiple:{check:b,init:true,nullable:false,event:A,apply:e},inputNamePrefix:{check:n,init:u,nullable:false,event:d},requireMultipartFormData:{check:b,init:true,nullable:false,event:m,apply:t}},members:{__se:null,__sf:0,__sg:null,addWidget:function(D){var F=D.addListenerOnce(s,function(H){var I=this.__se[D.toHashCode()];if(I){I.appearId=null;if(D.getContainerElement){var G=D.getContainerElement();G.setStyle(x,z);G.addAt(this._createInputElement(D),0);};this.__sh(D);};},this);var E=null;if(qx.core.Environment.get(w)!=f){E=D.addListener(v,function(J){var K=this.__se[D.toHashCode()];if(K&&K.inputElement){var L=K.inputElement.getDomElement();if(L&&typeof L.click==a){L.click();};};},this);};this.__se[D.toHashCode()]={appearId:F,keydownId:E,widget:D,inputElement:null};D.addListener(o,function(M){this.__sh(D);},this);},removeWidget:function(N){var O=this.__se[N.toHashCode()];if(O){if(O.appearId)N.removeListener(O.appearId);if(O.keydownId)N.removeListener(O.keydownId);delete this.__se[N.toHashCode()];};},__sh:function(P){var Q=this.__se[P.toHashCode()];if(Q&&Q.inputElement){var R=P.getBounds();Q.inputElement.setStyles({width:R.width+c,height:R.height+c});};},_applyAutoUpload:function(S,T){this.getUploadHandler().beginUploads();},_applyMultiple:function(W,X){for(var U in this.__se){var V=this.__se[U];if(V.inputElement)V.inputElement.setMultiple(W);};},_applyRequireMultipartFormData:function(Y,ba){if(this.__sg)throw new Error(l+this+r);},cancel:function(bb){this.getUploadHandler().cancel(bb);},cancelAll:function(){this.getUploadHandler().cancelAll();},_createInputElement:function(bc){var bd=this.__se[bc.toHashCode()],name=this.getInputNamePrefix()+h+( ++this.__sf);qx.core.Assert.assertNull(bd.inputElement);var be=bd.inputElement=new com.zenesis.qx.upload.InputElement(bc,this.getMultiple(),name);be.addListenerOnce(k,qx.lang.Function.bind(this._onInputChange,this,be));return be;},_resetInputElement:function(bg){var bf=this.__se[bg.toHashCode()],bi=bf.inputElement,bh=bg.getContainerElement();bf.inputElement=null;bh.remove(bi);bh.addAt(this._createInputElement(bg),0);},_onInputChange:function(bl,bk){var bj=bl.getWidget();this.getUploadHandler().addFile(bl.getDomElement(),bj);if(this.getAutoUpload())this.getUploadHandler().beginUploads();this._resetInputElement(bj);},getUploadHandler:function(){if(!this.__sg){if(com.zenesis.qx.upload.XhrHandler.isSupported(this.isRequireMultipartFormData()))this.__sg=new com.zenesis.qx.upload.XhrHandler(this);else this.__sg=new com.zenesis.qx.upload.FormHandler(this);};return this.__sg;}}});})();(function(){var a='browser.name',b='input',c=' ',d='200%',e="Boolean",f='browser.version',g="_applyMultiple",h='0px',i="true",j='118px',k='ie',l='file',m="pointer",n='100%',o='alpha(opacity=0)',p='Arial',q="multiple",r="com.zenesis.qx.upload.InputElement",s="absolute";qx.Class.define(r,{extend:qx.html.Element,construct:function(t,u,name){var v={position:s,cursor:m,hideFocus:i,zIndex:t.getZIndex()+11,opacity:0,top:h,right:h,fontFamily:p,fontSize:j};if((qx.core.Environment&&qx.core.Environment.get(a)==k&&qx.core.Environment.get(f)<9)||(!qx.core.Environment&&qx.bom.client.Engine.MSHTML&&qx.bom.client.Engine.VERSION<9.0)){v.filter=o;v.width=d;v.height=n;};qx.html.Element.call(this,b,v,{type:l,name:name,title:c});this.__lr=t;this.setMultiple(!!u);},properties:{multiple:{init:false,check:e,apply:g}},members:{__lr:null,getWidget:function(){return this.__lr;},_applyMultiple:function(w,x){if(w)this.setAttribute(q,q);else this.removeAttribute(q);}}});})();(function(){var a="changeMaxConnections",b="uploaded",c="completeUpload",d="beginUpload",e="addFile",f="cancelUpload",g="see com.zenesis.qx.upload.UploadMgr.setParam or com.zenesis.qx.upload.File.setParam",h="com.zenesis.qx.upload.AbstractHandler",j="uploading",k="cancelled",l="see com.zenesis.qx.upload.UploadMgr.getParam or com.zenesis.qx.upload.File.getParam",m="Integer",n="function";qx.Class.define(h,{extend:qx.core.Object,construct:function(o){qx.core.Object.call(this);qx.core.Assert.assertNotNull(o);this.__ed=[];this.__si=[];this.__sd={};this.__sj=o;},properties:{maxConnections:{check:m,init:5,nullable:false,event:a}},members:{__sk:0,__sj:null,__ed:null,__si:null,__sd:null,addFile:function(r,q){var p=this._createFile(r);if(!qx.lang.Type.isArray(p)){p.setUploadWidget(q);this._addFile(p);}else for(var i=0;i<p.length;i++ ){p[i].setUploadWidget(q);this._addFile(p[i]);};},_addFile:function(s){this.__ed.push(s);this.__sj.fireDataEvent(e,s);},beginUploads:function(){while(this.__ed.length>0&&this.__si.length<this.getMaxConnections()){var t=this.__ed.shift();this.__si.push(t);this.__sj.fireDataEvent(d,t);t.setState(j);this._doUpload(t);};},cancel:function(v){var u=this.__si.length>0;this._cancel(v);if(u&&this.__sj.getAutoUpload())this.beginUploads();},cancelAll:function(){for(var w=this.__si,i=0;i<w.length;i++ )this._cancel(w[i]);this.__si.splice(0,this.__si.length);this.__ed.splice(0,this.__ed.length);},_cancel:function(A){var y=false;for(var z=this.__si,i=0;i<z.length;i++ )if(z[i]==A){z.splice(i,1);y=true;break;};for(var x=this.__ed,i=0;i<x.length;i++ )if(x[i]==A){x.splice(i,1);break;};A.setState(k);if(y)this._doCancel(A);this.__sj.fireDataEvent(f,A);},_onCompleted:function(D,C){var B=this.__si;for(var i=0;i<B.length;i++ )if(B[i]==D){B.splice(i,1);break;};D.setResponse(C);if(D.getState()==j){D.setState(b);this.__sj.fireDataEvent(c,D);};this.beginUploads();},_getUploader:function(){return this.__sj;},_getUniqueFileId:function(){return ++this.__sk;},addParam:function(E,F){qx.log.Logger.deprecatedMethodWarning(arguments.callee,g);this.__sd[E]=F;},getParams:function(){qx.log.Logger.deprecatedMethodWarning(arguments.callee,l);return this.__sd;},_getMergedParams:function(H){var J={};for(var name in this.__sd){var I=this.__sd[name];if(I!==null)J[name]=I;};function G(K){var L=K.getParamNames();for(var i=0;i<L.length;i++ ){var name=L[i],M=K.getParam(name);if(M!==null)J[name]=M;else delete J[name];};};G(this.__sj);if(typeof H.getParamNames==n)G(H.getUploadWidget());G(H);return J;},_createFile:function(N){},_doUpload:function(O){},_doCancel:function(P){}}});})();(function(){var a="--------FormData",b="--",c="application/octet-stream",d="file",f="X-Requested-With",g="function",h="Content-Type: ",j="upload-",k='multiple',l="\"\r\n",m="",n="Content-Type",o='file',p="Content-Disposition: form-data; name=\"file\"; filename=\"",q="multipart/form-data; boundary=",r="\r\n",s="XMLHttpRequest",t='input',u="\r\n\r\n",v="POST",w="com.zenesis.qx.upload.XhrHandler",x="No files found to upload via XhrHandler",y="\";\r\n\r\n",z="Content-Disposition: form-data; name=\"",A="undefined",B="X-File-Name",C="object";qx.Class.define(w,{extend:com.zenesis.qx.upload.AbstractHandler,members:{_createFile:function(I){var K=I.files;if(!K||!K.length)this.debug(x);var D=[];for(var i=0;i<K.length;i++ ){var E=K[i];var J=j+this._getUniqueFileId(),F=typeof E.name!=A?E.name:E.fileName,H=new com.zenesis.qx.upload.File(E,F,J),G=typeof E.size!=A?E.size:E.fileSize;H.setSize(G);D.push(H);};return D;},_doUpload:function(Q){var O=new XMLHttpRequest();var self=this;Q.setUserData(w,O);O.upload.onprogress=function(e){if(e.lengthComputable){Q.setSize(e.total);Q.setProgress(e.loaded);};};O.onreadystatechange=function(){if(O.readyState==4){var V=O.responseText;Q.setUserData(w,null);self._onCompleted(Q,V);};};if(typeof FormData==g||typeof FormData==C){var P=new FormData();var S=this._getUploader().getUploadUrl(),T=this._getMergedParams(Q);for(var name in T)P.append(name,encodeURIComponent(T[name]));P.append(d,Q.getBrowserObject());O.open(v,S,true);O.setRequestHeader(f,s);O.setRequestHeader(B,encodeURIComponent(Q.getFilename()));O.send(P);}else {var M=Q.getBrowserObject();var U=a+Math.random(),L=m,S=this._getUploader().getUploadUrl(),T=this._getMergedParams(Q);for(var name in T){L+=b+U+r;L+=z+name+y;L+=T[name]+r;};L+=b+U+r;L+=p+Q.getFilename()+l;L+=h+(M.type||c)+u;function N(W){L+=W+r;L+=b+U+b;O.open(v,S,true);O.setRequestHeader(f,s);O.setRequestHeader(B,encodeURIComponent(Q.getFilename()));O.setRequestHeader(n,q+U);O.send(L);};if(typeof M.getAsBinary==g){N(M.getAsBinary());}else {var R=new FileReader();R.onload=function(X){N(X.target.result);};R.readAsBinaryString(M);};};},_doCancel:function(ba){var Y=ba.getUserData(w);if(Y){Y.abort();ba.setUserData(w,null);};}},statics:{isSupported:function(bc){var bd=document.createElement(t);bd.type=o;var bb=k in bd&&typeof File!=A&&typeof (new XMLHttpRequest()).upload!=A;return bb;}}});})();(function(){var a="uploaded",b="changeSize",c="",d="changeId",e="changeResponse",f="changeFilename",g="string",h="changeState",i="com.zenesis.qx.upload.File",j="_applyState",k="changeUploadWidget",l="cancelled",m="uploading",n="Integer",o="not-started",p="String",q="changeProgress";qx.Class.define(i,{extend:qx.core.Object,construct:function(r,t,s){qx.core.Object.call(this);qx.core.Assert.assertNotNull(r);qx.core.Assert.assertNotNull(t);qx.core.Assert.assertNotNull(s);this.__sl=r;this.setFilename(t);this.setId(s);},properties:{filename:{check:p,nullable:false,event:f},id:{check:p,nullable:false,event:d},size:{check:n,nullable:false,init:-1,event:b},progress:{check:n,nullable:false,init:0,event:q},state:{check:[o,m,l,a],nullable:false,init:o,event:h,apply:j},response:{init:null,nullable:true,check:p,event:e},uploadWidget:{init:null,nullable:true,event:k}},members:{__sl:null,__sd:null,setParam:function(name,u){if(u!==null&&typeof u!=g)u=c+u;if(!this.__sd)this.__sd={};this.__sd[name]=u;},getParam:function(name){return this.__sd&&this.__sd[name];},getParamNames:function(){var v=[];if(this.__sd)for(var name in this.__sd)v.push(name);return v;},getBrowserObject:function(){return this.__sl;},_applyState:function(w,x){qx.core.Assert.assertTrue((!x&&w==o)||(x==o&&(w==l||w==m))||(x==m&&(w==l||w==a)));}}});})();(function(){var a='input',b="com.zenesis.qx.upload.FormHandler",c="",d="POST",f='none',g='src',h="upload-iframe-",i="form",j="javascript:false;",k="load",l="iframe",m="hidden",n="upload-form-",o="false",p="upload-",q="multipart/form-data",r='javascript:false;';qx.Class.define(b,{extend:com.zenesis.qx.upload.AbstractHandler,members:{_createFile:function(s){var t=p+this._getUniqueFileId(),v=s.value.replace(/.*(\/|\\)/,c),u=new com.zenesis.qx.upload.File(s,v,t);return u;},_doUpload:function(y){var w=this._createIframe(y.getId()),x=this._createForm(w,y);x.appendChild(y.getBrowserObject());var self=this;qx.bom.Event.addNativeListener(w,k,function(z){if(!w.parentNode)return;try{if(w.contentDocument&&w.contentDocument.body&&w.contentDocument.body.innerHTML==o){return;};}catch(e){};var A=self._getIframeContent(w);self._onCompleted(y,A);setTimeout(function(){w.parentNode.removeChild(w);x.parentNode.removeChild(x);},1);});x.submit();},_doCancel:function(B){var C=B.getUserData(b);if(!C)return;var D=document.getElementById(h+B.getId()),E=document.getElementById(n+B.getId());if(D!=null){D.setAttribute(g,r);D.parentNode.removeChild(D);};if(E!=null)E.parentNode.removeChild(E);},_getIframeContent:function(H){try{var F=H.contentDocument?H.contentDocument:H.contentWindow.document,G=F.body.innerHTML;return G;}catch(e){return null;};},_createIframe:function(I){var J=qx.dom.Element.create(l,{src:j,name:I,id:h+I});qx.bom.element.Style.setStyles(J,{display:f});document.body.appendChild(J);return J;},_createForm:function(L,O){var M=qx.dom.Element.create(i,{enctype:q,encoding:q,action:this._getUploader().getUploadUrl(),method:d,target:L.name,id:n+O.getId()});qx.bom.element.Style.setStyles(M,{display:f});var N=this._getMergedParams(O);for(var name in N){var K=qx.dom.Element.create(a,{type:m,name:name,value:N[name]});M.appendChild(K);};document.body.appendChild(M);return M;}}});})();(function(){var a="resize",b="qx.ui.groupbox.GroupBox",c="groupbox",d="frame",f="legend",g="top",h="middle",i="_applyLegendPosition";qx.Class.define(b,{extend:qx.ui.core.Widget,include:[qx.ui.core.MRemoteChildrenHandling,qx.ui.core.MRemoteLayoutHandling,qx.ui.core.MContentPadding,qx.ui.form.MForm],implement:[qx.ui.form.IForm],construct:function(j,k){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.Canvas);this._createChildControl(d);this._createChildControl(f);if(j!=null){this.setLegend(j);};if(k!=null){this.setIcon(k);};},properties:{appearance:{refine:true,init:c},legendPosition:{check:[g,h],init:h,apply:i,themeable:true}},members:{_forwardStates:{invalid:true},_createChildControlImpl:function(n,m){var l;switch(n){case d:l=new qx.ui.container.Composite();this._add(l,{left:0,top:6,right:0,bottom:0});break;case f:l=new qx.ui.basic.Atom();l.addListener(a,this._repositionFrame,this);this._add(l,{left:0,right:0});break;};return l||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,n);},_getContentPaddingTarget:function(){return this.getChildControl(d);},_applyLegendPosition:function(e){if(this.getChildControl(f).getBounds()){this._repositionFrame();};},_repositionFrame:function(){var p=this.getChildControl(f);var o=this.getChildControl(d);var q=p.getBounds().height;if(this.getLegendPosition()==h){o.setLayoutProperties({"top":Math.round(q/2)});}else if(this.getLegendPosition()==g){o.setLayoutProperties({"top":q});};},getChildrenContainer:function(){return this.getChildControl(d);},setLegend:function(s){var r=this.getChildControl(f);if(s!==null){r.setLabel(s);r.show();}else {r.exclude();};},getLegend:function(){return this.getChildControl(f).getLabel();},setIcon:function(t){this.getChildControl(f).setIcon(t);},getIcon:function(){return this.getChildControl(f).getIcon();}}});})();(function(){var a="bottom",b="button",c="qx.event.type.Data",d="lastTab",f="barRight",g="beforeChangeSelection",h="close-button",j="changeSelection",k="bar",m="Index should be less than : ",n="tabview",o="vertical",p="page",q="close",r="_applyBarPosition",s="barLeft",t="__sn",u="top",v="horizontal",w="qx.ui.tabview.TabView",x="right",y="barTop",z="barBottom",A="pane",B="left",C="firstTab";qx.Class.define(w,{extend:qx.ui.core.Widget,implement:qx.ui.core.ISingleSelection,include:[qx.ui.core.MContentPadding],construct:function(E){qx.ui.core.Widget.call(this);this.__sm={top:y,right:f,bottom:z,left:s};this._createChildControl(k);this._createChildControl(A);var D=this.__sn=new qx.ui.form.RadioGroup;D.setWrap(false);D.addListener(j,this._onChangeSelection,this);if(E!=null){this.setBarPosition(E);}else {this.initBarPosition();};},events:{"changeSelection":c},properties:{appearance:{refine:true,init:n},barPosition:{check:[B,x,u,a],init:u,apply:r}},members:{__sn:null,_createChildControlImpl:function(H,G){var F;switch(H){case k:F=new qx.ui.container.SlideBar();F.setZIndex(10);this._add(F);break;case A:F=new qx.ui.container.Stack;F.setZIndex(5);this._add(F,{flex:1});break;};return F||qx.ui.core.Widget.prototype._createChildControlImpl.call(this,H);},_getContentPaddingTarget:function(){return this.getChildControl(A);},add:function(M){{};var I=M.getButton();var J=this.getChildControl(k);var L=this.getChildControl(A);M.exclude();J.add(I);L.add(M);this.__sn.add(I);M.addState(this.__sm[this.getBarPosition()]);M.addState(d);var K=this.getChildren();if(K[0]==M){M.addState(C);}else {K[K.length-2].removeState(d);};M.addListener(q,this._onPageClose,this);},addAt:function(Q,N){{};var S=this.getChildren();if(!(N==null)&&N>S.length){throw new Error(m+S.length);};if(N==null){N=S.length;};var P=Q.getButton();var O=this.getChildControl(k);var R=this.getChildControl(A);Q.exclude();O.addAt(P,N);R.addAt(Q,N);this.__sn.add(P);Q.addState(this.__sm[this.getBarPosition()]);S=this.getChildren();if(N==S.length-1){Q.addState(d);};if(S[0]==Q){Q.addState(C);}else {S[S.length-2].removeState(d);};Q.addListener(q,this._onPageClose,this);},remove:function(W){var X=this.getChildControl(A);var U=this.getChildControl(k);var V=W.getButton();var Y=X.getChildren();if(this.getSelection()[0]==W){var T=Y.indexOf(W);if(T==0){if(Y[1]){this.setSelection([Y[1]]);}else {this.resetSelection();};}else {this.setSelection([Y[T-1]]);};};U.remove(V);X.remove(W);this.__sn.remove(V);W.removeState(this.__sm[this.getBarPosition()]);if(W.hasState(C)){W.removeState(C);if(Y[0]){Y[0].addState(C);};};if(W.hasState(d)){W.removeState(d);if(Y.length>0){Y[Y.length-1].addState(d);};};W.removeListener(q,this._onPageClose,this);},getChildren:function(){return this.getChildControl(A).getChildren();},indexOf:function(ba){return this.getChildControl(A).indexOf(ba);},__sm:null,_applyBarPosition:function(be,bg){var bb=this.getChildControl(k);var bh=this.getChildControl(A);var bj=be==B||be==x;var bk=be==x||be==a;var bi=bj?qx.ui.layout.HBox:qx.ui.layout.VBox;var bl=this._getLayout();if(bl&&bl instanceof bi){}else {this._setLayout(bl=new bi);};bl.setReversed(bk);bb.setOrientation(bj?o:v);var bf=this.getChildren();if(bg){var bd=this.__sm[bg];bb.removeState(bd);bh.removeState(bd);for(var i=0,l=bf.length;i<l;i++ ){bf[i].removeState(bd);};};if(be){var bc=this.__sm[be];bb.addState(bc);bh.addState(bc);for(var i=0,l=bf.length;i<l;i++ ){bf[i].addState(bc);};};},getSelection:function(){var bm=this.__sn.getSelection();var bn=[];for(var i=0;i<bm.length;i++ ){bn.push(bm[i].getUserData(p));};return bn;},setSelection:function(bp){var bo=[];for(var i=0;i<bp.length;i++ ){bo.push(bp[i].getChildControl(b));};this.__sn.setSelection(bo);},resetSelection:function(){this.__sn.resetSelection();},isSelected:function(bq){var br=bq.getChildControl(b);return this.__sn.isSelected(br);},isSelectionEmpty:function(){return this.__sn.isSelectionEmpty();},getSelectables:function(bt){var bs=this.__sn.getSelectables(bt);var bu=[];for(var i=0;i<bs.length;i++ ){bu.push(bs[i].getUserData(p));};return bu;},_onChangeSelection:function(e){var bz=this.getChildControl(A);var bw=e.getData()[0];var by=e.getOldData()[0];var bx=[];var bv=[];if(bw){bx=[bw.getUserData(p)];bz.setSelection(bx);bw.focus();this.scrollChildIntoView(bw,null,null,false);}else {bz.resetSelection();};if(by){bv=[by.getUserData(p)];};this.fireDataEvent(j,bx,bv);},_onBeforeChangeSelection:function(e){if(!this.fireNonBubblingEvent(g,qx.event.type.Event,[false,true])){e.preventDefault();};},_onRadioChangeSelection:function(e){var bA=e.getData()[0];if(bA){this.setSelection([bA.getUserData(p)]);}else {this.resetSelection();};},_onPageClose:function(e){var bC=e.getTarget();var bB=bC.getButton().getChildControl(h);bB.reset();this.remove(bC);}},destruct:function(){this._disposeObjects(t);this.__sm=null;}});})();(function(){var a="_applyAllowEmptySelection",b="_applyInvalidMessage",c="qx.ui.form.RadioGroup",d="Boolean",f="_applyValid",g="",h="changeRequired",j="changeValid",k="changeEnabled",m="changeInvalidMessage",n="changeSelection",o="changeValue",p="__so",q="_applyEnabled",r="String";qx.Class.define(c,{extend:qx.core.Object,implement:[qx.ui.core.ISingleSelection,qx.ui.form.IForm,qx.ui.form.IModelSelection],include:[qx.ui.core.MSingleSelectionHandling,qx.ui.form.MModelSelection],construct:function(s){qx.core.Object.call(this);this.__so=[];this.addListener(n,this.__pJ,this);if(s!=null){this.add.apply(this,arguments);};},properties:{enabled:{check:d,apply:q,event:k,init:true},wrap:{check:d,init:true},allowEmptySelection:{check:d,init:false,apply:a},valid:{check:d,init:true,apply:f,event:j},required:{check:d,init:false,event:h},invalidMessage:{check:r,init:g,event:m,apply:b},requiredInvalidMessage:{check:r,nullable:true,event:m}},members:{__so:null,getItems:function(){return this.__so;},add:function(u){var v=this.__so;var t;for(var i=0,l=arguments.length;i<l;i++ ){t=arguments[i];if(qx.lang.Array.contains(v,t)){continue;};t.addListener(o,this._onItemChangeChecked,this);v.push(t);t.setGroup(this);if(t.getValue()){this.setSelection([t]);};};if(!this.isAllowEmptySelection()&&v.length>0&&!this.getSelection()[0]){this.setSelection([v[0]]);};},remove:function(w){var x=this.__so;if(qx.lang.Array.contains(x,w)){qx.lang.Array.remove(x,w);if(w.getGroup()===this){w.resetGroup();};w.removeListener(o,this._onItemChangeChecked,this);if(w.getValue()){this.resetSelection();};};},getChildren:function(){return this.__so;},_onItemChangeChecked:function(e){var y=e.getTarget();if(y.getValue()){this.setSelection([y]);}else if(this.getSelection()[0]==y){this.resetSelection();};},_applyInvalidMessage:function(A,z){for(var i=0;i<this.__so.length;i++ ){this.__so[i].setInvalidMessage(A);};},_applyValid:function(C,B){for(var i=0;i<this.__so.length;i++ ){this.__so[i].setValid(C);};},_applyEnabled:function(F,E){var D=this.__so;if(F==null){for(var i=0,l=D.length;i<l;i++ ){D[i].resetEnabled();};}else {for(var i=0,l=D.length;i<l;i++ ){D[i].setEnabled(F);};};},_applyAllowEmptySelection:function(H,G){if(!H&&this.isSelectionEmpty()){this.resetSelection();};},selectNext:function(){var J=this.getSelection()[0];var K=this.__so;var I=K.indexOf(J);if(I==-1){return;};var i=0;var length=K.length;if(this.getWrap()){I=(I+1)%length;}else {I=Math.min(I+1,length-1);};while(i<length&&!K[I].getEnabled()){I=(I+1)%length;i++ ;};this.setSelection([K[I]]);},selectPrevious:function(){var M=this.getSelection()[0];var N=this.__so;var L=N.indexOf(M);if(L==-1){return;};var i=0;var length=N.length;if(this.getWrap()){L=(L-1+length)%length;}else {L=Math.max(L-1,0);};while(i<length&&!N[L].getEnabled()){L=(L-1+length)%length;i++ ;};this.setSelection([N[L]]);},_getItems:function(){return this.getItems();},_isAllowEmptySelection:function(){return this.isAllowEmptySelection();},_isItemSelectable:function(O){return this.__so.indexOf(O)!=-1;},__pJ:function(e){var Q=e.getData()[0];var P=e.getOldData()[0];if(P){P.setValue(false);};if(Q){Q.setValue(true);};}},destruct:function(){this._disposeArray(p);}});})();(function(){var a="_applyDynamic",b="changeSelection",c="Boolean",d="qx.ui.container.Stack";qx.Class.define(d,{extend:qx.ui.core.Widget,implement:qx.ui.core.ISingleSelection,include:[qx.ui.core.MSingleSelectionHandling,qx.ui.core.MChildrenHandling],construct:function(){qx.ui.core.Widget.call(this);this._setLayout(new qx.ui.layout.Grow);this.addListener(b,this.__pJ,this);},properties:{dynamic:{check:c,init:false,apply:a}},members:{_applyDynamic:function(g){var j=this._getChildren();var f=this.getSelection()[0];var h;for(var i=0,l=j.length;i<l;i++ ){h=j[i];if(h!=f){if(g){j[i].exclude();}else {j[i].hide();};};};},_getItems:function(){return this.getChildren();},_isAllowEmptySelection:function(){return true;},_isItemSelectable:function(k){return true;},__pJ:function(e){var m=e.getOldData()[0];var n=e.getData()[0];if(m){if(this.isDynamic()){m.exclude();}else {m.hide();};};if(n){n.show();};},_afterAddChild:function(p){var o=this.getSelection()[0];if(!o){this.setSelection([p]);}else if(o!==p){if(this.isDynamic()){p.exclude();}else {p.hide();};};},_afterRemoveChild:function(q){if(this.getSelection()[0]===q){var r=this._getChildren()[0];if(r){this.setSelection([r]);}else {this.resetSelection();};};},previous:function(){var u=this.getSelection()[0];var s=this._indexOf(u)-1;var v=this._getChildren();if(s<0){s=v.length-1;};var t=v[s];this.setSelection([t]);},next:function(){var x=this.getSelection()[0];var w=this._indexOf(x)+1;var y=this._getChildren();var z=y[w]||y[0];this.setSelection([z]);}}});})();(function(){var a="_applyIcon",b="",c="icon",d="page",e="close",f="qx.event.type.Event",g="_applyShowCloseButton",h="tabview-page",i="qx.ui.tabview.Page",j="_applyLabel",k="button",l="String",m="Boolean";qx.Class.define(i,{extend:qx.ui.container.Composite,construct:function(n,o){qx.ui.container.Composite.call(this);this._createChildControl(k);if(n!=null){this.setLabel(n);};if(o!=null){this.setIcon(o);};},events:{"close":f},properties:{appearance:{refine:true,init:h},label:{check:l,init:b,apply:j},icon:{check:l,init:b,apply:a,nullable:true},showCloseButton:{check:m,init:false,apply:g}},members:{_forwardStates:{barTop:1,barRight:1,barBottom:1,barLeft:1,firstTab:1,lastTab:1},_applyIcon:function(r,q){var p=this.getChildControl(k);if(r){p.setIcon(r);p._showChildControl(c);}else {p._excludeChildControl(c);};},_applyLabel:function(t,s){this.getChildControl(k).setLabel(t);},_applyEnabled:function(w,v){qx.ui.container.Composite.prototype._applyEnabled.call(this,w,v);var u=this.getChildControl(k);w==null?u.resetEnabled():u.setEnabled(w);},_createChildControlImpl:function(z,y){var x;switch(z){case k:x=new qx.ui.tabview.TabButton;x.setAllowGrowX(true);x.setAllowGrowY(true);x.setUserData(d,this);x.addListener(e,this._onButtonClose,this);break;};return x||qx.ui.container.Composite.prototype._createChildControlImpl.call(this,z);},_applyShowCloseButton:function(B,A){this.getChildControl(k).setShowCloseButton(B);},_onButtonClose:function(){this.fireEvent(e);},getButton:function(){return this.getChildControl(k);}}});})();(function(){var a="qx.ui.form.IRadioItem",b="qx.event.type.Data";qx.Interface.define(a,{events:{"changeValue":b},members:{setValue:function(c){},getValue:function(){},setGroup:function(d){this.assertInstance(d,qx.ui.form.RadioGroup);},getGroup:function(){}}});})();(function(){var a="keypress",b="Boolean",c="Right",d="label",f="Left",g="_applyValue",h="changeValue",i="Up",j="value",k="qx.ui.form.RadioButton",l="radiobutton",m="toolTipText",n="enabled",o="qx.ui.form.RadioGroup",p="Down",q="_applyGroup",r="checked",s="menu",t="execute";qx.Class.define(k,{extend:qx.ui.form.Button,include:[qx.ui.form.MForm,qx.ui.form.MModelProperty],implement:[qx.ui.form.IRadioItem,qx.ui.form.IForm,qx.ui.form.IBooleanForm,qx.ui.form.IModel],construct:function(u){{};qx.ui.form.Button.call(this,u);this.addListener(t,this._onExecute);this.addListener(a,this._onKeyPress);},properties:{group:{check:o,nullable:true,apply:q},value:{check:b,nullable:true,event:h,apply:g,init:false},appearance:{refine:true,init:l},allowGrowX:{refine:true,init:false}},members:{_forwardStates:{checked:true,focused:true,invalid:true,hovered:true},_bindableProperties:[n,d,m,j,s],_applyValue:function(w,v){w?this.addState(r):this.removeState(r);},_applyGroup:function(y,x){if(x){x.remove(this);};if(y){y.add(this);};},_onExecute:function(e){var z=this.getGroup();if(z&&z.getAllowEmptySelection()){this.toggleValue();}else {this.setValue(true);};},_onKeyPress:function(e){var A=this.getGroup();if(!A){return;};switch(e.getKeyIdentifier()){case f:case i:A.selectPrevious();break;case c:case p:A.selectNext();break;};}}});})();(function(){var a="click",b="Boolean",c="icon",d="label",e="bottom",f="qx.ui.tabview.TabButton",g="center",h="_applyShowCloseButton",i="close-button",j="top",k="left",l="middle",m="close",n="right",o="qx.event.type.Data";qx.Class.define(f,{extend:qx.ui.form.RadioButton,implement:qx.ui.form.IRadioItem,construct:function(){qx.ui.form.RadioButton.call(this);var p=new qx.ui.layout.Grid(2,0);p.setRowAlign(0,k,l);p.setColumnAlign(0,n,l);this._getLayout().dispose();this._setLayout(p);this.initShowCloseButton();},events:{"close":o},properties:{showCloseButton:{check:b,init:false,apply:h}},members:{_forwardStates:{focused:true,checked:true},_applyIconPosition:function(s,q){var r={icon:this.getChildControl(c),label:this.getChildControl(d),closeButton:this.getShowCloseButton()?this.getChildControl(i):null};for(var t in r){if(r[t]){this._remove(r[t]);};};switch(s){case j:this._add(r.label,{row:3,column:2});this._add(r.icon,{row:1,column:2});if(r.closeButton){this._add(r.closeButton,{row:0,column:4});};break;case e:this._add(r.label,{row:1,column:2});this._add(r.icon,{row:3,column:2});if(r.closeButton){this._add(r.closeButton,{row:0,column:4});};break;case k:this._add(r.label,{row:0,column:2});this._add(r.icon,{row:0,column:0});if(r.closeButton){this._add(r.closeButton,{row:0,column:4});};break;case n:this._add(r.label,{row:0,column:0});this._add(r.icon,{row:0,column:2});if(r.closeButton){this._add(r.closeButton,{row:0,column:4});};break;};},_createChildControlImpl:function(w,v){var u;switch(w){case d:var u=new qx.ui.basic.Label(this.getLabel());u.setAnonymous(true);this._add(u,{row:0,column:2});this._getLayout().setColumnFlex(2,1);break;case c:u=new qx.ui.basic.Image(this.getIcon());u.setAnonymous(true);this._add(u,{row:0,column:0});break;case i:u=new qx.ui.form.Button();u.setFocusable(false);u.setKeepActive(true);u.addListener(a,this._onCloseButtonClick,this);this._add(u,{row:0,column:4});if(!this.getShowCloseButton()){u.exclude();};break;};return u||qx.ui.form.RadioButton.prototype._createChildControlImpl.call(this,w);},_onCloseButtonClick:function(){this.fireDataEvent(m,this);},_applyShowCloseButton:function(y,x){if(y){this._showChildControl(i);}else {this._excludeChildControl(i);};},_applyCenter:function(A){var z=this._getLayout();if(A){z.setColumnAlign(2,g,l);}else {z.setColumnAlign(2,k,l);};}}});})();(function(){var a="qx.ui.container.Scroll",b="pane";qx.Class.define(a,{extend:qx.ui.core.scroll.AbstractScrollArea,include:[qx.ui.core.MContentPadding],construct:function(content){qx.ui.core.scroll.AbstractScrollArea.call(this);if(content){this.add(content);};},members:{add:function(c){this.getChildControl(b).add(c);},remove:function(d){this.getChildControl(b).remove(d);},getChildren:function(){return this.getChildControl(b).getChildren();},_getContentPaddingTarget:function(){return this.getChildControl(b);}}});})();(function(){var a="-",b="default",c="/rpc",d="Calling a queued RPC directly out of async",e='end_of_req',f="Called RPC with ",g=") exception: ",h="Async(",j='',k="rare - async queued after sync!",l=":",m="frontend.Lib.RPC",n="URL for RPC is ",o="Calling a queued RPC",p="Adding session_id ",q="RpcRunning = null, ex == ";qx.Class.define(m,{extend:qx.core.Object,construct:function(){this.rpc=new qx.io.remote.Rpc();this.rpc.setTimeout(1000000);var s=document.URL.replace(/\?.*/,j).replace(/\/$/,j)+c;dbg(3,n+s);this.rpc.setUrl(s);this.session_id=b;this.RpcQueue=[];},members:{rpc:null,session_id:null,RpcRunning:null,RpcQueue:null,callRPCarray:function(v,y,t,event,z,A){if(this.RpcRunning){var x=[v,y,t,event,z,A];this.RpcQueue.unshift(x);return;};this.rpc.setServiceName(v);dbg(5,p+this.session_id);z.unshift(this.session_id);var w=this;dbg(3,f+[v,y,z.join(l)].join(a));var u=this.rpc.callAsync(function(C,B,D){dbg(3,q,B);if(B==null){C.push({cmd:e,data:j});event.call(t,C,v);rpc.RpcRunning=null;if(rpc.RpcQueue.length>0){dbg(3,o);var r=rpc.RpcQueue.pop();rpc.callRPCarray(r[0],r[1],r[2],r[3],r[4],r[5]);};}else {dbg(0,h+D+g+B);};},y,z);if(!A){this.RpcRunning=u;}else {if(rpc.RpcQueue.length>0){dbg(3,d);alert(k);var r=rpc.RpcQueue.pop();rpc.callRPCarray(r[0],r[1],r[2],r[3],r[4],r[5]);};};},callRPC:function(F,H,E,event){var G=[];for(var i=4;i<arguments.length;i++ ){if(arguments[i]!=null){G.push(arguments[i]);};};this.callRPCarray(F,H,E,event,G);}}});})();(function(){var a=")!",b=") does not match requested id ",c="Boolean",d="new Date(Date.UTC(",e="application/json",f=")",g="application/x-www-form-urlencoded",h="?instanceId=",j="Received id (",k="aborted",l="Integer",n="string",o="Object",p="qx.io.remote.Rpc",q="error",r="))",s=" error ",t='(',u="qx.event.type.Event",v="qx1",w="Local error ",x=": ",y="refreshSession",z="Application error ",A="Local time-out expired for ",B="",C="Transport error ",D=" (",E="(",F="TIMEOUT OCCURRED",G="/.qxrpc",H="completed",I="POST",J="failed",K="result",L="UNEXPECTED origin ",M="Error ",N="String",O=')',P="Content-Type",Q="2.0",R=".",S="timeout",T="Aborted ",U="Server error ",V="id",W=",";qx.Class.define(p,{extend:qx.core.Object,construct:function(X,Y){qx.core.Object.call(this);if(X!==undefined){this.setUrl(X);};if(Y!=null){this.setServiceName(Y);};if(qx.core.ServerSettings){this.__sp=qx.core.ServerSettings.serverPathSuffix;};},events:{"completed":u,"aborted":u,"failed":u,"timeout":u},statics:{origin:{server:1,application:2,transport:3,local:4},localError:{timeout:1,abort:2},CONVERT_DATES:null,RESPONSE_JSON:null,makeServerURL:function(ba){var bb=null;if(qx.core.ServerSettings){bb=qx.core.ServerSettings.serverPathPrefix+G+qx.core.ServerSettings.serverPathSuffix;if(ba!=null){bb+=h+ba;};};return bb;}},properties:{timeout:{check:l,nullable:true},crossDomain:{check:c,init:false},url:{check:N,nullable:true},serviceName:{check:N,nullable:true},serverData:{check:o,nullable:true},username:{check:N,nullable:true},password:{check:N,nullable:true},useBasicHttpAuth:{check:c,nullable:true},protocol:{init:v,check:function(bc){return bc==v||bc==Q;}}},members:{__sq:null,__sp:null,createRequest:function(){return new qx.io.remote.Request(this.getUrl(),I,e);},createRpcData:function(bi,bg,bd,bf){var bh;var be;if(this.getProtocol()==v){bh={"service":bg==y?null:this.getServiceName(),"method":bg,"id":bi,"params":bd};if(bf){bh.server_data=bf;};}else {be=this.getServiceName();if(be&&be!=B){be+=R;}else {be=B;};bh={"jsonrpc":Q,"method":be+bg,"id":bi,"params":bd};};return bh;},_callInternal:function(args,callType,refreshSession){var self=this;var offset=(callType==0?0:1);var whichMethod=(refreshSession?y:args[offset]);var handler=args[0];var argsArray=[];var eventTarget=this;var protocol=this.getProtocol();for(var i=offset+1;i<args.length; ++i){argsArray.push(args[i]);};var req=this.createRequest();var serverData=this.getServerData();var rpcData=this.createRpcData(req.getSequenceNumber(),whichMethod,argsArray,serverData);req.setCrossDomain(this.getCrossDomain());if(this.getUsername()){req.setUseBasicHttpAuth(this.getUseBasicHttpAuth());req.setUsername(this.getUsername());req.setPassword(this.getPassword());};req.setTimeout(this.getTimeout());var ex=null;var id=null;var result=null;var response=null;var handleRequestFinished=function(bk,bj){switch(callType){case 0:break;case 1:handler(result,ex,id);break;case 2:if(!ex){bj.fireDataEvent(bk,response);}else {ex.id=id;if(args[0]){bj.fireDataEvent(J,ex);}else {bj.fireDataEvent(bk,ex);};};};};var addToStringToObject=function(bl){if(protocol==v){bl.toString=function(){switch(bl.origin){case qx.io.remote.Rpc.origin.server:return U+bl.code+x+bl.message;case qx.io.remote.Rpc.origin.application:return z+bl.code+x+bl.message;case qx.io.remote.Rpc.origin.transport:return C+bl.code+x+bl.message;case qx.io.remote.Rpc.origin.local:return w+bl.code+x+bl.message;default:return (L+bl.origin+s+bl.code+x+bl.message);};};}else {bl.toString=function(){var bm;bm=M+bl.code+x+bl.message;if(bl.data){bm+=D+bl.data+f;};return bm;};};};var makeException=function(bn,bp,bo){var bq=new Object();if(protocol==v){bq.origin=bn;};bq.code=bp;bq.message=bo;addToStringToObject(bq);return bq;};req.addListener(J,function(bs){var br=bs.getStatusCode();ex=makeException(qx.io.remote.Rpc.origin.transport,br,qx.io.remote.Exchange.statusCodeToString(br));id=this.getSequenceNumber();handleRequestFinished(J,eventTarget);});req.addListener(S,function(bt){this.debug(F);ex=makeException(qx.io.remote.Rpc.origin.local,qx.io.remote.Rpc.localError.timeout,A+whichMethod);id=this.getSequenceNumber();handleRequestFinished(S,eventTarget);});req.addListener(k,function(bu){ex=makeException(qx.io.remote.Rpc.origin.local,qx.io.remote.Rpc.localError.abort,T+whichMethod);id=this.getSequenceNumber();handleRequestFinished(k,eventTarget);});req.addListener(H,function(evt){response=evt.getContent();if(!qx.lang.Type.isObject(response)){if(self._isConvertDates()){if(self._isResponseJson()){response=qx.lang.Json.parse(response,function(bv,bw){if(bw&&typeof bw===n){if(bw.indexOf(d)>=0){var m=bw.match(/new Date\(Date.UTC\((\d+),(\d+),(\d+),(\d+),(\d+),(\d+),(\d+)\)\)/);return new Date(Date.UTC(m[1],m[2],m[3],m[4],m[5],m[6],m[7]));};};return bw;});}else {response=response&&response.length>0?eval(t+response+O):null;};}else {response=qx.lang.Json.parse(response);};};id=response[V];if(id!=this.getSequenceNumber()){this.warn(j+id+b+E+this.getSequenceNumber()+a);};var eventType=H;var exTest=response[q];if(exTest!=null){result=null;addToStringToObject(exTest);ex=exTest;eventType=J;}else {result=response[K];if(refreshSession){result=eval(E+result+f);var newSuffix=qx.core.ServerSettings.serverPathSuffix;if(self.__sp!=newSuffix){self.__sq=self.__sp;self.__sp=newSuffix;};self.setUrl(self.fixUrl(self.getUrl()));};};handleRequestFinished(eventType,eventTarget);});var replacer=null;if(this._isConvertDates()){replacer=function(by,bz){bz=this[by];if(qx.lang.Type.isDate(bz)){var bx=bz.getUTCFullYear()+W+bz.getUTCMonth()+W+bz.getUTCDate()+W+bz.getUTCHours()+W+bz.getUTCMinutes()+W+bz.getUTCSeconds()+W+bz.getUTCMilliseconds();return d+bx+r;};return bz;};};req.setData(qx.lang.Json.stringify(rpcData,replacer));req.setAsynchronous(callType>0);if(req.getCrossDomain()){req.setRequestHeader(P,g);}else {req.setRequestHeader(P,e);};req.setParseJson(false);req.send();if(callType==0){if(ex!=null){var error=new Error(ex.toString());error.rpcdetails=ex;throw error;};return result;}else {return req;};},fixUrl:function(bA){if(this.__sq==null||this.__sp==null||this.__sq==B||this.__sq==this.__sp){return bA;};var bB=bA.indexOf(this.__sq);if(bB==-1){return bA;};return (bA.substring(0,bB)+this.__sp+bA.substring(bB+this.__sq.length));},callSync:function(bC){return this._callInternal(arguments,0);},callAsync:function(bD,bE){return this._callInternal(arguments,1);},callAsyncListeners:function(bF,bG){return this._callInternal(arguments,2);},refreshSession:function(bI){if(qx.core.ServerSettings&&qx.core.ServerSettings.serverPathSuffix){var bH=(new Date()).getTime()-qx.core.ServerSettings.lastSessionRefresh;if(bH/1000>(qx.core.ServerSettings.sessionTimeoutInSeconds-30)){this._callInternal([bI],1,true);}else {bI(true);};}else {bI(false);};},_isConvertDates:function(){return !!(qx.io.remote.Rpc.CONVERT_DATES);},_isResponseJson:function(){return !!(qx.io.remote.Rpc.RESPONSE_JSON);},abort:function(bJ){bJ.abort();}}});})();(function(){var a="application/xml",b="Boolean",c="application/json",d="text/html",f="application/x-www-form-urlencoded",g="qx.io.remote.Exchange",h="GET",i="Pragma",j="aborted",k="Integer",l="X-Qooxdoo-Response-Type",m="HEAD",n="qx.io.remote.Request",o="no-url-params-on-post",p="failed",q="_applyResponseType",r="_applyState",s="qx.event.type.Event",t="queued",u="text/javascript",w="changeState",x="PUT",y="_applyProhibitCaching",z="String",A="",B="sending",C="nocache",D="completed",E="qx.io.remote.Response",F="_applyMethod",G="DELETE",H="POST",I="receiving",J="boolean",K="configured",L="no-cache",M="Aborting already sent request!",N="Cache-Control",O="Content-Type",P="timeout",Q="text/plain";qx.Class.define(n,{extend:qx.core.Object,construct:function(S,R,T){qx.core.Object.call(this);this.__sr={};this.__ss={};this.__st={};this.__su={};if(S!==undefined){this.setUrl(S);};if(R!==undefined){this.setMethod(R);};if(T!==undefined){this.setResponseType(T);};this.setProhibitCaching(true);this.__sv= ++qx.io.remote.Request.__sv;},events:{"created":s,"configured":s,"sending":s,"receiving":s,"completed":E,"aborted":s,"failed":E,"timeout":E},statics:{__sv:0,methodAllowsRequestBody:function(U){return (U==H)||(U==x);}},properties:{url:{check:z,init:A},method:{check:[h,H,x,m,G],apply:F,init:h},asynchronous:{check:b,init:true},data:{check:z,nullable:true},username:{check:z,nullable:true},password:{check:z,nullable:true},state:{check:[K,t,B,I,D,j,P,p],init:K,apply:r,event:w},responseType:{check:[Q,u,c,a,d],init:Q,apply:q},timeout:{check:k,nullable:true},prohibitCaching:{check:function(v){return typeof v==J||v===o;},init:true,apply:y},crossDomain:{check:b,init:false},fileUpload:{check:b,init:false},transport:{check:g,nullable:true},useBasicHttpAuth:{check:b,init:false},parseJson:{check:b,init:true}},members:{__sr:null,__ss:null,__st:null,__su:null,__sv:null,send:function(){qx.io.remote.RequestQueue.getInstance().add(this);},abort:function(){qx.io.remote.RequestQueue.getInstance().abort(this);},reset:function(){switch(this.getState()){case B:case I:this.error(M);case t:this.abort();break;};},isConfigured:function(){return this.getState()===K;},isQueued:function(){return this.getState()===t;},isSending:function(){return this.getState()===B;},isReceiving:function(){return this.getState()===I;},isCompleted:function(){return this.getState()===D;},isAborted:function(){return this.getState()===j;},isTimeout:function(){return this.getState()===P;},isFailed:function(){return this.getState()===p;},__sw:qx.event.GlobalError.observeMethod(function(e){var V=e.clone();V.setTarget(this);this.dispatchEvent(V);}),_onqueued:function(e){this.setState(t);this.__sw(e);},_onsending:function(e){this.setState(B);this.__sw(e);},_onreceiving:function(e){this.setState(I);this.__sw(e);},_oncompleted:function(e){this.setState(D);this.__sw(e);this.dispose();},_onaborted:function(e){this.setState(j);this.__sw(e);this.dispose();},_ontimeout:function(e){this.setState(P);this.__sw(e);this.dispose();},_onfailed:function(e){this.setState(p);this.__sw(e);this.dispose();},_applyState:function(X,W){{};},_applyProhibitCaching:function(ba,Y){if(!ba){this.removeParameter(C);this.removeRequestHeader(i);this.removeRequestHeader(N);return;};if(ba!==o||this.getMethod()!=H){this.setParameter(C,new Date().valueOf());}else {this.removeParameter(C);};this.setRequestHeader(i,L);this.setRequestHeader(N,L);},_applyMethod:function(bc,bb){if(qx.io.remote.Request.methodAllowsRequestBody(bc)){this.setRequestHeader(O,f);}else {this.removeRequestHeader(O);};var bd=this.getProhibitCaching();this._applyProhibitCaching(bd,bd);},_applyResponseType:function(bf,be){this.setRequestHeader(l,bf);},setRequestHeader:function(bg,bh){this.__sr[bg]=bh;},removeRequestHeader:function(bi){delete this.__sr[bi];},getRequestHeader:function(bj){return this.__sr[bj]||null;},getRequestHeaders:function(){return this.__sr;},setParameter:function(bl,bm,bk){if(bk){this.__st[bl]=bm;}else {this.__ss[bl]=bm;};},removeParameter:function(bn,bo){if(bo){delete this.__st[bn];}else {delete this.__ss[bn];};},getParameter:function(bp,bq){if(bq){return this.__st[bp]||null;}else {return this.__ss[bp]||null;};},getParameters:function(br){return (br?this.__st:this.__ss);},setFormField:function(bs,bt){this.__su[bs]=bt;},removeFormField:function(bu){delete this.__su[bu];},getFormField:function(bv){return this.__su[bv]||null;},getFormFields:function(){return this.__su;},getSequenceNumber:function(){return this.__sv;}},destruct:function(){this.setTransport(null);this.__sr=this.__ss=this.__st=this.__su=null;}});})();(function(){var a="_on",b="Boolean",c=" handler ",d="ms",f="aborted",g="Integer",h=" threw an error: ",j="Timeout: transport ",k="singleton",l="interval",m="receiving",n="queued",o="io.maxrequests",p="_applyEnabled",q="sending",r="completed",s="ms > ",t="failed",u="_onaborted",v="__sx",w="Request ",x="__jx",y="qx.io.remote.RequestQueue",z="timeout";qx.Class.define(y,{type:k,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.__ed=[];this.__sx=[];this.__sy=0;this.__jx=new qx.event.Timer(500);this.__jx.addListener(l,this._oninterval,this);},properties:{enabled:{init:true,check:b,apply:p},maxTotalRequests:{check:g,nullable:true},maxConcurrentRequests:{check:g,init:qx.core.Environment.get(o)},defaultTimeout:{check:g,init:5000}},members:{__ed:null,__sx:null,__sy:null,__jx:null,getRequestQueue:function(){return this.__ed;},getActiveQueue:function(){return this.__sx;},_debug:function(){{var A;};},_check:function(){this._debug();if(this.__sx.length==0&&this.__ed.length==0){this.__jx.stop();};if(!this.getEnabled()){return;};if(this.__ed.length==0||(this.__ed[0].isAsynchronous()&&this.__sx.length>=this.getMaxConcurrentRequests())){return;};if(this.getMaxTotalRequests()!=null&&this.__sy>=this.getMaxTotalRequests()){return;};var B=this.__ed.shift();var C=new qx.io.remote.Exchange(B);this.__sy++ ;this.__sx.push(C);this._debug();C.addListener(q,this._onsending,this);C.addListener(m,this._onreceiving,this);C.addListener(r,this._oncompleted,this);C.addListener(f,this._oncompleted,this);C.addListener(z,this._oncompleted,this);C.addListener(t,this._oncompleted,this);C._start=(new Date).valueOf();C.send();if(this.__ed.length>0){this._check();};},_remove:function(D){qx.lang.Array.remove(this.__sx,D);D.dispose();this._check();},__sz:0,_onsending:function(e){{};e.getTarget().getRequest()._onsending(e);},_onreceiving:function(e){e.getTarget().getRequest()._onreceiving(e);},_oncompleted:function(e){{};var E=e.getTarget().getRequest();var F=a+e.getType();this._remove(e.getTarget());try{if(E[F]){E[F](e);};}catch(G){this.error(w+E+c+F+h,G);try{if(E[u]){var event=qx.event.Registration.createEvent(f,qx.event.type.Event);E[u](event);};}catch(H){};};},_oninterval:function(e){var O=this.__sx;if(O.length==0){this.__jx.stop();return;};var J=(new Date).valueOf();var M;var K;var N=this.getDefaultTimeout();var L;var I;for(var i=O.length-1;i>=0;i-- ){M=O[i];K=M.getRequest();if(K.isAsynchronous()){L=K.getTimeout();if(L==0){continue;};if(L==null){L=N;};I=J-M._start;if(I>L){this.warn(j+M.toHashCode());this.warn(I+s+L+d);M.timeout();};};};},_applyEnabled:function(Q,P){if(Q){this._check();};this.__jx.setEnabled(Q);},add:function(R){R.setState(n);if(R.isAsynchronous()){this.__ed.push(R);}else {this.__ed.unshift(R);};this._check();if(this.getEnabled()){this.__jx.start();};},abort:function(S){var T=S.getTransport();if(T){T.abort();}else if(qx.lang.Array.contains(this.__ed,S)){qx.lang.Array.remove(this.__ed,S);};}},destruct:function(){this._disposeArray(v);this._disposeObjects(x);this.__ed=null;}});})();(function(){var a="], ",b="qx.io.remote.transport.XmlHttp",c="&",d="qx.io.remote.transport.Abstract",f="Request-URL too large",g="MSHTML-specific HTTP status code",h="Not available",j="Precondition failed",k="Server error",m=")",n="There is no transport implementation available to handle this request: ",o="qx.io.remote.Exchange",p="Bad gateway",q="Gone",r="See other",s="Timeout: forcing state to timeout",t="Partial content",u="aborted",v="Server timeout",w="qx.io.remote.transport.Script",x="No supported transport types were found!",y="Unauthorized",z="=",A="Multiple choices",B="Payment required",C="Request handler throws error",D="_applyState",E="Not implemented",F='Unknown status code. Possibly due to a cross-domain request?',G="Length required",H="failed",I="Unknown status code: ",J="Method not allowed",K="qx.event.type.Event",L="changeState",M="Not modified",N="HTTP version not supported",O="qx.io.remote.Request",P="Connection dropped",Q="Connection closed by server",R="Moved permanently",S="Proxy authentication required",T="",U="sending",V=" (",W="Moved temporarily",X="Timeout: implementation ",Y="_applyImplementation",bH="Forbidden",bI="completed",bJ="Use proxy",bD="Ok",bE="qx.io.remote.Response",bF="Not found",bG=", ",bN="receiving",bO="Not acceptable",bP="Request time-out",cc="Bad request",bK="Conflict",bL="No content",bM="configured",bB='Unknown status code. Possibly due to application URL using \'file:\' protocol?',bS="file:",bC="qx.io.remote.transport.Iframe",bT="Request entity too large",bU="Unknown status code",bY="timeout",bQ="Unsupported media type",cb="Gateway time-out",bR="created",bV="Out of resources",bW="undefined",bX="Please attach a request object first",ca=" [";qx.Class.define(o,{extend:qx.core.Object,construct:function(cd){qx.core.Object.call(this);this.setRequest(cd);cd.setTransport(this);},events:{"sending":K,"receiving":K,"completed":bE,"aborted":K,"failed":bE,"timeout":bE},statics:{typesOrder:[b,bC,w],typesReady:false,typesAvailable:{},typesSupported:{},registerType:function(ce,cf){qx.io.remote.Exchange.typesAvailable[cf]=ce;},initTypes:function(){if(qx.io.remote.Exchange.typesReady){return;};for(var cg in qx.io.remote.Exchange.typesAvailable){var ch=qx.io.remote.Exchange.typesAvailable[cg];if(ch.isSupported()){qx.io.remote.Exchange.typesSupported[cg]=ch;};};qx.io.remote.Exchange.typesReady=true;if(qx.lang.Object.isEmpty(qx.io.remote.Exchange.typesSupported)){throw new Error(x);};},canHandle:function(ck,cj,ci){if(!qx.lang.Array.contains(ck.handles.responseTypes,ci)){return false;};for(var cl in cj){if(!ck.handles[cl]){return false;};};return true;},_nativeMap:{'0':bR,'1':bM,'2':U,'3':bN,'4':bI},wasSuccessful:function(cm,cn,co){if(co){switch(cm){case null:case 0:return true;case -1:return cn<4;default:return typeof cm===bW;};}else {switch(cm){case -1:{};return cn<4;case 200:case 304:return true;case 201:case 202:case 203:case 204:case 205:return true;case 206:{};return cn!==4;case 300:case 301:case 302:case 303:case 305:case 400:case 401:case 402:case 403:case 404:case 405:case 406:case 407:case 408:case 409:case 410:case 411:case 412:case 413:case 414:case 415:case 500:case 501:case 502:case 503:case 504:case 505:{};return false;case 12002:case 12007:case 12029:case 12030:case 12031:case 12152:case 13030:{};return false;default:if(cm>206&&cm<300){return true;};qx.log.Logger.debug(this,I+cm+V+cn+m);return false;};};},statusCodeToString:function(cp){switch(cp){case -1:return h;case 0:var cq=window.location.href;if(qx.lang.String.startsWith(cq.toLowerCase(),bS)){return bB;}else {return F;};break;case 200:return bD;case 304:return M;case 206:return t;case 204:return bL;case 300:return A;case 301:return R;case 302:return W;case 303:return r;case 305:return bJ;case 400:return cc;case 401:return y;case 402:return B;case 403:return bH;case 404:return bF;case 405:return J;case 406:return bO;case 407:return S;case 408:return bP;case 409:return bK;case 410:return q;case 411:return G;case 412:return j;case 413:return bT;case 414:return f;case 415:return bQ;case 500:return k;case 501:return E;case 502:return p;case 503:return bV;case 504:return cb;case 505:return N;case 12002:return v;case 12029:return P;case 12030:return P;case 12031:return P;case 12152:return Q;case 13030:return g;default:return bU;};}},properties:{request:{check:O,nullable:true},implementation:{check:d,nullable:true,apply:Y},state:{check:[bM,U,bN,bI,u,bY,H],init:bM,event:L,apply:D}},members:{send:function(){var cu=this.getRequest();if(!cu){return this.error(bX);};qx.io.remote.Exchange.initTypes();var cs=qx.io.remote.Exchange.typesOrder;var cr=qx.io.remote.Exchange.typesSupported;var cw=cu.getResponseType();var cx={};if(cu.getAsynchronous()){cx.asynchronous=true;}else {cx.synchronous=true;};if(cu.getCrossDomain()){cx.crossDomain=true;};if(cu.getFileUpload()){cx.fileUpload=true;};for(var cv in cu.getFormFields()){cx.programaticFormFields=true;break;};var cy,ct;for(var i=0,l=cs.length;i<l;i++ ){cy=cr[cs[i]];if(cy){if(!qx.io.remote.Exchange.canHandle(cy,cx,cw)){continue;};try{{};ct=new cy;this.setImplementation(ct);ct.setUseBasicHttpAuth(cu.getUseBasicHttpAuth());ct.send();return true;}catch(cz){this.error(C);this.error(cz);return false;};};};this.error(n+cu);},abort:function(){var cA=this.getImplementation();if(cA){{};cA.abort();}else {{};this.setState(u);};},timeout:function(){var cD=this.getImplementation();if(cD){var cB=T;for(var cC in cD.getParameters()){cB+=c+cC+z+cD.getParameters()[cC];};this.warn(X+cD.toHashCode()+bG+cD.getUrl()+ca+cD.getMethod()+a+cB);cD.timeout();}else {this.warn(s);this.setState(bY);};this.__sA();},__sA:function(){var cE=this.getRequest();if(cE){cE.setTimeout(0);};},_onsending:function(e){this.setState(U);},_onreceiving:function(e){this.setState(bN);},_oncompleted:function(e){this.setState(bI);},_onabort:function(e){this.setState(u);},_onfailed:function(e){this.setState(H);},_ontimeout:function(e){this.setState(bY);},_applyImplementation:function(cI,cF){if(cF){cF.removeListener(U,this._onsending,this);cF.removeListener(bN,this._onreceiving,this);cF.removeListener(bI,this._oncompleted,this);cF.removeListener(u,this._onabort,this);cF.removeListener(bY,this._ontimeout,this);cF.removeListener(H,this._onfailed,this);};if(cI){var cH=this.getRequest();cI.setUrl(cH.getUrl());cI.setMethod(cH.getMethod());cI.setAsynchronous(cH.getAsynchronous());cI.setUsername(cH.getUsername());cI.setPassword(cH.getPassword());cI.setParameters(cH.getParameters(false));cI.setFormFields(cH.getFormFields());cI.setRequestHeaders(cH.getRequestHeaders());if(cI instanceof qx.io.remote.transport.XmlHttp){cI.setParseJson(cH.getParseJson());};var cL=cH.getData();if(cL===null){var cM=cH.getParameters(true);var cK=[];for(var cG in cM){var cJ=cM[cG];if(cJ instanceof Array){for(var i=0;i<cJ.length;i++ ){cK.push(encodeURIComponent(cG)+z+encodeURIComponent(cJ[i]));};}else {cK.push(encodeURIComponent(cG)+z+encodeURIComponent(cJ));};};if(cK.length>0){cI.setData(cK.join(c));};}else {cI.setData(cL);};cI.setResponseType(cH.getResponseType());cI.addListener(U,this._onsending,this);cI.addListener(bN,this._onreceiving,this);cI.addListener(bI,this._oncompleted,this);cI.addListener(u,this._onabort,this);cI.addListener(bY,this._ontimeout,this);cI.addListener(H,this._onfailed,this);};},_applyState:function(cQ,cO){{};switch(cQ){case U:this.fireEvent(U);break;case bN:this.fireEvent(bN);break;case bI:case u:case bY:case H:var cR=this.getImplementation();if(!cR){break;};this.__sA();if(this.hasListener(cQ)){var cP=qx.event.Registration.createEvent(cQ,qx.io.remote.Response);if(cQ==bI){var cN=cR.getResponseContent();cP.setContent(cN);if(cN===null){{};cQ=H;};}else if(cQ==H){cP.setContent(cR.getResponseContent());};cP.setStatusCode(cR.getStatusCode());cP.setResponseHeaders(cR.getResponseHeaders());this.dispatchEvent(cP);};this.setImplementation(null);cR.dispose();break;};}},environment:{"qx.debug.io.remote":false,"qx.debug.io.remote.data":false},destruct:function(){var cS=this.getImplementation();if(cS){this.setImplementation(null);cS.dispose();};this.setRequest(null);}});})();(function(){var a="Boolean",b="setRequestHeader is abstract",c="getFetchedLength is abstract",d="getStatusText is abstract",e="getStatusCode is abstract",f="GET",g="aborted",h="Object",i="send is abstract",j="receiving",k="_applyState",l="qx.event.type.Event",m="changeState",n="String",o="getResponseHeader is abstract",p="sending",q="getResponseHeaders is abstract",r="completed",s="failed",t="getResponseText is abstract",u="abstract",v="configured",w="qx.io.remote.transport.Abstract",x="getResponseXml is abstract",y="created",z="timeout";qx.Class.define(w,{type:u,extend:qx.core.Object,construct:function(){qx.core.Object.call(this);this.setRequestHeaders({});this.setParameters({});this.setFormFields({});},events:{"created":l,"configured":l,"sending":l,"receiving":l,"completed":l,"aborted":l,"failed":l,"timeout":l},properties:{url:{check:n,nullable:true},method:{check:n,nullable:true,init:f},asynchronous:{check:a,nullable:true,init:true},data:{check:n,nullable:true},username:{check:n,nullable:true},password:{check:n,nullable:true},state:{check:[y,v,p,j,r,g,z,s],init:y,event:m,apply:k},requestHeaders:{check:h,nullable:true},parameters:{check:h,nullable:true},formFields:{check:h,nullable:true},responseType:{check:n,nullable:true},useBasicHttpAuth:{check:a,nullable:true}},members:{send:function(){throw new Error(i);},abort:function(){{};this.setState(g);},timeout:function(){{};this.setState(z);},failed:function(){{};this.setState(s);},setRequestHeader:function(A,B){throw new Error(b);},getResponseHeader:function(C){throw new Error(o);},getResponseHeaders:function(){throw new Error(q);},getStatusCode:function(){throw new Error(e);},getStatusText:function(){throw new Error(d);},getResponseText:function(){throw new Error(t);},getResponseXml:function(){throw new Error(x);},getFetchedLength:function(){throw new Error(c);},_applyState:function(E,D){{};switch(E){case y:this.fireEvent(y);break;case v:this.fireEvent(v);break;case p:this.fireEvent(p);break;case j:this.fireEvent(j);break;case r:this.fireEvent(r);break;case g:this.fireEvent(g);break;case s:this.fireEvent(s);break;case z:this.fireEvent(z);break;};return true;}},destruct:function(){this.setRequestHeaders(null);this.setParameters(null);this.setFormFields(null);}});})();(function(){var a="application/xml",b=")!",c="application/json",d="text/html",f=")",g="gecko",h="frame_",j="Could not execute json: (",k="aborted",l="textarea",m="_data_",n="No valid responseType specified (",o="load",p="text/plain",q="text/javascript",r="pre",s="javascript:void(0)",t="",u="sending",v="readystatechange",w="completed",x="form",y="Could not execute javascript: (",z="failed",A="mshtml",B="engine.name",C="Ignore Ready State Change",D="form_",E="?",F="qx.io.remote.transport.Iframe",G="&",H="=",I="none",J="opera",K="timeout",L="qx/static/blank.gif",M="display";qx.Class.define(F,{extend:qx.io.remote.transport.Abstract,construct:function(){qx.io.remote.transport.Abstract.call(this);var N=(new Date).valueOf();var O=h+N;var P=D+N;var Q;if((qx.core.Environment.get(B)==A)){Q=s;};this.__py=qx.bom.Iframe.create({id:O,name:O,src:Q});qx.bom.element.Style.set(this.__py,M,I);this.__sB=qx.dom.Element.create(x,{id:P,name:P,target:O});qx.bom.element.Style.set(this.__sB,M,I);qx.dom.Element.insertEnd(this.__sB,qx.dom.Node.getBodyElement(document));this.__cN=qx.dom.Element.create(l,{id:m,name:m});qx.dom.Element.insertEnd(this.__cN,this.__sB);qx.dom.Element.insertEnd(this.__py,qx.dom.Node.getBodyElement(document));qx.event.Registration.addListener(this.__py,o,this._onload,this);this.__sC=qx.lang.Function.listener(this._onreadystatechange,this);qx.bom.Event.addNativeListener(this.__py,v,this.__sC);},statics:{handles:{synchronous:false,asynchronous:true,crossDomain:false,fileUpload:true,programaticFormFields:true,responseTypes:[p,q,c,a,d]},isSupported:function(){return true;},_numericMap:{"uninitialized":1,"loading":2,"loaded":2,"interactive":3,"complete":4}},members:{__cN:null,__sD:0,__sB:null,__py:null,__sC:null,send:function(){var S=this.getMethod();var U=this.getUrl();var Y=this.getParameters(false);var X=[];for(var T in Y){var V=Y[T];if(V instanceof Array){for(var i=0;i<V.length;i++ ){X.push(encodeURIComponent(T)+H+encodeURIComponent(V[i]));};}else {X.push(encodeURIComponent(T)+H+encodeURIComponent(V));};};if(X.length>0){U+=(U.indexOf(E)>=0?G:E)+X.join(G);};if(this.getData()===null){var Y=this.getParameters(true);var X=[];for(var T in Y){var V=Y[T];if(V instanceof Array){for(var i=0;i<V.length;i++ ){X.push(encodeURIComponent(T)+H+encodeURIComponent(V[i]));};}else {X.push(encodeURIComponent(T)+H+encodeURIComponent(V));};};if(X.length>0){this.setData(X.join(G));};};var R=this.getFormFields();for(var T in R){var W=document.createElement(l);W.name=T;W.appendChild(document.createTextNode(R[T]));this.__sB.appendChild(W);};this.__sB.action=U;this.__sB.method=S;this.__cN.appendChild(document.createTextNode(this.getData()));this.__sB.submit();this.setState(u);},_onload:qx.event.GlobalError.observeMethod(function(e){if(qx.core.Environment.get(B)==J&&this.getIframeHtmlContent()==t){return;};if(this.__sB.src){return;};this._switchReadyState(qx.io.remote.transport.Iframe._numericMap.complete);}),_onreadystatechange:qx.event.GlobalError.observeMethod(function(e){this._switchReadyState(qx.io.remote.transport.Iframe._numericMap[this.__py.readyState]);}),_switchReadyState:function(ba){switch(this.getState()){case w:case k:case z:case K:this.warn(C);return;};while(this.__sD<ba){this.setState(qx.io.remote.Exchange._nativeMap[ ++this.__sD]);};},setRequestHeader:function(bb,bc){},getResponseHeader:function(bd){return null;},getResponseHeaders:function(){return {};},getStatusCode:function(){return 200;},getStatusText:function(){return t;},getIframeWindow:function(){return qx.bom.Iframe.getWindow(this.__py);},getIframeDocument:function(){return qx.bom.Iframe.getDocument(this.__py);},getIframeBody:function(){return qx.bom.Iframe.getBody(this.__py);},getIframeTextContent:function(){var be=this.getIframeBody();if(!be){return null;};if(!be.firstChild){return t;};if(be.firstChild.tagName&&be.firstChild.tagName.toLowerCase()==r){return be.firstChild.innerHTML;}else {return be.innerHTML;};},getIframeHtmlContent:function(){var bf=this.getIframeBody();return bf?bf.innerHTML:null;},getFetchedLength:function(){return 0;},getResponseContent:function(){if(this.getState()!==w){{};return null;};{};var bg=this.getIframeTextContent();switch(this.getResponseType()){case p:{};return bg;break;case d:bg=this.getIframeHtmlContent();{};return bg;break;case c:bg=this.getIframeHtmlContent();{};try{return bg&&bg.length>0?qx.lang.Json.parse(bg):null;}catch(bh){return this.error(j+bg+f,bh);};case q:bg=this.getIframeHtmlContent();{};try{return bg&&bg.length>0?window.eval(bg):null;}catch(bi){return this.error(y+bg+f,bi);};case a:bg=this.getIframeDocument();{};return bg;default:this.warn(n+this.getResponseType()+b);return null;};}},defer:function(){qx.io.remote.Exchange.registerType(qx.io.remote.transport.Iframe,F);},destruct:function(){if(this.__py){qx.event.Registration.removeListener(this.__py,o,this._onload,this);qx.bom.Event.removeNativeListener(this.__py,v,this.__sC);if((qx.core.Environment.get(B)==g)){this.__py.src=qx.util.ResourceManager.getInstance().toUri(L);};qx.dom.Element.remove(this.__py);};if(this.__sB){qx.dom.Element.remove(this.__sB);};this.__py=this.__sB=this.__cN=null;}});})();(function(){var a="qx.event.handler.Iframe",b="load",c="iframe",d="navigate";qx.Class.define(a,{extend:qx.core.Object,implement:qx.event.IEventHandler,statics:{PRIORITY:qx.event.Registration.PRIORITY_NORMAL,SUPPORTED_TYPES:{load:1,navigate:1},TARGET_CHECK:qx.event.IEventHandler.TARGET_DOMNODE,IGNORE_CAN_HANDLE:false,onevent:qx.event.GlobalError.observeMethod(function(f){var e=qx.bom.Iframe.queryCurrentUrl(f);if(e!==f.$$url){qx.event.Registration.fireEvent(f,d,qx.event.type.Data,[e]);f.$$url=e;};qx.event.Registration.fireEvent(f,b);})},members:{canHandleEvent:function(h,g){return h.tagName.toLowerCase()===c;},registerEvent:function(k,j,i){},unregisterEvent:function(n,m,l){}},defer:function(o){qx.event.Registration.addHandler(o);}});})();(function(){var a="Iframe source could not be set!",b="contentDocument",c="engine.name",d="",e="qx.bom.Iframe",f="osx",g="qx.event.handler.Iframe.onevent(this)",h="os.name",i="webkit",j="load",k="iframe",l="body";qx.Class.define(e,{statics:{DEFAULT_ATTRIBUTES:{onload:g,frameBorder:0,frameSpacing:0,marginWidth:0,marginHeight:0,hspace:0,vspace:0,border:0,allowTransparency:true},create:function(m,p){var m=m?qx.lang.Object.clone(m):{};var n=qx.bom.Iframe.DEFAULT_ATTRIBUTES;for(var o in n){if(m[o]==null){m[o]=n[o];};};return qx.dom.Element.create(k,m,p);},getWindow:function(q){try{return q.contentWindow;}catch(r){return null;};},getDocument:function(t){if(b in t){try{return t.contentDocument;}catch(u){return null;};};try{var s=this.getWindow(t);return s?s.document:null;}catch(v){return null;};},getBody:function(x){try{var w=this.getDocument(x);return w?w.getElementsByTagName(l)[0]:null;}catch(y){return null;};},setSource:function(B,z){try{if(this.getWindow(B)&&qx.dom.Hierarchy.isRendered(B)){try{if((qx.core.Environment.get(c)==i)&&qx.core.Environment.get(h)==f){var A=this.getWindow(B);if(A){A.stop();};};this.getWindow(B).location.replace(z);}catch(C){B.src=z;};}else {B.src=z;};this.__sE(B);}catch(D){qx.log.Logger.warn(a);};},queryCurrentUrl:function(F){var E=this.getDocument(F);try{if(E&&E.location){return E.location.href;};}catch(G){};return d;},__sE:function(I){var H=function(){qx.bom.Event.removeNativeListener(I,j,H);I.$$url=qx.bom.Iframe.queryCurrentUrl(I);};qx.bom.Event.addNativeListener(I,j,H);}}});})();(function(){var a="&",b="Ignore Ready State Change",c="Illegal parameter name. The following prefix is used internally by qooxdoo): ",d="",e="_ScriptTransport_data",f="?",g="application/json",h=")!",j="script",k="=",l="timeout",m="completed",n="_ScriptTransport_",o="text/plain",p="text/javascript",q="_ScriptTransport_id",r="No valid responseType specified (",s="aborted",t="utf-8",u="failed",v="qx.io.remote.transport.Script";qx.Class.define(v,{extend:qx.io.remote.transport.Abstract,construct:function(){qx.io.remote.transport.Abstract.call(this);var w= ++qx.io.remote.transport.Script.__sF;if(w>=2000000000){qx.io.remote.transport.Script.__sF=w=1;};this.__gs=null;this.__sF=w;},statics:{__sF:0,_instanceRegistry:{},ScriptTransport_PREFIX:n,ScriptTransport_ID_PARAM:q,ScriptTransport_DATA_PARAM:e,handles:{synchronous:false,asynchronous:true,crossDomain:true,fileUpload:false,programaticFormFields:false,responseTypes:[o,p,g]},isSupported:function(){return true;},_numericMap:{"uninitialized":1,"loading":2,"loaded":2,"interactive":3,"complete":4},_requestFinished:qx.event.GlobalError.observeMethod(function(x,content){var y=qx.io.remote.transport.Script._instanceRegistry[x];if(y==null){{};}else {y._responseContent=content;y._switchReadyState(qx.io.remote.transport.Script._numericMap.complete);};})},members:{__sD:0,__gs:null,__sF:null,send:function(){var B=this.getUrl();B+=(B.indexOf(f)>=0?a:f)+qx.io.remote.transport.Script.ScriptTransport_ID_PARAM+k+this.__sF;var E=this.getParameters();var D=[];for(var A in E){if(A.indexOf(qx.io.remote.transport.Script.ScriptTransport_PREFIX)==0){this.error(c+qx.io.remote.transport.Script.ScriptTransport_PREFIX);};var C=E[A];if(C instanceof Array){for(var i=0;i<C.length;i++ ){D.push(encodeURIComponent(A)+k+encodeURIComponent(C[i]));};}else {D.push(encodeURIComponent(A)+k+encodeURIComponent(C));};};if(D.length>0){B+=a+D.join(a);};var z=this.getData();if(z!=null){B+=a+qx.io.remote.transport.Script.ScriptTransport_DATA_PARAM+k+encodeURIComponent(z);};qx.io.remote.transport.Script._instanceRegistry[this.__sF]=this;this.__gs=document.createElement(j);this.__gs.charset=t;this.__gs.src=B;{};document.body.appendChild(this.__gs);},_switchReadyState:function(F){switch(this.getState()){case m:case s:case u:case l:this.warn(b);return;};while(this.__sD<F){this.setState(qx.io.remote.Exchange._nativeMap[ ++this.__sD]);};},setRequestHeader:function(G,H){},getResponseHeader:function(I){return null;},getResponseHeaders:function(){return {};},getStatusCode:function(){return 200;},getStatusText:function(){return d;},getFetchedLength:function(){return 0;},getResponseContent:function(){if(this.getState()!==m){{};return null;};{};switch(this.getResponseType()){case o:case g:case p:{};var J=this._responseContent;return (J===0?0:(J||null));default:this.warn(r+this.getResponseType()+h);return null;};}},defer:function(){qx.io.remote.Exchange.registerType(qx.io.remote.transport.Script,v);},destruct:function(){if(this.__gs){delete qx.io.remote.transport.Script._instanceRegistry[this.__sF];document.body.removeChild(this.__gs);};this.__gs=this._responseContent=null;}});})();(function(){var a="application/xml",b=")!",c="qx.io.remote.transport.XmlHttp",d="Boolean",f="': ",g="application/json",h='Referer',j="text/html",k="Could not execute json: [",m="engine.version",n='Basic ',o="aborted",p="\n</pre>",q="string",r="Failed with exception: ",t='Authorization',u="Missing Document Element!",v="send",w="sending",x="XML-File is not well-formed!",y="receiving",z="Response was not a valid xml document [",A="No valid responseType specified (",B="<pre>Could not execute json: \n",C="text/plain",D="text/javascript",E="Could not load from file: ",F="browser.documentmode",G="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",H="Could not execute javascript: [",I="",J="mshtml",K=':',L="]",M="completed",N="failed",O="&",P="engine.name",Q="parseerror",R="configured",S="?",T="file:",U="webkit",V="=",W="created",X="timeout",Y="Failed to send data to URL '",bb="object";qx.Class.define(c,{extend:qx.io.remote.transport.Abstract,statics:{handles:{synchronous:true,asynchronous:true,crossDomain:false,fileUpload:false,programaticFormFields:false,responseTypes:[C,D,g,a,j]},createRequestObject:qx.core.Environment.select(P,{"default":function(){return new XMLHttpRequest;},"mshtml":function(){if(window.ActiveXObject&&qx.xml.Document.XMLHTTP){return new ActiveXObject(qx.xml.Document.XMLHTTP);};if(window.XMLHttpRequest){return new XMLHttpRequest;};}}),isSupported:function(){return !!this.createRequestObject();}},properties:{parseJson:{check:d,init:true}},members:{__sG:false,__sD:0,__sH:null,getRequest:function(){if(this.__sH===null){this.__sH=qx.io.remote.transport.XmlHttp.createRequestObject();this.__sH.onreadystatechange=qx.lang.Function.bind(this._onreadystatechange,this);};return this.__sH;},send:function(){this.__sD=0;var bg=this.getRequest();var bc=this.getMethod();var bj=this.getAsynchronous();var bi=this.getUrl();var be=(window.location.protocol===T&&!(/^http(s){0,1}\:/.test(bi)));this.__sG=be;var bm=this.getParameters(false);var bk=[];for(var bd in bm){var bh=bm[bd];if(bh instanceof Array){for(var i=0;i<bh.length;i++ ){bk.push(encodeURIComponent(bd)+V+encodeURIComponent(bh[i]));};}else {bk.push(encodeURIComponent(bd)+V+encodeURIComponent(bh));};};if(bk.length>0){bi+=(bi.indexOf(S)>=0?O:S)+bk.join(O);};if(this.getData()===null){var bm=this.getParameters(true);var bk=[];for(var bd in bm){var bh=bm[bd];if(bh instanceof Array){for(var i=0;i<bh.length;i++ ){bk.push(encodeURIComponent(bd)+V+encodeURIComponent(bh[i]));};}else {bk.push(encodeURIComponent(bd)+V+encodeURIComponent(bh));};};if(bk.length>0){this.setData(bk.join(O));};};var bl=function(bw){var bv=G;var bq=I;var bp,bo,bn;var bs,bt,bu,br;var i=0;do {bp=bw.charCodeAt(i++ );bo=bw.charCodeAt(i++ );bn=bw.charCodeAt(i++ );bs=bp>>2;bt=((bp&3)<<4)|(bo>>4);bu=((bo&15)<<2)|(bn>>6);br=bn&63;if(isNaN(bo)){bu=br=64;}else if(isNaN(bn)){br=64;};bq+=bv.charAt(bs)+bv.charAt(bt)+bv.charAt(bu)+bv.charAt(br);}while(i<bw.length);return bq;};try{if(this.getUsername()){if(this.getUseBasicHttpAuth()){bg.open(bc,bi,bj);bg.setRequestHeader(t,n+bl(this.getUsername()+K+this.getPassword()));}else {bg.open(bc,bi,bj,this.getUsername(),this.getPassword());};}else {bg.open(bc,bi,bj);};}catch(bx){this.error(r+bx);this.failed();return;};if(!(qx.core.Environment.get(P)==U)){bg.setRequestHeader(h,window.location.href);};var bf=this.getRequestHeaders();for(var bd in bf){bg.setRequestHeader(bd,bf[bd]);};try{{};if(be&&bj&&qx.core.Environment.get(P)==J&&(qx.core.Environment.get(m)==9&&qx.core.Environment.get(F)==9)){qx.event.Timer.once(function(){bg.send(this.getData());},this,0);}else {bg.send(this.getData());};}catch(by){if(be){this.failedLocally();}else {this.error(Y+bi+f+by,v);this.failed();};return;};if(!bj){this._onreadystatechange();};},failedLocally:function(){if(this.getState()===N){return;};this.warn(E+this.getUrl());this.failed();},_onreadystatechange:qx.event.GlobalError.observeMethod(function(e){switch(this.getState()){case M:case o:case N:case X:{};return;};var bz=this.getReadyState();if(bz==4){if(!qx.io.remote.Exchange.wasSuccessful(this.getStatusCode(),bz,this.__sG)){if(this.getState()===R){this.setState(w);};this.failed();return;};};if(bz==3&&this.__sD==1){this.setState(qx.io.remote.Exchange._nativeMap[ ++this.__sD]);};while(this.__sD<bz){this.setState(qx.io.remote.Exchange._nativeMap[ ++this.__sD]);};}),getReadyState:function(){var bA=null;try{bA=this.getRequest().readyState;}catch(bB){};return bA;},setRequestHeader:function(bC,bD){this.getRequestHeaders()[bC]=bD;},getResponseHeader:function(bE){var bF=null;try{bF=this.getRequest().getResponseHeader(bE)||null;}catch(bG){};return bF;},getStringResponseHeaders:function(){var bI=null;try{var bH=this.getRequest().getAllResponseHeaders();if(bH){bI=bH;};}catch(bJ){};return bI;},getResponseHeaders:function(){var bK=this.getStringResponseHeaders();var bN={};if(bK){var bM=bK.split(/[\r\n]+/g);for(var i=0,l=bM.length;i<l;i++ ){var bL=bM[i].match(/^([^:]+)\s*:\s*(.+)$/i);if(bL){bN[bL[1]]=bL[2];};};};return bN;},getStatusCode:function(){var bO=-1;try{bO=this.getRequest().status;if(bO===1223){bO=204;};}catch(bP){};return bO;},getStatusText:function(){var bQ=I;try{bQ=this.getRequest().statusText;}catch(bR){};return bQ;},getResponseText:function(){var bS=null;try{bS=this.getRequest().responseText;}catch(bT){bS=null;};return bS;},getResponseXml:function(){var bW=null;var bU=this.getStatusCode();var bV=this.getReadyState();if(qx.io.remote.Exchange.wasSuccessful(bU,bV,this.__sG)){try{bW=this.getRequest().responseXML;}catch(bX){};};if(typeof bW==bb&&bW!=null){if(!bW.documentElement){var s=String(this.getRequest().responseText).replace(/<\?xml[^\?]*\?>/,I);bW.loadXML(s);};if(!bW.documentElement){throw new Error(u);};if(bW.documentElement.tagName==Q){throw new Error(x);};}else {throw new Error(z+this.getRequest().responseText+L);};return bW;},getFetchedLength:function(){var bY=this.getResponseText();return typeof bY==q?bY.length:0;},getResponseContent:function(){var ca=this.getState();if(ca!==M&&ca!=N){{};return null;};{};var cb=this.getResponseText();if(ca==N){{};return cb;};switch(this.getResponseType()){case C:case j:{};return cb;case g:{};try{if(cb&&cb.length>0){var cc;if(this.getParseJson()){cc=qx.lang.Json.parse(cb);cc=(cc===0?0:(cc||null));}else {cc=cb;};return cc;}else {return null;};}catch(cd){this.error(k+cb+L,cd);return B+cb+p;};case D:{};try{if(cb&&cb.length>0){var cc=window.eval(cb);return (cc===0?0:(cc||null));}else {return null;};}catch(ce){this.error(H+cb+L,ce);return null;};case a:cb=this.getResponseXml();{};return (cb===0?0:(cb||null));default:this.warn(A+this.getResponseType()+b);return null;};},_applyState:function(cg,cf){{};switch(cg){case W:this.fireEvent(W);break;case R:this.fireEvent(R);break;case w:this.fireEvent(w);break;case y:this.fireEvent(y);break;case M:this.fireEvent(M);break;case N:this.fireEvent(N);break;case o:this.getRequest().abort();this.fireEvent(o);break;case X:this.getRequest().abort();this.fireEvent(X);break;};}},defer:function(){qx.io.remote.Exchange.registerType(qx.io.remote.transport.XmlHttp,c);},destruct:function(){var ch=this.getRequest();if(ch){ch.onreadystatechange=(function(){});switch(ch.readyState){case 1:case 2:case 3:ch.abort();};};this.__sH=null;}});})();(function(){var a="Object",b="_applyResponseHeaders",c="Integer",d="qx.io.remote.Response";qx.Class.define(d,{extend:qx.event.type.Event,properties:{state:{check:c,nullable:true},statusCode:{check:c,nullable:true},content:{nullable:true},responseHeaders:{check:a,nullable:true,apply:b}},members:{__sI:null,clone:function(e){var f=qx.event.type.Event.prototype.clone.call(this,e);f.setType(this.getType());f.setState(this.getState());f.setStatusCode(this.getStatusCode());f.setContent(this.getContent());f.setResponseHeaders(this.getResponseHeaders());return f;},getResponseHeader:function(g){if(this.__sI){return this.__sI[g.toLowerCase()]||null;};return null;},_applyResponseHeaders:function(i,h){var j={};if(i!==null){Object.keys(i).forEach(function(k){j[k.toLowerCase()]=i[k];});this.__sI=j;};}}});})();(function(){var a="button-checked-focused",b="window-resize-frame",c="checkbox-disabled-border",d="group-background",e="menu-end",f="keyboard-focus",g="button-disabled-start",h="selected-end",i="table-header-hovered",j="border-invalid",k="decoration/toolbar/toolbar-part.gif",l="border-separator",m="window-border-caption",n="radiobutton-hovered",o="button-hovered-end",p="border-input",q="radiobutton",r="repeat-y",s="border-dragover",t="border-inner-input",u="radiobutton-checked-focused",v="groupitem-end",w="group-border",x="input-start",y="button-hovered-start",z="tooltip-error",A="button-hovered",B="selected-start",C="progressive-table-header-border-right",D="button-border-disabled",E="scrollbar-slider-horizontal",F="button-pressed",G="window-statusbar-background",H="tabview-end",I="radiobutton-hovered-invalid",J="checkbox-hovered",K="radiobutton-background",L="window-captionbar-active",M="checkbox-hovered-inner",N="toolbar-button-hovered",O="window-caption-active-end",P="solid",Q="button-start",R="dotted",S="radiobutton-disabled",T="radiobutton-checked",U="checkbox-disabled-end",V="window-caption-active-start",W="window-border",X="button-focused",Y="input",cv="tabview-inactive",cw="qx/decoration/Modern",cx="border-toolbar-separator-left",cr="invalid",cs="button-disabled",ct="horizontal",cu="table-header-start",cC="background-splitpane",cD="button-end",cE="button-checked",cF="border-toolbar-border-inner",cy="px",cz="input-border-disabled",cA="scrollbar-slider-vertical",cB="checkbox-inner",cJ="button",dk="button-disabled-end",dI="toolbar-end",cK="groupitem-start",cG="menu-start",cH="input-focused-start",dD="scrollbar-start",cI="scrollbar-slider-start",cL="radiobutton-checked-disabled",cM="checkbox-focused",cN="border-toolbar-button-outer",cS="background-light",cT="qx.theme.modern.Decoration",cU="checkbox-hovered-invalid",cO="radiobutton-checked-hovered",cP="tabview-page-button-top-inactive",cQ="#243B58",cR="checkbox",cY="checkbox-focus",da="window",dF="checkbox-disabled-inner",db="border-toolbar-separator-right",cV="tabview-inactive-start",cW="scrollbar-end",dE="table-header-end",cX="tabview-background",df="checkbox-end",dg="border-button",dH="tabview-inactive-end",dh="input-end",dc="tabview-page-button-top-active",dd="input-focused-inner-invalid",dG="menu-separator-top",de="shadow",di="window-caption-inactive-start",dj="scrollbar-slider-end",dw="background-pane",dv="pane-end",du="input-focused-end",dA="menubar-start",dz="toolbar-start",dy="radiobutton-focused",dx="pane-start",dp="table-focus-indicator",dn="menu-separator-bottom",dm="#1D2D45",dl="border-main",dt="scrollbar-horizontal",ds="window-caption-inactive-end",dr="checkbox-border",dq="tabview-start",dC="checkbox-hovered-inner-invalid",dB="input-focused";qx.Theme.define(cT,{aliases:{decoration:cw},decorations:{"main":{style:{width:1,color:dl}},"selected":{style:{startColorPosition:0,endColorPosition:100,startColor:B,endColor:h}},"dragover":{style:{bottom:[2,P,s]}},"pane":{style:{width:1,color:cX,radius:3,shadowColor:de,shadowBlurRadius:2,shadowLength:0,gradientStart:[dx,0],gradientEnd:[dv,100]}},"group":{style:{backgroundColor:d,radius:4,color:w,width:1}},"keyboard-focus":{style:{width:1,color:f,style:R}},"radiobutton":{style:{backgroundColor:K,radius:5,width:1,innerWidth:2,color:dr,innerColor:K,shadowLength:0,shadowBlurRadius:0,shadowColor:cY}},"radiobutton-checked":{include:q,style:{backgroundColor:T}},"radiobutton-checked-focused":{include:T,style:{shadowBlurRadius:4}},"radiobutton-checked-hovered":{include:T,style:{innerColor:J}},"radiobutton-focused":{include:q,style:{shadowBlurRadius:4}},"radiobutton-hovered":{include:q,style:{backgroundColor:J,innerColor:J}},"radiobutton-disabled":{include:q,style:{innerColor:S,backgroundColor:S,color:c}},"radiobutton-checked-disabled":{include:S,style:{backgroundColor:cL}},"radiobutton-invalid":{include:q,style:{color:cr}},"radiobutton-checked-invalid":{include:T,style:{color:cr}},"radiobutton-checked-focused-invalid":{include:u,style:{color:cr,shadowColor:cr}},"radiobutton-checked-hovered-invalid":{include:cO,style:{color:cr,innerColor:I}},"radiobutton-focused-invalid":{include:dy,style:{color:cr,shadowColor:cr}},"radiobutton-hovered-invalid":{include:n,style:{color:cr,innerColor:I,backgroundColor:I}},"separator-horizontal":{style:{widthLeft:1,colorLeft:l}},"separator-vertical":{style:{widthTop:1,colorTop:l}},"tooltip-error":{style:{backgroundColor:z,radius:4,shadowColor:de,shadowBlurRadius:2,shadowLength:1}},"popup":{style:{width:1,color:dl,shadowColor:de,shadowBlurRadius:3,shadowLength:1}},"scrollbar-horizontal":{style:{gradientStart:[dD,0],gradientEnd:[cW,100]}},"scrollbar-vertical":{include:dt,style:{orientation:ct}},"scrollbar-slider-horizontal":{style:{gradientStart:[cI,0],gradientEnd:[dj,100],color:dl,width:1,radius:3}},"scrollbar-slider-vertical":{include:E,style:{orientation:ct}},"scrollbar-slider-horizontal-disabled":{include:E,style:{color:D}},"scrollbar-slider-vertical-disabled":{include:cA,style:{color:D}},"button":{style:{radius:3,color:dg,width:1,startColor:Q,endColor:cD,startColorPosition:35,endColorPosition:100}},"button-disabled":{include:cJ,style:{color:D,startColor:g,endColor:dk}},"button-hovered":{include:cJ,style:{startColor:y,endColor:o}},"button-checked":{include:cJ,style:{endColor:Q,startColor:cD}},"button-pressed":{include:cJ,style:{endColor:y,startColor:o}},"button-focused":{style:{radius:3,color:dg,width:1,innerColor:X,innerWidth:2,startColor:Q,endColor:cD,startColorPosition:30,endColorPosition:100}},"button-checked-focused":{include:X,style:{endColor:Q,startColor:cD}},"button-invalid":{include:cJ,style:{color:j}},"button-disabled-invalid":{include:cs,style:{color:j}},"button-hovered-invalid":{include:A,style:{color:j}},"button-checked-invalid":{include:cE,style:{color:j}},"button-pressed-invalid":{include:F,style:{color:j}},"button-focused-invalid":{include:X,style:{color:j}},"button-checked-focused-invalid":{include:a,style:{color:j}},"checkbox":{style:{width:1,color:dr,innerWidth:1,innerColor:cB,backgroundColor:df,shadowLength:0,shadowBlurRadius:0,shadowColor:cY}},"checkbox-hovered":{include:cR,style:{innerColor:M,backgroundColor:J}},"checkbox-focused":{include:cR,style:{shadowBlurRadius:4}},"checkbox-disabled":{include:cR,style:{color:c,innerColor:dF,backgroundColor:U}},"checkbox-invalid":{include:cR,style:{color:cr}},"checkbox-hovered-invalid":{include:J,style:{color:cr,innerColor:dC,backgroundColor:cU}},"checkbox-focused-invalid":{include:cM,style:{color:cr,shadowColor:cr}},"input":{style:{color:p,innerColor:t,innerWidth:1,width:1,backgroundColor:cS,startColor:x,endColor:dh,startColorPosition:0,endColorPosition:12,colorPositionUnit:cy}},"border-invalid":{include:Y,style:{color:j}},"input-focused":{include:Y,style:{startColor:cH,innerColor:du,endColorPosition:4}},"input-focused-invalid":{include:dB,style:{innerColor:dd,color:j}},"input-disabled":{include:Y,style:{color:cz}},"toolbar":{style:{startColorPosition:40,endColorPosition:60,startColor:dz,endColor:dI}},"toolbar-button-hovered":{style:{color:cN,width:1,innerWidth:1,innerColor:cF,radius:2,gradientStart:[Q,30],gradientEnd:[cD,100]}},"toolbar-button-checked":{include:N,style:{gradientStart:[cD,30],gradientEnd:[Q,100]}},"toolbar-separator":{style:{widthLeft:1,widthRight:1,colorLeft:cx,colorRight:db,styleLeft:P,styleRight:P}},"toolbar-part":{style:{backgroundImage:k,backgroundRepeat:r}},"tabview-pane":{style:{width:1,color:W,radius:3,gradientStart:[dq,90],gradientEnd:[H,100]}},"tabview-page-button-top-active":{style:{radius:[3,3,0,0],width:[1,1,0,1],color:cX,backgroundColor:dq,shadowLength:1,shadowColor:de,shadowBlurRadius:2}},"tabview-page-button-top-inactive":{style:{radius:[3,3,0,0],color:cv,colorBottom:cX,width:1,gradientStart:[cV,0],gradientEnd:[dH,100]}},"tabview-page-button-bottom-active":{include:dc,style:{radius:[0,0,3,3],width:[0,1,1,1],backgroundColor:cV,shadowLength:0,shadowBlurRadius:0}},"tabview-page-button-bottom-inactive":{include:cP,style:{radius:[0,0,3,3],width:[0,1,1,1],colorBottom:cv,colorTop:cX}},"tabview-page-button-left-active":{include:dc,style:{radius:[3,0,0,3],width:[1,0,1,1],shadowLength:0,shadowBlurRadius:0}},"tabview-page-button-left-inactive":{include:cP,style:{radius:[3,0,0,3],width:[1,0,1,1],colorBottom:cv,colorRight:cX}},"tabview-page-button-right-active":{include:dc,style:{radius:[0,3,3,0],width:[1,1,1,0],shadowLength:0,shadowBlurRadius:0}},"tabview-page-button-right-inactive":{include:cP,style:{radius:[0,3,3,0],width:[1,1,1,0],colorBottom:cv,colorLeft:cX}},"splitpane":{style:{backgroundColor:dw,width:3,color:cC,style:P}},"window":{style:{radius:[5,5,0,0],shadowBlurRadius:4,shadowLength:2,shadowColor:de}},"window-incl-statusbar":{include:da,style:{radius:[5,5,5,5]}},"window-resize-frame":{style:{radius:[5,5,0,0],width:1,color:dl}},"window-resize-frame-incl-statusbar":{include:b,style:{radius:[5,5,5,5]}},"window-captionbar-active":{style:{width:1,color:W,colorBottom:m,radius:[5,5,0,0],gradientStart:[V,30],gradientEnd:[O,70]}},"window-captionbar-inactive":{include:L,style:{gradientStart:[di,30],gradientEnd:[ds,70]}},"window-statusbar":{style:{backgroundColor:G,width:[0,1,1,1],color:W,radius:[0,0,5,5]}},"window-pane":{style:{backgroundColor:dw,width:1,color:W,widthTop:0}},"table":{style:{width:1,color:dl,style:P}},"table-statusbar":{style:{widthTop:1,colorTop:dl,style:P}},"table-scroller-header":{style:{gradientStart:[cu,10],gradientEnd:[dE,90],widthBottom:1,colorBottom:dl}},"table-header-cell":{style:{widthRight:1,colorRight:l,styleRight:P}},"table-header-cell-hovered":{style:{widthRight:1,colorRight:l,styleRight:P,widthBottom:1,colorBottom:i,styleBottom:P}},"table-scroller-focus-indicator":{style:{width:2,color:dp,style:P}},"progressive-table-header":{style:{width:1,color:dl,style:P}},"progressive-table-header-cell":{style:{gradientStart:[cu,10],gradientEnd:[dE,90],widthRight:1,colorRight:C}},"menu":{style:{gradientStart:[cG,0],gradientEnd:[e,100],shadowColor:de,shadowBlurRadius:2,shadowLength:1,width:1,color:dl}},"menu-separator":{style:{widthTop:1,colorTop:dG,widthBottom:1,colorBottom:dn}},"menubar":{style:{gradientStart:[dA,0],gradientEnd:[e,100],width:1,color:l}},"app-header":{style:{gradientStart:[cQ,0],gradientEnd:[dm,100]}},"progressbar":{style:{width:1,color:p}},"group-item":{style:{startColorPosition:0,endColorPosition:100,startColor:cK,endColor:v}}}});})();(function(){var a="frontend.theme.Decoration";qx.Theme.define(a,{extend:qx.theme.modern.Decoration,decorations:{}});})();(function(){var a="Tango",b="qx/icon/Tango",c="qx.theme.icon.Tango";qx.Theme.define(c,{title:a,aliases:{"icon":b}});})();(function(){var a="button-checked",b="window-resize-frame",c="decoration/window/maximize-active-hovered.png",d="radiobutton-hovered",e="decoration/arrows/right.png",f="background-application",g="keyboard-focus",h="group-item",i="scrollbar/button",j="decoration/cursors/",k="icon/16/actions/dialog-ok.png",l="border-invalid",m="combobox/button",n="icon/16/apps/office-calendar.png",o="slidebar",p="menu",q="table-scroller-focus-indicator",r="move-frame",s="nodrop",t="decoration/table/boolean-true.png",u="table-header-cell",v="app-header",w="row-layer",x="icon/16/places/folder.png",y="text-inactive",z="image",A="radiobutton",B="move",C="window-resize-frame-incl-statusbar",D="radiobutton-checked-focused",E="decoration/window/restore-active-hovered.png",F="window-captionbar-inactive",G="list",H="text-label",I="tree-folder",J="right.png",K="tabview-page-button-bottom-inactive",L="tooltip-error",M="decoration/tree/closed.png",N="window-statusbar",O="button-hovered",P="bold",Q="decoration/scrollbar/scrollbar-",R="background-tip",S="scrollbar-slider-horizontal-disabled",T="text-disabled",U="table-scroller-header",V="radiobutton-disabled",W="scrollbar-slider-horizontal",X="button-pressed",Y="table-pane",fD="decoration/window/close-active.png",fz="native",fE="checkbox-hovered",fA="decoration/window/minimize-active-hovered.png",fB="input-disabled",fw="virtual-list",fC="menubar",fJ="groupbox",fK="icon/16/actions/dialog-cancel.png",fL="tabview-page-button-top-inactive",fM="tabview-page-button-left-inactive",fF="menu-slidebar",fG="toolbar-button-checked",fH="decoration/arrows/left.png",fI="decoration/tree/open-selected.png",fQ="tree-item",gs="radiobutton-checked",fR="decoration/window/minimize-inactive.png",fS="menu-button",fN="button-focused",fO="input",ht="text-light",fP="menu-slidebar-button",fT="decoration/arrows/down.png",fU="middle",fV="group",gb="tree",gc="tabview-page-button-right-inactive",gd="decoration/window/minimize-active.png",fW="decoration/window/restore-inactive.png",fX="input-focused-invalid",fY="text-active",ga="splitpane",gh="text-input",gi="combobox/textfield",hy="decoration/window/close-active-hovered.png",gj="invalid",ge="qx/icon/Tango/16/actions/window-close.png",gf="combobox",hx="button-disabled",gg="tabview-page-button-left-active",gn="slidebar/button-forward",go="border-separator",hD="treevirtual-contract",gp="decoration/window/maximize-inactive.png",gk="scrollbar",gl="icon/22/places/folder-open.png",hB="right-top",gm="scrollarea",gq="background-splitpane",gr="datechooser/nav-button",gD="scrollbar-vertical",gC="decoration/toolbar/toolbar-handle-knob.gif",gB="icon/22/mimetypes/office-document.png",gH="text-selected",gG="cell",gF="button-checked-focused",gE="up.png",gw="best-fit",gv="decoration/tree/closed-selected.png",gu="text-hovered",gt="qx.theme.modern.Appearance",gA="decoration/tree/open.png",gz="default",gy="decoration/arrows/up-invert.png",gx="checkbox-disabled",gO="selected",gN="toolbar-button-hovered",gM="decoration/form/checked.png",gL="button",gS="progressive-table-header",gR="decoration/menu/radiobutton.gif",gQ="window-incl-statusbar",gP="decoration/arrows/down-small.png",gK="decoration/arrows/forward.png",gJ="decoration/table/descending.png",gI="decoration/form/undetermined.png",he="tree-file",hd="decoration/form/tooltip-error-arrow-right.png",hc="keep-align",hi="scrollbar-slider-vertical",hh="center",hg="toolbar",hf="alias",gW="decoration/window/restore-active.png",gV="datechooser",gU="toolbar-button",gT="decoration/table/boolean-false.png",hb="window-pane",ha="icon/32/mimetypes/office-document.png",gY="slidebar/button-backward",gX="radiobutton-checked-disabled",ho="tabview-pane",hn="decoration/arrows/rewind.png",hm="checkbox-focused",hl="selectbox",hs="background-light",hr="top",hq="right",hp="main",hk="button-frame",hj="progressbar-background",eB="radiobutton-checked-hovered",eA="popup",hE="treevirtual-folder",ey="checkbox",ez="table-header-cell-hovered",ex="window",hC="icon/16/mimetypes/office-document.png",ev="treevirtual-expand",ew="text-gray",eu="left",hz="decoration/menu/radiobutton-invert.gif",es="text-placeholder",et="atom",er="text-title",eK="slider",eL="background-medium",eI="decoration/table/select-column-order.png",eJ="down.png",eG="widget",eH="groupitem-text",eF="tabview-page-button-top-active",eq="icon/32/places/folder-open.png",eD="icon/22/places/folder.png",eE="decoration/window/maximize-active.png",eC="decoration/window/close-inactive.png",eY="toolbar-part",eW="decoration/splitpane/knob-vertical.png",eX="left.png",eU="decoration/menu/checkbox-invert.gif",eV="table",eT="decoration/arrows/up.png",hw="table-statusbar",eR="decoration/form/tooltip-error-arrow.png",eS="window-captionbar-active",eQ="copy",hA="radiobutton-focused",eO="decoration/arrows/down-invert.png",eP="decoration/menu/checkbox.gif",eM="",eN="window-caption-active-text",fh="decoration/splitpane/knob-horizontal.png",fi="textfield",ff="icon/32/places/folder.png",fg="toolbar-separator",fd="tabview-page-button-bottom-active",fe="decoration/arrows/up-small.png",fc="decoration/table/ascending.png",hv="small",fa="tabview-page-button-right-active",fb="spinner",fv="tooltip",hu="-disabled",fx="label",fs="scrollbar-horizontal",fr="-invalid",fu="progressbar",ft="progressive-table-header-cell",fo="menu-separator",fn="pane",fq="htmlarea-background",fp="decoration/arrows/right-invert.png",fk="icon/16/places/folder-open.png",fj="qx/static/blank.gif",fm=".gif",fl="icon/16/actions/view-refresh.png",fy="input-focused";qx.Theme.define(gt,{appearances:{"widget":{},"root":{style:function(hF){return {backgroundColor:f,textColor:H,font:gz};}},"label":{style:function(hG){return {textColor:hG.disabled?T:undefined};}},"move-frame":{style:function(hH){return {decorator:hp};}},"resize-frame":r,"dragdrop-cursor":{style:function(hI){var hJ=s;if(hI.copy){hJ=eQ;}else if(hI.move){hJ=B;}else if(hI.alias){hJ=hf;};return {source:j+hJ+fm,position:hB,offset:[2,16,2,6]};}},"image":{style:function(hK){return {opacity:!hK.replacement&&hK.disabled?0.3:1};}},"atom":{},"atom/label":fx,"atom/icon":z,"popup":{style:function(hL){return {decorator:eA,backgroundColor:hs};}},"button-frame":{alias:et,style:function(hM){var hP,hO;var hN=[3,9];if(hM.checked&&hM.focused&&!hM.inner){hP=gF;hO=undefined;hN=[1,7];}else if(hM.disabled){hP=hx;hO=undefined;}else if(hM.pressed){hP=X;hO=gu;}else if(hM.checked){hP=a;hO=undefined;}else if(hM.hovered){hP=O;hO=gu;}else if(hM.focused&&!hM.inner){hP=fN;hO=undefined;hN=[1,7];}else {hP=gL;hO=undefined;};if(hM.invalid&&!hM.disabled){hP+=fr;};return {decorator:hP,textColor:hO,padding:hN,margin:[1,0]};}},"button-frame/image":{style:function(hQ){return {opacity:!hQ.replacement&&hQ.disabled?0.5:1};}},"button":{alias:hk,include:hk,style:function(hR){return {center:true};}},"hover-button":{alias:et,include:et,style:function(hS){var hT=hS.hovered?gO:undefined;return {decorator:hT,textColor:hS.hovered?gH:undefined};}},"menubutton":{include:gL,alias:gL,style:function(hU){return {icon:fT,iconPosition:hq};}},"splitbutton":{},"splitbutton/button":gL,"splitbutton/arrow":{alias:gL,include:gL,style:function(hV,hW){return {icon:fT,padding:[hW.padding[0],hW.padding[1]-6],marginLeft:1};}},"form-renderer-label":{include:fx,style:function(){return {paddingTop:4};}},"checkbox":{alias:et,style:function(hX){var hY;if(hX.checked){hY=gM;}else if(hX.undetermined){hY=gI;}else {hY=fj;};return {icon:hY,minWidth:14,gap:8,paddingLeft:2};}},"checkbox/icon":{style:function(ia){var ic;if(ia.disabled){ic=gx;}else if(ia.focused){ic=hm;}else if(ia.hovered){ic=fE;}else {ic=ey;};ic+=ia.invalid&&!ia.disabled?fr:eM;var ib=ia.undetermined?[3,1]:1;return {decorator:ic,padding:ib,width:10,height:10};}},"radiobutton":{alias:et,style:function(id){return {icon:fj,gap:8,paddingLeft:2};}},"radiobutton/icon":{style:function(ie){var ig;if(ie.disabled&&!ie.checked){ig=V;}else if(ie.checked&&ie.focused){ig=D;}else if(ie.checked&&ie.disabled){ig=gX;}else if(ie.checked&&ie.hovered){ig=eB;}else if(ie.checked){ig=gs;}else if(ie.focused){ig=hA;}else if(ie.hovered){ig=d;}else {ig=A;};ig+=ie.invalid&&!ie.disabled?fr:eM;return {decorator:ig,width:10,height:10};}},"textfield":{style:function(ih){var im;var ik=!!ih.focused;var ii=!!ih.invalid;var ij=!!ih.disabled;if(ik&&ii&&!ij){im=fX;}else if(ik&&!ii&&!ij){im=fy;}else if(ij){im=fB;}else if(!ik&&ii&&!ij){im=l;}else {im=fO;};var il;if(ih.disabled){il=T;}else if(ih.showingPlaceholder){il=es;}else {il=gh;};return {decorator:im,padding:[2,4,1],textColor:il};}},"textarea":{include:fi,style:function(io){return {padding:4};}},"spinner":{style:function(ip){var is;var ir=!!ip.focused;var it=!!ip.invalid;var iq=!!ip.disabled;if(ir&&it&&!iq){is=fX;}else if(ir&&!it&&!iq){is=fy;}else if(iq){is=fB;}else if(!ir&&it&&!iq){is=l;}else {is=fO;};return {decorator:is};}},"spinner/textfield":{style:function(iu){return {marginRight:2,padding:[2,4,1],textColor:iu.disabled?T:gh};}},"spinner/upbutton":{alias:hk,include:hk,style:function(iv,iw){return {icon:fe,padding:[iw.padding[0]-1,iw.padding[1]-5],margin:0};}},"spinner/downbutton":{alias:hk,include:hk,style:function(ix,iy){return {icon:gP,padding:[iy.padding[0]-1,iy.padding[1]-5],margin:0};}},"datefield":gf,"datefield/button":{alias:m,include:m,style:function(iz){return {icon:n,padding:[0,3],decorator:undefined};}},"datefield/textfield":gi,"datefield/list":{alias:gV,include:gV,style:function(iA){return {decorator:undefined};}},"groupbox":{style:function(iB){return {legendPosition:hr};}},"groupbox/legend":{alias:et,style:function(iC){return {padding:[1,0,1,4],textColor:iC.invalid?gj:er,font:P};}},"groupbox/frame":{style:function(iD){return {padding:10,margin:1,decorator:fV};}},"check-groupbox":fJ,"check-groupbox/legend":{alias:ey,include:ey,style:function(iE){return {padding:[1,0,1,4],textColor:iE.invalid?gj:er,font:P};}},"radio-groupbox":fJ,"radio-groupbox/legend":{alias:A,include:A,style:function(iF){return {padding:[1,0,1,4],textColor:iF.invalid?gj:er,font:P};}},"scrollarea":{style:function(iG){return {minWidth:50,minHeight:50};}},"scrollarea/corner":{style:function(iH){return {backgroundColor:f};}},"scrollarea/pane":eG,"scrollarea/scrollbar-x":gk,"scrollarea/scrollbar-y":gk,"scrollbar":{style:function(iI){if(iI[fz]){return {};};return {width:iI.horizontal?undefined:16,height:iI.horizontal?16:undefined,decorator:(iI.horizontal?fs:gD),padding:1};}},"scrollbar/slider":{alias:eK,style:function(iJ){return {padding:iJ.horizontal?[0,1,0,1]:[1,0,1,0]};}},"scrollbar/slider/knob":{include:hk,style:function(iK){var iL=iK.horizontal?W:hi;if(iK.disabled){iL+=hu;};return {decorator:iL,minHeight:iK.horizontal?undefined:9,minWidth:iK.horizontal?9:undefined,padding:undefined,margin:0};}},"scrollbar/button":{alias:hk,include:hk,style:function(iM){var iO=Q;if(iM.left){iO+=eX;}else if(iM.right){iO+=J;}else if(iM.up){iO+=gE;}else {iO+=eJ;};if(iM.left||iM.right){var iN=iM.left?3:4;return {padding:[3,0,3,iN],icon:iO,width:15,height:14,margin:0};}else {return {padding:3,icon:iO,width:14,height:15,margin:0};};}},"scrollbar/button-begin":i,"scrollbar/button-end":i,"slider":{style:function(iP){var iS;var iR=!!iP.focused;var iT=!!iP.invalid;var iQ=!!iP.disabled;if(iR&&iT&&!iQ){iS=fX;}else if(iR&&!iT&&!iQ){iS=fy;}else if(iQ){iS=fB;}else if(!iR&&iT&&!iQ){iS=l;}else {iS=fO;};return {decorator:iS};}},"slider/knob":{include:hk,style:function(iU){return {decorator:iU.disabled?S:W,height:14,width:14,padding:0,margin:0};}},"list":{alias:gm,style:function(iV){var iY;var iX=!!iV.focused;var ja=!!iV.invalid;var iW=!!iV.disabled;if(iX&&ja&&!iW){iY=fX;}else if(iX&&!ja&&!iW){iY=fy;}else if(iW){iY=fB;}else if(!iX&&ja&&!iW){iY=l;}else {iY=fO;};return {backgroundColor:hs,decorator:iY};}},"list/pane":eG,"listitem":{alias:et,style:function(jb){return {padding:jb.dragover?[4,4,2,4]:4,textColor:jb.selected?gH:undefined,decorator:jb.selected?gO:undefined};}},"slidebar":{},"slidebar/scrollpane":{},"slidebar/content":{},"slidebar/button-forward":{alias:hk,include:hk,style:function(jc){return {padding:5,center:true,icon:jc.vertical?fT:e};}},"slidebar/button-backward":{alias:hk,include:hk,style:function(jd){return {padding:5,center:true,icon:jd.vertical?eT:fH};}},"tabview":{style:function(je){return {contentPadding:16};}},"tabview/bar":{alias:o,style:function(jf){var jg={marginBottom:jf.barTop?-1:0,marginTop:jf.barBottom?-4:0,marginLeft:jf.barRight?-3:0,marginRight:jf.barLeft?-1:0,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0};if(jf.barTop||jf.barBottom){jg.paddingLeft=5;jg.paddingRight=7;}else {jg.paddingTop=5;jg.paddingBottom=7;};return jg;}},"tabview/bar/button-forward":{include:gn,alias:gn,style:function(jh){if(jh.barTop||jh.barBottom){return {marginTop:2,marginBottom:2};}else {return {marginLeft:2,marginRight:2};};}},"tabview/bar/button-backward":{include:gY,alias:gY,style:function(ji){if(ji.barTop||ji.barBottom){return {marginTop:2,marginBottom:2};}else {return {marginLeft:2,marginRight:2};};}},"tabview/bar/scrollpane":{},"tabview/pane":{style:function(jj){return {decorator:ho,marginBottom:jj.barBottom?-1:0,marginTop:jj.barTop?-1:0,marginLeft:jj.barLeft?-1:0,marginRight:jj.barRight?-1:0};}},"tabview-page":{alias:eG,include:eG,style:function(jk){return {padding:[4,3]};}},"tabview-page/button":{alias:et,style:function(jl){var jr,jn=0;var jq=0,jm=0,jo=0,jp=0;if(jl.checked){if(jl.barTop){jr=eF;jn=[5,11];jo=jl.firstTab?0:-5;jp=jl.lastTab?0:-5;}else if(jl.barBottom){jr=fd;jn=[5,11];jo=jl.firstTab?0:-5;jp=jl.lastTab?0:-5;jq=3;}else if(jl.barRight){jr=fa;jn=[5,10];jq=jl.firstTab?0:-5;jm=jl.lastTab?0:-5;jo=2;}else {jr=gg;jn=[5,10];jq=jl.firstTab?0:-5;jm=jl.lastTab?0:-5;};}else {if(jl.barTop){jr=fL;jn=[3,9];jq=4;jo=jl.firstTab?5:1;jp=1;}else if(jl.barBottom){jr=K;jn=[3,9];jm=4;jo=jl.firstTab?5:1;jp=1;jq=3;}else if(jl.barRight){jr=gc;jn=[3,9];jp=5;jq=jl.firstTab?5:1;jm=1;jo=3;}else {jr=fM;jn=[3,9];jo=5;jq=jl.firstTab?5:1;jm=1;jp=1;};};return {zIndex:jl.checked?10:5,decorator:jr,padding:jn,marginTop:jq,marginBottom:jm,marginLeft:jo,marginRight:jp,textColor:jl.disabled?T:jl.checked?fY:y};}},"tabview-page/button/label":{alias:fx,style:function(js){return {padding:js.focused?[0,1,0,1]:[1,2,1,2],decorator:js.focused?g:undefined};}},"tabview-page/button/close-button":{alias:et,style:function(jt){return {icon:ge};}},"toolbar":{style:function(ju){return {decorator:hg,spacing:2};}},"toolbar/part":{style:function(jv){return {decorator:eY,spacing:2};}},"toolbar/part/container":{style:function(jw){return {paddingLeft:2,paddingRight:2};}},"toolbar/part/handle":{style:function(jx){return {source:gC,marginLeft:3,marginRight:3};}},"toolbar-button":{alias:et,style:function(jy){var jz;if(jy.pressed||(jy.checked&&!jy.hovered)||(jy.checked&&jy.disabled)){jz=fG;}else if(jy.hovered&&!jy.disabled){jz=gN;};return {marginTop:2,marginBottom:2,padding:(jy.pressed||jy.checked||jy.hovered)&&!jy.disabled||(jy.disabled&&jy.checked)?3:5,decorator:jz};}},"toolbar-menubutton":{alias:gU,include:gU,style:function(jA){return {showArrow:true};}},"toolbar-menubutton/arrow":{alias:z,include:z,style:function(jB){return {source:gP};}},"toolbar-splitbutton":{style:function(jC){return {marginTop:2,marginBottom:2};}},"toolbar-splitbutton/button":{alias:gU,include:gU,style:function(jD){return {icon:fT,marginTop:undefined,marginBottom:undefined};}},"toolbar-splitbutton/arrow":{alias:gU,include:gU,style:function(jE){if(jE.pressed||jE.checked||(jE.hovered&&!jE.disabled)){var jF=1;}else {var jF=3;};return {padding:jF,icon:fT,marginTop:undefined,marginBottom:undefined};}},"toolbar-separator":{style:function(jG){return {decorator:fg,margin:7};}},"tree":G,"tree-item":{style:function(jH){var jI=jH.selected?gO:undefined;return {padding:[2,6],textColor:jH.selected?gH:undefined,decorator:jI};}},"tree-item/icon":{include:z,style:function(jJ){return {paddingRight:5};}},"tree-item/label":fx,"tree-item/open":{include:z,style:function(jK){var jL;if(jK.selected&&jK.opened){jL=fI;}else if(jK.selected&&!jK.opened){jL=gv;}else if(jK.opened){jL=gA;}else {jL=M;};return {padding:[0,5,0,2],source:jL};}},"tree-folder":{include:fQ,alias:fQ,style:function(jM){var jO,jN;if(jM.small){jO=jM.opened?fk:x;jN=fk;}else if(jM.large){jO=jM.opened?eq:ff;jN=eq;}else {jO=jM.opened?gl:eD;jN=gl;};return {icon:jO,iconOpened:jN};}},"tree-file":{include:fQ,alias:fQ,style:function(jP){return {icon:jP.small?hC:jP.large?ha:gB};}},"treevirtual":eV,"treevirtual-folder":{style:function(jQ){return {icon:jQ.opened?fk:x};}},"treevirtual-file":{include:hE,alias:hE,style:function(jR){return {icon:hC};}},"treevirtual-line":{style:function(jS){return {icon:fj};}},"treevirtual-contract":{style:function(jT){return {icon:gA,paddingLeft:5,paddingTop:2};}},"treevirtual-expand":{style:function(jU){return {icon:M,paddingLeft:5,paddingTop:2};}},"treevirtual-only-contract":hD,"treevirtual-only-expand":ev,"treevirtual-start-contract":hD,"treevirtual-start-expand":ev,"treevirtual-end-contract":hD,"treevirtual-end-expand":ev,"treevirtual-cross-contract":hD,"treevirtual-cross-expand":ev,"treevirtual-end":{style:function(jV){return {icon:fj};}},"treevirtual-cross":{style:function(jW){return {icon:fj};}},"tooltip":{include:eA,style:function(jX){return {backgroundColor:R,padding:[1,3,2,3],offset:[15,5,5,5]};}},"tooltip/atom":et,"tooltip-error":{style:function(jY){return {placeMethod:eG,offset:[-3,1,0,0],arrowPosition:jY.placementLeft?eu:hq,position:hB,showTimeout:100,hideTimeout:10000,padding:[0,4,4,0]};}},"tooltip-error/arrow":{include:z,style:function(ka){var kb=ka.placementLeft?hd:eR;return {source:kb,padding:[6,0,0,0],zIndex:10000001};}},"tooltip-error/atom":{include:eA,style:function(kc){return {textColor:gH,backgroundColor:undefined,decorator:L,font:P,padding:[3,4,4,4],margin:[1,0,0,0],maxWidth:333};}},"window":{style:function(kd){return {decorator:kd.showStatusbar?gQ:ex,contentPadding:[10,10,10,10],margin:kd.maximized?0:[0,5,5,0]};}},"window-resize-frame":{style:function(ke){return {decorator:ke.showStatusbar?C:b};}},"window/pane":{style:function(kf){return {decorator:hb};}},"window/captionbar":{style:function(kg){return {decorator:(kg.active?eS:F),textColor:kg.active?eN:ew,minHeight:26,paddingRight:2};}},"window/icon":{style:function(kh){return {margin:[5,0,3,6]};}},"window/title":{style:function(ki){return {alignY:fU,font:P,marginLeft:6,marginRight:12};}},"window/minimize-button":{alias:et,style:function(kj){return {icon:kj.active?kj.hovered?fA:gd:fR,margin:[4,8,2,0]};}},"window/restore-button":{alias:et,style:function(kk){return {icon:kk.active?kk.hovered?E:gW:fW,margin:[5,8,2,0]};}},"window/maximize-button":{alias:et,style:function(kl){return {icon:kl.active?kl.hovered?c:eE:gp,margin:[4,8,2,0]};}},"window/close-button":{alias:et,style:function(km){return {icon:km.active?km.hovered?hy:fD:eC,margin:[4,8,2,0]};}},"window/statusbar":{style:function(kn){return {padding:[2,6],decorator:N,minHeight:18};}},"window/statusbar-text":{style:function(ko){return {font:hv};}},"iframe":{style:function(kp){return {decorator:hp};}},"resizer":{style:function(kq){return {decorator:fn};}},"splitpane":{style:function(kr){return {decorator:ga};}},"splitpane/splitter":{style:function(ks){return {width:ks.horizontal?3:undefined,height:ks.vertical?3:undefined,backgroundColor:gq};}},"splitpane/splitter/knob":{style:function(kt){return {source:kt.horizontal?fh:eW};}},"splitpane/slider":{style:function(ku){return {width:ku.horizontal?3:undefined,height:ku.vertical?3:undefined,backgroundColor:gq};}},"selectbox":hk,"selectbox/atom":et,"selectbox/popup":eA,"selectbox/list":{alias:G},"selectbox/arrow":{include:z,style:function(kv){return {source:fT,paddingLeft:5};}},"datechooser":{style:function(kw){var kz;var ky=!!kw.focused;var kA=!!kw.invalid;var kx=!!kw.disabled;if(ky&&kA&&!kx){kz=fX;}else if(ky&&!kA&&!kx){kz=fy;}else if(kx){kz=fB;}else if(!ky&&kA&&!kx){kz=l;}else {kz=fO;};return {padding:2,decorator:kz,backgroundColor:hs};}},"datechooser/navigation-bar":{},"datechooser/nav-button":{include:hk,alias:hk,style:function(kB){var kC={padding:[2,4]};if(kB.lastYear){kC.icon=hn;kC.marginRight=1;}else if(kB.lastMonth){kC.icon=fH;}else if(kB.nextYear){kC.icon=gK;kC.marginLeft=1;}else if(kB.nextMonth){kC.icon=e;};return kC;}},"datechooser/last-year-button-tooltip":fv,"datechooser/last-month-button-tooltip":fv,"datechooser/next-year-button-tooltip":fv,"datechooser/next-month-button-tooltip":fv,"datechooser/last-year-button":gr,"datechooser/last-month-button":gr,"datechooser/next-month-button":gr,"datechooser/next-year-button":gr,"datechooser/month-year-label":{style:function(kD){return {font:P,textAlign:hh,textColor:kD.disabled?T:undefined};}},"datechooser/date-pane":{style:function(kE){return {textColor:kE.disabled?T:undefined,marginTop:2};}},"datechooser/weekday":{style:function(kF){return {textColor:kF.disabled?T:kF.weekend?ht:undefined,textAlign:hh,paddingTop:2,backgroundColor:eL};}},"datechooser/week":{style:function(kG){return {textAlign:hh,padding:[2,4],backgroundColor:eL};}},"datechooser/day":{style:function(kH){var kI=kH.disabled?undefined:kH.selected?gO:undefined;return {textAlign:hh,decorator:kI,textColor:kH.disabled?T:kH.selected?gH:kH.otherMonth?ht:undefined,font:kH.today?P:undefined,padding:[2,4]};}},"combobox":{style:function(kJ){var kM;var kL=!!kJ.focused;var kN=!!kJ.invalid;var kK=!!kJ.disabled;if(kL&&kN&&!kK){kM=fX;}else if(kL&&!kN&&!kK){kM=fy;}else if(kK){kM=fB;}else if(!kL&&kN&&!kK){kM=l;}else {kM=fO;};return {decorator:kM};}},"combobox/popup":eA,"combobox/list":{alias:G},"combobox/button":{include:hk,alias:hk,style:function(kO,kP){var kQ={icon:fT,padding:[kP.padding[0],kP.padding[1]-6],margin:undefined};if(kO.selected){kQ.decorator=fN;};return kQ;}},"combobox/textfield":{include:fi,style:function(kR){return {decorator:undefined};}},"menu":{style:function(kS){var kT={decorator:p,spacingX:6,spacingY:1,iconColumnWidth:16,arrowColumnWidth:4,placementModeY:kS.submenu||kS.contextmenu?gw:hc};if(kS.submenu){kT.position=hB;kT.offset=[-2,-3];};return kT;}},"menu/slidebar":fF,"menu-slidebar":eG,"menu-slidebar-button":{style:function(kU){var kV=kU.hovered?gO:undefined;return {decorator:kV,padding:7,center:true};}},"menu-slidebar/button-backward":{include:fP,style:function(kW){return {icon:kW.hovered?gy:eT};}},"menu-slidebar/button-forward":{include:fP,style:function(kX){return {icon:kX.hovered?eO:fT};}},"menu-separator":{style:function(kY){return {height:0,decorator:fo,margin:[4,2]};}},"menu-button":{alias:et,style:function(la){var lb=la.selected?gO:undefined;return {decorator:lb,textColor:la.selected?gH:undefined,padding:[4,6]};}},"menu-button/icon":{include:z,style:function(lc){return {alignY:fU};}},"menu-button/label":{include:fx,style:function(ld){return {alignY:fU,padding:1};}},"menu-button/shortcut":{include:fx,style:function(le){return {alignY:fU,marginLeft:14,padding:1};}},"menu-button/arrow":{include:z,style:function(lf){return {source:lf.selected?fp:e,alignY:fU};}},"menu-checkbox":{alias:fS,include:fS,style:function(lg){return {icon:!lg.checked?undefined:lg.selected?eU:eP};}},"menu-radiobutton":{alias:fS,include:fS,style:function(lh){return {icon:!lh.checked?undefined:lh.selected?hz:gR};}},"menubar":{style:function(li){return {decorator:fC};}},"menubar-button":{alias:et,style:function(lj){var lk=(lj.pressed||lj.hovered)&&!lj.disabled?gO:undefined;return {decorator:lk,textColor:lj.pressed||lj.hovered?gH:undefined,padding:[3,8]};}},"colorselector":eG,"colorselector/control-bar":eG,"colorselector/control-pane":eG,"colorselector/visual-pane":fJ,"colorselector/preset-grid":eG,"colorselector/colorbucket":{style:function(ll){return {decorator:hp,width:16,height:16};}},"colorselector/preset-field-set":fJ,"colorselector/input-field-set":{include:fJ,alias:fJ,style:function(){return {paddingTop:20};}},"colorselector/preview-field-set":{include:fJ,alias:fJ,style:function(){return {paddingTop:20};}},"colorselector/hex-field-composite":eG,"colorselector/hex-field":fi,"colorselector/rgb-spinner-composite":eG,"colorselector/rgb-spinner-red":fb,"colorselector/rgb-spinner-green":fb,"colorselector/rgb-spinner-blue":fb,"colorselector/hsb-spinner-composite":eG,"colorselector/hsb-spinner-hue":fb,"colorselector/hsb-spinner-saturation":fb,"colorselector/hsb-spinner-brightness":fb,"colorselector/preview-content-old":{style:function(lm){return {decorator:hp,width:50,height:10};}},"colorselector/preview-content-new":{style:function(ln){return {decorator:hp,backgroundColor:hs,width:50,height:10};}},"colorselector/hue-saturation-field":{style:function(lo){return {decorator:hp,margin:5};}},"colorselector/brightness-field":{style:function(lp){return {decorator:hp,margin:[5,7]};}},"colorselector/hue-saturation-pane":eG,"colorselector/hue-saturation-handle":eG,"colorselector/brightness-pane":eG,"colorselector/brightness-handle":eG,"colorpopup":{alias:eA,include:eA,style:function(lq){return {padding:5,backgroundColor:f};}},"colorpopup/field":{style:function(lr){return {decorator:hp,margin:2,width:14,height:14,backgroundColor:hs};}},"colorpopup/selector-button":gL,"colorpopup/auto-button":gL,"colorpopup/preview-pane":fJ,"colorpopup/current-preview":{style:function(ls){return {height:20,padding:4,marginLeft:4,decorator:hp,allowGrowX:true};}},"colorpopup/selected-preview":{style:function(lt){return {height:20,padding:4,marginRight:4,decorator:hp,allowGrowX:true};}},"colorpopup/colorselector-okbutton":{alias:gL,include:gL,style:function(lu){return {icon:k};}},"colorpopup/colorselector-cancelbutton":{alias:gL,include:gL,style:function(lv){return {icon:fK};}},"table":{alias:eG,style:function(lw){return {decorator:eV};}},"table/statusbar":{style:function(lx){return {decorator:hw,padding:[0,2]};}},"table/column-button":{alias:hk,style:function(ly){return {decorator:U,padding:3,icon:eI};}},"table-column-reset-button":{include:fS,alias:fS,style:function(){return {icon:fl};}},"table-scroller":eG,"table-scroller/scrollbar-x":gk,"table-scroller/scrollbar-y":gk,"table-scroller/header":{style:function(lz){return {decorator:U,textColor:lz.disabled?T:undefined};}},"table-scroller/pane":{style:function(lA){return {backgroundColor:Y};}},"table-scroller/focus-indicator":{style:function(lB){return {decorator:q};}},"table-scroller/resize-line":{style:function(lC){return {backgroundColor:go,width:2};}},"table-header-cell":{alias:et,style:function(lD){return {minWidth:13,minHeight:20,padding:lD.hovered?[3,4,2,4]:[3,4],decorator:lD.hovered?ez:u,sortIcon:lD.sorted?(lD.sortedAscending?fc:gJ):undefined};}},"table-header-cell/label":{style:function(lE){return {minWidth:0,alignY:fU,paddingRight:5};}},"table-header-cell/sort-icon":{style:function(lF){return {alignY:fU,alignX:hq,opacity:lF.disabled?0.3:1};}},"table-header-cell/icon":{style:function(lG){return {minWidth:0,alignY:fU,paddingRight:5,opacity:lG.disabled?0.3:1};}},"table-editor-textfield":{include:fi,style:function(lH){return {decorator:undefined,padding:[2,2],backgroundColor:hs};}},"table-editor-selectbox":{include:hl,alias:hl,style:function(lI){return {padding:[0,2],backgroundColor:hs};}},"table-editor-combobox":{include:gf,alias:gf,style:function(lJ){return {decorator:undefined,backgroundColor:hs};}},"progressive-table-header":{alias:eG,style:function(lK){return {decorator:gS};}},"progressive-table-header-cell":{alias:et,style:function(lL){return {minWidth:40,minHeight:25,paddingLeft:6,decorator:ft};}},"app-header":{style:function(lM){return {font:P,textColor:gH,padding:[8,12],decorator:v};}},"app-header-label":fx,"app-splitpane":{alias:ga,style:function(lN){return {padding:0};}},"virtual-list":G,"virtual-list/row-layer":w,"row-layer":eG,"group-item":{include:fx,alias:fx,style:function(lO){return {padding:4,decorator:h,textColor:eH,font:P};}},"virtual-selectbox":hl,"virtual-selectbox/dropdown":eA,"virtual-selectbox/dropdown/list":{alias:fw},"virtual-combobox":gf,"virtual-combobox/dropdown":eA,"virtual-combobox/dropdown/list":{alias:fw},"virtual-tree":{include:gb,alias:gb,style:function(lP){return {itemHeight:26};}},"virtual-tree-folder":I,"virtual-tree-file":he,"column-layer":eG,"cell":{style:function(lQ){return {textColor:lQ.selected?gH:H,padding:[3,6],font:gz};}},"cell-string":gG,"cell-number":{include:gG,style:function(lR){return {textAlign:hq};}},"cell-image":gG,"cell-boolean":{include:gG,style:function(lS){return {iconTrue:t,iconFalse:gT};}},"cell-atom":gG,"cell-date":gG,"cell-html":gG,"htmlarea":{"include":eG,style:function(lT){return {backgroundColor:fq};}},"progressbar":{style:function(lU){return {decorator:fu,padding:[1],backgroundColor:hj,width:200,height:20};}},"progressbar/progress":{style:function(lV){return {decorator:(lV.disabled?h:gO)};}}}});})();(function(){var a="frontend.theme.Appearance";qx.Theme.define(a,{extend:qx.theme.modern.Appearance,appearances:{}});})();(function(){var a="Liberation Sans",b="Tahoma",c="os.name",d="sans-serif",e="monospace",f="win",g="Arial",h="Lucida Grande",i="osx",j="Courier New",k="os.version",l="Lucida Console",m="7",n="Monaco",o="Candara",p="Segoe UI",q="Consolas",r="vista",s="qx.theme.modern.Font",t="DejaVu Sans Mono";qx.Theme.define(s,{fonts:{"default":{size:(qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r))?12:11,lineHeight:1.4,family:qx.core.Environment.get(c)==i?[h]:((qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r)))?[p,o]:[b,a,g,d]},"bold":{size:(qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r))?12:11,lineHeight:1.4,family:qx.core.Environment.get(c)==i?[h]:((qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r)))?[p,o]:[b,a,g,d],bold:true},"small":{size:(qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r))?11:10,lineHeight:1.4,family:qx.core.Environment.get(c)==i?[h]:((qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r)))?[p,o]:[b,a,g,d]},"monospace":{size:11,lineHeight:1.4,family:qx.core.Environment.get(c)==i?[l,n]:((qx.core.Environment.get(c)==f&&(qx.core.Environment.get(k)==m||qx.core.Environment.get(k)==r)))?[q]:[q,t,j,e]}}});})();(function(){var a="frontend.theme.Font";qx.Theme.define(a,{extend:qx.theme.modern.Font,fonts:{}});})();(function(){var a="black",b="#EEEEEE",c="#1a1a1a",d="#ffffdd",e="#b6b6b6",f="#004DAD",g="#BABABA",h="#005BC3",i="#334866",j="#00204D",k="#CECECE",l="gray",m="#D9D9D9",n="#D8D8D8",o="#99C3FE",p="#001533",q="#B3B3B3",r="#F4F4F4",s="#D5D5D5",t="#fffefe",u="#C3C3C3",v="#E4E4E4",w="#DDDDDD",x="#FF9999",y="css.rgba",z="#E8E8E9",A="#084FAA",B="#AFAFAF",C="white",D="#C5C5C5",E="rgba(0, 0, 0, 0.4)",F="#DBDBDB",G="#4a4a4a",H="#83BAEA",I="#D7E7F4",J="#07125A",K="#084FAB",L="#FAF2F2",M="#87AFE7",N="#F7EAEA",O="#777D8D",P="#FBFBFB",Q="#CACACA",R="#909090",S="#9B9B9B",T="#F0F9FE",U="#314a6e",V="#B4B4B4",W="#787878",X="qx.theme.modern.Color",Y="#000000",cb="#26364D",cc="#A7A7A7",cd="#D1E4FF",bW="#5CB0FD",bX="#FCFCFC",bY="#EAEAEA",ca="#003B91",ci="#80B4EF",cj="#FF6B78",ck="#949494",cl="#808080",ce="#F3F3F3",cf="#930000",cg="#7B7B7B",ch="#F0F0F0",cp="#C82C2C",cM="#DFDFDF",cN="#B6B6B6",cq="#0880EF",cm="#4d4d4d",cn="#f4f4f4",cP="#7B7A7E",co="#D0D0D0",cr="#f8f8f8",cs="#404955",ct="#959595",cx="#AAAAAA",cQ="#F7E9E9",cy="#314A6E",cu="#C72B2B",cv="#FAFAFA",cO="#FBFCFB",cw="#B2D2FF",cC="#666666",cD="#CBC8CD",cE="#999999",cF="#8EB8D6",cz="#b8b8b8",cA="#727272",cR="#33508D",cB="#E8E8E8",cJ="#CCCCCC",cK="#CCC",cS="#EFEFEF",cL="#F2F2F2",cG="#F1F1F1",cH="#990000",cI="#00368A";qx.Theme.define(X,{colors:{"background-application":cM,"background-pane":ce,"background-light":bX,"background-medium":b,"background-splitpane":B,"background-tip":d,"background-tip-error":cu,"background-odd":v,"htmlarea-background":C,"progressbar-background":C,"text-light":R,"text-gray":G,"text-label":c,"text-title":U,"text-input":Y,"text-hovered":p,"text-disabled":cP,"text-selected":t,"text-active":cb,"text-inactive":cs,"text-placeholder":cD,"border-inner-scrollbar":C,"border-main":cm,"menu-separator-top":D,"menu-separator-bottom":cv,"border-separator":cl,"border-toolbar-button-outer":e,"border-toolbar-border-inner":cr,"border-toolbar-separator-right":cn,"border-toolbar-separator-left":cz,"border-input":i,"border-inner-input":C,"border-disabled":cN,"border-pane":j,"border-button":cC,"border-column":cJ,"border-focused":o,"invalid":cH,"border-focused-invalid":x,"border-dragover":cR,"keyboard-focus":a,"table-pane":ce,"table-focus-indicator":cq,"table-row-background-focused-selected":K,"table-row-background-focused":ci,"table-row-background-selected":K,"table-row-background-even":ce,"table-row-background-odd":v,"table-row-selected":t,"table-row":c,"table-row-line":cK,"table-column-line":cK,"table-header-hovered":C,"progressive-table-header":cx,"progressive-table-header-border-right":cL,"progressive-table-row-background-even":r,"progressive-table-row-background-odd":v,"progressive-progressbar-background":l,"progressive-progressbar-indicator-done":cJ,"progressive-progressbar-indicator-undone":C,"progressive-progressbar-percent-background":l,"progressive-progressbar-percent-text":C,"selected-start":f,"selected-end":cI,"background-selected":cI,"tabview-background":J,"shadow":qx.core.Environment.get(y)?E:cE,"pane-start":P,"pane-end":ch,"group-background":cB,"group-border":V,"radiobutton-background":cS,"checkbox-border":cy,"checkbox-focus":M,"checkbox-hovered":cw,"checkbox-hovered-inner":cd,"checkbox-inner":b,"checkbox-start":v,"checkbox-end":ce,"checkbox-disabled-border":W,"checkbox-disabled-inner":Q,"checkbox-disabled-start":co,"checkbox-disabled-end":n,"checkbox-hovered-inner-invalid":L,"checkbox-hovered-invalid":cQ,"radiobutton-checked":h,"radiobutton-disabled":s,"radiobutton-checked-disabled":cg,"radiobutton-hovered-invalid":N,"tooltip-error":cp,"scrollbar-start":cJ,"scrollbar-end":cG,"scrollbar-slider-start":b,"scrollbar-slider-end":u,"button-border-disabled":ct,"button-start":ch,"button-end":B,"button-disabled-start":r,"button-disabled-end":g,"button-hovered-start":T,"button-hovered-end":cF,"button-focused":H,"border-invalid":cf,"input-start":ch,"input-end":cO,"input-focused-start":I,"input-focused-end":bW,"input-focused-inner-invalid":cj,"input-border-disabled":S,"input-border-inner":C,"toolbar-start":cS,"toolbar-end":w,"window-border":j,"window-border-caption":cA,"window-caption-active-text":C,"window-caption-active-start":A,"window-caption-active-end":ca,"window-caption-inactive-start":cL,"window-caption-inactive-end":F,"window-statusbar-background":cS,"tabview-start":bX,"tabview-end":b,"tabview-inactive":O,"tabview-inactive-start":bY,"tabview-inactive-end":k,"table-header-start":cB,"table-header-end":q,"menu-start":z,"menu-end":m,"menubar-start":cB,"groupitem-start":cc,"groupitem-end":ck,"groupitem-text":C,"virtual-row-layer-background-even":C,"virtual-row-layer-background-odd":C}});})();(function(){var a="frontend.theme.Color";qx.Theme.define(a,{extend:qx.theme.modern.Color,colors:{}});})();(function(){var a="frontend.theme.Theme";qx.Theme.define(a,{meta:{color:frontend.theme.Color,decoration:frontend.theme.Decoration,font:frontend.theme.Font,icon:qx.theme.icon.Tango,appearance:frontend.theme.Appearance}});})();
211
+
212
+ qx.$$loader.init();
213
+