qooxview 1.9.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.project +13 -0
- data/.ruby-version +1 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +89 -0
- data/LICENSE.txt +619 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/VERSIONS +12 -0
- data/lib/qooxview/additions.rb +161 -0
- data/lib/qooxview/config_yaml.rb +42 -0
- data/lib/qooxview/entity.rb +698 -0
- data/lib/qooxview/frontend/1build_generate +14 -0
- data/lib/qooxview/frontend/2src_generate +4 -0
- data/lib/qooxview/frontend/Manifest.json +34 -0
- data/lib/qooxview/frontend/README +19 -0
- data/lib/qooxview/frontend/UploadMgr/.project +11 -0
- data/lib/qooxview/frontend/UploadMgr/Manifest.json +34 -0
- data/lib/qooxview/frontend/UploadMgr/config.json +77 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/Manifest.json +34 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/config.json +84 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/generate.py +72 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/Application.js +224 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/simulation/DemoSimulation.js +44 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/test/DemoTest.js +55 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Appearance.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Color.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Decoration.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Font.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/class/uploadmgr/demo/theme/Theme.js +21 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/index.html +9 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/resource/uploadmgr/demo/test.png +0 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/script/uploadmgr.demo.d88b4fb45db4.js +1 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/script/uploadmgr.demo.js +211 -0
- data/lib/qooxview/frontend/UploadMgr/demo/default/source/translation/readme.txt +3 -0
- data/lib/qooxview/frontend/UploadMgr/generate.py +72 -0
- data/lib/qooxview/frontend/UploadMgr/server/LICENSE.TXT +3 -0
- data/lib/qooxview/frontend/UploadMgr/server/README.txt +3 -0
- data/lib/qooxview/frontend/UploadMgr/server/java/com/zenesis/qx/upload/DemoUploadServlet.java +176 -0
- data/lib/qooxview/frontend/UploadMgr/server/perl.cgi +62 -0
- data/lib/qooxview/frontend/UploadMgr/server/php.php +116 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/AbstractHandler.js +278 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/File.js +178 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/FormHandler.js +192 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/InputElement.js +68 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/MParameters.js +67 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/MUploadButton.js +40 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadButton.js +35 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadMgr.js +301 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/UploadToolbarButton.js +35 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/XhrHandler.js +176 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/simulation/DemoSimulation.js +44 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/test/DemoTest.js +55 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Appearance.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Color.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Decoration.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Font.js +18 -0
- data/lib/qooxview/frontend/UploadMgr/source/class/com/zenesis/qx/upload/theme/Theme.js +21 -0
- data/lib/qooxview/frontend/UploadMgr/source/index.html +9 -0
- data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/banner-bg.png +0 -0
- data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/banner.png +0 -0
- data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/logo.gif +0 -0
- data/lib/qooxview/frontend/UploadMgr/source/resource/com/zenesis/qx/upload/test.png +0 -0
- data/lib/qooxview/frontend/UploadMgr/source/translation/readme.txt +3 -0
- data/lib/qooxview/frontend/build/index.html +11 -0
- data/lib/qooxview/frontend/build/resource/frontend/test.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/app-header.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-invert.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-small-invert.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down-small.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/down.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/forward.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/left-invert.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/left.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/rewind.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/right-invert.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/right.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up-invert.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up-small.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows/up.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/arrows-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/button-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/button-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/checkradio-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/brightness-field.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/brightness-handle.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/huesaturation-field.jpg +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector/huesaturation-handle.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/colorselector-combined.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/alias.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/copy.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/move.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors/nodrop.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/cursors-combined.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-checked.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-preselected.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-pressed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/button.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-focused-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-hovered-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-pressed-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked-pressed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-checked.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-focused-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-hovered-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-pressed-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-pressed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-focused-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-hovered-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox-undetermined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checkbox.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checked-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/checked.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/input-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/input.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-focused-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-hovered-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-pressed-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked-pressed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-checked.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-focused-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-focused.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-hovered-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-pressed-invalid.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton-pressed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/radiobutton.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-arrow-right.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-arrow.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/tooltip-error.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/undetermined-disabled.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/form/undetermined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/group-item.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox/groupbox.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/groupbox-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/background.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/bar-background.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/checkbox-invert.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/checkbox.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/radiobutton-invert.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu/radiobutton.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu-background-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/menu-checkradio-combined.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane/pane.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/pane-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-horizontal.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-pressed-horizontal.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-pressed-vertical.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-bg-vertical.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-button-bg-horizontal.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-button-bg-vertical.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-down.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-left.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-right.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/scrollbar-up.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar/slider-knob-background.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/scrollbar-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/selection.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-small.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow/shadow.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-small-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-small-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/shadow-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane/knob-horizontal.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane/knob-vertical.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/splitpane-knobs-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/ascending.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/boolean-false.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/boolean-true.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/descending.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/header-cell.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table/select-column-order.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/table-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-bottom-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-left-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-right-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tab-button-top-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview/tabview-pane.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-active-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-active-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-b-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-bottom-inactive-t-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-active-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-active-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-b-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-left-inactive-t-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-active-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-active-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-b-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-right-inactive-t-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-active-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-active-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-b-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-button-top-inactive-t-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-pane-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tabview-pane-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-gradient-blue.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-gradient.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-handle-knob.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar/toolbar-part.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/toolbar-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tooltip-error-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tooltip-error-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/closed-selected.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/closed.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/open-selected.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree/open.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/tree-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/captionbar-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-active-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/close-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-active-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/maximize-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-active-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/minimize-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-active-hovered.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-active.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/restore-inactive.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-b.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-bl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-br.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-c.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-l.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-r.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-t.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-tl.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar-tr.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window/statusbar.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-buttons-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-lr-active-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-lr-inactive-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-tb-active-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-captionbar-tb-inactive-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-statusbar-lr-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/decoration/Modern/window-statusbar-tb-combined.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/dialog-cancel.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/dialog-ok.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/view-refresh.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/actions/window-close.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/apps/office-calendar.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/apps/utilities-color-chooser.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/mimetypes/office-document.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/places/folder-open.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/16/places/folder.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/mimetypes/office-document.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/places/folder-open.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/22/places/folder.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/mimetypes/office-document.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/places/folder-open.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/icon/Tango/32/places/folder.png +0 -0
- data/lib/qooxview/frontend/build/resource/qx/static/blank.gif +0 -0
- data/lib/qooxview/frontend/build/resource/qx/static/blank.png +0 -0
- data/lib/qooxview/frontend/build/script/frontend.js +213 -0
- data/lib/qooxview/frontend/config.json +58 -0
- data/lib/qooxview/frontend/generate.py +149 -0
- data/lib/qooxview/frontend/mklink +2 -0
- data/lib/qooxview/frontend/readme.txt +11 -0
- data/lib/qooxview/frontend/source/class/frontend/Application.js +84 -0
- data/lib/qooxview/frontend/source/class/frontend/LAYOUT +120 -0
- data/lib/qooxview/frontend/source/class/frontend/Lib/Fields.js +1486 -0
- data/lib/qooxview/frontend/source/class/frontend/Lib/RPC.js +104 -0
- data/lib/qooxview/frontend/source/class/frontend/Lib/TimerF.js +63 -0
- data/lib/qooxview/frontend/source/class/frontend/Views/Form.js +150 -0
- data/lib/qooxview/frontend/source/class/frontend/Views/Ltab.js +633 -0
- data/lib/qooxview/frontend/source/class/frontend/__init__.js +6 -0
- data/lib/qooxview/frontend/source/class/frontend/globals.js +51 -0
- data/lib/qooxview/frontend/source/class/frontend/simulation/DemoSimulation.js +42 -0
- data/lib/qooxview/frontend/source/class/frontend/test/DemoTest.js +55 -0
- data/lib/qooxview/frontend/source/class/frontend/theme/Appearance.js +18 -0
- data/lib/qooxview/frontend/source/class/frontend/theme/Color.js +18 -0
- data/lib/qooxview/frontend/source/class/frontend/theme/Decoration.js +18 -0
- data/lib/qooxview/frontend/source/class/frontend/theme/Font.js +18 -0
- data/lib/qooxview/frontend/source/class/frontend/theme/Theme.js +21 -0
- data/lib/qooxview/frontend/source/index.html +11 -0
- data/lib/qooxview/frontend/source/resource/frontend/test.png +0 -0
- data/lib/qooxview/frontend/source/translation/readme.txt +3 -0
- data/lib/qooxview/helpers/config_base.rb +264 -0
- data/lib/qooxview/helpers/icc.rb +222 -0
- data/lib/qooxview/helpers/make_steps.rb +77 -0
- data/lib/qooxview/helpers/migration_version.rb +18 -0
- data/lib/qooxview/helpers/open_print.rb +286 -0
- data/lib/qooxview/helpers/permission.rb +146 -0
- data/lib/qooxview/helpers/qoox_parser.rb +54 -0
- data/lib/qooxview/helpers/session.rb +68 -0
- data/lib/qooxview/helpers/static.rb +23 -0
- data/lib/qooxview/helpers/upload_files.rb +27 -0
- data/lib/qooxview/helpers/vtlist_pane.rb +158 -0
- data/lib/qooxview/helpers/welcome.rb +55 -0
- data/lib/qooxview/qooxview.rb +175 -0
- data/lib/qooxview/rpcqooxdoo.rb +395 -0
- data/lib/qooxview/storage_handler.rb +455 -0
- data/lib/qooxview/storage_type.rb +129 -0
- data/lib/qooxview/storages/csv.rb +170 -0
- data/lib/qooxview/storages/ldap.rb +238 -0
- data/lib/qooxview/storages/sqlite.rb +198 -0
- data/lib/qooxview/value.rb +202 -0
- data/lib/qooxview/version.rb +3 -0
- data/lib/qooxview/view.rb +904 -0
- data/lib/qooxview.rb +83 -0
- data/qooxview.gemspec +50 -0
- data/test/benchmark_creation.rb +37 -0
- data/test/config.yaml +36 -0
- data/test/entities/config.rb +33 -0
- data/test/entities/course.rb +28 -0
- data/test/entities/databases.rb +17 -0
- data/test/entities/doubleCase.rb +12 -0
- data/test/entities/dummies.rb +24 -0
- data/test/entities/inventory.rb +6 -0
- data/test/entities/needs.rb +20 -0
- data/test/entities/person.rb +73 -0
- data/test/file_binary.bin +0 -0
- data/test/files/print_formulas.ods +0 -0
- data/test/files/print_formulas_2.ods +0 -0
- data/test/files/student_card.odg +0 -0
- data/test/gettext.po +24 -0
- data/test/gettext.pot +0 -0
- data/test/messages.mo +0 -0
- data/test/po/fr/LC_MESSAGES/gettext.mo +0 -0
- data/test/qooxdoo-layout-frontend.js +49 -0
- data/test/qv_configbase.rb +98 -0
- data/test/qv_entity.rb +271 -0
- data/test/qv_gettext.rb +28 -0
- data/test/qv_helpers.rb +173 -0
- data/test/qv_icc.rb +60 -0
- data/test/qv_migration.rb +130 -0
- data/test/qv_permission.rb +34 -0
- data/test/qv_print.rb +73 -0
- data/test/qv_session.rb +29 -0
- data/test/qv_sqlite.rb +73 -0
- data/test/qv_store_csv.rb +86 -0
- data/test/qv_stype.rb +41 -0
- data/test/qv_view.rb +204 -0
- data/test/st_dummy.rb +30 -0
- data/test/test.rb +49 -0
- data/test/views/aview.rb +24 -0
- data/test/views/bview.rb +10 -0
- data/test/views/configviews.rb +19 -0
- data/test/views/courseshow.rb +11 -0
- data/test/views/cview.rb +22 -0
- data/test/views/login.rb +15 -0
- data/test/views/print.rb +10 -0
- metadata +1068 -0
@@ -0,0 +1,633 @@
|
|
1
|
+
/* ************************************************************************
|
2
|
+
Copyright: 2010 by Linus Gasser
|
3
|
+
License: GPL v3
|
4
|
+
Authors: Linus Gasser
|
5
|
+
************************************************************************ */
|
6
|
+
/* ************************************************************************
|
7
|
+
#asset(frontend/*)
|
8
|
+
************************************************************************ */
|
9
|
+
|
10
|
+
/**
|
11
|
+
* Create the views in a Gestion-project
|
12
|
+
*/
|
13
|
+
qx.Class.define("frontend.Views.Ltab", {
|
14
|
+
// extend : qx.core.Object,
|
15
|
+
extend: qx.ui.container.Composite,
|
16
|
+
|
17
|
+
/*
|
18
|
+
* Constructor of Views.Chooser Takes:
|
19
|
+
*
|
20
|
+
*/
|
21
|
+
construct: function (app) {
|
22
|
+
this.app = app;
|
23
|
+
this.alignTabs = "left";
|
24
|
+
this.fadedin = false;
|
25
|
+
this.base(arguments);
|
26
|
+
this.setLayout(this.layout = new qx.ui.layout.Grow());
|
27
|
+
this.timer = new frontend.Lib.TimerF();
|
28
|
+
|
29
|
+
this.selectfadein = "parent,child,windows";
|
30
|
+
/*
|
31
|
+
this.addListener("resize", function(e){
|
32
|
+
root.fireDataEvent("resize", new qx.event.type.Data());
|
33
|
+
}, this);
|
34
|
+
*/
|
35
|
+
},
|
36
|
+
members: {
|
37
|
+
app: null,
|
38
|
+
layoutView: null,
|
39
|
+
dataClass: null,
|
40
|
+
viewClass: null,
|
41
|
+
root: null,
|
42
|
+
views: null,
|
43
|
+
layout: null,
|
44
|
+
list: null,
|
45
|
+
views: null,
|
46
|
+
field: null,
|
47
|
+
tabs: null,
|
48
|
+
timer: null,
|
49
|
+
selectfadein: null,
|
50
|
+
fadedin: null,
|
51
|
+
alignTabs: null,
|
52
|
+
parentLtab: null,
|
53
|
+
initValues: null,
|
54
|
+
|
55
|
+
dispatch_async: function (results, source) {
|
56
|
+
source = source.replace(/^.*\./, '')
|
57
|
+
var dest = this.viewClass
|
58
|
+
if (this.parentLtab) {
|
59
|
+
dest = this.parentLtab.viewClass.replace(/Tabs$/, '') +
|
60
|
+
dest.replace(/^[A-Z][a-z]*/, '')
|
61
|
+
}
|
62
|
+
if (source == dest) {
|
63
|
+
//alert( "Async of " + source + " with " + dest + " : " +
|
64
|
+
// this.parentLtab.viewClass );
|
65
|
+
this.dispatch(results)
|
66
|
+
//this.timer.cont();
|
67
|
+
} else {
|
68
|
+
//alert( "Oups - got " + source + " instead of " + dest )
|
69
|
+
}
|
70
|
+
},
|
71
|
+
|
72
|
+
// This is called upon return from the server, and dispatches to the
|
73
|
+
// appropriate functions. The result is an array of commands.
|
74
|
+
dispatch: function (results) {
|
75
|
+
dbg(5, "in dispatcher for " + this.viewClass);
|
76
|
+
var enable = true;
|
77
|
+
this.parentFadeOut();
|
78
|
+
var aform = this.getActiveForm();
|
79
|
+
|
80
|
+
for (var r = 0; r < results.length; r++) {
|
81
|
+
var res = results[r];
|
82
|
+
dbg(0, "*****===== Dispatcher " + (r + 1) + " / " + results.length)
|
83
|
+
dbg(0, "res: " + print_a(res));
|
84
|
+
//dbg(0, "res.data array: " + print_a(res.data));
|
85
|
+
dbg(0, "res.data:" + res.data);
|
86
|
+
switch (res.cmd) {
|
87
|
+
case "auto_update":
|
88
|
+
case "auto_update_async":
|
89
|
+
// Enable an automatic update every n seconds
|
90
|
+
this.timer.stop();
|
91
|
+
// The time is positive if we only ask the backend to send new data
|
92
|
+
// The time is negative if we have to send our values first
|
93
|
+
var time = Math.abs(res.data) * 1000;
|
94
|
+
if (time >= 1) {
|
95
|
+
var method = "update";
|
96
|
+
if (res.cmd == "auto_update_async") {
|
97
|
+
method = "update_async";
|
98
|
+
}
|
99
|
+
if (res.data < 0) {
|
100
|
+
method = method + "_with_values"
|
101
|
+
}
|
102
|
+
dbg(3, "update-method is: " + method);
|
103
|
+
dbg(3, "View is: " + this.viewClass);
|
104
|
+
this.timer.start(this.autoUpdate, time, this, method, time);
|
105
|
+
} else {
|
106
|
+
dbg(3, "auto-update is 0, not updating")
|
107
|
+
}
|
108
|
+
break;
|
109
|
+
case "bar_position":
|
110
|
+
this.tabs.setBarPosition( res.data );
|
111
|
+
break;
|
112
|
+
case "callback_button":
|
113
|
+
//aform.fadeOut();
|
114
|
+
enable = false;
|
115
|
+
unfade = false;
|
116
|
+
var callback_button = res.data
|
117
|
+
//alert( "Preparing callback button " + callback_button );
|
118
|
+
qx.util.TimerManager.getInstance().start(function (userData, timerId) {
|
119
|
+
dbg(3, "Timer for callback_button");
|
120
|
+
//alert( "Calling back button " + callback_button );
|
121
|
+
this.callBackend("button", callback_button, this.fields.getFieldsData());
|
122
|
+
}, null, aform, null, 500);
|
123
|
+
break;
|
124
|
+
case "child":
|
125
|
+
if (aform.fields.childLtab) {
|
126
|
+
aform.fields.childLtab.dispatch(res.data);
|
127
|
+
}
|
128
|
+
break;
|
129
|
+
case "clear":
|
130
|
+
this.removeAll();
|
131
|
+
break;
|
132
|
+
case "debug":
|
133
|
+
// Enable logging in debug variant
|
134
|
+
dbg(0, "Turning debugging on")
|
135
|
+
if (qx.core.Environment.get('qx.debug') != "on") {
|
136
|
+
// support native logging capabilities, e.g. Firebug for Firefox
|
137
|
+
qx.log.appender.Native;
|
138
|
+
// support additional cross-browser console. Press F7 to toggle
|
139
|
+
// visibility
|
140
|
+
qx.log.appender.Console.show();
|
141
|
+
}
|
142
|
+
break;
|
143
|
+
case "empty":
|
144
|
+
// Only empties the given fields (usually lists)
|
145
|
+
this.getActiveForm().fields.clearDataOnly(res.data);
|
146
|
+
break;
|
147
|
+
case "empty_all":
|
148
|
+
// Let's empty everything
|
149
|
+
this.getActiveForm().fields.clearDataAll();
|
150
|
+
break;
|
151
|
+
case "empty_nonlists":
|
152
|
+
// By default empties only normal fields. If given a list of
|
153
|
+
// names, clears also these lists
|
154
|
+
this.getActiveForm().fields.clearData(res.data);
|
155
|
+
break;
|
156
|
+
case "empty_selections":
|
157
|
+
this.getActiveForm().fields.clearSelections();
|
158
|
+
break;
|
159
|
+
// Combines :empty with :update for the same field
|
160
|
+
case "empty_update":
|
161
|
+
dbg(3, "res.data is " + print_a(res.data) );
|
162
|
+
dbg(3, "res.data is " + print_a(Object.keys(res.data)) );
|
163
|
+
this.getActiveForm().fields.clearDataOnly(Object.keys(res.data));
|
164
|
+
this.updateView(res.data, false)
|
165
|
+
break;
|
166
|
+
// Combines :empty_all with :update
|
167
|
+
case "empty_all_update":
|
168
|
+
this.getActiveForm().fields.clearDataAll();
|
169
|
+
this.updateView(res.data, false)
|
170
|
+
break;
|
171
|
+
// Combines :empty_nonlists with :update
|
172
|
+
case "empty_nonlists_update":
|
173
|
+
this.getActiveForm().fields.clearData(Object.keys(res.data));
|
174
|
+
this.updateView(res.data, false)
|
175
|
+
break;
|
176
|
+
case "eval":
|
177
|
+
window.eval(res.data);
|
178
|
+
break;
|
179
|
+
case "fade_in":
|
180
|
+
this.setFadeIn(res.data)
|
181
|
+
break;
|
182
|
+
case "focus":
|
183
|
+
this.parentFadeIn();
|
184
|
+
var f = res.data;
|
185
|
+
dbg(2, "res data is " + print_a(f))
|
186
|
+
if (aform && aform.fields && aform.fields.fields) {
|
187
|
+
if (f.table) {
|
188
|
+
var table = aform.fields.fields[f.table];
|
189
|
+
|
190
|
+
if (table) {
|
191
|
+
var old_update = table.updating;
|
192
|
+
table.updating = true;
|
193
|
+
|
194
|
+
dbg(2, "Focusing on table " + f.table);
|
195
|
+
aform.fields.focus_table(table, f.col, f.row);
|
196
|
+
|
197
|
+
table.updating = old_update;
|
198
|
+
} else {
|
199
|
+
dbg(2, "Table " + f.table + " not found");
|
200
|
+
}
|
201
|
+
} else {
|
202
|
+
if (aform.fields.fields[f]) {
|
203
|
+
dbg(2, "Focusing on " + f)
|
204
|
+
aform.fields.focus_if_ok(aform.fields.fields[f]);
|
205
|
+
} else {
|
206
|
+
dbg(2, "Not found " + f + " in " +
|
207
|
+
print_a(aform.fields.fields));
|
208
|
+
}
|
209
|
+
}
|
210
|
+
} else {
|
211
|
+
dbg(3, "No form -" + aform + "- or fields found");
|
212
|
+
}
|
213
|
+
break;
|
214
|
+
case "hide":
|
215
|
+
case "unhide":
|
216
|
+
if (!( res.data instanceof Array )) {
|
217
|
+
res.data = [res.data]
|
218
|
+
}
|
219
|
+
for (var i = 0; i < res.data.length; i++) {
|
220
|
+
this.setElementVisibility(res.data[i],
|
221
|
+
res.cmd == "hide" ? "excluded" : 'visible');
|
222
|
+
//this.setElementVisibility( res.data[i], 'excluded' );
|
223
|
+
}
|
224
|
+
break;
|
225
|
+
case "init_values":
|
226
|
+
var tab = res.data[0];
|
227
|
+
var values = res.data[1];
|
228
|
+
dbg(2, "init_values for " + tab + " - " + print_a(values));
|
229
|
+
var f = null;
|
230
|
+
for (var v = 0; v < this.views.length; v++) {
|
231
|
+
dbg(2, "Looking for " + this.views[v].qv_id)
|
232
|
+
if (this.views[v].qv_id == tab) {
|
233
|
+
dbg(2, "Found " + this.views[v]);
|
234
|
+
this.views[v].initValues = values;
|
235
|
+
}
|
236
|
+
}
|
237
|
+
break;
|
238
|
+
case "list":
|
239
|
+
this.createViews(res.data);
|
240
|
+
break;
|
241
|
+
case "none":
|
242
|
+
dbg(5, "Doing nothing")
|
243
|
+
break
|
244
|
+
case "parent":
|
245
|
+
if (this.parentLtab) {
|
246
|
+
this.parentLtab.dispatch(res.data);
|
247
|
+
}
|
248
|
+
break;
|
249
|
+
case "pass_tabs":
|
250
|
+
aform.fields.childLtab.getActiveForm().callBackend(res.data[0],
|
251
|
+
res.data[1], res.data[2]);
|
252
|
+
enable = false;
|
253
|
+
break;
|
254
|
+
case "reload":
|
255
|
+
window.location.reload();
|
256
|
+
break;
|
257
|
+
case "select":
|
258
|
+
this.select(res.data, false)
|
259
|
+
break;
|
260
|
+
case "session_id":
|
261
|
+
rpc.session_id = res.data;
|
262
|
+
break;
|
263
|
+
case "show":
|
264
|
+
this.showView(res.data);
|
265
|
+
aform = this.getActiveForm();
|
266
|
+
//enable = false;
|
267
|
+
break;
|
268
|
+
case "switch_tab":
|
269
|
+
for (var v = 0; v < this.views.length; v++) {
|
270
|
+
if (this.views[v].qv_id == res.data) {
|
271
|
+
this.tabs.setSelection([this.views[v]]);
|
272
|
+
dbg(3, "Found new tab: " + res.data);
|
273
|
+
dbg(3, "New tab is: " + this.tabs.getSelection()[0].qv_id);
|
274
|
+
}
|
275
|
+
}
|
276
|
+
break;
|
277
|
+
case "table_columns_show":
|
278
|
+
this.form.fields.set_table_columns_visible(res.data, true);
|
279
|
+
break;
|
280
|
+
case "table_columns_hide":
|
281
|
+
this.form.fields.set_table_columns_visible(res.data, false);
|
282
|
+
break;
|
283
|
+
case "update_silent":
|
284
|
+
this.updateView(res.data, true)
|
285
|
+
break;
|
286
|
+
case "update":
|
287
|
+
this.updateView(res.data, false)
|
288
|
+
break;
|
289
|
+
case "window_hide":
|
290
|
+
aform.fields.window_hide(res.data);
|
291
|
+
this.setFadeIn("parent,child,windows")
|
292
|
+
break;
|
293
|
+
case "window_show":
|
294
|
+
//enable = false;
|
295
|
+
aform.fields.window_show(res.data);
|
296
|
+
this.setFadeIn("windows")
|
297
|
+
break;
|
298
|
+
case "end_of_req":
|
299
|
+
//alert( "eor" );
|
300
|
+
dbg(2, "enable: " + enable + ", queuelen: " + rpc.RpcQueue.length)
|
301
|
+
if (enable && rpc.RpcQueue.length == 0) {
|
302
|
+
//alert( "enabling" )
|
303
|
+
dbg(2, "Fading in")
|
304
|
+
this.parentFadeIn();
|
305
|
+
}
|
306
|
+
break;
|
307
|
+
default:
|
308
|
+
alert("Unknown command: " + res.cmd)
|
309
|
+
break;
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
if (this.form) {
|
314
|
+
dbg(5, "setting updating on false in " + this.form);
|
315
|
+
this.form.fields.updating = false;
|
316
|
+
}
|
317
|
+
dbg(5, "finished dispatcher");
|
318
|
+
},
|
319
|
+
|
320
|
+
setFadeIn: function (who) {
|
321
|
+
this.selectfadein = who;
|
322
|
+
if (this.parentLtab) {
|
323
|
+
this.parentLtab.selectfadein = this.selectfadein
|
324
|
+
}
|
325
|
+
},
|
326
|
+
|
327
|
+
autoUpdate: function (userData, timerId) {
|
328
|
+
//alert( "in auto-update");
|
329
|
+
dbg(3, "timer for update")
|
330
|
+
var values = [];
|
331
|
+
if (userData.replace(/^update(_async)*/, '') == "_with_values") {
|
332
|
+
values = [this.form.fields.getFieldsData()];
|
333
|
+
dbg(3, "Values are: " + print_a(values));
|
334
|
+
}
|
335
|
+
var dispatcher = this.dispatch_async;
|
336
|
+
var async = false;
|
337
|
+
if (userData.replace(/_with_values/, '') == "update") {
|
338
|
+
this.parentFadeOut();
|
339
|
+
dispatcher = this.dispatch
|
340
|
+
} else {
|
341
|
+
this.timer.pause();
|
342
|
+
async = true
|
343
|
+
}
|
344
|
+
rpc.callRPCarray("View." + this.viewClass, userData,
|
345
|
+
this, dispatcher, values, async);
|
346
|
+
},
|
347
|
+
|
348
|
+
parentFadeOut: function () {
|
349
|
+
if (this.parentLtab) {
|
350
|
+
this.parentLtab.parentFadeOut();
|
351
|
+
} else {
|
352
|
+
this.fadeOut();
|
353
|
+
//this.timer.pause();
|
354
|
+
|
355
|
+
var child = null;
|
356
|
+
if (this.form && this.form.fields &&
|
357
|
+
( child = this.form.fields.childLtab )) {
|
358
|
+
child.fadeOut();
|
359
|
+
child.timer.pause();
|
360
|
+
}
|
361
|
+
}
|
362
|
+
},
|
363
|
+
|
364
|
+
fadeOut: function () {
|
365
|
+
if (!this.form || !this.form.fields) {
|
366
|
+
return
|
367
|
+
}
|
368
|
+
dbg(5, "fading out windows");
|
369
|
+
this.form.fields.windows_fade_to(0.5);
|
370
|
+
if (!this.fadedin) {
|
371
|
+
return
|
372
|
+
}
|
373
|
+
this.fadedin = false;
|
374
|
+
this.form.fields.setEnabled(false);
|
375
|
+
if (this.tabs) {
|
376
|
+
this.tabs.setEnabled(false);
|
377
|
+
}
|
378
|
+
if (this.form.fields && this.form.fields.getContentElement() &&
|
379
|
+
this.form.fields.getContentElement().getDomElement()) {
|
380
|
+
// alert( "Doing fadout on " + this );
|
381
|
+
this.fadeOut(0.25);
|
382
|
+
}
|
383
|
+
},
|
384
|
+
|
385
|
+
parentFadeIn: function () {
|
386
|
+
if (this.parentLtab) {
|
387
|
+
this.parentLtab.parentFadeIn()
|
388
|
+
} else {
|
389
|
+
this.timer.cont();
|
390
|
+
//alert( "fade_in is " + this.selectfadein + " for " + this )
|
391
|
+
if (this.selectfadein.search("parent") >= 0) {
|
392
|
+
this.fadeIn();
|
393
|
+
}
|
394
|
+
var child = null;
|
395
|
+
if (this.form && this.form.fields &&
|
396
|
+
this.form.fields.childLtab) {
|
397
|
+
child = this.form.fields.childLtab;
|
398
|
+
child.timer.cont();
|
399
|
+
if (this.selectfadein.search("child") >= 0) {
|
400
|
+
//alert( "fading in child " + child )
|
401
|
+
child.fadeIn();
|
402
|
+
} else {
|
403
|
+
//alert( "fading OUT child " + child )
|
404
|
+
child.fadeOut();
|
405
|
+
}
|
406
|
+
}
|
407
|
+
if (this.selectfadein.search("windows") >= 0) {
|
408
|
+
// Children are automatically faded, too
|
409
|
+
this.getActiveForm().fields.windows_fade_to(1);
|
410
|
+
//if ( child ){
|
411
|
+
// child.getActiveForm().fields.windows_fade_to(1);
|
412
|
+
//}
|
413
|
+
}
|
414
|
+
}
|
415
|
+
},
|
416
|
+
|
417
|
+
fadeIn: function () {
|
418
|
+
var aform = this.getActiveForm();
|
419
|
+
this.enableThis();
|
420
|
+
if (this.fadedin) {
|
421
|
+
//alert( "already faded in " + this );
|
422
|
+
return
|
423
|
+
}
|
424
|
+
//alert( "fading in " + this )
|
425
|
+
this.fadedin = true;
|
426
|
+
if (this.tabs) {
|
427
|
+
this.tabs.setEnabled(true);
|
428
|
+
}
|
429
|
+
if (aform && aform.fields) {
|
430
|
+
//alert( "Found aform" );
|
431
|
+
//if ( aform.getContentElement().getDomElement() ){
|
432
|
+
if (this.getContentElement().getDomElement()) {
|
433
|
+
//alert( "Doing fadin on layout " + aform );
|
434
|
+
this.fadeIn(0.25);
|
435
|
+
}
|
436
|
+
}
|
437
|
+
},
|
438
|
+
|
439
|
+
enableThis: function () {
|
440
|
+
if (this.tabs) {
|
441
|
+
//alert( "Enabling tabs " + this.tabs );
|
442
|
+
this.tabs.setEnabled(true);
|
443
|
+
}
|
444
|
+
if (this.form && this.form.fields) {
|
445
|
+
this.form.fields.setEnabled(true);
|
446
|
+
}
|
447
|
+
var aform = this.getActiveForm();
|
448
|
+
if (aform && aform.fields) {
|
449
|
+
aform.fields.setEnabled(true);
|
450
|
+
}
|
451
|
+
},
|
452
|
+
|
453
|
+
setElementVisibility: function (el, vi) {
|
454
|
+
var aform = this.getActiveForm();
|
455
|
+
var f;
|
456
|
+
if (f = aform.fields.fields[el]) {
|
457
|
+
f.setVisibility(vi);
|
458
|
+
if (f.widget_label) {
|
459
|
+
f.widget_label.setVisibility(vi);
|
460
|
+
}
|
461
|
+
} else {
|
462
|
+
dbg(3, "Didn't find field " + el);
|
463
|
+
}
|
464
|
+
},
|
465
|
+
|
466
|
+
// Displays the chosen view of the user
|
467
|
+
showView: function (results) {
|
468
|
+
this.layoutView = results.layout;
|
469
|
+
this.dataClass = results.data_class;
|
470
|
+
this.viewClass = results.view_class;
|
471
|
+
dbg(5, "We have to show the following: " + this.layoutView);
|
472
|
+
|
473
|
+
this.timer.stop();
|
474
|
+
|
475
|
+
// Assure we're in the right tab
|
476
|
+
if (this.tabs) {
|
477
|
+
if (this.tabs.getSelection()[0].qv_id != this.viewClass) {
|
478
|
+
//alert("Changed tabs in the meantime: " +
|
479
|
+
//this.tabs.getSelection()[0].qv_id );
|
480
|
+
for (var v = 0; v < this.views.length; v++) {
|
481
|
+
if (this.views[v].qv_id == this.viewClass) {
|
482
|
+
this.tabs.setSelection([this.views[v]]);
|
483
|
+
}
|
484
|
+
}
|
485
|
+
}
|
486
|
+
}
|
487
|
+
|
488
|
+
var container = this.getRootContainer();
|
489
|
+
//alert( "container is " + container );
|
490
|
+
dbg(5, "showView - container is: " + container);
|
491
|
+
var cback = [this, this.dispatch];
|
492
|
+
// dbg(5, "cback in showView is " + print_a(cback))
|
493
|
+
if (!container.hasChildren()) {
|
494
|
+
dbg(4, "Adding container " + this.viewClass);
|
495
|
+
this.form = new frontend.Views.Form(cback, this.layoutView,
|
496
|
+
this.dataClass, this.viewClass, this);
|
497
|
+
container.add(this.form);
|
498
|
+
/*
|
499
|
+
if ( this.viewClass.search( /Tabs$/ ) >= 0 ){
|
500
|
+
// Sub-tabbed tabs get all the width
|
501
|
+
container.add( this.form );
|
502
|
+
} else {
|
503
|
+
container.add( this.form );
|
504
|
+
}
|
505
|
+
*/
|
506
|
+
this.form.fields.focus_if_ok(this.form.fields.first_field);
|
507
|
+
}
|
508
|
+
else {
|
509
|
+
dbg(4, "Layout " + this.viewClass + " already here - doing nothing");
|
510
|
+
}
|
511
|
+
},
|
512
|
+
updateView: function (results, silence) {
|
513
|
+
dbg(4, "updateView: " + results)
|
514
|
+
if (results) {
|
515
|
+
this.form.fields.fill(results, silence);
|
516
|
+
}
|
517
|
+
},
|
518
|
+
select: function (results, silence) {
|
519
|
+
dbg(4, "select: " + results)
|
520
|
+
if (results) {
|
521
|
+
this.form.fields.unselect(results);
|
522
|
+
this.form.fields.fill(results, silence);
|
523
|
+
}
|
524
|
+
},
|
525
|
+
createViews: function (results) {
|
526
|
+
var views = results.views
|
527
|
+
dbg(5, "The following views are allowed: " + views);
|
528
|
+
|
529
|
+
this.removeAll();
|
530
|
+
|
531
|
+
this.tabs = new qx.ui.tabview.TabView(this.alignTabs).set("Enabled", false);
|
532
|
+
|
533
|
+
this.views = [];
|
534
|
+
for (var v = 0; v < views.length; v++) {
|
535
|
+
dbg(2, "adding view-tab: " + views[v][0] + " - " + views[v][1]);
|
536
|
+
this.views[v] = new qx.ui.tabview.Page(views[v][1]);
|
537
|
+
this.views[v].qv_id = views[v][0]
|
538
|
+
this.views[v].setLayout(new qx.ui.layout.Grow());
|
539
|
+
var scroller = new qx.ui.container.Scroll();
|
540
|
+
var composite = new qx.ui.container.Composite(new qx.ui.layout.Grow());
|
541
|
+
//alert( "tab-cont is " + composite );
|
542
|
+
scroller.add(composite);
|
543
|
+
this.views[v].add(scroller);
|
544
|
+
this.tabs.add(this.views[v]);
|
545
|
+
}
|
546
|
+
this.add(this.tabs);
|
547
|
+
this.app.inflateCenter();
|
548
|
+
dbg(3, "getRootContainer gives: " + this.getRootContainer());
|
549
|
+
this.parentFadeOut();
|
550
|
+
|
551
|
+
qx.event.Registration.addListener(this.tabs, "changeSelection", this.changeView, this);
|
552
|
+
rpc.callRPC("View." + views[0][0], "show", this, this.dispatch);
|
553
|
+
this.tabs.setSelection([this.views[0]]);
|
554
|
+
},
|
555
|
+
|
556
|
+
// Every time the view changes, this is called, which calls the Backend, which will call showView
|
557
|
+
changeView: function (e) {
|
558
|
+
this.timer.stop();
|
559
|
+
if (this.form && this.form.fields.childLtab) {
|
560
|
+
this.form.fields.childLtab.timer.stop();
|
561
|
+
}
|
562
|
+
var newView = e.getData()[0].qv_id;//.getSelection()[0];
|
563
|
+
dbg(3, "New view is: " + newView)
|
564
|
+
this.form = this.getActiveForm();
|
565
|
+
var container = this.getRootContainer();
|
566
|
+
var tabSel = this.tabs.getSelection()[0];
|
567
|
+
//alert( "Disabling tabs " + this.tabs )
|
568
|
+
this.tabs.setEnabled(false);
|
569
|
+
var inTabs = "";
|
570
|
+
var parentFields = null;
|
571
|
+
if (this.parentLtab) {
|
572
|
+
// We're in one of the sub-tabs, so let's send along the parent-
|
573
|
+
// stuff
|
574
|
+
dbg(3, "Adding something to the show - update_view");
|
575
|
+
inTabs = "tabs_";
|
576
|
+
parentFields = this.parentLtab.form.fields.getOwnFieldsData();
|
577
|
+
} else {
|
578
|
+
//alert( "resetting fadein")
|
579
|
+
this.setFadeIn("parent,child,windows");
|
580
|
+
if (this.form && this.form.fields) {
|
581
|
+
parentFields = this.form.fields.getOwnFieldsData();
|
582
|
+
}
|
583
|
+
}
|
584
|
+
if (tabSel.initValues) {
|
585
|
+
dbg(2, "initValue for " + tabSel);
|
586
|
+
for (var i in tabSel.initValues) {
|
587
|
+
parentFields[i] = tabSel.initValues[i];
|
588
|
+
}
|
589
|
+
dbg(2, "parentFields is " + print_a(parentFields));
|
590
|
+
tabSel.initValues = null;
|
591
|
+
}
|
592
|
+
this.parentFadeOut();
|
593
|
+
if (!container.hasChildren()) {
|
594
|
+
dbg(3, "changeView with data " + newView + " and field " + this.form);
|
595
|
+
rpc.callRPC("View." + newView, inTabs + "show",
|
596
|
+
this, this.dispatch, parentFields);
|
597
|
+
}
|
598
|
+
else {
|
599
|
+
dbg(3, "Tab already created - updating only - " + print_a(parentFields));
|
600
|
+
this.viewClass = newView;
|
601
|
+
rpc.callRPC("View." + newView, inTabs + "update_view",
|
602
|
+
this, this.dispatch, parentFields);
|
603
|
+
// If there are kids, update them
|
604
|
+
if (this.form.fields.childLtab) {
|
605
|
+
dbg(3, "Updating children");
|
606
|
+
if (this.form.fields.childLtab.form) {
|
607
|
+
var child = this.form.fields.childLtab;
|
608
|
+
var newView = child.tabs.getSelection()[0].qv_id;
|
609
|
+
var parentFields = this.form.fields.getOwnFieldsData();
|
610
|
+
rpc.callRPC("View." + newView, "tabs_update_view",
|
611
|
+
child, child.dispatch, parentFields);
|
612
|
+
}
|
613
|
+
}
|
614
|
+
}
|
615
|
+
},
|
616
|
+
|
617
|
+
// Helper function to get to the active form
|
618
|
+
getActiveForm: function () {
|
619
|
+
var base = this.getRootContainer();
|
620
|
+
if (base.getChildren) {
|
621
|
+
return base.getChildren()[0];
|
622
|
+
}
|
623
|
+
else {
|
624
|
+
return null;
|
625
|
+
}
|
626
|
+
},
|
627
|
+
getRootContainer: function () {
|
628
|
+
dbg(5, "getActiveForm");
|
629
|
+
return this.tabs ? this.tabs.getSelection()[0].getChildren()[0].getChildren()[0] :
|
630
|
+
this;
|
631
|
+
}
|
632
|
+
}
|
633
|
+
});
|
@@ -0,0 +1,51 @@
|
|
1
|
+
function print_a(a) {
|
2
|
+
var res = "[";
|
3
|
+
for (i in a) {
|
4
|
+
if (a[i] && a[i].pop) {
|
5
|
+
res += i + ":" + print_a(a[i]) + " - ";
|
6
|
+
} else {
|
7
|
+
res += i + ":" + a[i] + " - ";
|
8
|
+
}
|
9
|
+
}
|
10
|
+
return res + " ]";
|
11
|
+
};
|
12
|
+
|
13
|
+
function dbg(lvl, str) {
|
14
|
+
if (lvl <= DBG_LVL) {
|
15
|
+
qx.log.Logger.info(str)
|
16
|
+
}
|
17
|
+
};
|
18
|
+
|
19
|
+
String.prototype.repeat = function( num ) {
|
20
|
+
for( var i = 0, buf = ""; i < num; i++ ) buf += this;
|
21
|
+
return buf;
|
22
|
+
};
|
23
|
+
|
24
|
+
String.prototype.ljust = function( width, padding ) {
|
25
|
+
padding = padding || " ";
|
26
|
+
padding = padding.substr( 0, 1 );
|
27
|
+
if( this.length < width )
|
28
|
+
return this + padding.repeat( width - this.length );
|
29
|
+
else
|
30
|
+
return this;
|
31
|
+
}
|
32
|
+
String.prototype.rjust = function( width, padding ) {
|
33
|
+
padding = padding || " ";
|
34
|
+
padding = padding.substr( 0, 1 );
|
35
|
+
if( this.length < width )
|
36
|
+
return padding.repeat( width - this.length ) + this;
|
37
|
+
else
|
38
|
+
return this;
|
39
|
+
}
|
40
|
+
String.prototype.center = function( width, padding ) {
|
41
|
+
padding = padding || " ";
|
42
|
+
padding = padding.substr( 0, 1 );
|
43
|
+
if( this.length < width ) {
|
44
|
+
var len = width - this.length;
|
45
|
+
var remain = ( len % 2 == 0 ) ? "" : padding;
|
46
|
+
var pads = padding.repeat( parseInt( len / 2 ) );
|
47
|
+
return pads + this + pads + remain;
|
48
|
+
}
|
49
|
+
else
|
50
|
+
return this;
|
51
|
+
}
|