closure 1.1.692
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +6 -0
- data/.yardopts +3 -0
- data/LICENSE +202 -0
- data/README.md +26 -0
- data/beanshell/LICENSE +12 -0
- data/beanshell/bsh-core-2.0b4.jar +0 -0
- data/closure-compiler/COPYING +202 -0
- data/closure-compiler/README +278 -0
- data/closure-compiler/compiler.jar +0 -0
- data/closure-library/AUTHORS +12 -0
- data/closure-library/LICENSE +176 -0
- data/closure-library/README +6 -0
- data/closure-library/all_tests.html +113 -0
- data/closure-library/alltests.js +16 -0
- data/closure-library/closure/bin/build/closurebuilder.py +257 -0
- data/closure-library/closure/bin/build/depstree.py +186 -0
- data/closure-library/closure/bin/build/depstree_test.py +127 -0
- data/closure-library/closure/bin/build/depswriter.py +197 -0
- data/closure-library/closure/bin/build/jscompiler.py +69 -0
- data/closure-library/closure/bin/build/source.py +86 -0
- data/closure-library/closure/bin/build/source_test.py +57 -0
- data/closure-library/closure/bin/build/treescan.py +78 -0
- data/closure-library/closure/bin/calcdeps.py +570 -0
- data/closure-library/closure/bin/scopify.py +211 -0
- data/closure-library/closure/css/inlay/g-base.css +82 -0
- data/closure-library/closure/css/inlay/g-fixed.css +158 -0
- data/closure-library/closure/css/inlay/g-ratio.css +253 -0
- data/closure-library/closure/goog/array/array.js +1300 -0
- data/closure-library/closure/goog/array/array_test.html +1524 -0
- data/closure-library/closure/goog/asserts/asserts.js +277 -0
- data/closure-library/closure/goog/asserts/asserts_test.html +163 -0
- data/closure-library/closure/goog/async/conditionaldelay.js +238 -0
- data/closure-library/closure/goog/async/conditionaldelay_test.html +227 -0
- data/closure-library/closure/goog/async/delay.js +174 -0
- data/closure-library/closure/goog/async/delay_test.html +148 -0
- data/closure-library/closure/goog/async/throttle.js +189 -0
- data/closure-library/closure/goog/async/throttle_test.html +102 -0
- data/closure-library/closure/goog/base.js +1471 -0
- data/closure-library/closure/goog/base_test.html +1166 -0
- data/closure-library/closure/goog/bootstrap/webworkers.js +37 -0
- data/closure-library/closure/goog/color/alpha.js +436 -0
- data/closure-library/closure/goog/color/alpha_test.html +234 -0
- data/closure-library/closure/goog/color/color.js +757 -0
- data/closure-library/closure/goog/color/color_test.html +645 -0
- data/closure-library/closure/goog/color/names.js +176 -0
- data/closure-library/closure/goog/crypt/arc4.js +141 -0
- data/closure-library/closure/goog/crypt/arc4_test.html +42 -0
- data/closure-library/closure/goog/crypt/base64.js +267 -0
- data/closure-library/closure/goog/crypt/base64_test.html +106 -0
- data/closure-library/closure/goog/crypt/basen.js +242 -0
- data/closure-library/closure/goog/crypt/basen_test.html +167 -0
- data/closure-library/closure/goog/crypt/crypt.js +103 -0
- data/closure-library/closure/goog/crypt/crypt_test.html +68 -0
- data/closure-library/closure/goog/crypt/hash32.js +184 -0
- data/closure-library/closure/goog/crypt/hash32_test.html +287 -0
- data/closure-library/closure/goog/crypt/sha1.js +238 -0
- data/closure-library/closure/goog/crypt/sha1_test.html +47 -0
- data/closure-library/closure/goog/css/autocomplete.css +43 -0
- data/closure-library/closure/goog/css/bubble.css +84 -0
- data/closure-library/closure/goog/css/button.css +38 -0
- data/closure-library/closure/goog/css/charpicker.css +201 -0
- data/closure-library/closure/goog/css/checkbox.css +38 -0
- data/closure-library/closure/goog/css/colormenubutton.css +25 -0
- data/closure-library/closure/goog/css/colorpalette.css +54 -0
- data/closure-library/closure/goog/css/colorpicker-simplegrid.css +50 -0
- data/closure-library/closure/goog/css/combobox.css +57 -0
- data/closure-library/closure/goog/css/common.css +41 -0
- data/closure-library/closure/goog/css/css3button.css +77 -0
- data/closure-library/closure/goog/css/css3menubutton.css +23 -0
- data/closure-library/closure/goog/css/custombutton.css +164 -0
- data/closure-library/closure/goog/css/datepicker.css +148 -0
- data/closure-library/closure/goog/css/dialog.css +72 -0
- data/closure-library/closure/goog/css/dimensionpicker.css +47 -0
- data/closure-library/closure/goog/css/dragdropdetector.css +48 -0
- data/closure-library/closure/goog/css/editor/bubble.css +73 -0
- data/closure-library/closure/goog/css/editor/dialog.css +66 -0
- data/closure-library/closure/goog/css/editor/linkdialog.css +36 -0
- data/closure-library/closure/goog/css/editortoolbar.css +225 -0
- data/closure-library/closure/goog/css/filteredmenu.css +30 -0
- data/closure-library/closure/goog/css/filterobservingmenuitem.css +25 -0
- data/closure-library/closure/goog/css/flatbutton.css +65 -0
- data/closure-library/closure/goog/css/flatmenubutton.css +63 -0
- data/closure-library/closure/goog/css/hovercard.css +51 -0
- data/closure-library/closure/goog/css/hsvapalette.css +231 -0
- data/closure-library/closure/goog/css/hsvpalette.css +179 -0
- data/closure-library/closure/goog/css/imagelessbutton.css +160 -0
- data/closure-library/closure/goog/css/imagelessmenubutton.css +23 -0
- data/closure-library/closure/goog/css/inputdatepicker.css +12 -0
- data/closure-library/closure/goog/css/linkbutton.css +26 -0
- data/closure-library/closure/goog/css/menu.css +27 -0
- data/closure-library/closure/goog/css/menubutton.css +169 -0
- data/closure-library/closure/goog/css/menuitem.css +96 -0
- data/closure-library/closure/goog/css/menuseparator.css +19 -0
- data/closure-library/closure/goog/css/multitestrunner.css +121 -0
- data/closure-library/closure/goog/css/offline.css +147 -0
- data/closure-library/closure/goog/css/palette.css +36 -0
- data/closure-library/closure/goog/css/popupdatepicker.css +17 -0
- data/closure-library/closure/goog/css/roundedpanel.css +29 -0
- data/closure-library/closure/goog/css/roundedtab.css +158 -0
- data/closure-library/closure/goog/css/submenu.css +28 -0
- data/closure-library/closure/goog/css/tab.css +91 -0
- data/closure-library/closure/goog/css/tabbar.css +52 -0
- data/closure-library/closure/goog/css/tablesorter.css +14 -0
- data/closure-library/closure/goog/css/toolbar.css +400 -0
- data/closure-library/closure/goog/css/tooltip.css +14 -0
- data/closure-library/closure/goog/css/tree.css +147 -0
- data/closure-library/closure/goog/css/tristatemenuitem.css +43 -0
- data/closure-library/closure/goog/cssom/cssom.js +447 -0
- data/closure-library/closure/goog/cssom/cssom_test.html +343 -0
- data/closure-library/closure/goog/cssom/cssom_test_import_1.css +11 -0
- data/closure-library/closure/goog/cssom/cssom_test_import_2.css +10 -0
- data/closure-library/closure/goog/cssom/cssom_test_link_1.css +10 -0
- data/closure-library/closure/goog/cssom/iframe/style.js +1020 -0
- data/closure-library/closure/goog/cssom/iframe/style_test.html +391 -0
- data/closure-library/closure/goog/cssom/iframe/style_test_import.css +10 -0
- data/closure-library/closure/goog/datasource/datamanager.js +566 -0
- data/closure-library/closure/goog/datasource/datasource.js +646 -0
- data/closure-library/closure/goog/datasource/datasource_test.html +265 -0
- data/closure-library/closure/goog/datasource/expr.js +544 -0
- data/closure-library/closure/goog/datasource/expr_test.html +97 -0
- data/closure-library/closure/goog/datasource/fastdatanode.js +792 -0
- data/closure-library/closure/goog/datasource/fastdatanode_test.html +254 -0
- data/closure-library/closure/goog/datasource/jsdatasource.js +460 -0
- data/closure-library/closure/goog/datasource/jsondatasource.js +146 -0
- data/closure-library/closure/goog/datasource/jsxmlhttpdatasource.js +191 -0
- data/closure-library/closure/goog/datasource/jsxmlhttpdatasource_test.html +94 -0
- data/closure-library/closure/goog/datasource/xmldatasource.js +407 -0
- data/closure-library/closure/goog/date/date.js +1642 -0
- data/closure-library/closure/goog/date/date_test.html +1293 -0
- data/closure-library/closure/goog/date/datelike.js +27 -0
- data/closure-library/closure/goog/date/daterange.js +398 -0
- data/closure-library/closure/goog/date/daterange_test.html +213 -0
- data/closure-library/closure/goog/date/relative.js +425 -0
- data/closure-library/closure/goog/date/relative_test.html +124 -0
- data/closure-library/closure/goog/date/utcdatetime.js +178 -0
- data/closure-library/closure/goog/date/utcdatetime_test.html +119 -0
- data/closure-library/closure/goog/debug/console.js +138 -0
- data/closure-library/closure/goog/debug/debug.js +452 -0
- data/closure-library/closure/goog/debug/debug_test.html +32 -0
- data/closure-library/closure/goog/debug/debugwindow.js +582 -0
- data/closure-library/closure/goog/debug/devcss/devcss.js +435 -0
- data/closure-library/closure/goog/debug/devcss/devcss_test.html +365 -0
- data/closure-library/closure/goog/debug/devcss/devcssrunner.js +26 -0
- data/closure-library/closure/goog/debug/divconsole.js +141 -0
- data/closure-library/closure/goog/debug/enhanceerror_test.html +138 -0
- data/closure-library/closure/goog/debug/entrypointregistry.js +111 -0
- data/closure-library/closure/goog/debug/entrypointregistry_test.html +63 -0
- data/closure-library/closure/goog/debug/error.js +47 -0
- data/closure-library/closure/goog/debug/error_test.html +85 -0
- data/closure-library/closure/goog/debug/errorhandler.js +234 -0
- data/closure-library/closure/goog/debug/errorhandler_async_test.html +112 -0
- data/closure-library/closure/goog/debug/errorhandler_test.html +186 -0
- data/closure-library/closure/goog/debug/errorhandlerweakdep.js +38 -0
- data/closure-library/closure/goog/debug/errorreporter.js +324 -0
- data/closure-library/closure/goog/debug/errorreporter_test.html +289 -0
- data/closure-library/closure/goog/debug/fancywindow.js +265 -0
- data/closure-library/closure/goog/debug/formatter.js +314 -0
- data/closure-library/closure/goog/debug/gcdiagnostics.js +143 -0
- data/closure-library/closure/goog/debug/logbuffer.js +147 -0
- data/closure-library/closure/goog/debug/logbuffer_test.html +105 -0
- data/closure-library/closure/goog/debug/logger.js +809 -0
- data/closure-library/closure/goog/debug/logger_test.html +208 -0
- data/closure-library/closure/goog/debug/logrecord.js +271 -0
- data/closure-library/closure/goog/debug/reflect.js +159 -0
- data/closure-library/closure/goog/debug/reflect_test.html +81 -0
- data/closure-library/closure/goog/debug/relativetimeprovider.js +83 -0
- data/closure-library/closure/goog/debug/tracer.js +750 -0
- data/closure-library/closure/goog/debug/tracer_test.html +57 -0
- data/closure-library/closure/goog/demos/advancedtooltip.html +78 -0
- data/closure-library/closure/goog/demos/animationqueue.html +149 -0
- data/closure-library/closure/goog/demos/autocomplete-basic.html +56 -0
- data/closure-library/closure/goog/demos/autocompleteremote.html +40 -0
- data/closure-library/closure/goog/demos/autocompleteremotedata.js +18 -0
- data/closure-library/closure/goog/demos/autocompleterichremote.html +137 -0
- data/closure-library/closure/goog/demos/autocompleterichremotedata.js +33 -0
- data/closure-library/closure/goog/demos/bidiinput.html +72 -0
- data/closure-library/closure/goog/demos/bubble.html +250 -0
- data/closure-library/closure/goog/demos/button.html +395 -0
- data/closure-library/closure/goog/demos/charcounter.html +57 -0
- data/closure-library/closure/goog/demos/charpicker.html +64 -0
- data/closure-library/closure/goog/demos/checkbox.html +122 -0
- data/closure-library/closure/goog/demos/color-contrast.html +60 -0
- data/closure-library/closure/goog/demos/colormenubutton.html +213 -0
- data/closure-library/closure/goog/demos/colorpicker.html +43 -0
- data/closure-library/closure/goog/demos/combobox.html +125 -0
- data/closure-library/closure/goog/demos/container.html +670 -0
- data/closure-library/closure/goog/demos/control.html +477 -0
- data/closure-library/closure/goog/demos/css/demo.css +75 -0
- data/closure-library/closure/goog/demos/css/emojipicker.css +36 -0
- data/closure-library/closure/goog/demos/css/emojisprite.css +92 -0
- data/closure-library/closure/goog/demos/css3button.html +166 -0
- data/closure-library/closure/goog/demos/css3menubutton.html +285 -0
- data/closure-library/closure/goog/demos/cssspriteanimation.html +80 -0
- data/closure-library/closure/goog/demos/datepicker.html +183 -0
- data/closure-library/closure/goog/demos/debug.html +119 -0
- data/closure-library/closure/goog/demos/depsgraph.html +221 -0
- data/closure-library/closure/goog/demos/dialog.html +156 -0
- data/closure-library/closure/goog/demos/dimensionpicker.html +108 -0
- data/closure-library/closure/goog/demos/dimensionpicker_rtl.html +123 -0
- data/closure-library/closure/goog/demos/dom_selection.html +88 -0
- data/closure-library/closure/goog/demos/drag.html +191 -0
- data/closure-library/closure/goog/demos/dragdrop.html +263 -0
- data/closure-library/closure/goog/demos/dragdropdetector.html +46 -0
- data/closure-library/closure/goog/demos/dragdropdetector_target.html +17 -0
- data/closure-library/closure/goog/demos/dragger.html +83 -0
- data/closure-library/closure/goog/demos/draglistgroup.html +261 -0
- data/closure-library/closure/goog/demos/drilldownrow.html +78 -0
- data/closure-library/closure/goog/demos/editor/deps.js +20 -0
- data/closure-library/closure/goog/demos/editor/editor.html +139 -0
- data/closure-library/closure/goog/demos/editor/field_basic.html +74 -0
- data/closure-library/closure/goog/demos/editor/helloworld.html +91 -0
- data/closure-library/closure/goog/demos/editor/helloworld.js +81 -0
- data/closure-library/closure/goog/demos/editor/helloworld_test.html +75 -0
- data/closure-library/closure/goog/demos/editor/helloworlddialog.js +163 -0
- data/closure-library/closure/goog/demos/editor/helloworlddialog_test.html +100 -0
- data/closure-library/closure/goog/demos/editor/helloworlddialogplugin.js +110 -0
- data/closure-library/closure/goog/demos/editor/helloworlddialogplugin_test.html +198 -0
- data/closure-library/closure/goog/demos/editor/seamlessfield.html +106 -0
- data/closure-library/closure/goog/demos/effects.html +142 -0
- data/closure-library/closure/goog/demos/emoji/200.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/201.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/202.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/203.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/204.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/205.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/206.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2BC.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2BD.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2BE.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2BF.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C0.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C1.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C2.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C3.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C4.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C5.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C6.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C7.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C8.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2C9.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CA.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CB.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CC.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CD.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CE.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2CF.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D0.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D1.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D2.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D3.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D4.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D5.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D6.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D7.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D8.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2D9.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DA.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DB.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DC.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DD.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DE.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2DF.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E0.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E1.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E2.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E3.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E4.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E5.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E6.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E7.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E8.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2E9.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2EA.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2EB.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2EC.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2ED.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2EE.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2EF.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F0.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F1.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F2.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F3.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F4.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F5.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F6.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F7.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F8.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2F9.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FA.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FB.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FC.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FD.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FE.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/2FF.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/none.gif +0 -0
- data/closure-library/closure/goog/demos/emoji/sprite.png +0 -0
- data/closure-library/closure/goog/demos/emoji/sprite2.png +0 -0
- data/closure-library/closure/goog/demos/emoji/unknown.gif +0 -0
- data/closure-library/closure/goog/demos/event-propagation.html +192 -0
- data/closure-library/closure/goog/demos/events.html +99 -0
- data/closure-library/closure/goog/demos/eventtarget.html +70 -0
- data/closure-library/closure/goog/demos/filedrophandler.html +63 -0
- data/closure-library/closure/goog/demos/filteredmenu.html +118 -0
- data/closure-library/closure/goog/demos/focushandler.html +58 -0
- data/closure-library/closure/goog/demos/gauge.html +158 -0
- data/closure-library/closure/goog/demos/graphics/advancedcoordinates.html +141 -0
- data/closure-library/closure/goog/demos/graphics/advancedcoordinates2.html +130 -0
- data/closure-library/closure/goog/demos/graphics/basicelements.html +264 -0
- data/closure-library/closure/goog/demos/graphics/events.html +113 -0
- data/closure-library/closure/goog/demos/graphics/modifyelements.html +195 -0
- data/closure-library/closure/goog/demos/graphics/subpixel.html +80 -0
- data/closure-library/closure/goog/demos/graphics/tiger.html +105 -0
- data/closure-library/closure/goog/demos/graphics/tigerdata.js +2840 -0
- data/closure-library/closure/goog/demos/history1.html +132 -0
- data/closure-library/closure/goog/demos/history2.html +100 -0
- data/closure-library/closure/goog/demos/history3.html +106 -0
- data/closure-library/closure/goog/demos/history3js.html +36 -0
- data/closure-library/closure/goog/demos/history_blank.html +25 -0
- data/closure-library/closure/goog/demos/hovercard.html +177 -0
- data/closure-library/closure/goog/demos/hsvapalette.html +55 -0
- data/closure-library/closure/goog/demos/hsvpalette.html +56 -0
- data/closure-library/closure/goog/demos/html5history.html +87 -0
- data/closure-library/closure/goog/demos/imagelessbutton.html +221 -0
- data/closure-library/closure/goog/demos/imagelessmenubutton.html +285 -0
- data/closure-library/closure/goog/demos/imagelessroundedcorner.html +231 -0
- data/closure-library/closure/goog/demos/index.html +19 -0
- data/closure-library/closure/goog/demos/index_nav.html +253 -0
- data/closure-library/closure/goog/demos/index_splash.html +22 -0
- data/closure-library/closure/goog/demos/inline_block_quirks.html +125 -0
- data/closure-library/closure/goog/demos/inline_block_standards.html +126 -0
- data/closure-library/closure/goog/demos/inputdatepicker.html +60 -0
- data/closure-library/closure/goog/demos/inputhandler.html +72 -0
- data/closure-library/closure/goog/demos/jsonprettyprinter.html +80 -0
- data/closure-library/closure/goog/demos/keyboardshortcuts.html +112 -0
- data/closure-library/closure/goog/demos/keyhandler.html +127 -0
- data/closure-library/closure/goog/demos/labelinput.html +42 -0
- data/closure-library/closure/goog/demos/menu.html +220 -0
- data/closure-library/closure/goog/demos/menubutton.html +318 -0
- data/closure-library/closure/goog/demos/mousewheelhandler.html +109 -0
- data/closure-library/closure/goog/demos/offline.html +268 -0
- data/closure-library/closure/goog/demos/onlinehandler.html +77 -0
- data/closure-library/closure/goog/demos/palette.html +302 -0
- data/closure-library/closure/goog/demos/pastehandler.html +54 -0
- data/closure-library/closure/goog/demos/plaintextspellchecker.html +106 -0
- data/closure-library/closure/goog/demos/popup.html +200 -0
- data/closure-library/closure/goog/demos/popupcolorpicker.html +49 -0
- data/closure-library/closure/goog/demos/popupdatepicker.html +53 -0
- data/closure-library/closure/goog/demos/popupemojipicker.html +407 -0
- data/closure-library/closure/goog/demos/popupmenu.html +89 -0
- data/closure-library/closure/goog/demos/progressbar.html +97 -0
- data/closure-library/closure/goog/demos/prompt.html +92 -0
- data/closure-library/closure/goog/demos/quadtree.html +107 -0
- data/closure-library/closure/goog/demos/ratings.html +120 -0
- data/closure-library/closure/goog/demos/richtextspellchecker.html +92 -0
- data/closure-library/closure/goog/demos/roundedpanel.html +139 -0
- data/closure-library/closure/goog/demos/samplecomponent.html +75 -0
- data/closure-library/closure/goog/demos/samplecomponent.js +206 -0
- data/closure-library/closure/goog/demos/scrollfloater.html +117 -0
- data/closure-library/closure/goog/demos/select.html +324 -0
- data/closure-library/closure/goog/demos/selectionmenubutton.html +186 -0
- data/closure-library/closure/goog/demos/serverchart.html +122 -0
- data/closure-library/closure/goog/demos/silverlightclipboardbutton.html +71 -0
- data/closure-library/closure/goog/demos/slider.html +110 -0
- data/closure-library/closure/goog/demos/splitbehavior.html +164 -0
- data/closure-library/closure/goog/demos/splitpane.html +243 -0
- data/closure-library/closure/goog/demos/stopevent.html +171 -0
- data/closure-library/closure/goog/demos/submenus.html +130 -0
- data/closure-library/closure/goog/demos/submenus2.html +150 -0
- data/closure-library/closure/goog/demos/tabbar.html +289 -0
- data/closure-library/closure/goog/demos/tablesorter.html +116 -0
- data/closure-library/closure/goog/demos/tabpane.html +302 -0
- data/closure-library/closure/goog/demos/textarea.html +128 -0
- data/closure-library/closure/goog/demos/timers.html +291 -0
- data/closure-library/closure/goog/demos/toolbar.html +703 -0
- data/closure-library/closure/goog/demos/tooltip.html +91 -0
- data/closure-library/closure/goog/demos/tracer.html +92 -0
- data/closure-library/closure/goog/demos/tree/demo.html +126 -0
- data/closure-library/closure/goog/demos/tree/testdata.js +260 -0
- data/closure-library/closure/goog/demos/tweakui.html +121 -0
- data/closure-library/closure/goog/demos/twothumbslider.html +121 -0
- data/closure-library/closure/goog/demos/useragent.html +173 -0
- data/closure-library/closure/goog/demos/viewportsizemonitor.html +71 -0
- data/closure-library/closure/goog/demos/xpc/blank.html +7 -0
- data/closure-library/closure/goog/demos/xpc/index.html +89 -0
- data/closure-library/closure/goog/demos/xpc/inner.html +58 -0
- data/closure-library/closure/goog/demos/xpc/minimal/blank.html +7 -0
- data/closure-library/closure/goog/demos/xpc/minimal/index.html +105 -0
- data/closure-library/closure/goog/demos/xpc/minimal/inner.html +75 -0
- data/closure-library/closure/goog/demos/xpc/minimal/relay.html +7 -0
- data/closure-library/closure/goog/demos/xpc/relay.html +7 -0
- data/closure-library/closure/goog/demos/xpc/xpcdemo.js +304 -0
- data/closure-library/closure/goog/demos/zippy.html +127 -0
- data/closure-library/closure/goog/deps.js +672 -0
- data/closure-library/closure/goog/disposable/disposable.js +167 -0
- data/closure-library/closure/goog/disposable/disposable_test.html +202 -0
- data/closure-library/closure/goog/dom/a11y.js +438 -0
- data/closure-library/closure/goog/dom/a11y_test.html +86 -0
- data/closure-library/closure/goog/dom/abstractmultirange.js +77 -0
- data/closure-library/closure/goog/dom/abstractrange.js +514 -0
- data/closure-library/closure/goog/dom/abstractrange_test.html +73 -0
- data/closure-library/closure/goog/dom/annotate.js +352 -0
- data/closure-library/closure/goog/dom/annotate_test.html +187 -0
- data/closure-library/closure/goog/dom/browserfeature.js +50 -0
- data/closure-library/closure/goog/dom/browserrange/abstractrange.js +316 -0
- data/closure-library/closure/goog/dom/browserrange/browserrange.js +149 -0
- data/closure-library/closure/goog/dom/browserrange/browserrange_test.html +562 -0
- data/closure-library/closure/goog/dom/browserrange/geckorange.js +82 -0
- data/closure-library/closure/goog/dom/browserrange/ierange.js +970 -0
- data/closure-library/closure/goog/dom/browserrange/operarange.js +83 -0
- data/closure-library/closure/goog/dom/browserrange/w3crange.js +364 -0
- data/closure-library/closure/goog/dom/browserrange/webkitrange.js +112 -0
- data/closure-library/closure/goog/dom/classes.js +233 -0
- data/closure-library/closure/goog/dom/classes_test.html +228 -0
- data/closure-library/closure/goog/dom/controlrange.js +511 -0
- data/closure-library/closure/goog/dom/controlrange_test.html +246 -0
- data/closure-library/closure/goog/dom/dataset.js +90 -0
- data/closure-library/closure/goog/dom/dataset_test.html +104 -0
- data/closure-library/closure/goog/dom/dom.js +2424 -0
- data/closure-library/closure/goog/dom/dom_quirks_test.html +104 -0
- data/closure-library/closure/goog/dom/dom_test.html +103 -0
- data/closure-library/closure/goog/dom/dom_test.js +1129 -0
- data/closure-library/closure/goog/dom/fontsizemonitor.js +159 -0
- data/closure-library/closure/goog/dom/fontsizemonitor_test.html +283 -0
- data/closure-library/closure/goog/dom/forms.js +403 -0
- data/closure-library/closure/goog/dom/forms_test.html +483 -0
- data/closure-library/closure/goog/dom/iframe.js +128 -0
- data/closure-library/closure/goog/dom/iframe_test.html +87 -0
- data/closure-library/closure/goog/dom/iter.js +127 -0
- data/closure-library/closure/goog/dom/iter_test.html +97 -0
- data/closure-library/closure/goog/dom/multirange.js +519 -0
- data/closure-library/closure/goog/dom/multirange_test.html +67 -0
- data/closure-library/closure/goog/dom/nodeiterator.js +85 -0
- data/closure-library/closure/goog/dom/nodeiterator_test.html +49 -0
- data/closure-library/closure/goog/dom/nodeoffset.js +111 -0
- data/closure-library/closure/goog/dom/nodeoffset_test.html +88 -0
- data/closure-library/closure/goog/dom/pattern/abstractpattern.js +60 -0
- data/closure-library/closure/goog/dom/pattern/allchildren.js +73 -0
- data/closure-library/closure/goog/dom/pattern/callback/callback.js +82 -0
- data/closure-library/closure/goog/dom/pattern/callback/counter.js +72 -0
- data/closure-library/closure/goog/dom/pattern/callback/test.js +77 -0
- data/closure-library/closure/goog/dom/pattern/childmatches.js +152 -0
- data/closure-library/closure/goog/dom/pattern/endtag.js +53 -0
- data/closure-library/closure/goog/dom/pattern/fulltag.js +92 -0
- data/closure-library/closure/goog/dom/pattern/matcher.js +150 -0
- data/closure-library/closure/goog/dom/pattern/matcher_test.html +204 -0
- data/closure-library/closure/goog/dom/pattern/nodetype.js +57 -0
- data/closure-library/closure/goog/dom/pattern/pattern.js +93 -0
- data/closure-library/closure/goog/dom/pattern/pattern_test.html +614 -0
- data/closure-library/closure/goog/dom/pattern/repeat.js +188 -0
- data/closure-library/closure/goog/dom/pattern/sequence.js +139 -0
- data/closure-library/closure/goog/dom/pattern/starttag.js +53 -0
- data/closure-library/closure/goog/dom/pattern/tag.js +149 -0
- data/closure-library/closure/goog/dom/pattern/text.js +69 -0
- data/closure-library/closure/goog/dom/range.js +220 -0
- data/closure-library/closure/goog/dom/range_test.html +702 -0
- data/closure-library/closure/goog/dom/rangeendpoint.js +32 -0
- data/closure-library/closure/goog/dom/savedcaretrange.js +203 -0
- data/closure-library/closure/goog/dom/savedcaretrange_test.html +235 -0
- data/closure-library/closure/goog/dom/savedrange.js +74 -0
- data/closure-library/closure/goog/dom/savedrange_test.html +61 -0
- data/closure-library/closure/goog/dom/selection.js +470 -0
- data/closure-library/closure/goog/dom/selection_test.html +329 -0
- data/closure-library/closure/goog/dom/tagiterator.js +365 -0
- data/closure-library/closure/goog/dom/tagiterator_test.html +589 -0
- data/closure-library/closure/goog/dom/tagname.js +121 -0
- data/closure-library/closure/goog/dom/tagname_test.html +37 -0
- data/closure-library/closure/goog/dom/textrange.js +611 -0
- data/closure-library/closure/goog/dom/textrange_test.html +127 -0
- data/closure-library/closure/goog/dom/textrangeiterator.js +246 -0
- data/closure-library/closure/goog/dom/textrangeiterator_test.html +142 -0
- data/closure-library/closure/goog/dom/viewportsizemonitor.js +220 -0
- data/closure-library/closure/goog/dom/viewportsizemonitor_test.html +166 -0
- data/closure-library/closure/goog/dom/xml.js +187 -0
- data/closure-library/closure/goog/dom/xml_test.html +77 -0
- data/closure-library/closure/goog/editor/browserfeature.js +251 -0
- data/closure-library/closure/goog/editor/browserfeature_test.html +124 -0
- data/closure-library/closure/goog/editor/clicktoeditwrapper.js +438 -0
- data/closure-library/closure/goog/editor/clicktoeditwrapper_test.html +137 -0
- data/closure-library/closure/goog/editor/command.js +74 -0
- data/closure-library/closure/goog/editor/defines.js +34 -0
- data/closure-library/closure/goog/editor/field.js +2594 -0
- data/closure-library/closure/goog/editor/field_test.html +1000 -0
- data/closure-library/closure/goog/editor/focus.js +32 -0
- data/closure-library/closure/goog/editor/focus_test.html +66 -0
- data/closure-library/closure/goog/editor/icontent.js +296 -0
- data/closure-library/closure/goog/editor/icontent_test.html +209 -0
- data/closure-library/closure/goog/editor/link.js +279 -0
- data/closure-library/closure/goog/editor/link_test.html +234 -0
- data/closure-library/closure/goog/editor/node.js +435 -0
- data/closure-library/closure/goog/editor/node_test.html +590 -0
- data/closure-library/closure/goog/editor/plugin.js +444 -0
- data/closure-library/closure/goog/editor/plugin_test.html +187 -0
- data/closure-library/closure/goog/editor/plugins/abstractbubbleplugin.js +535 -0
- data/closure-library/closure/goog/editor/plugins/abstractbubbleplugin_test.html +227 -0
- data/closure-library/closure/goog/editor/plugins/abstractdialogplugin.js +336 -0
- data/closure-library/closure/goog/editor/plugins/abstractdialogplugin_test.html +399 -0
- data/closure-library/closure/goog/editor/plugins/abstracttabhandler.js +78 -0
- data/closure-library/closure/goog/editor/plugins/abstracttabhandler_test.html +91 -0
- data/closure-library/closure/goog/editor/plugins/basictextformatter.js +1740 -0
- data/closure-library/closure/goog/editor/plugins/basictextformatter_test.html +1171 -0
- data/closure-library/closure/goog/editor/plugins/blockquote.js +422 -0
- data/closure-library/closure/goog/editor/plugins/blockquote_test.html +149 -0
- data/closure-library/closure/goog/editor/plugins/emoticons.js +83 -0
- data/closure-library/closure/goog/editor/plugins/emoticons_test.html +67 -0
- data/closure-library/closure/goog/editor/plugins/enterhandler.js +730 -0
- data/closure-library/closure/goog/editor/plugins/enterhandler_test.html +739 -0
- data/closure-library/closure/goog/editor/plugins/headerformatter.js +95 -0
- data/closure-library/closure/goog/editor/plugins/headerformatter_test.html +100 -0
- data/closure-library/closure/goog/editor/plugins/linkbubble.js +458 -0
- data/closure-library/closure/goog/editor/plugins/linkbubble_test.html +309 -0
- data/closure-library/closure/goog/editor/plugins/linkdialogplugin.js +222 -0
- data/closure-library/closure/goog/editor/plugins/linkdialogplugin_test.html +370 -0
- data/closure-library/closure/goog/editor/plugins/listtabhandler.js +66 -0
- data/closure-library/closure/goog/editor/plugins/listtabhandler_test.html +177 -0
- data/closure-library/closure/goog/editor/plugins/loremipsum.js +186 -0
- data/closure-library/closure/goog/editor/plugins/loremipsum_test.html +169 -0
- data/closure-library/closure/goog/editor/plugins/removeformatting.js +772 -0
- data/closure-library/closure/goog/editor/plugins/removeformatting_test.html +920 -0
- data/closure-library/closure/goog/editor/plugins/spacestabhandler.js +93 -0
- data/closure-library/closure/goog/editor/plugins/spacestabhandler_test.html +186 -0
- data/closure-library/closure/goog/editor/plugins/tableeditor.js +496 -0
- data/closure-library/closure/goog/editor/plugins/tableeditor_test.html +299 -0
- data/closure-library/closure/goog/editor/plugins/tagonenterhandler.js +741 -0
- data/closure-library/closure/goog/editor/plugins/tagonenterhandler_test.html +481 -0
- data/closure-library/closure/goog/editor/plugins/undoredo.js +1014 -0
- data/closure-library/closure/goog/editor/plugins/undoredo_test.html +525 -0
- data/closure-library/closure/goog/editor/plugins/undoredomanager.js +337 -0
- data/closure-library/closure/goog/editor/plugins/undoredomanager_test.html +394 -0
- data/closure-library/closure/goog/editor/plugins/undoredostate.js +84 -0
- data/closure-library/closure/goog/editor/plugins/undoredostate_test.html +44 -0
- data/closure-library/closure/goog/editor/range.js +602 -0
- data/closure-library/closure/goog/editor/range_test.html +880 -0
- data/closure-library/closure/goog/editor/seamlessfield.js +720 -0
- data/closure-library/closure/goog/editor/seamlessfield_quirks_test.html +30 -0
- data/closure-library/closure/goog/editor/seamlessfield_test.html +33 -0
- data/closure-library/closure/goog/editor/seamlessfield_test.js +392 -0
- data/closure-library/closure/goog/editor/style.js +222 -0
- data/closure-library/closure/goog/editor/style_test.html +177 -0
- data/closure-library/closure/goog/editor/table.js +566 -0
- data/closure-library/closure/goog/editor/table_test.html +522 -0
- data/closure-library/closure/goog/events/actioneventwrapper.js +131 -0
- data/closure-library/closure/goog/events/actioneventwrapper_test.html +176 -0
- data/closure-library/closure/goog/events/actionhandler.js +189 -0
- data/closure-library/closure/goog/events/actionhandler_test.html +82 -0
- data/closure-library/closure/goog/events/browserevent.js +412 -0
- data/closure-library/closure/goog/events/browserevent_test.html +145 -0
- data/closure-library/closure/goog/events/browserfeature.js +43 -0
- data/closure-library/closure/goog/events/event.js +123 -0
- data/closure-library/closure/goog/events/event_test.html +70 -0
- data/closure-library/closure/goog/events/eventhandler.js +348 -0
- data/closure-library/closure/goog/events/eventhandler_test.html +230 -0
- data/closure-library/closure/goog/events/events.js +1101 -0
- data/closure-library/closure/goog/events/events_test.html +362 -0
- data/closure-library/closure/goog/events/eventtarget.js +197 -0
- data/closure-library/closure/goog/events/eventtarget_test.html +423 -0
- data/closure-library/closure/goog/events/eventtype.js +107 -0
- data/closure-library/closure/goog/events/eventwrapper.js +67 -0
- data/closure-library/closure/goog/events/filedrophandler.js +224 -0
- data/closure-library/closure/goog/events/filedrophandler_test.html +258 -0
- data/closure-library/closure/goog/events/focushandler.js +111 -0
- data/closure-library/closure/goog/events/imehandler.js +365 -0
- data/closure-library/closure/goog/events/imehandler_test.html +271 -0
- data/closure-library/closure/goog/events/inputhandler.js +218 -0
- data/closure-library/closure/goog/events/keycodes.js +314 -0
- data/closure-library/closure/goog/events/keycodes_test.html +72 -0
- data/closure-library/closure/goog/events/keyhandler.js +522 -0
- data/closure-library/closure/goog/events/keyhandler_test.html +621 -0
- data/closure-library/closure/goog/events/keynames.js +124 -0
- data/closure-library/closure/goog/events/listener.js +160 -0
- data/closure-library/closure/goog/events/mousewheelhandler.js +280 -0
- data/closure-library/closure/goog/events/mousewheelhandler_test.html +331 -0
- data/closure-library/closure/goog/events/onlinehandler.js +176 -0
- data/closure-library/closure/goog/events/onlinelistener_test.html +214 -0
- data/closure-library/closure/goog/events/pastehandler.js +444 -0
- data/closure-library/closure/goog/events/pastehandler_test.html +354 -0
- data/closure-library/closure/goog/events/pools.js +342 -0
- data/closure-library/closure/goog/format/emailaddress.js +329 -0
- data/closure-library/closure/goog/format/emailaddress_test.html +179 -0
- data/closure-library/closure/goog/format/format.js +451 -0
- data/closure-library/closure/goog/format/format_test.html +257 -0
- data/closure-library/closure/goog/format/htmlprettyprinter.js +406 -0
- data/closure-library/closure/goog/format/htmlprettyprinter_test.html +205 -0
- data/closure-library/closure/goog/format/jsonprettyprinter.js +405 -0
- data/closure-library/closure/goog/format/jsonprettyprinter_test.html +111 -0
- data/closure-library/closure/goog/fs/entry.js +406 -0
- data/closure-library/closure/goog/fs/error.js +103 -0
- data/closure-library/closure/goog/fs/filesaver.js +214 -0
- data/closure-library/closure/goog/fs/filesystem.js +59 -0
- data/closure-library/closure/goog/fs/filewriter.js +106 -0
- data/closure-library/closure/goog/fs/fs.js +183 -0
- data/closure-library/closure/goog/fs/fs_test.html +270 -0
- data/closure-library/closure/goog/functions/functions.js +219 -0
- data/closure-library/closure/goog/functions/functions_test.html +198 -0
- data/closure-library/closure/goog/fx/abstractdragdrop.js +1451 -0
- data/closure-library/closure/goog/fx/abstractdragdrop_test.html +430 -0
- data/closure-library/closure/goog/fx/animation.js +621 -0
- data/closure-library/closure/goog/fx/animationqueue.js +348 -0
- data/closure-library/closure/goog/fx/cssspriteanimation.js +112 -0
- data/closure-library/closure/goog/fx/cssspriteanimation_test.html +125 -0
- data/closure-library/closure/goog/fx/dom.js +610 -0
- data/closure-library/closure/goog/fx/dragdrop.js +49 -0
- data/closure-library/closure/goog/fx/dragdropgroup.js +107 -0
- data/closure-library/closure/goog/fx/dragdropgroup_test.html +234 -0
- data/closure-library/closure/goog/fx/dragger.js +731 -0
- data/closure-library/closure/goog/fx/dragger_test.html +415 -0
- data/closure-library/closure/goog/fx/draglistgroup.js +1159 -0
- data/closure-library/closure/goog/fx/draglistgroup_test.html +231 -0
- data/closure-library/closure/goog/fx/dragscrollsupport.js +274 -0
- data/closure-library/closure/goog/fx/dragscrollsupport_test.html +253 -0
- data/closure-library/closure/goog/fx/easing.js +50 -0
- data/closure-library/closure/goog/fx/fx.js +30 -0
- data/closure-library/closure/goog/fx/fx_test.html +157 -0
- data/closure-library/closure/goog/gears/basestore.js +523 -0
- data/closure-library/closure/goog/gears/basestore_test.html +247 -0
- data/closure-library/closure/goog/gears/database.js +935 -0
- data/closure-library/closure/goog/gears/database_test.html +699 -0
- data/closure-library/closure/goog/gears/fakeworkerpool.js +252 -0
- data/closure-library/closure/goog/gears/fakeworkerpool_test.html +188 -0
- data/closure-library/closure/goog/gears/gears.js +228 -0
- data/closure-library/closure/goog/gears/gears_test.html +78 -0
- data/closure-library/closure/goog/gears/httprequest.js +77 -0
- data/closure-library/closure/goog/gears/loggerclient.js +131 -0
- data/closure-library/closure/goog/gears/loggerclient_test.html +171 -0
- data/closure-library/closure/goog/gears/loggerserver.js +158 -0
- data/closure-library/closure/goog/gears/loggerserver_test.html +118 -0
- data/closure-library/closure/goog/gears/logstore.js +479 -0
- data/closure-library/closure/goog/gears/logstore_test.html +600 -0
- data/closure-library/closure/goog/gears/managedresourcestore.js +553 -0
- data/closure-library/closure/goog/gears/managedresourcestore_test.html +453 -0
- data/closure-library/closure/goog/gears/multipartformdata.js +203 -0
- data/closure-library/closure/goog/gears/multipartformdata_test.html +220 -0
- data/closure-library/closure/goog/gears/statustype.js +37 -0
- data/closure-library/closure/goog/gears/urlcapture.js +370 -0
- data/closure-library/closure/goog/gears/urlcapture_test.html +392 -0
- data/closure-library/closure/goog/gears/worker.js +201 -0
- data/closure-library/closure/goog/gears/workerchannel.js +205 -0
- data/closure-library/closure/goog/gears/workerchannel_test.html +207 -0
- data/closure-library/closure/goog/gears/workerpool.js +241 -0
- data/closure-library/closure/goog/gears/workerpool_test.html +203 -0
- data/closure-library/closure/goog/graphics/abstractgraphics.js +439 -0
- data/closure-library/closure/goog/graphics/affinetransform.js +497 -0
- data/closure-library/closure/goog/graphics/affinetransform_test.html +316 -0
- data/closure-library/closure/goog/graphics/canvaselement.js +776 -0
- data/closure-library/closure/goog/graphics/canvasgraphics.js +632 -0
- data/closure-library/closure/goog/graphics/element.js +145 -0
- data/closure-library/closure/goog/graphics/ellipseelement.js +59 -0
- data/closure-library/closure/goog/graphics/ext/coordinates.js +158 -0
- data/closure-library/closure/goog/graphics/ext/coordinates_test.html +74 -0
- data/closure-library/closure/goog/graphics/ext/element.js +970 -0
- data/closure-library/closure/goog/graphics/ext/element_test.html +144 -0
- data/closure-library/closure/goog/graphics/ext/ellipse.js +58 -0
- data/closure-library/closure/goog/graphics/ext/ext.js +29 -0
- data/closure-library/closure/goog/graphics/ext/graphics.js +209 -0
- data/closure-library/closure/goog/graphics/ext/group.js +213 -0
- data/closure-library/closure/goog/graphics/ext/image.js +62 -0
- data/closure-library/closure/goog/graphics/ext/path.js +140 -0
- data/closure-library/closure/goog/graphics/ext/path_test.html +46 -0
- data/closure-library/closure/goog/graphics/ext/rectangle.js +53 -0
- data/closure-library/closure/goog/graphics/ext/shape.js +144 -0
- data/closure-library/closure/goog/graphics/ext/strokeandfillelement.js +69 -0
- data/closure-library/closure/goog/graphics/fill.js +29 -0
- data/closure-library/closure/goog/graphics/font.js +59 -0
- data/closure-library/closure/goog/graphics/graphics.js +124 -0
- data/closure-library/closure/goog/graphics/groupelement.js +54 -0
- data/closure-library/closure/goog/graphics/imageelement.js +67 -0
- data/closure-library/closure/goog/graphics/lineargradient.js +131 -0
- data/closure-library/closure/goog/graphics/path.js +508 -0
- data/closure-library/closure/goog/graphics/path_test.html +359 -0
- data/closure-library/closure/goog/graphics/pathelement.js +50 -0
- data/closure-library/closure/goog/graphics/paths.js +86 -0
- data/closure-library/closure/goog/graphics/paths_test.html +97 -0
- data/closure-library/closure/goog/graphics/rectelement.js +59 -0
- data/closure-library/closure/goog/graphics/solidfill.js +70 -0
- data/closure-library/closure/goog/graphics/stroke.js +63 -0
- data/closure-library/closure/goog/graphics/strokeandfillelement.js +110 -0
- data/closure-library/closure/goog/graphics/svgelement.js +262 -0
- data/closure-library/closure/goog/graphics/svggraphics.js +813 -0
- data/closure-library/closure/goog/graphics/textelement.js +51 -0
- data/closure-library/closure/goog/graphics/vmlelement.js +380 -0
- data/closure-library/closure/goog/graphics/vmlgraphics.js +863 -0
- data/closure-library/closure/goog/history/event.js +54 -0
- data/closure-library/closure/goog/history/eventtype.js +30 -0
- data/closure-library/closure/goog/history/history.js +979 -0
- data/closure-library/closure/goog/history/html5history.js +303 -0
- data/closure-library/closure/goog/history/html5history_test.html +163 -0
- data/closure-library/closure/goog/i18n/bidi.js +772 -0
- data/closure-library/closure/goog/i18n/bidi_test.html +414 -0
- data/closure-library/closure/goog/i18n/bidiformatter.js +488 -0
- data/closure-library/closure/goog/i18n/bidiformatter_test.html +343 -0
- data/closure-library/closure/goog/i18n/charlistdecompressor.js +157 -0
- data/closure-library/closure/goog/i18n/charlistdecompressor_test.html +65 -0
- data/closure-library/closure/goog/i18n/charpickerdata.js +3185 -0
- data/closure-library/closure/goog/i18n/currency.js +385 -0
- data/closure-library/closure/goog/i18n/currency_test.html +202 -0
- data/closure-library/closure/goog/i18n/currencycodemap.js +210 -0
- data/closure-library/closure/goog/i18n/datetimeformat.js +636 -0
- data/closure-library/closure/goog/i18n/datetimeformat_test.html +436 -0
- data/closure-library/closure/goog/i18n/datetimeparse.js +1111 -0
- data/closure-library/closure/goog/i18n/datetimeparse_test.html +796 -0
- data/closure-library/closure/goog/i18n/datetimepatterns.js +1586 -0
- data/closure-library/closure/goog/i18n/datetimepatternsext.js +7386 -0
- data/closure-library/closure/goog/i18n/datetimesymbols.js +3350 -0
- data/closure-library/closure/goog/i18n/datetimesymbolsext.js +12938 -0
- data/closure-library/closure/goog/i18n/graphemebreak.js +181 -0
- data/closure-library/closure/goog/i18n/graphemebreak_test.html +72 -0
- data/closure-library/closure/goog/i18n/messageformat.js +553 -0
- data/closure-library/closure/goog/i18n/messageformat_test.html +323 -0
- data/closure-library/closure/goog/i18n/mime.js +100 -0
- data/closure-library/closure/goog/i18n/mime_test.html +51 -0
- data/closure-library/closure/goog/i18n/numberformat.js +763 -0
- data/closure-library/closure/goog/i18n/numberformat_test.html +605 -0
- data/closure-library/closure/goog/i18n/numberformatsymbols.js +10358 -0
- data/closure-library/closure/goog/i18n/pluralrules.js +695 -0
- data/closure-library/closure/goog/i18n/timezone.js +341 -0
- data/closure-library/closure/goog/i18n/timezone_test.html +163 -0
- data/closure-library/closure/goog/i18n/uchar.js +1160 -0
- data/closure-library/closure/goog/i18n/uchar_test.html +72 -0
- data/closure-library/closure/goog/images/blank.gif +0 -0
- data/closure-library/closure/goog/images/bubble_close.jpg +0 -0
- data/closure-library/closure/goog/images/bubble_left.gif +0 -0
- data/closure-library/closure/goog/images/bubble_right.gif +0 -0
- data/closure-library/closure/goog/images/button-bg.gif +0 -0
- data/closure-library/closure/goog/images/check-outline.gif +0 -0
- data/closure-library/closure/goog/images/check-sprite.gif +0 -0
- data/closure-library/closure/goog/images/check.gif +0 -0
- data/closure-library/closure/goog/images/close_box.gif +0 -0
- data/closure-library/closure/goog/images/color-swatch-tick.gif +0 -0
- data/closure-library/closure/goog/images/dialog_close_box.gif +0 -0
- data/closure-library/closure/goog/images/dimension-highlighted.png +0 -0
- data/closure-library/closure/goog/images/dimension-unhighlighted.png +0 -0
- data/closure-library/closure/goog/images/dropdn.gif +0 -0
- data/closure-library/closure/goog/images/dropdn_disabled.gif +0 -0
- data/closure-library/closure/goog/images/dropdown.gif +0 -0
- data/closure-library/closure/goog/images/gears_bluedot.gif +0 -0
- data/closure-library/closure/goog/images/gears_offline.gif +0 -0
- data/closure-library/closure/goog/images/gears_online.gif +0 -0
- data/closure-library/closure/goog/images/gears_paused.gif +0 -0
- data/closure-library/closure/goog/images/gears_syncing.gif +0 -0
- data/closure-library/closure/goog/images/hsv-sprite-sm.gif +0 -0
- data/closure-library/closure/goog/images/hsv-sprite-sm.png +0 -0
- data/closure-library/closure/goog/images/hsv-sprite.gif +0 -0
- data/closure-library/closure/goog/images/hsv-sprite.png +0 -0
- data/closure-library/closure/goog/images/hsva-sprite-sm.gif +0 -0
- data/closure-library/closure/goog/images/hsva-sprite-sm.png +0 -0
- data/closure-library/closure/goog/images/hsva-sprite.gif +0 -0
- data/closure-library/closure/goog/images/hsva-sprite.png +0 -0
- data/closure-library/closure/goog/images/left_anchor_bubble_bot.gif +0 -0
- data/closure-library/closure/goog/images/left_anchor_bubble_top.gif +0 -0
- data/closure-library/closure/goog/images/menu-arrows.gif +0 -0
- data/closure-library/closure/goog/images/minus.png +0 -0
- data/closure-library/closure/goog/images/no_anchor_bubble_bot.gif +0 -0
- data/closure-library/closure/goog/images/no_anchor_bubble_top.gif +0 -0
- data/closure-library/closure/goog/images/offlineicons.png +0 -0
- data/closure-library/closure/goog/images/plus.png +0 -0
- data/closure-library/closure/goog/images/ratingstars.gif +0 -0
- data/closure-library/closure/goog/images/right_anchor_bubble_bot.gif +0 -0
- data/closure-library/closure/goog/images/right_anchor_bubble_top.gif +0 -0
- data/closure-library/closure/goog/images/toolbar-bg.png +0 -0
- data/closure-library/closure/goog/images/toolbar-separator.gif +0 -0
- data/closure-library/closure/goog/images/toolbar_icons.gif +0 -0
- data/closure-library/closure/goog/images/tree/I.png +0 -0
- data/closure-library/closure/goog/images/tree/cleardot.gif +0 -0
- data/closure-library/closure/goog/images/tree/tree.gif +0 -0
- data/closure-library/closure/goog/images/tree/tree.png +0 -0
- data/closure-library/closure/goog/images/ui_controls.jpg +0 -0
- data/closure-library/closure/goog/iter/iter.js +627 -0
- data/closure-library/closure/goog/iter/iter_test.html +443 -0
- data/closure-library/closure/goog/json/json.js +302 -0
- data/closure-library/closure/goog/json/json_test.html +501 -0
- data/closure-library/closure/goog/locale/countries.js +288 -0
- data/closure-library/closure/goog/locale/countrylanguagenames_test.html +233 -0
- data/closure-library/closure/goog/locale/defaultlocalenameconstants.js +847 -0
- data/closure-library/closure/goog/locale/genericfontnames.js +73 -0
- data/closure-library/closure/goog/locale/genericfontnames_test.html +97 -0
- data/closure-library/closure/goog/locale/genericfontnamesdata.js +328 -0
- data/closure-library/closure/goog/locale/locale.js +397 -0
- data/closure-library/closure/goog/locale/nativenameconstants.js +1354 -0
- data/closure-library/closure/goog/locale/scriptToLanguages.js +482 -0
- data/closure-library/closure/goog/locale/timezonedetection.js +117 -0
- data/closure-library/closure/goog/locale/timezonedetection_test.html +130 -0
- data/closure-library/closure/goog/locale/timezonefingerprint.js +250 -0
- data/closure-library/closure/goog/locale/timezonelist.js +129 -0
- data/closure-library/closure/goog/locale/timezonelist_test.html +165 -0
- data/closure-library/closure/goog/math/bezier.js +244 -0
- data/closure-library/closure/goog/math/bezier_test.html +70 -0
- data/closure-library/closure/goog/math/box.js +236 -0
- data/closure-library/closure/goog/math/box_test.html +139 -0
- data/closure-library/closure/goog/math/coordinate.js +136 -0
- data/closure-library/closure/goog/math/coordinate3.js +168 -0
- data/closure-library/closure/goog/math/coordinate3_test.html +208 -0
- data/closure-library/closure/goog/math/coordinate_test.html +92 -0
- data/closure-library/closure/goog/math/integer.js +736 -0
- data/closure-library/closure/goog/math/integer_test.html +1653 -0
- data/closure-library/closure/goog/math/line.js +177 -0
- data/closure-library/closure/goog/math/line_test.html +62 -0
- data/closure-library/closure/goog/math/long.js +801 -0
- data/closure-library/closure/goog/math/long_test.html +1571 -0
- data/closure-library/closure/goog/math/math.js +355 -0
- data/closure-library/closure/goog/math/math_test.html +254 -0
- data/closure-library/closure/goog/math/matrix.js +669 -0
- data/closure-library/closure/goog/math/matrix_test.html +427 -0
- data/closure-library/closure/goog/math/range.js +146 -0
- data/closure-library/closure/goog/math/range_test.html +103 -0
- data/closure-library/closure/goog/math/rangeset.js +368 -0
- data/closure-library/closure/goog/math/rangeset_test.html +619 -0
- data/closure-library/closure/goog/math/rect.js +340 -0
- data/closure-library/closure/goog/math/rect_test.html +315 -0
- data/closure-library/closure/goog/math/size.js +201 -0
- data/closure-library/closure/goog/math/size_test.html +174 -0
- data/closure-library/closure/goog/math/vec2.js +255 -0
- data/closure-library/closure/goog/math/vec2_test.html +203 -0
- data/closure-library/closure/goog/math/vec3.js +327 -0
- data/closure-library/closure/goog/math/vec3_test.html +231 -0
- data/closure-library/closure/goog/memoize/memoize.js +98 -0
- data/closure-library/closure/goog/memoize/memoize_test.html +157 -0
- data/closure-library/closure/goog/messaging/abstractchannel.js +209 -0
- data/closure-library/closure/goog/messaging/abstractchannel_test.html +90 -0
- data/closure-library/closure/goog/messaging/bufferedchannel.js +277 -0
- data/closure-library/closure/goog/messaging/bufferedchannel_test.html +205 -0
- data/closure-library/closure/goog/messaging/deferredchannel.js +79 -0
- data/closure-library/closure/goog/messaging/deferredchannel_test.html +107 -0
- data/closure-library/closure/goog/messaging/loggerclient.js +131 -0
- data/closure-library/closure/goog/messaging/loggerclient_test.html +102 -0
- data/closure-library/closure/goog/messaging/loggerserver.js +94 -0
- data/closure-library/closure/goog/messaging/loggerserver_test.html +101 -0
- data/closure-library/closure/goog/messaging/messagechannel.js +115 -0
- data/closure-library/closure/goog/messaging/messaging.js +34 -0
- data/closure-library/closure/goog/messaging/messaging_test.html +42 -0
- data/closure-library/closure/goog/messaging/multichannel.js +303 -0
- data/closure-library/closure/goog/messaging/multichannel_test.html +122 -0
- data/closure-library/closure/goog/messaging/portchannel.js +341 -0
- data/closure-library/closure/goog/messaging/portchannel_test.html +359 -0
- data/closure-library/closure/goog/messaging/testdata/portchannel_worker.js +37 -0
- data/closure-library/closure/goog/module/abstractmoduleloader.js +46 -0
- data/closure-library/closure/goog/module/basemodule.js +45 -0
- data/closure-library/closure/goog/module/basemoduleloader.js +210 -0
- data/closure-library/closure/goog/module/loader.js +269 -0
- data/closure-library/closure/goog/module/module.js +166 -0
- data/closure-library/closure/goog/module/moduleinfo.js +336 -0
- data/closure-library/closure/goog/module/moduleinfo_test.html +109 -0
- data/closure-library/closure/goog/module/moduleloadcallback.js +84 -0
- data/closure-library/closure/goog/module/moduleloadcallback_test.html +57 -0
- data/closure-library/closure/goog/module/moduleloader.js +250 -0
- data/closure-library/closure/goog/module/moduleloader_test.html +244 -0
- data/closure-library/closure/goog/module/modulemanager.js +1008 -0
- data/closure-library/closure/goog/module/modulemanager_test.html +1240 -0
- data/closure-library/closure/goog/module/testdata/modA_1.js +22 -0
- data/closure-library/closure/goog/module/testdata/modA_2.js +24 -0
- data/closure-library/closure/goog/module/testdata/modB_1.js +24 -0
- data/closure-library/closure/goog/net/browserchannel.js +2441 -0
- data/closure-library/closure/goog/net/browserchannel_test.html +1176 -0
- data/closure-library/closure/goog/net/browsertestchannel.js +552 -0
- data/closure-library/closure/goog/net/bulkloader.js +174 -0
- data/closure-library/closure/goog/net/bulkloader_test.html +232 -0
- data/closure-library/closure/goog/net/bulkloaderhelper.js +129 -0
- data/closure-library/closure/goog/net/channeldebug.js +288 -0
- data/closure-library/closure/goog/net/channelrequest.js +1125 -0
- data/closure-library/closure/goog/net/channelrequest_test.html +158 -0
- data/closure-library/closure/goog/net/cookies.js +401 -0
- data/closure-library/closure/goog/net/cookies_test.html +255 -0
- data/closure-library/closure/goog/net/crossdomainrpc.js +848 -0
- data/closure-library/closure/goog/net/crossdomainrpc_test.gif +0 -0
- data/closure-library/closure/goog/net/crossdomainrpc_test.html +120 -0
- data/closure-library/closure/goog/net/crossdomainrpc_test_response.html +59 -0
- data/closure-library/closure/goog/net/errorcode.js +130 -0
- data/closure-library/closure/goog/net/eventtype.js +37 -0
- data/closure-library/closure/goog/net/iframe_xhr_test.html +142 -0
- data/closure-library/closure/goog/net/iframe_xhr_test_response.html +17 -0
- data/closure-library/closure/goog/net/iframeio.js +1342 -0
- data/closure-library/closure/goog/net/iframeio_different_base_test.data +2 -0
- data/closure-library/closure/goog/net/iframeio_different_base_test.html +42 -0
- data/closure-library/closure/goog/net/iframeio_test.html +368 -0
- data/closure-library/closure/goog/net/iframeloadmonitor.js +199 -0
- data/closure-library/closure/goog/net/iframeloadmonitor_test.html +113 -0
- data/closure-library/closure/goog/net/iframeloadmonitor_test_frame.html +12 -0
- data/closure-library/closure/goog/net/iframeloadmonitor_test_frame2.html +12 -0
- data/closure-library/closure/goog/net/iframeloadmonitor_test_frame3.html +12 -0
- data/closure-library/closure/goog/net/imageloader.js +237 -0
- data/closure-library/closure/goog/net/imageloader_test.html +200 -0
- data/closure-library/closure/goog/net/imageloader_testimg1.gif +0 -0
- data/closure-library/closure/goog/net/imageloader_testimg2.gif +0 -0
- data/closure-library/closure/goog/net/imageloader_testimg3.gif +0 -0
- data/closure-library/closure/goog/net/jsonp.js +379 -0
- data/closure-library/closure/goog/net/jsonp_test.html +328 -0
- data/closure-library/closure/goog/net/mockiframeio.js +318 -0
- data/closure-library/closure/goog/net/mockxhrlite.js +34 -0
- data/closure-library/closure/goog/net/mockxhrlite_test.html +109 -0
- data/closure-library/closure/goog/net/multiiframeloadmonitor.js +116 -0
- data/closure-library/closure/goog/net/multiiframeloadmonitor_test.html +172 -0
- data/closure-library/closure/goog/net/networktester.js +383 -0
- data/closure-library/closure/goog/net/networktester_test.html +227 -0
- data/closure-library/closure/goog/net/tmpnetwork.js +168 -0
- data/closure-library/closure/goog/net/wrapperxmlhttpfactory.js +68 -0
- data/closure-library/closure/goog/net/xhrio.js +1093 -0
- data/closure-library/closure/goog/net/xhrio_test.html +603 -0
- data/closure-library/closure/goog/net/xhriopool.js +87 -0
- data/closure-library/closure/goog/net/xhrlite.js +119 -0
- data/closure-library/closure/goog/net/xhrlite_test.html +156 -0
- data/closure-library/closure/goog/net/xhrlitepool.js +37 -0
- data/closure-library/closure/goog/net/xhrmanager.js +763 -0
- data/closure-library/closure/goog/net/xhrmonitor.js +254 -0
- data/closure-library/closure/goog/net/xhrmonitor_test.html +199 -0
- data/closure-library/closure/goog/net/xmlhttp.js +215 -0
- data/closure-library/closure/goog/net/xmlhttpfactory.js +64 -0
- data/closure-library/closure/goog/net/xpc/crosspagechannel.js +624 -0
- data/closure-library/closure/goog/net/xpc/crosspagechannel_test.html +422 -0
- data/closure-library/closure/goog/net/xpc/frameelementmethodtransport.js +251 -0
- data/closure-library/closure/goog/net/xpc/iframepollingtransport.js +822 -0
- data/closure-library/closure/goog/net/xpc/iframerelaytransport.js +288 -0
- data/closure-library/closure/goog/net/xpc/nativemessagingtransport.js +280 -0
- data/closure-library/closure/goog/net/xpc/nativemessagingtransport_test.html +164 -0
- data/closure-library/closure/goog/net/xpc/nixtransport.js +454 -0
- data/closure-library/closure/goog/net/xpc/relay.js +72 -0
- data/closure-library/closure/goog/net/xpc/testdata/inner_peer.html +106 -0
- data/closure-library/closure/goog/net/xpc/transport.js +104 -0
- data/closure-library/closure/goog/net/xpc/xpc.js +238 -0
- data/closure-library/closure/goog/object/object.js +553 -0
- data/closure-library/closure/goog/object/object_test.html +376 -0
- data/closure-library/closure/goog/positioning/absoluteposition.js +73 -0
- data/closure-library/closure/goog/positioning/abstractposition.js +47 -0
- data/closure-library/closure/goog/positioning/anchoredposition.js +78 -0
- data/closure-library/closure/goog/positioning/anchoredviewportposition.js +126 -0
- data/closure-library/closure/goog/positioning/anchoredviewportposition_test.html +117 -0
- data/closure-library/closure/goog/positioning/anchoredviewportposition_test_iframe.html +35 -0
- data/closure-library/closure/goog/positioning/clientposition.js +75 -0
- data/closure-library/closure/goog/positioning/menuanchoredposition.js +97 -0
- data/closure-library/closure/goog/positioning/positioning.js +476 -0
- data/closure-library/closure/goog/positioning/positioning_test.html +877 -0
- data/closure-library/closure/goog/positioning/positioning_test_iframe1.html +16 -0
- data/closure-library/closure/goog/positioning/positioning_test_iframe2.html +13 -0
- data/closure-library/closure/goog/positioning/positioning_test_quirk.html +9 -0
- data/closure-library/closure/goog/positioning/positioning_test_standard.html +13 -0
- data/closure-library/closure/goog/positioning/viewportclientposition.js +102 -0
- data/closure-library/closure/goog/positioning/viewportclientposition_test.html +172 -0
- data/closure-library/closure/goog/positioning/viewportposition.js +63 -0
- data/closure-library/closure/goog/proto/proto.js +43 -0
- data/closure-library/closure/goog/proto/serializer.js +68 -0
- data/closure-library/closure/goog/proto/serializer_test.html +43 -0
- data/closure-library/closure/goog/proto2/descriptor.js +198 -0
- data/closure-library/closure/goog/proto2/descriptor_test.html +60 -0
- data/closure-library/closure/goog/proto2/fielddescriptor.js +288 -0
- data/closure-library/closure/goog/proto2/fielddescriptor_test.html +124 -0
- data/closure-library/closure/goog/proto2/lazydeserializer.js +69 -0
- data/closure-library/closure/goog/proto2/message.js +726 -0
- data/closure-library/closure/goog/proto2/message_test.html +356 -0
- data/closure-library/closure/goog/proto2/objectserializer.js +159 -0
- data/closure-library/closure/goog/proto2/objectserializer_test.html +423 -0
- data/closure-library/closure/goog/proto2/package_test.pb.js +164 -0
- data/closure-library/closure/goog/proto2/pbliteserializer.js +150 -0
- data/closure-library/closure/goog/proto2/pbliteserializer_test.html +267 -0
- data/closure-library/closure/goog/proto2/proto_test.html +693 -0
- data/closure-library/closure/goog/proto2/serializer.js +148 -0
- data/closure-library/closure/goog/proto2/test.pb.js +2820 -0
- data/closure-library/closure/goog/proto2/util.js +54 -0
- data/closure-library/closure/goog/pubsub/pubsub.js +326 -0
- data/closure-library/closure/goog/pubsub/pubsub_test.html +635 -0
- data/closure-library/closure/goog/reflect/reflect.js +50 -0
- data/closure-library/closure/goog/spell/spellcheck.js +474 -0
- data/closure-library/closure/goog/spell/spellcheck_test.html +112 -0
- data/closure-library/closure/goog/string/path.js +100 -0
- data/closure-library/closure/goog/string/path_test.html +59 -0
- data/closure-library/closure/goog/string/string.js +1207 -0
- data/closure-library/closure/goog/string/string_test.html +877 -0
- data/closure-library/closure/goog/string/stringbuffer.js +167 -0
- data/closure-library/closure/goog/string/stringbuffer_test.html +101 -0
- data/closure-library/closure/goog/string/stringformat.js +247 -0
- data/closure-library/closure/goog/string/stringformat_test.html +211 -0
- data/closure-library/closure/goog/structs/avltree.js +769 -0
- data/closure-library/closure/goog/structs/avltree_test.html +241 -0
- data/closure-library/closure/goog/structs/circularbuffer.js +219 -0
- data/closure-library/closure/goog/structs/circularbuffer_test.html +105 -0
- data/closure-library/closure/goog/structs/heap.js +332 -0
- data/closure-library/closure/goog/structs/heap_test.html +220 -0
- data/closure-library/closure/goog/structs/inversionmap.js +159 -0
- data/closure-library/closure/goog/structs/inversionmap_test.html +157 -0
- data/closure-library/closure/goog/structs/linkedmap.js +472 -0
- data/closure-library/closure/goog/structs/linkedmap_test.html +300 -0
- data/closure-library/closure/goog/structs/map.js +446 -0
- data/closure-library/closure/goog/structs/map_test.html +430 -0
- data/closure-library/closure/goog/structs/node.js +74 -0
- data/closure-library/closure/goog/structs/pool.js +344 -0
- data/closure-library/closure/goog/structs/pool_test.html +265 -0
- data/closure-library/closure/goog/structs/prioritypool.js +147 -0
- data/closure-library/closure/goog/structs/prioritypool_test.html +478 -0
- data/closure-library/closure/goog/structs/priorityqueue.js +64 -0
- data/closure-library/closure/goog/structs/priorityqueue_test.html +179 -0
- data/closure-library/closure/goog/structs/quadtree.js +571 -0
- data/closure-library/closure/goog/structs/quadtree_test.html +179 -0
- data/closure-library/closure/goog/structs/queue.js +157 -0
- data/closure-library/closure/goog/structs/queue_test.html +140 -0
- data/closure-library/closure/goog/structs/set.js +251 -0
- data/closure-library/closure/goog/structs/set_test.html +551 -0
- data/closure-library/closure/goog/structs/simplepool.js +203 -0
- data/closure-library/closure/goog/structs/stringset.js +404 -0
- data/closure-library/closure/goog/structs/stringset_test.html +251 -0
- data/closure-library/closure/goog/structs/structs.js +341 -0
- data/closure-library/closure/goog/structs/structs_test.html +1050 -0
- data/closure-library/closure/goog/structs/treenode.js +312 -0
- data/closure-library/closure/goog/structs/treenode_test.html +285 -0
- data/closure-library/closure/goog/structs/trie.js +368 -0
- data/closure-library/closure/goog/structs/trie_test.html +378 -0
- data/closure-library/closure/goog/style/cursor.js +125 -0
- data/closure-library/closure/goog/style/cursor_test.html +131 -0
- data/closure-library/closure/goog/style/style.js +1804 -0
- data/closure-library/closure/goog/style/style_quirks_test.html +1928 -0
- data/closure-library/closure/goog/style/style_test.html +2073 -0
- data/closure-library/closure/goog/style/style_test_iframe_quirk.html +29 -0
- data/closure-library/closure/goog/style/style_test_iframe_standard.html +30 -0
- data/closure-library/closure/goog/style/style_test_quirk.html +9 -0
- data/closure-library/closure/goog/style/style_test_standard.html +11 -0
- data/closure-library/closure/goog/testing/asserts.js +970 -0
- data/closure-library/closure/goog/testing/asserts_test.html +966 -0
- data/closure-library/closure/goog/testing/async/mockcontrol.js +174 -0
- data/closure-library/closure/goog/testing/async/mockcontrol_test.html +224 -0
- data/closure-library/closure/goog/testing/asynctestcase.js +812 -0
- data/closure-library/closure/goog/testing/asynctestcase_async_test.html +102 -0
- data/closure-library/closure/goog/testing/asynctestcase_noasync_test.html +98 -0
- data/closure-library/closure/goog/testing/benchmark.js +87 -0
- data/closure-library/closure/goog/testing/benchmarks/jsbinarysizebutton.js +64 -0
- data/closure-library/closure/goog/testing/benchmarks/jsbinarysizebutton_test.html +58 -0
- data/closure-library/closure/goog/testing/benchmarks/jsbinarysizetoolbar.js +66 -0
- data/closure-library/closure/goog/testing/benchmarks/jsbinarysizetoolbar_test.html +49 -0
- data/closure-library/closure/goog/testing/continuationtestcase.js +682 -0
- data/closure-library/closure/goog/testing/continuationtestcase_test.html +349 -0
- data/closure-library/closure/goog/testing/deferredtestcase.js +157 -0
- data/closure-library/closure/goog/testing/deferredtestcase_test.html +152 -0
- data/closure-library/closure/goog/testing/dom.js +596 -0
- data/closure-library/closure/goog/testing/dom_test.html +438 -0
- data/closure-library/closure/goog/testing/editor/dom.js +293 -0
- data/closure-library/closure/goog/testing/editor/dom_test.html +295 -0
- data/closure-library/closure/goog/testing/editor/fieldmock.js +90 -0
- data/closure-library/closure/goog/testing/editor/testhelper.js +168 -0
- data/closure-library/closure/goog/testing/editor/testhelper_test.html +176 -0
- data/closure-library/closure/goog/testing/events/eventobserver.js +85 -0
- data/closure-library/closure/goog/testing/events/eventobserver_test.html +70 -0
- data/closure-library/closure/goog/testing/events/events.js +540 -0
- data/closure-library/closure/goog/testing/events/events_test.html +434 -0
- data/closure-library/closure/goog/testing/events/matchers.js +41 -0
- data/closure-library/closure/goog/testing/events/matchers_test.html +40 -0
- data/closure-library/closure/goog/testing/expectedfailures.js +236 -0
- data/closure-library/closure/goog/testing/expectedfailures_test.html +122 -0
- data/closure-library/closure/goog/testing/fs/blob.js +74 -0
- data/closure-library/closure/goog/testing/fs/blob_test.html +53 -0
- data/closure-library/closure/goog/testing/fs/directoryentry_test.html +185 -0
- data/closure-library/closure/goog/testing/fs/entry.js +511 -0
- data/closure-library/closure/goog/testing/fs/entry_test.html +153 -0
- data/closure-library/closure/goog/testing/fs/file.js +51 -0
- data/closure-library/closure/goog/testing/fs/fileentry_test.html +54 -0
- data/closure-library/closure/goog/testing/fs/filesystem.js +64 -0
- data/closure-library/closure/goog/testing/fs/filewriter.js +314 -0
- data/closure-library/closure/goog/testing/fs/filewriter_test.html +248 -0
- data/closure-library/closure/goog/testing/fs/fs.js +146 -0
- data/closure-library/closure/goog/testing/fs/fs_test.html +54 -0
- data/closure-library/closure/goog/testing/fs/integration_test.html +219 -0
- data/closure-library/closure/goog/testing/functionmock.js +157 -0
- data/closure-library/closure/goog/testing/functionmock_test.html +357 -0
- data/closure-library/closure/goog/testing/graphics.js +64 -0
- data/closure-library/closure/goog/testing/jsunit.js +144 -0
- data/closure-library/closure/goog/testing/loosemock.js +240 -0
- data/closure-library/closure/goog/testing/loosemock_test.html +343 -0
- data/closure-library/closure/goog/testing/messaging/mockmessagechannel.js +77 -0
- data/closure-library/closure/goog/testing/messaging/mockmessageevent.js +100 -0
- data/closure-library/closure/goog/testing/mock.js +556 -0
- data/closure-library/closure/goog/testing/mock_test.html +208 -0
- data/closure-library/closure/goog/testing/mockclassfactory.js +580 -0
- data/closure-library/closure/goog/testing/mockclassfactory_test.html +241 -0
- data/closure-library/closure/goog/testing/mockclock.js +395 -0
- data/closure-library/closure/goog/testing/mockclock_test.html +413 -0
- data/closure-library/closure/goog/testing/mockcontrol.js +210 -0
- data/closure-library/closure/goog/testing/mockcontrol_test.html +127 -0
- data/closure-library/closure/goog/testing/mockinterface.js +45 -0
- data/closure-library/closure/goog/testing/mockmatchers.js +395 -0
- data/closure-library/closure/goog/testing/mockmatchers_test.html +388 -0
- data/closure-library/closure/goog/testing/mockrandom.js +128 -0
- data/closure-library/closure/goog/testing/mockrandom_test.html +56 -0
- data/closure-library/closure/goog/testing/mockrange.js +65 -0
- data/closure-library/closure/goog/testing/mockrange_test.html +41 -0
- data/closure-library/closure/goog/testing/mockuseragent.js +143 -0
- data/closure-library/closure/goog/testing/mockuseragent_test.html +59 -0
- data/closure-library/closure/goog/testing/multitestrunner.js +1442 -0
- data/closure-library/closure/goog/testing/net/xhrio.js +595 -0
- data/closure-library/closure/goog/testing/net/xhrio_test.html +321 -0
- data/closure-library/closure/goog/testing/objectpropertystring.js +67 -0
- data/closure-library/closure/goog/testing/performancetable.css +46 -0
- data/closure-library/closure/goog/testing/performancetable.js +162 -0
- data/closure-library/closure/goog/testing/performancetimer.js +166 -0
- data/closure-library/closure/goog/testing/performancetimer_test.html +107 -0
- data/closure-library/closure/goog/testing/propertyreplacer.js +243 -0
- data/closure-library/closure/goog/testing/propertyreplacer_test.html +368 -0
- data/closure-library/closure/goog/testing/pseudorandom.js +162 -0
- data/closure-library/closure/goog/testing/pseudorandom_test.html +98 -0
- data/closure-library/closure/goog/testing/recordfunction.js +194 -0
- data/closure-library/closure/goog/testing/recordfunction_test.html +147 -0
- data/closure-library/closure/goog/testing/singleton.js +82 -0
- data/closure-library/closure/goog/testing/singleton_test.html +39 -0
- data/closure-library/closure/goog/testing/stacktrace.js +470 -0
- data/closure-library/closure/goog/testing/stacktrace_test.html +229 -0
- data/closure-library/closure/goog/testing/strictmock.js +124 -0
- data/closure-library/closure/goog/testing/strictmock_test.html +368 -0
- data/closure-library/closure/goog/testing/style/layoutasserts.js +368 -0
- data/closure-library/closure/goog/testing/style/layoutasserts_test.html +269 -0
- data/closure-library/closure/goog/testing/testcase.js +1053 -0
- data/closure-library/closure/goog/testing/testqueue.js +66 -0
- data/closure-library/closure/goog/testing/testrunner.js +391 -0
- data/closure-library/closure/goog/testing/ui/rendererasserts.js +50 -0
- data/closure-library/closure/goog/testing/ui/rendererasserts_test.html +51 -0
- data/closure-library/closure/goog/testing/ui/rendererharness.js +175 -0
- data/closure-library/closure/goog/testing/ui/style.js +137 -0
- data/closure-library/closure/goog/testing/ui/style_reference.html +27 -0
- data/closure-library/closure/goog/testing/ui/style_test.html +130 -0
- data/closure-library/closure/goog/timer/timer.js +285 -0
- data/closure-library/closure/goog/timer/timer_test.html +118 -0
- data/closure-library/closure/goog/tweak/entries.js +990 -0
- data/closure-library/closure/goog/tweak/entries_test.html +94 -0
- data/closure-library/closure/goog/tweak/registry.js +310 -0
- data/closure-library/closure/goog/tweak/registry_test.html +144 -0
- data/closure-library/closure/goog/tweak/testhelpers.js +111 -0
- data/closure-library/closure/goog/tweak/tweak.js +318 -0
- data/closure-library/closure/goog/tweak/tweakui.js +817 -0
- data/closure-library/closure/goog/tweak/tweakui_test.html +280 -0
- data/closure-library/closure/goog/ui/abstractspellchecker.js +1069 -0
- data/closure-library/closure/goog/ui/activitymonitor.js +286 -0
- data/closure-library/closure/goog/ui/activitymonitor_test.html +44 -0
- data/closure-library/closure/goog/ui/advancedtooltip.js +369 -0
- data/closure-library/closure/goog/ui/advancedtooltip_test.html +274 -0
- data/closure-library/closure/goog/ui/animatedzippy.js +190 -0
- data/closure-library/closure/goog/ui/attachablemenu.js +464 -0
- data/closure-library/closure/goog/ui/autocomplete/arraymatcher.js +156 -0
- data/closure-library/closure/goog/ui/autocomplete/arraymatcher_test.html +130 -0
- data/closure-library/closure/goog/ui/autocomplete/autocomplete.js +627 -0
- data/closure-library/closure/goog/ui/autocomplete/autocomplete_test.html +537 -0
- data/closure-library/closure/goog/ui/autocomplete/basic.js +53 -0
- data/closure-library/closure/goog/ui/autocomplete/basic_test.html +204 -0
- data/closure-library/closure/goog/ui/autocomplete/inputhandler.js +1209 -0
- data/closure-library/closure/goog/ui/autocomplete/inputhandler_test.html +555 -0
- data/closure-library/closure/goog/ui/autocomplete/remote.js +117 -0
- data/closure-library/closure/goog/ui/autocomplete/remotearraymatcher.js +273 -0
- data/closure-library/closure/goog/ui/autocomplete/remotearraymatcher_test.html +73 -0
- data/closure-library/closure/goog/ui/autocomplete/renderer.js +852 -0
- data/closure-library/closure/goog/ui/autocomplete/renderer_test.html +386 -0
- data/closure-library/closure/goog/ui/autocomplete/richinputhandler.js +59 -0
- data/closure-library/closure/goog/ui/autocomplete/richremote.js +108 -0
- data/closure-library/closure/goog/ui/autocomplete/richremotearraymatcher.js +126 -0
- data/closure-library/closure/goog/ui/basicmenu.js +930 -0
- data/closure-library/closure/goog/ui/bidiinput.js +164 -0
- data/closure-library/closure/goog/ui/bubble.js +475 -0
- data/closure-library/closure/goog/ui/button.js +208 -0
- data/closure-library/closure/goog/ui/button_test.html +257 -0
- data/closure-library/closure/goog/ui/buttonrenderer.js +205 -0
- data/closure-library/closure/goog/ui/buttonrenderer_test.html +190 -0
- data/closure-library/closure/goog/ui/buttonside.js +40 -0
- data/closure-library/closure/goog/ui/cccbutton.js +281 -0
- data/closure-library/closure/goog/ui/charcounter.js +200 -0
- data/closure-library/closure/goog/ui/charpicker.js +807 -0
- data/closure-library/closure/goog/ui/checkbox.js +303 -0
- data/closure-library/closure/goog/ui/checkbox_test.html +224 -0
- data/closure-library/closure/goog/ui/checkboxmenuitem.js +53 -0
- data/closure-library/closure/goog/ui/colorbutton.js +58 -0
- data/closure-library/closure/goog/ui/colorbutton_test.html +70 -0
- data/closure-library/closure/goog/ui/colorbuttonrenderer.js +72 -0
- data/closure-library/closure/goog/ui/colormenubutton.js +213 -0
- data/closure-library/closure/goog/ui/colormenubuttonrenderer.js +144 -0
- data/closure-library/closure/goog/ui/colormenubuttonrenderer_test.html +88 -0
- data/closure-library/closure/goog/ui/colorpalette.js +162 -0
- data/closure-library/closure/goog/ui/colorpalette_test.html +169 -0
- data/closure-library/closure/goog/ui/colorpicker.js +344 -0
- data/closure-library/closure/goog/ui/colorsplitbehavior.js +61 -0
- data/closure-library/closure/goog/ui/combobox.js +894 -0
- data/closure-library/closure/goog/ui/combobox_test.html +208 -0
- data/closure-library/closure/goog/ui/component.js +1187 -0
- data/closure-library/closure/goog/ui/component_test.html +723 -0
- data/closure-library/closure/goog/ui/container.js +1296 -0
- data/closure-library/closure/goog/ui/container_test.html +450 -0
- data/closure-library/closure/goog/ui/containerrenderer.js +370 -0
- data/closure-library/closure/goog/ui/containerrenderer_test.html +227 -0
- data/closure-library/closure/goog/ui/containerscroller.js +221 -0
- data/closure-library/closure/goog/ui/containerscroller_test.html +213 -0
- data/closure-library/closure/goog/ui/control.js +1348 -0
- data/closure-library/closure/goog/ui/control_test.html +2128 -0
- data/closure-library/closure/goog/ui/controlcontent.js +28 -0
- data/closure-library/closure/goog/ui/controlrenderer.js +808 -0
- data/closure-library/closure/goog/ui/controlrenderer_test.html +840 -0
- data/closure-library/closure/goog/ui/cookieeditor.js +182 -0
- data/closure-library/closure/goog/ui/cookieeditor_test.html +102 -0
- data/closure-library/closure/goog/ui/css3buttonrenderer.js +147 -0
- data/closure-library/closure/goog/ui/css3menubuttonrenderer.js +144 -0
- data/closure-library/closure/goog/ui/cssnames.js +28 -0
- data/closure-library/closure/goog/ui/custombutton.js +58 -0
- data/closure-library/closure/goog/ui/custombuttonrenderer.js +254 -0
- data/closure-library/closure/goog/ui/customcolorpalette.js +137 -0
- data/closure-library/closure/goog/ui/customcolorpalette_test.html +60 -0
- data/closure-library/closure/goog/ui/datepicker.js +1339 -0
- data/closure-library/closure/goog/ui/datepicker_test.html +190 -0
- data/closure-library/closure/goog/ui/decorate.js +37 -0
- data/closure-library/closure/goog/ui/decorate_test.html +113 -0
- data/closure-library/closure/goog/ui/deprecatedbutton.js +381 -0
- data/closure-library/closure/goog/ui/dialog.js +1776 -0
- data/closure-library/closure/goog/ui/dialog_test.html +493 -0
- data/closure-library/closure/goog/ui/dimensionpicker.js +289 -0
- data/closure-library/closure/goog/ui/dimensionpicker_test.html +128 -0
- data/closure-library/closure/goog/ui/dimensionpickerrenderer.js +387 -0
- data/closure-library/closure/goog/ui/dragdropdetector.js +642 -0
- data/closure-library/closure/goog/ui/drilldownrow.js +494 -0
- data/closure-library/closure/goog/ui/editor/abstractdialog.js +443 -0
- data/closure-library/closure/goog/ui/editor/abstractdialog_test.html +467 -0
- data/closure-library/closure/goog/ui/editor/bubble.js +520 -0
- data/closure-library/closure/goog/ui/editor/bubble_test.html +264 -0
- data/closure-library/closure/goog/ui/editor/defaulttoolbar.js +1062 -0
- data/closure-library/closure/goog/ui/editor/linkdialog.js +833 -0
- data/closure-library/closure/goog/ui/editor/linkdialog_test.html +449 -0
- data/closure-library/closure/goog/ui/editor/messages.js +115 -0
- data/closure-library/closure/goog/ui/editor/tabpane.js +183 -0
- data/closure-library/closure/goog/ui/editor/toolbarcontroller.js +293 -0
- data/closure-library/closure/goog/ui/editor/toolbarfactory.js +437 -0
- data/closure-library/closure/goog/ui/editor/toolbarfactory_test.html +73 -0
- data/closure-library/closure/goog/ui/emoji/emoji.js +72 -0
- data/closure-library/closure/goog/ui/emoji/emojipalette.js +298 -0
- data/closure-library/closure/goog/ui/emoji/emojipaletterenderer.js +206 -0
- data/closure-library/closure/goog/ui/emoji/emojipicker.js +797 -0
- data/closure-library/closure/goog/ui/emoji/emojipicker_test.html +840 -0
- data/closure-library/closure/goog/ui/emoji/fast_nonprogressive_emojipicker_test.html +256 -0
- data/closure-library/closure/goog/ui/emoji/fast_progressive_emojipicker_test.html +256 -0
- data/closure-library/closure/goog/ui/emoji/popupemojipicker.js +410 -0
- data/closure-library/closure/goog/ui/emoji/popupemojipicker_test.html +80 -0
- data/closure-library/closure/goog/ui/emoji/progressiveemojipaletterenderer.js +97 -0
- data/closure-library/closure/goog/ui/emoji/spriteinfo.js +212 -0
- data/closure-library/closure/goog/ui/emoji/spriteinfo_test.html +51 -0
- data/closure-library/closure/goog/ui/filteredmenu.js +562 -0
- data/closure-library/closure/goog/ui/filteredmenu_test.html +299 -0
- data/closure-library/closure/goog/ui/filterobservingmenuitem.js +97 -0
- data/closure-library/closure/goog/ui/filterobservingmenuitemrenderer.js +60 -0
- data/closure-library/closure/goog/ui/flatbuttonrenderer.js +138 -0
- data/closure-library/closure/goog/ui/flatmenubuttonrenderer.js +199 -0
- data/closure-library/closure/goog/ui/formpost.js +109 -0
- data/closure-library/closure/goog/ui/formpost_test.html +109 -0
- data/closure-library/closure/goog/ui/gauge.js +999 -0
- data/closure-library/closure/goog/ui/gaugetheme.js +169 -0
- data/closure-library/closure/goog/ui/hovercard.js +447 -0
- data/closure-library/closure/goog/ui/hovercard_test.html +343 -0
- data/closure-library/closure/goog/ui/hsvapalette.js +311 -0
- data/closure-library/closure/goog/ui/hsvapalette_test.html +152 -0
- data/closure-library/closure/goog/ui/hsvpalette.js +470 -0
- data/closure-library/closure/goog/ui/hsvpalette_test.html +202 -0
- data/closure-library/closure/goog/ui/idgenerator.js +57 -0
- data/closure-library/closure/goog/ui/idletimer.js +299 -0
- data/closure-library/closure/goog/ui/idletimer_test.html +100 -0
- data/closure-library/closure/goog/ui/iframemask.js +256 -0
- data/closure-library/closure/goog/ui/iframemask_test.html +230 -0
- data/closure-library/closure/goog/ui/imagelessbuttonrenderer.js +204 -0
- data/closure-library/closure/goog/ui/imagelessmenubuttonrenderer.js +202 -0
- data/closure-library/closure/goog/ui/imagelessroundedcorner.js +971 -0
- data/closure-library/closure/goog/ui/inputdatepicker.js +306 -0
- data/closure-library/closure/goog/ui/inputdatepicker_test.html +109 -0
- data/closure-library/closure/goog/ui/itemevent.js +50 -0
- data/closure-library/closure/goog/ui/keyboardshortcuthandler.js +981 -0
- data/closure-library/closure/goog/ui/keyboardshortcuthandler_test.html +671 -0
- data/closure-library/closure/goog/ui/labelinput.js +439 -0
- data/closure-library/closure/goog/ui/linkbuttonrenderer.js +67 -0
- data/closure-library/closure/goog/ui/media/flashobject.js +629 -0
- data/closure-library/closure/goog/ui/media/flashobject_test.html +236 -0
- data/closure-library/closure/goog/ui/media/flickr.js +309 -0
- data/closure-library/closure/goog/ui/media/flickr_test.html +90 -0
- data/closure-library/closure/goog/ui/media/media.js +284 -0
- data/closure-library/closure/goog/ui/media/media_test.html +161 -0
- data/closure-library/closure/goog/ui/media/mediamodel.js +840 -0
- data/closure-library/closure/goog/ui/media/mp3.js +225 -0
- data/closure-library/closure/goog/ui/media/mp3_test.html +78 -0
- data/closure-library/closure/goog/ui/media/photo.js +139 -0
- data/closure-library/closure/goog/ui/media/photo_test.html +62 -0
- data/closure-library/closure/goog/ui/media/picasa.js +317 -0
- data/closure-library/closure/goog/ui/media/picasa_test.html +131 -0
- data/closure-library/closure/goog/ui/media/vimeo.js +264 -0
- data/closure-library/closure/goog/ui/media/vimeo_test.html +79 -0
- data/closure-library/closure/goog/ui/media/youtube.js +328 -0
- data/closure-library/closure/goog/ui/media/youtube_test.html +185 -0
- data/closure-library/closure/goog/ui/menu.js +435 -0
- data/closure-library/closure/goog/ui/menu_test.html +129 -0
- data/closure-library/closure/goog/ui/menubase.js +191 -0
- data/closure-library/closure/goog/ui/menubutton.js +809 -0
- data/closure-library/closure/goog/ui/menubutton_test.html +440 -0
- data/closure-library/closure/goog/ui/menubutton_test_frame.html +41 -0
- data/closure-library/closure/goog/ui/menubuttonrenderer.js +226 -0
- data/closure-library/closure/goog/ui/menubuttonrenderer_test.html +161 -0
- data/closure-library/closure/goog/ui/menuheader.js +62 -0
- data/closure-library/closure/goog/ui/menuheaderrenderer.js +55 -0
- data/closure-library/closure/goog/ui/menuitem.js +154 -0
- data/closure-library/closure/goog/ui/menuitem_test.html +506 -0
- data/closure-library/closure/goog/ui/menuitemrenderer.js +353 -0
- data/closure-library/closure/goog/ui/menuitemrenderer_test.html +190 -0
- data/closure-library/closure/goog/ui/menurenderer.js +118 -0
- data/closure-library/closure/goog/ui/menuseparator.js +51 -0
- data/closure-library/closure/goog/ui/menuseparatorrenderer.js +102 -0
- data/closure-library/closure/goog/ui/mockactivitymonitor.js +54 -0
- data/closure-library/closure/goog/ui/nativebuttonrenderer.js +205 -0
- data/closure-library/closure/goog/ui/nativebuttonrenderer_test.html +213 -0
- data/closure-library/closure/goog/ui/offlineinstalldialog.js +1086 -0
- data/closure-library/closure/goog/ui/offlinestatuscard.js +580 -0
- data/closure-library/closure/goog/ui/offlinestatuscomponent.js +545 -0
- data/closure-library/closure/goog/ui/option.js +67 -0
- data/closure-library/closure/goog/ui/palette.js +528 -0
- data/closure-library/closure/goog/ui/paletterenderer.js +318 -0
- data/closure-library/closure/goog/ui/plaintextspellchecker.js +668 -0
- data/closure-library/closure/goog/ui/plaintextspellchecker_test.html +240 -0
- data/closure-library/closure/goog/ui/popup.js +410 -0
- data/closure-library/closure/goog/ui/popup_test.html +137 -0
- data/closure-library/closure/goog/ui/popupbase.js +721 -0
- data/closure-library/closure/goog/ui/popupbase_test.html +186 -0
- data/closure-library/closure/goog/ui/popupcolorpicker.js +441 -0
- data/closure-library/closure/goog/ui/popupcolorpicker_test.html +71 -0
- data/closure-library/closure/goog/ui/popupdatepicker.js +273 -0
- data/closure-library/closure/goog/ui/popupmenu.js +539 -0
- data/closure-library/closure/goog/ui/popupmenu_test.html +197 -0
- data/closure-library/closure/goog/ui/progressbar.js +390 -0
- data/closure-library/closure/goog/ui/prompt.js +307 -0
- data/closure-library/closure/goog/ui/prompt_test.html +65 -0
- data/closure-library/closure/goog/ui/rangemodel.js +301 -0
- data/closure-library/closure/goog/ui/rangemodel_test.html +270 -0
- data/closure-library/closure/goog/ui/ratings.js +441 -0
- data/closure-library/closure/goog/ui/registry.js +166 -0
- data/closure-library/closure/goog/ui/registry_test.html +236 -0
- data/closure-library/closure/goog/ui/richtextspellchecker.js +600 -0
- data/closure-library/closure/goog/ui/richtextspellchecker_test.html +224 -0
- data/closure-library/closure/goog/ui/roundedcorners.js +694 -0
- data/closure-library/closure/goog/ui/roundedpanel.js +609 -0
- data/closure-library/closure/goog/ui/roundedpanel_test.html +57 -0
- data/closure-library/closure/goog/ui/roundedtabrenderer.js +196 -0
- data/closure-library/closure/goog/ui/scrollfloater.js +394 -0
- data/closure-library/closure/goog/ui/scrollfloater_test.html +46 -0
- data/closure-library/closure/goog/ui/select.js +397 -0
- data/closure-library/closure/goog/ui/select_test.html +152 -0
- data/closure-library/closure/goog/ui/selectionmenubutton.js +277 -0
- data/closure-library/closure/goog/ui/selectionmenubutton_test.html +237 -0
- data/closure-library/closure/goog/ui/selectionmodel.js +291 -0
- data/closure-library/closure/goog/ui/separator.js +74 -0
- data/closure-library/closure/goog/ui/serverchart.js +1791 -0
- data/closure-library/closure/goog/ui/serverchart_test.html +598 -0
- data/closure-library/closure/goog/ui/slider.js +125 -0
- data/closure-library/closure/goog/ui/sliderbase.js +1087 -0
- data/closure-library/closure/goog/ui/sliderbase_test.html +198 -0
- data/closure-library/closure/goog/ui/splitbehavior.js +348 -0
- data/closure-library/closure/goog/ui/splitbehavior_test.html +161 -0
- data/closure-library/closure/goog/ui/splitpane.js +844 -0
- data/closure-library/closure/goog/ui/splitpane_test.html +143 -0
- data/closure-library/closure/goog/ui/style/app/buttonrenderer.js +204 -0
- data/closure-library/closure/goog/ui/style/app/buttonrenderer_test.html +155 -0
- data/closure-library/closure/goog/ui/style/app/menubuttonrenderer.js +227 -0
- data/closure-library/closure/goog/ui/style/app/menubuttonrenderer_test.html +167 -0
- data/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer.js +88 -0
- data/closure-library/closure/goog/ui/style/app/primaryactionbuttonrenderer_test.html +76 -0
- data/closure-library/closure/goog/ui/submenu.js +660 -0
- data/closure-library/closure/goog/ui/submenu_test.html +446 -0
- data/closure-library/closure/goog/ui/submenurenderer.js +188 -0
- data/closure-library/closure/goog/ui/tab.js +102 -0
- data/closure-library/closure/goog/ui/tab_test.html +61 -0
- data/closure-library/closure/goog/ui/tabbar.js +393 -0
- data/closure-library/closure/goog/ui/tabbar_test.html +611 -0
- data/closure-library/closure/goog/ui/tabbarrenderer.js +173 -0
- data/closure-library/closure/goog/ui/tabbarrenderer_test.html +137 -0
- data/closure-library/closure/goog/ui/tablesorter.js +304 -0
- data/closure-library/closure/goog/ui/tablesorter_test.html +127 -0
- data/closure-library/closure/goog/ui/tabpane.js +674 -0
- data/closure-library/closure/goog/ui/tabpane_test.html +107 -0
- data/closure-library/closure/goog/ui/tabrenderer.js +152 -0
- data/closure-library/closure/goog/ui/tabrenderer_test.html +132 -0
- data/closure-library/closure/goog/ui/textarea.js +573 -0
- data/closure-library/closure/goog/ui/textarea_test.html +305 -0
- data/closure-library/closure/goog/ui/textarearenderer.js +167 -0
- data/closure-library/closure/goog/ui/togglebutton.js +58 -0
- data/closure-library/closure/goog/ui/toolbar.js +45 -0
- data/closure-library/closure/goog/ui/toolbarbutton.js +54 -0
- data/closure-library/closure/goog/ui/toolbarbuttonrenderer.js +55 -0
- data/closure-library/closure/goog/ui/toolbarcolormenubutton.js +57 -0
- data/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer.js +95 -0
- data/closure-library/closure/goog/ui/toolbarcolormenubuttonrenderer_test.html +66 -0
- data/closure-library/closure/goog/ui/toolbarmenubutton.js +56 -0
- data/closure-library/closure/goog/ui/toolbarmenubuttonrenderer.js +55 -0
- data/closure-library/closure/goog/ui/toolbarrenderer.js +95 -0
- data/closure-library/closure/goog/ui/toolbarselect.js +55 -0
- data/closure-library/closure/goog/ui/toolbarseparator.js +51 -0
- data/closure-library/closure/goog/ui/toolbarseparatorrenderer.js +87 -0
- data/closure-library/closure/goog/ui/toolbartogglebutton.js +53 -0
- data/closure-library/closure/goog/ui/tooltip.js +975 -0
- data/closure-library/closure/goog/ui/tooltip_test.html +351 -0
- data/closure-library/closure/goog/ui/tree/basenode.js +1457 -0
- data/closure-library/closure/goog/ui/tree/basenode_test.html +218 -0
- data/closure-library/closure/goog/ui/tree/treecontrol.js +656 -0
- data/closure-library/closure/goog/ui/tree/treecontrol_test.html +113 -0
- data/closure-library/closure/goog/ui/tree/treenode.js +102 -0
- data/closure-library/closure/goog/ui/tree/typeahead.js +332 -0
- data/closure-library/closure/goog/ui/tree/typeahead_test.html +133 -0
- data/closure-library/closure/goog/ui/tristatemenuitem.js +185 -0
- data/closure-library/closure/goog/ui/tristatemenuitemrenderer.js +86 -0
- data/closure-library/closure/goog/ui/twothumbslider.js +134 -0
- data/closure-library/closure/goog/ui/zippy.js +277 -0
- data/closure-library/closure/goog/ui/zippy_test.html +223 -0
- data/closure-library/closure/goog/uri/uri.js +1595 -0
- data/closure-library/closure/goog/uri/uri_test.html +837 -0
- data/closure-library/closure/goog/uri/utils.js +972 -0
- data/closure-library/closure/goog/uri/utils_test.html +521 -0
- data/closure-library/closure/goog/useragent/adobereader.js +90 -0
- data/closure-library/closure/goog/useragent/adobereader_test.html +34 -0
- data/closure-library/closure/goog/useragent/flash.js +113 -0
- data/closure-library/closure/goog/useragent/flash_test.html +34 -0
- data/closure-library/closure/goog/useragent/iphoto.js +86 -0
- data/closure-library/closure/goog/useragent/jscript.js +94 -0
- data/closure-library/closure/goog/useragent/jscript_test.html +65 -0
- data/closure-library/closure/goog/useragent/picasa.js +111 -0
- data/closure-library/closure/goog/useragent/platform.js +70 -0
- data/closure-library/closure/goog/useragent/platform_test.html +108 -0
- data/closure-library/closure/goog/useragent/product.js +253 -0
- data/closure-library/closure/goog/useragent/product_isversion.js +99 -0
- data/closure-library/closure/goog/useragent/product_test.html +322 -0
- data/closure-library/closure/goog/useragent/useragent.js +464 -0
- data/closure-library/closure/goog/useragent/useragent_test.html +290 -0
- data/closure-library/closure/goog/window/window.js +206 -0
- data/closure-library/closure/goog/window/window_test.html +185 -0
- data/closure-library/third_party/closure/goog/base.js +2 -0
- data/closure-library/third_party/closure/goog/caja/string/html/htmlparser.js +611 -0
- data/closure-library/third_party/closure/goog/caja/string/html/htmlsanitizer.js +605 -0
- data/closure-library/third_party/closure/goog/deps.js +26 -0
- data/closure-library/third_party/closure/goog/dojo/dom/query.js +1532 -0
- data/closure-library/third_party/closure/goog/dojo/dom/query_test.html +63 -0
- data/closure-library/third_party/closure/goog/dojo/dom/query_test.js +160 -0
- data/closure-library/third_party/closure/goog/jpeg_encoder/jpeg_encoder_basic.js +751 -0
- data/closure-library/third_party/closure/goog/loremipsum/text/loremipsum.js +712 -0
- data/closure-library/third_party/closure/goog/loremipsum/text/loremipsum_test.html +61 -0
- data/closure-library/third_party/closure/goog/mochikit/async/deferred.js +530 -0
- data/closure-library/third_party/closure/goog/mochikit/async/deferred_test.html +627 -0
- data/closure-library/third_party/closure/goog/mochikit/async/deferredlist.js +199 -0
- data/closure-library/third_party/closure/goog/mochikit/async/deferredlist_test.html +426 -0
- data/closure-library/third_party/closure/goog/osapi/osapi.js +91 -0
- data/closure-library/third_party/closure/goog/silverlight/AppManifest.xml +6 -0
- data/closure-library/third_party/closure/goog/silverlight/AssemblyInfo.cs +35 -0
- data/closure-library/third_party/closure/goog/silverlight/ClipboardButton.xaml +9 -0
- data/closure-library/third_party/closure/goog/silverlight/ClipboardButton.xaml.cs +74 -0
- data/closure-library/third_party/closure/goog/silverlight/ClipboardButtonApp.xaml +8 -0
- data/closure-library/third_party/closure/goog/silverlight/ClipboardButtonApp.xaml.cs +75 -0
- data/closure-library/third_party/closure/goog/silverlight/ClosureClipboardButton.csproj +108 -0
- data/closure-library/third_party/closure/goog/silverlight/ClosureClipboardButton.csproj.user +29 -0
- data/closure-library/third_party/closure/goog/silverlight/clipboardbutton.js +279 -0
- data/closure-library/third_party/closure/goog/silverlight/silverlight.js +758 -0
- data/closure-library/third_party/closure/goog/silverlight/supporteduseragent.js +138 -0
- data/closure-library/third_party/closure/goog/silverlight/xap_files +0 -0
- data/closure-templates/COPYING +202 -0
- data/closure-templates/README +47 -0
- data/closure-templates/SoyToJsSrcCompiler.jar +0 -0
- data/closure-templates/soyutils.js +880 -0
- data/closure-templates/soyutils_usegoog.js +308 -0
- data/closure.gemspec +20 -0
- data/config.ru +40 -0
- data/java_src/ClosureScript.java +89 -0
- data/java_src/make.rb +19 -0
- data/lib/closure/beanshell.rb +80 -0
- data/lib/closure/compiler.rb +184 -0
- data/lib/closure/file_response.rb +90 -0
- data/lib/closure/goog.rb +143 -0
- data/lib/closure/middleware.rb +43 -0
- data/lib/closure/sass.rb +56 -0
- data/lib/closure/script.rb +139 -0
- data/lib/closure/server.rb +83 -0
- data/lib/closure/sources.rb +310 -0
- data/lib/closure/templates.rb +156 -0
- data/lib/closure/version.rb +20 -0
- data/lib/closure.jar +0 -0
- data/lib/closure.rb +134 -0
- data/scripts/demos/compile.js.erb +8 -0
- data/scripts/demos/compile.out +1 -0
- data/scripts/demos/compiler.haml +17 -0
- data/scripts/demos/compiler.js +12 -0
- data/scripts/demos/deps.js.erb +1 -0
- data/scripts/demos/externs.haml +16 -0
- data/scripts/demos/externs.js.erb +8 -0
- data/scripts/demos/externs.out +1 -0
- data/scripts/demos/externs_jquery.externs +849 -0
- data/scripts/demos/externs_jquery.js +167 -0
- data/scripts/demos/externs_jquerytest.js +11 -0
- data/scripts/demos/helloworld.haml +15 -0
- data/scripts/demos/helloworld.js +58 -0
- data/scripts/demos/helloworld.soy +45 -0
- data/scripts/demos/index.haml +21 -0
- data/scripts/demos/rails_ujs.haml +24 -0
- data/scripts/examples/rails/ujs.js +136 -0
- data/scripts/favicon.ico +0 -0
- data/scripts/fixtures/_partial.haml +2 -0
- data/scripts/fixtures/erb.html.erb +8 -0
- data/scripts/fixtures/haml.haml +6 -0
- data/scripts/fixtures/html.html +9 -0
- data/scripts/fixtures/route_js.js.erb +1 -0
- data/scripts/index.haml +14 -0
- data/test/beanshell_test.rb +22 -0
- data/test/server_test.rb +67 -0
- data/test/sources_test.rb +41 -0
- data/test/test_helper.rb +12 -0
- metadata +1577 -0
|
@@ -0,0 +1,1296 @@
|
|
|
1
|
+
// Copyright 2007 The Closure Library Authors. All Rights Reserved.
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS-IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @fileoverview Base class for containers that host {@link goog.ui.Control}s,
|
|
17
|
+
* such as menus and toolbars. Provides default keyboard and mouse event
|
|
18
|
+
* handling and child management, based on a generalized version of
|
|
19
|
+
* {@link goog.ui.Menu}.
|
|
20
|
+
*
|
|
21
|
+
* @see ../demos/container.html
|
|
22
|
+
*/
|
|
23
|
+
// TODO(user): Fix code/logic duplication between this and goog.ui.Control.
|
|
24
|
+
// TODO(user): Maybe pull common stuff all the way up into Component...?
|
|
25
|
+
|
|
26
|
+
goog.provide('goog.ui.Container');
|
|
27
|
+
goog.provide('goog.ui.Container.EventType');
|
|
28
|
+
goog.provide('goog.ui.Container.Orientation');
|
|
29
|
+
|
|
30
|
+
goog.require('goog.dom');
|
|
31
|
+
goog.require('goog.dom.a11y');
|
|
32
|
+
goog.require('goog.dom.a11y.State');
|
|
33
|
+
goog.require('goog.events.EventType');
|
|
34
|
+
goog.require('goog.events.KeyCodes');
|
|
35
|
+
goog.require('goog.events.KeyHandler');
|
|
36
|
+
goog.require('goog.events.KeyHandler.EventType');
|
|
37
|
+
goog.require('goog.style');
|
|
38
|
+
goog.require('goog.ui.Component');
|
|
39
|
+
goog.require('goog.ui.Component.Error');
|
|
40
|
+
goog.require('goog.ui.Component.EventType');
|
|
41
|
+
goog.require('goog.ui.Component.State');
|
|
42
|
+
goog.require('goog.ui.ContainerRenderer');
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Base class for containers. Extends {@link goog.ui.Component} by adding
|
|
48
|
+
* the following:
|
|
49
|
+
* <ul>
|
|
50
|
+
* <li>a {@link goog.events.KeyHandler}, to simplify keyboard handling,
|
|
51
|
+
* <li>a pluggable <em>renderer</em> framework, to simplify the creation of
|
|
52
|
+
* containers without the need to subclass this class,
|
|
53
|
+
* <li>methods to manage child controls hosted in the container,
|
|
54
|
+
* <li>default mouse and keyboard event handling methods.
|
|
55
|
+
* </ul>
|
|
56
|
+
* @param {?goog.ui.Container.Orientation=} opt_orientation Container
|
|
57
|
+
* orientation; defaults to {@code VERTICAL}.
|
|
58
|
+
* @param {?goog.ui.ContainerRenderer=} opt_renderer Renderer used to render or
|
|
59
|
+
* decorate the container; defaults to {@link goog.ui.ContainerRenderer}.
|
|
60
|
+
* @param {?goog.dom.DomHelper=} opt_domHelper DOM helper, used for document
|
|
61
|
+
* interaction.
|
|
62
|
+
* @extends {goog.ui.Component}
|
|
63
|
+
* @constructor
|
|
64
|
+
*/
|
|
65
|
+
goog.ui.Container = function(opt_orientation, opt_renderer, opt_domHelper) {
|
|
66
|
+
goog.ui.Component.call(this, opt_domHelper);
|
|
67
|
+
this.renderer_ = opt_renderer || goog.ui.ContainerRenderer.getInstance();
|
|
68
|
+
this.orientation_ = opt_orientation || this.renderer_.getDefaultOrientation();
|
|
69
|
+
};
|
|
70
|
+
goog.inherits(goog.ui.Container, goog.ui.Component);
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Container-specific events.
|
|
75
|
+
* @enum {string}
|
|
76
|
+
*/
|
|
77
|
+
goog.ui.Container.EventType = {
|
|
78
|
+
/**
|
|
79
|
+
* Dispatched after a goog.ui.Container becomes visible. Non-cancellable.
|
|
80
|
+
* NOTE(user): This event really shouldn't exist, because the
|
|
81
|
+
* goog.ui.Component.EventType.SHOW event should behave like this one. But the
|
|
82
|
+
* SHOW event for containers has been behaving as other components'
|
|
83
|
+
* BEFORE_SHOW event for a long time, and too much code relies on that old
|
|
84
|
+
* behavior to fix it now.
|
|
85
|
+
*/
|
|
86
|
+
AFTER_SHOW: 'aftershow',
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Dispatched after a goog.ui.Container becomes invisible. Non-cancellable.
|
|
90
|
+
*/
|
|
91
|
+
AFTER_HIDE: 'afterhide'
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Container orientation constants.
|
|
97
|
+
* @enum {string}
|
|
98
|
+
*/
|
|
99
|
+
goog.ui.Container.Orientation = {
|
|
100
|
+
HORIZONTAL: 'horizontal',
|
|
101
|
+
VERTICAL: 'vertical'
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Allows an alternative element to be set to recieve key events, otherwise
|
|
107
|
+
* defers to the renderer's element choice.
|
|
108
|
+
* @type {Element|undefined}
|
|
109
|
+
* @private
|
|
110
|
+
*/
|
|
111
|
+
goog.ui.Container.prototype.keyEventTarget_ = null;
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Keyboard event handler.
|
|
116
|
+
* @type {goog.events.KeyHandler?}
|
|
117
|
+
* @private
|
|
118
|
+
*/
|
|
119
|
+
goog.ui.Container.prototype.keyHandler_ = null;
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Renderer for the container. Defaults to {@link goog.ui.ContainerRenderer}.
|
|
124
|
+
* @type {goog.ui.ContainerRenderer?}
|
|
125
|
+
* @private
|
|
126
|
+
*/
|
|
127
|
+
goog.ui.Container.prototype.renderer_ = null;
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Container orientation; determines layout and default keyboard navigation.
|
|
132
|
+
* @type {?goog.ui.Container.Orientation}
|
|
133
|
+
* @private
|
|
134
|
+
*/
|
|
135
|
+
goog.ui.Container.prototype.orientation_ = null;
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Whether the container is set to be visible. Defaults to true.
|
|
140
|
+
* @type {boolean}
|
|
141
|
+
* @private
|
|
142
|
+
*/
|
|
143
|
+
goog.ui.Container.prototype.visible_ = true;
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Whether the container is enabled and reacting to keyboard and mouse events.
|
|
148
|
+
* Defaults to true.
|
|
149
|
+
* @type {boolean}
|
|
150
|
+
* @private
|
|
151
|
+
*/
|
|
152
|
+
goog.ui.Container.prototype.enabled_ = true;
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Whether the container supports keyboard focus. Defaults to true. Focusable
|
|
157
|
+
* containers have a {@code tabIndex} and can be navigated to via the keyboard.
|
|
158
|
+
* @type {boolean}
|
|
159
|
+
* @private
|
|
160
|
+
*/
|
|
161
|
+
goog.ui.Container.prototype.focusable_ = true;
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* The 0-based index of the currently highlighted control in the container
|
|
166
|
+
* (-1 if none).
|
|
167
|
+
* @type {number}
|
|
168
|
+
* @private
|
|
169
|
+
*/
|
|
170
|
+
goog.ui.Container.prototype.highlightedIndex_ = -1;
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* The currently open (expanded) control in the container (null if none).
|
|
175
|
+
* @type {goog.ui.Control?}
|
|
176
|
+
* @private
|
|
177
|
+
*/
|
|
178
|
+
goog.ui.Container.prototype.openItem_ = null;
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Whether the mouse button is held down. Defaults to false. This flag is set
|
|
183
|
+
* when the user mouses down over the container, and remains set until they
|
|
184
|
+
* release the mouse button.
|
|
185
|
+
* @type {boolean}
|
|
186
|
+
* @private
|
|
187
|
+
*/
|
|
188
|
+
goog.ui.Container.prototype.mouseButtonPressed_ = false;
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Whether focus of child components should be allowed. Only effective if
|
|
193
|
+
* focusable_ is set to false.
|
|
194
|
+
* @type {boolean}
|
|
195
|
+
* @private
|
|
196
|
+
*/
|
|
197
|
+
goog.ui.Container.prototype.allowFocusableChildren_ = false;
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Whether highlighting a child component should also open it.
|
|
202
|
+
* @type {boolean}
|
|
203
|
+
* @private
|
|
204
|
+
*/
|
|
205
|
+
goog.ui.Container.prototype.openFollowsHighlight_ = true;
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Map of DOM IDs to child controls. Each key is the DOM ID of a child
|
|
210
|
+
* control's root element; each value is a reference to the child control
|
|
211
|
+
* itself. Used for looking up the child control corresponding to a DOM
|
|
212
|
+
* node in O(1) time.
|
|
213
|
+
* @type {Object}
|
|
214
|
+
* @private
|
|
215
|
+
*/
|
|
216
|
+
goog.ui.Container.prototype.childElementIdMap_ = null;
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
// Event handler and renderer management.
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Returns the DOM element on which the container is listening for keyboard
|
|
224
|
+
* events (null if none).
|
|
225
|
+
* @return {Element} Element on which the container is listening for key
|
|
226
|
+
* events.
|
|
227
|
+
*/
|
|
228
|
+
goog.ui.Container.prototype.getKeyEventTarget = function() {
|
|
229
|
+
// Delegate to renderer, unless we've set an explicit target.
|
|
230
|
+
return this.keyEventTarget_ || this.renderer_.getKeyEventTarget(this);
|
|
231
|
+
};
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Attaches an element on which to listen for key events.
|
|
236
|
+
* @param {Element|undefined} element The element to attach, or null/undefined
|
|
237
|
+
* to attach to the default element.
|
|
238
|
+
*/
|
|
239
|
+
goog.ui.Container.prototype.setKeyEventTarget = function(element) {
|
|
240
|
+
if (this.focusable_) {
|
|
241
|
+
var oldTarget = this.getKeyEventTarget();
|
|
242
|
+
var inDocument = this.isInDocument();
|
|
243
|
+
|
|
244
|
+
this.keyEventTarget_ = element;
|
|
245
|
+
var newTarget = this.getKeyEventTarget();
|
|
246
|
+
|
|
247
|
+
if (inDocument) {
|
|
248
|
+
// Unlisten for events on the old key target. Requires us to reset
|
|
249
|
+
// key target state temporarily.
|
|
250
|
+
this.keyEventTarget_ = oldTarget;
|
|
251
|
+
this.enableFocusHandling_(false);
|
|
252
|
+
this.keyEventTarget_ = element;
|
|
253
|
+
|
|
254
|
+
// Listen for events on the new key target.
|
|
255
|
+
this.getKeyHandler().attach(newTarget);
|
|
256
|
+
this.enableFocusHandling_(true);
|
|
257
|
+
}
|
|
258
|
+
} else {
|
|
259
|
+
throw Error('Can\'t set key event target for container ' +
|
|
260
|
+
'that doesn\'t support keyboard focus!');
|
|
261
|
+
}
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Returns the keyboard event handler for this container, lazily created the
|
|
267
|
+
* first time this method is called. The keyboard event handler listens for
|
|
268
|
+
* keyboard events on the container's key event target, as determined by its
|
|
269
|
+
* renderer.
|
|
270
|
+
* @return {goog.events.KeyHandler} Keyboard event handler for this container.
|
|
271
|
+
*/
|
|
272
|
+
goog.ui.Container.prototype.getKeyHandler = function() {
|
|
273
|
+
return this.keyHandler_ ||
|
|
274
|
+
(this.keyHandler_ = new goog.events.KeyHandler(this.getKeyEventTarget()));
|
|
275
|
+
};
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Returns the renderer used by this container to render itself or to decorate
|
|
280
|
+
* an existing element.
|
|
281
|
+
* @return {goog.ui.ContainerRenderer} Renderer used by the container.
|
|
282
|
+
*/
|
|
283
|
+
goog.ui.Container.prototype.getRenderer = function() {
|
|
284
|
+
return this.renderer_;
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Registers the given renderer with the container. Changing renderers after
|
|
290
|
+
* the container has already been rendered or decorated is an error.
|
|
291
|
+
* @param {goog.ui.ContainerRenderer} renderer Renderer used by the container.
|
|
292
|
+
*/
|
|
293
|
+
goog.ui.Container.prototype.setRenderer = function(renderer) {
|
|
294
|
+
if (this.getElement()) {
|
|
295
|
+
// Too late.
|
|
296
|
+
throw Error(goog.ui.Component.Error.ALREADY_RENDERED);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
this.renderer_ = renderer;
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
// Standard goog.ui.Component implementation.
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Creates the container's DOM. Overrides {@link goog.ui.Component#createDom}.
|
|
308
|
+
*/
|
|
309
|
+
goog.ui.Container.prototype.createDom = function() {
|
|
310
|
+
// Delegate to renderer.
|
|
311
|
+
this.setElementInternal(this.renderer_.createDom(this));
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* Returns the DOM element into which child components are to be rendered,
|
|
317
|
+
* or null if the container itself hasn't been rendered yet. Overrides
|
|
318
|
+
* {@link goog.ui.Component#getContentElement} by delegating to the renderer.
|
|
319
|
+
* @return {Element} Element to contain child elements (null if none).
|
|
320
|
+
*/
|
|
321
|
+
goog.ui.Container.prototype.getContentElement = function() {
|
|
322
|
+
// Delegate to renderer.
|
|
323
|
+
return this.renderer_.getContentElement(this.getElement());
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Returns true if the given element can be decorated by this container.
|
|
329
|
+
* Overrides {@link goog.ui.Component#canDecorate}.
|
|
330
|
+
* @param {Element} element Element to decorate.
|
|
331
|
+
* @return {boolean} True iff the element can be decorated.
|
|
332
|
+
*/
|
|
333
|
+
goog.ui.Container.prototype.canDecorate = function(element) {
|
|
334
|
+
// Delegate to renderer.
|
|
335
|
+
return this.renderer_.canDecorate(element);
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Decorates the given element with this container. Overrides {@link
|
|
341
|
+
* goog.ui.Component#decorateInternal}. Considered protected.
|
|
342
|
+
* @param {Element} element Element to decorate.
|
|
343
|
+
*/
|
|
344
|
+
goog.ui.Container.prototype.decorateInternal = function(element) {
|
|
345
|
+
// Delegate to renderer.
|
|
346
|
+
this.setElementInternal(this.renderer_.decorate(this, element));
|
|
347
|
+
// Check whether the decorated element is explicitly styled to be invisible.
|
|
348
|
+
if (element.style.display == 'none') {
|
|
349
|
+
this.visible_ = false;
|
|
350
|
+
}
|
|
351
|
+
};
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Configures the container after its DOM has been rendered, and sets up event
|
|
356
|
+
* handling. Overrides {@link goog.ui.Component#enterDocument}.
|
|
357
|
+
*/
|
|
358
|
+
goog.ui.Container.prototype.enterDocument = function() {
|
|
359
|
+
goog.ui.Container.superClass_.enterDocument.call(this);
|
|
360
|
+
|
|
361
|
+
this.forEachChild(function(child) {
|
|
362
|
+
if (child.isInDocument()) {
|
|
363
|
+
this.registerChildId_(child);
|
|
364
|
+
}
|
|
365
|
+
}, this);
|
|
366
|
+
|
|
367
|
+
// Detect right-to-left direction.
|
|
368
|
+
var elem = this.getElement();
|
|
369
|
+
|
|
370
|
+
// Call the renderer's initializeDom method to initialize the container's DOM.
|
|
371
|
+
this.renderer_.initializeDom(this);
|
|
372
|
+
|
|
373
|
+
// Initialize visibility (opt_force = true, so we don't dispatch events).
|
|
374
|
+
this.setVisible(this.visible_, true);
|
|
375
|
+
|
|
376
|
+
// Handle events dispatched by child controls.
|
|
377
|
+
this.getHandler().
|
|
378
|
+
listen(this, goog.ui.Component.EventType.ENTER,
|
|
379
|
+
this.handleEnterItem).
|
|
380
|
+
listen(this, goog.ui.Component.EventType.HIGHLIGHT,
|
|
381
|
+
this.handleHighlightItem).
|
|
382
|
+
listen(this, goog.ui.Component.EventType.UNHIGHLIGHT,
|
|
383
|
+
this.handleUnHighlightItem).
|
|
384
|
+
listen(this, goog.ui.Component.EventType.OPEN, this.handleOpenItem).
|
|
385
|
+
listen(this, goog.ui.Component.EventType.CLOSE, this.handleCloseItem).
|
|
386
|
+
|
|
387
|
+
// Handle mouse events.
|
|
388
|
+
listen(elem, goog.events.EventType.MOUSEDOWN, this.handleMouseDown).
|
|
389
|
+
listen(goog.dom.getOwnerDocument(elem), goog.events.EventType.MOUSEUP,
|
|
390
|
+
this.handleDocumentMouseUp).
|
|
391
|
+
|
|
392
|
+
// Handle mouse events on behalf of controls in the container.
|
|
393
|
+
listen(elem, [
|
|
394
|
+
goog.events.EventType.MOUSEDOWN,
|
|
395
|
+
goog.events.EventType.MOUSEUP,
|
|
396
|
+
goog.events.EventType.MOUSEOVER,
|
|
397
|
+
goog.events.EventType.MOUSEOUT
|
|
398
|
+
], this.handleChildMouseEvents);
|
|
399
|
+
|
|
400
|
+
// If the container is focusable, set up keyboard event handling.
|
|
401
|
+
if (this.isFocusable()) {
|
|
402
|
+
this.enableFocusHandling_(true);
|
|
403
|
+
}
|
|
404
|
+
};
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* Sets up listening for events applicable to focusable containers.
|
|
409
|
+
* @param {boolean} enable Whether to enable or disable focus handling.
|
|
410
|
+
* @private
|
|
411
|
+
*/
|
|
412
|
+
goog.ui.Container.prototype.enableFocusHandling_ = function(enable) {
|
|
413
|
+
var handler = this.getHandler();
|
|
414
|
+
var keyTarget = this.getKeyEventTarget();
|
|
415
|
+
if (enable) {
|
|
416
|
+
handler.
|
|
417
|
+
listen(keyTarget, goog.events.EventType.FOCUS, this.handleFocus).
|
|
418
|
+
listen(keyTarget, goog.events.EventType.BLUR, this.handleBlur).
|
|
419
|
+
listen(this.getKeyHandler(), goog.events.KeyHandler.EventType.KEY,
|
|
420
|
+
this.handleKeyEvent);
|
|
421
|
+
} else {
|
|
422
|
+
handler.
|
|
423
|
+
unlisten(keyTarget, goog.events.EventType.FOCUS, this.handleFocus).
|
|
424
|
+
unlisten(keyTarget, goog.events.EventType.BLUR, this.handleBlur).
|
|
425
|
+
unlisten(this.getKeyHandler(), goog.events.KeyHandler.EventType.KEY,
|
|
426
|
+
this.handleKeyEvent);
|
|
427
|
+
}
|
|
428
|
+
};
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Cleans up the container before its DOM is removed from the document, and
|
|
433
|
+
* removes event handlers. Overrides {@link goog.ui.Component#exitDocument}.
|
|
434
|
+
*/
|
|
435
|
+
goog.ui.Container.prototype.exitDocument = function() {
|
|
436
|
+
// {@link #setHighlightedIndex} has to be called before
|
|
437
|
+
// {@link goog.ui.Component#exitDocument}, otherwise it has no effect.
|
|
438
|
+
this.setHighlightedIndex(-1);
|
|
439
|
+
|
|
440
|
+
if (this.openItem_) {
|
|
441
|
+
this.openItem_.setOpen(false);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
this.mouseButtonPressed_ = false;
|
|
445
|
+
|
|
446
|
+
goog.ui.Container.superClass_.exitDocument.call(this);
|
|
447
|
+
};
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
/** @inheritDoc */
|
|
451
|
+
goog.ui.Container.prototype.disposeInternal = function() {
|
|
452
|
+
goog.ui.Container.superClass_.disposeInternal.call(this);
|
|
453
|
+
|
|
454
|
+
if (this.keyHandler_) {
|
|
455
|
+
this.keyHandler_.dispose();
|
|
456
|
+
this.keyHandler_ = null;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
this.childElementIdMap_ = null;
|
|
460
|
+
this.openItem_ = null;
|
|
461
|
+
this.renderer_ = null;
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
// Default event handlers.
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* Handles ENTER events raised by child controls when they are navigated to.
|
|
470
|
+
* @param {goog.events.Event} e ENTER event to handle.
|
|
471
|
+
* @return {boolean} Whether to prevent handleMouseOver from handling
|
|
472
|
+
* the event.
|
|
473
|
+
*/
|
|
474
|
+
goog.ui.Container.prototype.handleEnterItem = function(e) {
|
|
475
|
+
// Allow the Control to highlight itself.
|
|
476
|
+
return true;
|
|
477
|
+
};
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Handles HIGHLIGHT events dispatched by items in the container when
|
|
482
|
+
* they are highlighted.
|
|
483
|
+
* @param {goog.events.Event} e Highlight event to handle.
|
|
484
|
+
*/
|
|
485
|
+
goog.ui.Container.prototype.handleHighlightItem = function(e) {
|
|
486
|
+
var index = this.indexOfChild(/** @type {goog.ui.Control} */ (e.target));
|
|
487
|
+
if (index > -1 && index != this.highlightedIndex_) {
|
|
488
|
+
var item = this.getHighlighted();
|
|
489
|
+
if (item) {
|
|
490
|
+
// Un-highlight previously highlighted item.
|
|
491
|
+
item.setHighlighted(false);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
this.highlightedIndex_ = index;
|
|
495
|
+
item = this.getHighlighted();
|
|
496
|
+
|
|
497
|
+
if (this.isMouseButtonPressed()) {
|
|
498
|
+
// Activate item when mouse button is pressed, to allow MacOS-style
|
|
499
|
+
// dragging to choose menu items. Although this should only truly
|
|
500
|
+
// happen if the highlight is due to mouse movements, there is little
|
|
501
|
+
// harm in doing it for keyboard or programmatic highlights.
|
|
502
|
+
item.setActive(true);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// Update open item if open item needs follow highlight.
|
|
506
|
+
if (this.openFollowsHighlight_ &&
|
|
507
|
+
this.openItem_ && item != this.openItem_) {
|
|
508
|
+
if (item.isSupportedState(goog.ui.Component.State.OPENED)) {
|
|
509
|
+
item.setOpen(true);
|
|
510
|
+
} else {
|
|
511
|
+
this.openItem_.setOpen(false);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
goog.dom.a11y.setState(this.getElement(),
|
|
516
|
+
goog.dom.a11y.State.ACTIVEDESCENDANT, e.target.getElement().id);
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* Handles UNHIGHLIGHT events dispatched by items in the container when
|
|
522
|
+
* they are unhighlighted.
|
|
523
|
+
* @param {goog.events.Event} e Unhighlight event to handle.
|
|
524
|
+
*/
|
|
525
|
+
goog.ui.Container.prototype.handleUnHighlightItem = function(e) {
|
|
526
|
+
if (e.target == this.getHighlighted()) {
|
|
527
|
+
this.highlightedIndex_ = -1;
|
|
528
|
+
}
|
|
529
|
+
goog.dom.a11y.setState(this.getElement(),
|
|
530
|
+
goog.dom.a11y.State.ACTIVEDESCENDANT, '');
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Handles OPEN events dispatched by items in the container when they are
|
|
536
|
+
* opened.
|
|
537
|
+
* @param {goog.events.Event} e Open event to handle.
|
|
538
|
+
*/
|
|
539
|
+
goog.ui.Container.prototype.handleOpenItem = function(e) {
|
|
540
|
+
var item = /** @type {goog.ui.Control} */ (e.target);
|
|
541
|
+
if (item && item != this.openItem_ && item.getParent() == this) {
|
|
542
|
+
if (this.openItem_) {
|
|
543
|
+
this.openItem_.setOpen(false);
|
|
544
|
+
}
|
|
545
|
+
this.openItem_ = item;
|
|
546
|
+
}
|
|
547
|
+
};
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* Handles CLOSE events dispatched by items in the container when they are
|
|
552
|
+
* closed.
|
|
553
|
+
* @param {goog.events.Event} e Close event to handle.
|
|
554
|
+
*/
|
|
555
|
+
goog.ui.Container.prototype.handleCloseItem = function(e) {
|
|
556
|
+
if (e.target == this.openItem_) {
|
|
557
|
+
this.openItem_ = null;
|
|
558
|
+
}
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* Handles mousedown events over the container. The default implementation
|
|
564
|
+
* sets the "mouse button pressed" flag and, if the container is focusable,
|
|
565
|
+
* grabs keyboard focus.
|
|
566
|
+
* @param {goog.events.BrowserEvent} e Mousedown event to handle.
|
|
567
|
+
*/
|
|
568
|
+
goog.ui.Container.prototype.handleMouseDown = function(e) {
|
|
569
|
+
if (this.enabled_) {
|
|
570
|
+
this.setMouseButtonPressed(true);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
var keyTarget = this.getKeyEventTarget();
|
|
574
|
+
if (keyTarget && goog.dom.isFocusableTabIndex(keyTarget)) {
|
|
575
|
+
// The container is configured to receive keyboard focus.
|
|
576
|
+
keyTarget.focus();
|
|
577
|
+
} else {
|
|
578
|
+
// The control isn't configured to receive keyboard focus; prevent it
|
|
579
|
+
// from stealing focus or destroying the selection.
|
|
580
|
+
e.preventDefault();
|
|
581
|
+
}
|
|
582
|
+
};
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Handles mouseup events over the document. The default implementation
|
|
587
|
+
* clears the "mouse button pressed" flag.
|
|
588
|
+
* @param {goog.events.BrowserEvent} e Mouseup event to handle.
|
|
589
|
+
*/
|
|
590
|
+
goog.ui.Container.prototype.handleDocumentMouseUp = function(e) {
|
|
591
|
+
this.setMouseButtonPressed(false);
|
|
592
|
+
};
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* Handles mouse events originating from nodes belonging to the controls hosted
|
|
597
|
+
* in the container. Locates the child control based on the DOM node that
|
|
598
|
+
* dispatched the event, and forwards the event to the control for handling.
|
|
599
|
+
* @param {goog.events.BrowserEvent} e Mouse event to handle.
|
|
600
|
+
*/
|
|
601
|
+
goog.ui.Container.prototype.handleChildMouseEvents = function(e) {
|
|
602
|
+
var control = this.getOwnerControl(/** @type {Node} */ (e.target));
|
|
603
|
+
if (control) {
|
|
604
|
+
// Child control identified; forward the event.
|
|
605
|
+
switch (e.type) {
|
|
606
|
+
case goog.events.EventType.MOUSEDOWN:
|
|
607
|
+
control.handleMouseDown(e);
|
|
608
|
+
break;
|
|
609
|
+
case goog.events.EventType.MOUSEUP:
|
|
610
|
+
control.handleMouseUp(e);
|
|
611
|
+
break;
|
|
612
|
+
case goog.events.EventType.MOUSEOVER:
|
|
613
|
+
control.handleMouseOver(e);
|
|
614
|
+
break;
|
|
615
|
+
case goog.events.EventType.MOUSEOUT:
|
|
616
|
+
control.handleMouseOut(e);
|
|
617
|
+
break;
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* Returns the child control that owns the given DOM node, or null if no such
|
|
625
|
+
* control is found.
|
|
626
|
+
* @param {Node} node DOM node whose owner is to be returned.
|
|
627
|
+
* @return {goog.ui.Control?} Control hosted in the container to which the node
|
|
628
|
+
* belongs (if found).
|
|
629
|
+
* @protected
|
|
630
|
+
*/
|
|
631
|
+
goog.ui.Container.prototype.getOwnerControl = function(node) {
|
|
632
|
+
// Ensure that this container actually has child controls before
|
|
633
|
+
// looking up the owner.
|
|
634
|
+
if (this.childElementIdMap_) {
|
|
635
|
+
var elem = this.getElement();
|
|
636
|
+
// See http://b/2964418 . IE9 appears to evaluate '!=' incorrectly, so
|
|
637
|
+
// using '!==' instead.
|
|
638
|
+
// TODO(user): Possibly revert this change if/when IE9 fixes the issue.
|
|
639
|
+
while (node && node !== elem) {
|
|
640
|
+
var id = node.id;
|
|
641
|
+
if (id in this.childElementIdMap_) {
|
|
642
|
+
return this.childElementIdMap_[id];
|
|
643
|
+
}
|
|
644
|
+
node = node.parentNode;
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
return null;
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* Handles focus events raised when the container's key event target receives
|
|
653
|
+
* keyboard focus.
|
|
654
|
+
* @param {goog.events.BrowserEvent} e Focus event to handle.
|
|
655
|
+
*/
|
|
656
|
+
goog.ui.Container.prototype.handleFocus = function(e) {
|
|
657
|
+
// No-op in the base class.
|
|
658
|
+
};
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* Handles blur events raised when the container's key event target loses
|
|
663
|
+
* keyboard focus. The default implementation clears the highlight index.
|
|
664
|
+
* @param {goog.events.BrowserEvent} e Blur event to handle.
|
|
665
|
+
*/
|
|
666
|
+
goog.ui.Container.prototype.handleBlur = function(e) {
|
|
667
|
+
this.setHighlightedIndex(-1);
|
|
668
|
+
this.setMouseButtonPressed(false);
|
|
669
|
+
// If the container loses focus, and one of its children is open, close it.
|
|
670
|
+
if (this.openItem_) {
|
|
671
|
+
this.openItem_.setOpen(false);
|
|
672
|
+
}
|
|
673
|
+
};
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
/**
|
|
677
|
+
* Attempts to handle a keyboard event, if the control is enabled, by calling
|
|
678
|
+
* {@link handleKeyEventInternal}. Considered protected; should only be used
|
|
679
|
+
* within this package and by subclasses.
|
|
680
|
+
* @param {goog.events.KeyEvent} e Key event to handle.
|
|
681
|
+
* @return {boolean} Whether the key event was handled.
|
|
682
|
+
*/
|
|
683
|
+
goog.ui.Container.prototype.handleKeyEvent = function(e) {
|
|
684
|
+
if (this.isEnabled() && this.isVisible() &&
|
|
685
|
+
(this.getChildCount() != 0 || this.keyEventTarget_) &&
|
|
686
|
+
this.handleKeyEventInternal(e)) {
|
|
687
|
+
e.preventDefault();
|
|
688
|
+
e.stopPropagation();
|
|
689
|
+
return true;
|
|
690
|
+
}
|
|
691
|
+
return false;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
/**
|
|
696
|
+
* Attempts to handle a keyboard event; returns true if the event was handled,
|
|
697
|
+
* false otherwise. If the container is enabled, and a child is highlighted,
|
|
698
|
+
* calls the child control's {@code handleKeyEvent} method to give the control
|
|
699
|
+
* a chance to handle the event first.
|
|
700
|
+
* @param {goog.events.KeyEvent} e Key event to handle.
|
|
701
|
+
* @return {boolean} Whether the event was handled by the container (or one of
|
|
702
|
+
* its children).
|
|
703
|
+
*/
|
|
704
|
+
goog.ui.Container.prototype.handleKeyEventInternal = function(e) {
|
|
705
|
+
// Give the highlighted control the chance to handle the key event.
|
|
706
|
+
var highlighted = this.getHighlighted();
|
|
707
|
+
if (highlighted && typeof highlighted.handleKeyEvent == 'function' &&
|
|
708
|
+
highlighted.handleKeyEvent(e)) {
|
|
709
|
+
return true;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
// Give the open control the chance to handle the key event.
|
|
713
|
+
if (this.openItem_ && this.openItem_ != highlighted &&
|
|
714
|
+
typeof this.openItem_.handleKeyEvent == 'function' &&
|
|
715
|
+
this.openItem_.handleKeyEvent(e)) {
|
|
716
|
+
return true;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
// Do not handle the key event if any modifier key is pressed.
|
|
720
|
+
if (e.shiftKey || e.ctrlKey || e.metaKey || e.altKey) {
|
|
721
|
+
return false;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
// Either nothing is highlighted, or the highlighted control didn't handle
|
|
725
|
+
// the key event, so attempt to handle it here.
|
|
726
|
+
switch (e.keyCode) {
|
|
727
|
+
case goog.events.KeyCodes.ESC:
|
|
728
|
+
if (this.isFocusable()) {
|
|
729
|
+
this.getKeyEventTarget().blur();
|
|
730
|
+
} else {
|
|
731
|
+
return false;
|
|
732
|
+
}
|
|
733
|
+
break;
|
|
734
|
+
|
|
735
|
+
case goog.events.KeyCodes.HOME:
|
|
736
|
+
this.highlightFirst();
|
|
737
|
+
break;
|
|
738
|
+
|
|
739
|
+
case goog.events.KeyCodes.END:
|
|
740
|
+
this.highlightLast();
|
|
741
|
+
break;
|
|
742
|
+
|
|
743
|
+
case goog.events.KeyCodes.UP:
|
|
744
|
+
if (this.orientation_ == goog.ui.Container.Orientation.VERTICAL) {
|
|
745
|
+
this.highlightPrevious();
|
|
746
|
+
} else {
|
|
747
|
+
return false;
|
|
748
|
+
}
|
|
749
|
+
break;
|
|
750
|
+
|
|
751
|
+
case goog.events.KeyCodes.LEFT:
|
|
752
|
+
if (this.orientation_ == goog.ui.Container.Orientation.HORIZONTAL) {
|
|
753
|
+
if (this.isRightToLeft()) {
|
|
754
|
+
this.highlightNext();
|
|
755
|
+
} else {
|
|
756
|
+
this.highlightPrevious();
|
|
757
|
+
}
|
|
758
|
+
} else {
|
|
759
|
+
return false;
|
|
760
|
+
}
|
|
761
|
+
break;
|
|
762
|
+
|
|
763
|
+
case goog.events.KeyCodes.DOWN:
|
|
764
|
+
if (this.orientation_ == goog.ui.Container.Orientation.VERTICAL) {
|
|
765
|
+
this.highlightNext();
|
|
766
|
+
} else {
|
|
767
|
+
return false;
|
|
768
|
+
}
|
|
769
|
+
break;
|
|
770
|
+
|
|
771
|
+
case goog.events.KeyCodes.RIGHT:
|
|
772
|
+
if (this.orientation_ == goog.ui.Container.Orientation.HORIZONTAL) {
|
|
773
|
+
if (this.isRightToLeft()) {
|
|
774
|
+
this.highlightPrevious();
|
|
775
|
+
} else {
|
|
776
|
+
this.highlightNext();
|
|
777
|
+
}
|
|
778
|
+
} else {
|
|
779
|
+
return false;
|
|
780
|
+
}
|
|
781
|
+
break;
|
|
782
|
+
|
|
783
|
+
default:
|
|
784
|
+
return false;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
return true;
|
|
788
|
+
};
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
// Child component management.
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* Creates a DOM ID for the child control and registers it to an internal
|
|
796
|
+
* hash table to be able to find it fast by id.
|
|
797
|
+
* @param {goog.ui.Control} child The child control. Its root element has
|
|
798
|
+
* to be created yet.
|
|
799
|
+
* @private
|
|
800
|
+
*/
|
|
801
|
+
goog.ui.Container.prototype.registerChildId_ = function(child) {
|
|
802
|
+
// Map the DOM ID of the control's root element to the control itself.
|
|
803
|
+
var childElem = child.getElement();
|
|
804
|
+
|
|
805
|
+
// If the control's root element doesn't have a DOM ID assign one.
|
|
806
|
+
var id = childElem.id || (childElem.id = child.getId());
|
|
807
|
+
|
|
808
|
+
// Lazily create the child element ID map on first use.
|
|
809
|
+
if (!this.childElementIdMap_) {
|
|
810
|
+
this.childElementIdMap_ = {};
|
|
811
|
+
}
|
|
812
|
+
this.childElementIdMap_[id] = child;
|
|
813
|
+
};
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* Adds the specified control as the last child of this container. See
|
|
818
|
+
* {@link goog.ui.Container#addChildAt} for detailed semantics.
|
|
819
|
+
* @param {goog.ui.Control} child The new child control.
|
|
820
|
+
* @param {boolean=} opt_render Whether the new child should be rendered
|
|
821
|
+
* immediately after being added (defaults to false).
|
|
822
|
+
*/
|
|
823
|
+
goog.ui.Container.prototype.addChild = function(child, opt_render) {
|
|
824
|
+
goog.ui.Container.superClass_.addChild.call(this, child, opt_render);
|
|
825
|
+
};
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
/**
|
|
829
|
+
* Overrides {@link goog.ui.Container#getChild} to make it clear that it
|
|
830
|
+
* only returns {@link goog.ui.Control}s.
|
|
831
|
+
* @param {string} id Child component ID.
|
|
832
|
+
* @return {goog.ui.Control} The child with the given ID; null if none.
|
|
833
|
+
* @override
|
|
834
|
+
*/
|
|
835
|
+
goog.ui.Container.prototype.getChild;
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* Overrides {@link goog.ui.Container#getChildAt} to make it clear that it
|
|
840
|
+
* only returns {@link goog.ui.Control}s.
|
|
841
|
+
* @param {number} index 0-based index.
|
|
842
|
+
* @return {goog.ui.Control} The child with the given ID; null if none.
|
|
843
|
+
* @override
|
|
844
|
+
*/
|
|
845
|
+
goog.ui.Container.prototype.getChildAt;
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* Adds the control as a child of this container at the given 0-based index.
|
|
850
|
+
* Overrides {@link goog.ui.Component#addChildAt} by also updating the
|
|
851
|
+
* container's highlight index. Since {@link goog.ui.Component#addChild} uses
|
|
852
|
+
* {@link #addChildAt} internally, we only need to override this method.
|
|
853
|
+
* @param {goog.ui.Control} control New child.
|
|
854
|
+
* @param {number} index Index at which the new child is to be added.
|
|
855
|
+
* @param {boolean=} opt_render Whether the new child should be rendered
|
|
856
|
+
* immediately after being added (defaults to false).
|
|
857
|
+
*/
|
|
858
|
+
goog.ui.Container.prototype.addChildAt = function(control, index, opt_render) {
|
|
859
|
+
// Make sure the child control dispatches HIGHLIGHT, UNHIGHLIGHT, OPEN, and
|
|
860
|
+
// CLOSE events, and that it doesn't steal keyboard focus.
|
|
861
|
+
control.setDispatchTransitionEvents(goog.ui.Component.State.HOVER, true);
|
|
862
|
+
control.setDispatchTransitionEvents(goog.ui.Component.State.OPENED, true);
|
|
863
|
+
if (this.isFocusable() || !this.isFocusableChildrenAllowed()) {
|
|
864
|
+
control.setSupportedState(goog.ui.Component.State.FOCUSED, false);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
// Disable mouse event handling by child controls.
|
|
868
|
+
control.setHandleMouseEvents(false);
|
|
869
|
+
|
|
870
|
+
// Let the superclass implementation do the work.
|
|
871
|
+
goog.ui.Container.superClass_.addChildAt.call(this, control, index,
|
|
872
|
+
opt_render);
|
|
873
|
+
|
|
874
|
+
if (opt_render && this.isInDocument()) {
|
|
875
|
+
this.registerChildId_(control);
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
// Update the highlight index, if needed.
|
|
879
|
+
if (index <= this.highlightedIndex_) {
|
|
880
|
+
this.highlightedIndex_++;
|
|
881
|
+
}
|
|
882
|
+
};
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Removes a child control. Overrides {@link goog.ui.Component#removeChild} by
|
|
887
|
+
* updating the highlight index. Since {@link goog.ui.Component#removeChildAt}
|
|
888
|
+
* uses {@link #removeChild} internally, we only need to override this method.
|
|
889
|
+
* @param {string|goog.ui.Control} control The ID of the child to remove, or
|
|
890
|
+
* the control itself.
|
|
891
|
+
* @param {boolean=} opt_unrender Whether to call {@code exitDocument} on the
|
|
892
|
+
* removed control, and detach its DOM from the document (defaults to
|
|
893
|
+
* false).
|
|
894
|
+
* @return {goog.ui.Control} The removed control, if any.
|
|
895
|
+
*/
|
|
896
|
+
goog.ui.Container.prototype.removeChild = function(control, opt_unrender) {
|
|
897
|
+
control = goog.isString(control) ? this.getChild(control) : control;
|
|
898
|
+
|
|
899
|
+
if (control) {
|
|
900
|
+
var index = this.indexOfChild(control);
|
|
901
|
+
if (index != -1) {
|
|
902
|
+
if (index == this.highlightedIndex_) {
|
|
903
|
+
control.setHighlighted(false);
|
|
904
|
+
} else if (index < this.highlightedIndex_) {
|
|
905
|
+
this.highlightedIndex_--;
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
// Remove the mapping from the child element ID map.
|
|
910
|
+
var childElem = control.getElement();
|
|
911
|
+
if (childElem && childElem.id) {
|
|
912
|
+
goog.object.remove(this.childElementIdMap_, childElem.id);
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
control = /** @type {goog.ui.Control} */ (
|
|
917
|
+
goog.ui.Container.superClass_.removeChild.call(this, control,
|
|
918
|
+
opt_unrender));
|
|
919
|
+
|
|
920
|
+
// Re-enable mouse event handling (in case the control is reused elsewhere).
|
|
921
|
+
control.setHandleMouseEvents(true);
|
|
922
|
+
|
|
923
|
+
return control;
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
// Container state management.
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
/**
|
|
931
|
+
* Returns the container's orientation.
|
|
932
|
+
* @return {?goog.ui.Container.Orientation} Container orientation.
|
|
933
|
+
*/
|
|
934
|
+
goog.ui.Container.prototype.getOrientation = function() {
|
|
935
|
+
return this.orientation_;
|
|
936
|
+
};
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Sets the container's orientation.
|
|
941
|
+
* @param {goog.ui.Container.Orientation} orientation Container orientation.
|
|
942
|
+
*/
|
|
943
|
+
// TODO(user): Do we need to support containers with dynamic orientation?
|
|
944
|
+
goog.ui.Container.prototype.setOrientation = function(orientation) {
|
|
945
|
+
if (this.getElement()) {
|
|
946
|
+
// Too late.
|
|
947
|
+
throw Error(goog.ui.Component.Error.ALREADY_RENDERED);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
this.orientation_ = orientation;
|
|
951
|
+
};
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* Returns true if the container's visibility is set to visible, false if
|
|
956
|
+
* it is set to hidden. A container that is set to hidden is guaranteed
|
|
957
|
+
* to be hidden from the user, but the reverse isn't necessarily true.
|
|
958
|
+
* A container may be set to visible but can otherwise be obscured by another
|
|
959
|
+
* element, rendered off-screen, or hidden using direct CSS manipulation.
|
|
960
|
+
* @return {boolean} Whether the container is set to be visible.
|
|
961
|
+
*/
|
|
962
|
+
goog.ui.Container.prototype.isVisible = function() {
|
|
963
|
+
return this.visible_;
|
|
964
|
+
};
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
/**
|
|
968
|
+
* Shows or hides the container. Does nothing if the container already has
|
|
969
|
+
* the requested visibility. Otherwise, dispatches a SHOW or HIDE event as
|
|
970
|
+
* appropriate, giving listeners a chance to prevent the visibility change.
|
|
971
|
+
* @param {boolean} visible Whether to show or hide the container.
|
|
972
|
+
* @param {boolean=} opt_force If true, doesn't check whether the container
|
|
973
|
+
* already has the requested visibility, and doesn't dispatch any events.
|
|
974
|
+
* @return {boolean} Whether the visibility was changed.
|
|
975
|
+
*/
|
|
976
|
+
goog.ui.Container.prototype.setVisible = function(visible, opt_force) {
|
|
977
|
+
if (opt_force || (this.visible_ != visible && this.dispatchEvent(visible ?
|
|
978
|
+
goog.ui.Component.EventType.SHOW : goog.ui.Component.EventType.HIDE))) {
|
|
979
|
+
this.visible_ = visible;
|
|
980
|
+
|
|
981
|
+
var elem = this.getElement();
|
|
982
|
+
if (elem) {
|
|
983
|
+
goog.style.showElement(elem, visible);
|
|
984
|
+
if (this.isFocusable()) {
|
|
985
|
+
// Enable keyboard access only for enabled & visible containers.
|
|
986
|
+
this.renderer_.enableTabIndex(this.getKeyEventTarget(),
|
|
987
|
+
this.enabled_ && this.visible_);
|
|
988
|
+
}
|
|
989
|
+
if (!opt_force) {
|
|
990
|
+
this.dispatchEvent(this.visible_ ?
|
|
991
|
+
goog.ui.Container.EventType.AFTER_SHOW :
|
|
992
|
+
goog.ui.Container.EventType.AFTER_HIDE);
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
return true;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
return false;
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* Returns true if the container is enabled, false otherwise.
|
|
1005
|
+
* @return {boolean} Whether the container is enabled.
|
|
1006
|
+
*/
|
|
1007
|
+
goog.ui.Container.prototype.isEnabled = function() {
|
|
1008
|
+
return this.enabled_;
|
|
1009
|
+
};
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* Enables/disables the container based on the {@code enable} argument.
|
|
1014
|
+
* Dispatches an {@code ENABLED} or {@code DISABLED} event prior to changing
|
|
1015
|
+
* the container's state, which may be caught and canceled to prevent the
|
|
1016
|
+
* container from changing state. Also enables/disables child controls.
|
|
1017
|
+
* @param {boolean} enable Whether to enable or disable the container.
|
|
1018
|
+
*/
|
|
1019
|
+
goog.ui.Container.prototype.setEnabled = function(enable) {
|
|
1020
|
+
if (this.enabled_ != enable && this.dispatchEvent(enable ?
|
|
1021
|
+
goog.ui.Component.EventType.ENABLE :
|
|
1022
|
+
goog.ui.Component.EventType.DISABLE)) {
|
|
1023
|
+
if (enable) {
|
|
1024
|
+
// Flag the container as enabled first, then update children. This is
|
|
1025
|
+
// because controls can't be enabled if their parent is disabled.
|
|
1026
|
+
this.enabled_ = true;
|
|
1027
|
+
this.forEachChild(function(child) {
|
|
1028
|
+
// Enable child control unless it is flagged.
|
|
1029
|
+
if (child.wasDisabled) {
|
|
1030
|
+
delete child.wasDisabled;
|
|
1031
|
+
} else {
|
|
1032
|
+
child.setEnabled(true);
|
|
1033
|
+
}
|
|
1034
|
+
});
|
|
1035
|
+
} else {
|
|
1036
|
+
// Disable children first, then flag the container as disabled. This is
|
|
1037
|
+
// because controls can't be disabled if their parent is already disabled.
|
|
1038
|
+
this.forEachChild(function(child) {
|
|
1039
|
+
// Disable child control, or flag it if it's already disabled.
|
|
1040
|
+
if (child.isEnabled()) {
|
|
1041
|
+
child.setEnabled(false);
|
|
1042
|
+
} else {
|
|
1043
|
+
child.wasDisabled = true;
|
|
1044
|
+
}
|
|
1045
|
+
});
|
|
1046
|
+
this.enabled_ = false;
|
|
1047
|
+
this.setMouseButtonPressed(false);
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
if (this.isFocusable()) {
|
|
1051
|
+
// Enable keyboard access only for enabled & visible components.
|
|
1052
|
+
this.renderer_.enableTabIndex(this.getKeyEventTarget(),
|
|
1053
|
+
enable && this.visible_);
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
};
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* Returns true if the container is focusable, false otherwise. The default
|
|
1061
|
+
* is true. Focusable containers always have a tab index and allocate a key
|
|
1062
|
+
* handler to handle keyboard events while focused.
|
|
1063
|
+
* @return {boolean} Whether the component is focusable.
|
|
1064
|
+
*/
|
|
1065
|
+
goog.ui.Container.prototype.isFocusable = function() {
|
|
1066
|
+
return this.focusable_;
|
|
1067
|
+
};
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
* Sets whether the container is focusable. The default is true. Focusable
|
|
1072
|
+
* containers always have a tab index and allocate a key handler to handle
|
|
1073
|
+
* keyboard events while focused.
|
|
1074
|
+
* @param {boolean} focusable Whether the component is to be focusable.
|
|
1075
|
+
*/
|
|
1076
|
+
goog.ui.Container.prototype.setFocusable = function(focusable) {
|
|
1077
|
+
if (focusable != this.focusable_ && this.isInDocument()) {
|
|
1078
|
+
this.enableFocusHandling_(focusable);
|
|
1079
|
+
}
|
|
1080
|
+
this.focusable_ = focusable;
|
|
1081
|
+
if (this.enabled_ && this.visible_) {
|
|
1082
|
+
this.renderer_.enableTabIndex(this.getKeyEventTarget(), focusable);
|
|
1083
|
+
}
|
|
1084
|
+
};
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* Returns true if the container allows children to be focusable, false
|
|
1089
|
+
* otherwise. Only effective if the container is not focusable.
|
|
1090
|
+
* @return {boolean} Whether children should be focusable.
|
|
1091
|
+
*/
|
|
1092
|
+
goog.ui.Container.prototype.isFocusableChildrenAllowed = function() {
|
|
1093
|
+
return this.allowFocusableChildren_;
|
|
1094
|
+
};
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* Sets whether the container allows children to be focusable, false
|
|
1099
|
+
* otherwise. Only effective if the container is not focusable.
|
|
1100
|
+
* @param {boolean} focusable Whether the children should be focusable.
|
|
1101
|
+
*/
|
|
1102
|
+
goog.ui.Container.prototype.setFocusableChildrenAllowed = function(focusable) {
|
|
1103
|
+
this.allowFocusableChildren_ = focusable;
|
|
1104
|
+
};
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
/**
|
|
1108
|
+
* @return {boolean} Whether highlighting a child component should also open it.
|
|
1109
|
+
*/
|
|
1110
|
+
goog.ui.Container.prototype.isOpenFollowsHighlight = function() {
|
|
1111
|
+
return this.openFollowsHighlight_;
|
|
1112
|
+
};
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* Sets whether highlighting a child component should also open it.
|
|
1117
|
+
* @param {boolean} follow Whether highlighting a child component also opens it.
|
|
1118
|
+
*/
|
|
1119
|
+
goog.ui.Container.prototype.setOpenFollowsHighlight = function(follow) {
|
|
1120
|
+
this.openFollowsHighlight_ = follow;
|
|
1121
|
+
};
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
// Highlight management.
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
/**
|
|
1128
|
+
* Returns the index of the currently highlighted item (-1 if none).
|
|
1129
|
+
* @return {number} Index of the currently highlighted item.
|
|
1130
|
+
*/
|
|
1131
|
+
goog.ui.Container.prototype.getHighlightedIndex = function() {
|
|
1132
|
+
return this.highlightedIndex_;
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
/**
|
|
1137
|
+
* Highlights the item at the given 0-based index (if any). If another item
|
|
1138
|
+
* was previously highlighted, it is un-highlighted.
|
|
1139
|
+
* @param {number} index Index of item to highlight (-1 removes the current
|
|
1140
|
+
* highlight).
|
|
1141
|
+
*/
|
|
1142
|
+
goog.ui.Container.prototype.setHighlightedIndex = function(index) {
|
|
1143
|
+
var child = this.getChildAt(index);
|
|
1144
|
+
if (child) {
|
|
1145
|
+
child.setHighlighted(true);
|
|
1146
|
+
} else if (this.highlightedIndex_ > -1) {
|
|
1147
|
+
this.getHighlighted().setHighlighted(false);
|
|
1148
|
+
}
|
|
1149
|
+
};
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
/**
|
|
1153
|
+
* Highlights the given item if it exists and is a child of the container;
|
|
1154
|
+
* otherwise un-highlights the currently highlighted item.
|
|
1155
|
+
* @param {goog.ui.Control} item Item to highlight.
|
|
1156
|
+
*/
|
|
1157
|
+
goog.ui.Container.prototype.setHighlighted = function(item) {
|
|
1158
|
+
this.setHighlightedIndex(this.indexOfChild(item));
|
|
1159
|
+
};
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
/**
|
|
1163
|
+
* Returns the currently highlighted item (if any).
|
|
1164
|
+
* @return {goog.ui.Control?} Highlighted item (null if none).
|
|
1165
|
+
*/
|
|
1166
|
+
goog.ui.Container.prototype.getHighlighted = function() {
|
|
1167
|
+
return this.getChildAt(this.highlightedIndex_);
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
/**
|
|
1172
|
+
* Highlights the first highlightable item in the container
|
|
1173
|
+
*/
|
|
1174
|
+
goog.ui.Container.prototype.highlightFirst = function() {
|
|
1175
|
+
this.highlightHelper(function(index, max) {
|
|
1176
|
+
return (index + 1) % max;
|
|
1177
|
+
}, this.getChildCount() - 1);
|
|
1178
|
+
};
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* Highlights the last highlightable item in the container.
|
|
1183
|
+
*/
|
|
1184
|
+
goog.ui.Container.prototype.highlightLast = function() {
|
|
1185
|
+
this.highlightHelper(function(index, max) {
|
|
1186
|
+
index--;
|
|
1187
|
+
return index < 0 ? max - 1 : index;
|
|
1188
|
+
}, 0);
|
|
1189
|
+
};
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Highlights the next highlightable item (or the first if nothing is currently
|
|
1194
|
+
* highlighted).
|
|
1195
|
+
*/
|
|
1196
|
+
goog.ui.Container.prototype.highlightNext = function() {
|
|
1197
|
+
this.highlightHelper(function(index, max) {
|
|
1198
|
+
return (index + 1) % max;
|
|
1199
|
+
}, this.highlightedIndex_);
|
|
1200
|
+
};
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
/**
|
|
1204
|
+
* Highlights the previous highlightable item (or the last if nothing is
|
|
1205
|
+
* currently highlighted).
|
|
1206
|
+
*/
|
|
1207
|
+
goog.ui.Container.prototype.highlightPrevious = function() {
|
|
1208
|
+
this.highlightHelper(function(index, max) {
|
|
1209
|
+
index--;
|
|
1210
|
+
return index < 0 ? max - 1 : index;
|
|
1211
|
+
}, this.highlightedIndex_);
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
/**
|
|
1216
|
+
* Helper function that manages the details of moving the highlight among
|
|
1217
|
+
* child controls in response to keyboard events.
|
|
1218
|
+
* @param {function(number, number) : number} fn Function that accepts the
|
|
1219
|
+
* current and maximum indices, and returns the next index to check.
|
|
1220
|
+
* @param {number} startIndex Start index.
|
|
1221
|
+
* @return {boolean} Whether the highlight has changed.
|
|
1222
|
+
* @protected
|
|
1223
|
+
*/
|
|
1224
|
+
goog.ui.Container.prototype.highlightHelper = function(fn, startIndex) {
|
|
1225
|
+
// If the start index is -1 (meaning there's nothing currently highlighted),
|
|
1226
|
+
// try starting from the currently open item, if any.
|
|
1227
|
+
var curIndex = startIndex < 0 ?
|
|
1228
|
+
this.indexOfChild(this.openItem_) : startIndex;
|
|
1229
|
+
var numItems = this.getChildCount();
|
|
1230
|
+
|
|
1231
|
+
curIndex = fn.call(this, curIndex, numItems);
|
|
1232
|
+
var visited = 0;
|
|
1233
|
+
while (visited <= numItems) {
|
|
1234
|
+
var control = this.getChildAt(curIndex);
|
|
1235
|
+
if (control && this.canHighlightItem(control)) {
|
|
1236
|
+
this.setHighlightedIndexFromKeyEvent(curIndex);
|
|
1237
|
+
return true;
|
|
1238
|
+
}
|
|
1239
|
+
visited++;
|
|
1240
|
+
curIndex = fn.call(this, curIndex, numItems);
|
|
1241
|
+
}
|
|
1242
|
+
return false;
|
|
1243
|
+
};
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
/**
|
|
1247
|
+
* Returns whether the given item can be highlighted.
|
|
1248
|
+
* @param {goog.ui.Control} item The item to check.
|
|
1249
|
+
* @return {boolean} Whether the item can be highlighted.
|
|
1250
|
+
* @protected
|
|
1251
|
+
*/
|
|
1252
|
+
goog.ui.Container.prototype.canHighlightItem = function(item) {
|
|
1253
|
+
return item.isVisible() && item.isEnabled() &&
|
|
1254
|
+
item.isSupportedState(goog.ui.Component.State.HOVER);
|
|
1255
|
+
};
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* Helper method that sets the highlighted index to the given index in response
|
|
1260
|
+
* to a keyboard event. The base class implementation simply calls the
|
|
1261
|
+
* {@link #setHighlightedIndex} method, but subclasses can override this
|
|
1262
|
+
* behavior as needed.
|
|
1263
|
+
* @param {number} index Index of item to highlight.
|
|
1264
|
+
* @protected
|
|
1265
|
+
*/
|
|
1266
|
+
goog.ui.Container.prototype.setHighlightedIndexFromKeyEvent = function(index) {
|
|
1267
|
+
this.setHighlightedIndex(index);
|
|
1268
|
+
};
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
/**
|
|
1272
|
+
* Returns the currently open (expanded) control in the container (null if
|
|
1273
|
+
* none).
|
|
1274
|
+
* @return {goog.ui.Control?} The currently open control.
|
|
1275
|
+
*/
|
|
1276
|
+
goog.ui.Container.prototype.getOpenItem = function() {
|
|
1277
|
+
return this.openItem_;
|
|
1278
|
+
};
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Returns true if the mouse button is pressed, false otherwise.
|
|
1283
|
+
* @return {boolean} Whether the mouse button is pressed.
|
|
1284
|
+
*/
|
|
1285
|
+
goog.ui.Container.prototype.isMouseButtonPressed = function() {
|
|
1286
|
+
return this.mouseButtonPressed_;
|
|
1287
|
+
};
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* Sets or clears the "mouse button pressed" flag.
|
|
1292
|
+
* @param {boolean} pressed Whether the mouse button is presed.
|
|
1293
|
+
*/
|
|
1294
|
+
goog.ui.Container.prototype.setMouseButtonPressed = function(pressed) {
|
|
1295
|
+
this.mouseButtonPressed_ = pressed;
|
|
1296
|
+
};
|