Wed, 12 Jun 2013 20:05:16 +0200
Finished the Kivy project suupport plug-in.
diff -r 373da5610be1 -r b7e3e3b131ea ChangeLog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ChangeLog Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,4 @@ +ChangeLog +--------- +Version 3.0.0-snapshot-201306dd: +- first snapshot release of the Kivy project plugin for eric5
diff -r 373da5610be1 -r b7e3e3b131ea PKGLIST --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PKGLIST Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,8 @@ +PluginProjectKivy.py +ProjectKivy/APIs/kivy.api +ProjectKivy/APIs/kivy.bas +ProjectKivy/Documentation/LICENSE.GPL +ProjectKivy/KivyLexer.py +ProjectKivy/__init__.py +ProjectKivy/i18n/kivy_de.qm +ProjectKivy/i18n/kivy_en.qm
diff -r 373da5610be1 -r b7e3e3b131ea PluginKivy.e4p --- a/PluginKivy.e4p Wed Jun 12 18:51:49 2013 +0200 +++ b/PluginKivy.e4p Wed Jun 12 20:05:16 2013 +0200 @@ -10,6 +10,7 @@ <Version>0.1</Version> <Author>Detlev Offenbach</Author> <Email>detlev@die-offenbachs.de</Email> + <TranslationPattern>ProjectKivy/i18n/kivy_%language%.ts</TranslationPattern> <Eol index="1"/> <Sources> <Source>__init__.py</Source> @@ -18,12 +19,25 @@ <Source>ProjectKivy/KivyLexer.py</Source> </Sources> <Forms/> - <Translations/> + <Translations> + <Translation>ProjectKivy/i18n/kivy_de.ts</Translation> + <Translation>ProjectKivy/i18n/kivy_es.ts</Translation> + <Translation>ProjectKivy/i18n/kivy_en.ts</Translation> + <Translation>ProjectKivy/i18n/kivy_de.qm</Translation> + <Translation>ProjectKivy/i18n/kivy_en.qm</Translation> + </Translations> <Resources/> <Interfaces/> <Others> <Other>.hgignore</Other> <Other>PluginKivy.e4p</Other> + <Other>ProjectKivy/APIs/kivy.api</Other> + <Other>ProjectKivy/APIs/kivy.bas</Other> + <Other>ChangeLog</Other> + <Other>ProjectKivy/Documentation/LICENSE.GPL</Other> + <Other>ProjectKivy/Documentation/source</Other> + <Other>PKGLIST</Other> + <Other>PluginProjectKivy.zip</Other> </Others> <MainScript>PluginProjectKivy.py</MainScript> <Vcs> @@ -145,4 +159,68 @@ <FiletypeAssociation pattern="*.ui.h" type="FORMS"/> <FiletypeAssociation pattern="Ui_*.py" type="__IGNORE__"/> </FiletypeAssociations> + <Documentation> + <DocumentationParams> + <dict> + <key> + <string>ERIC4DOC</string> + </key> + <value> + <dict> + <key> + <string>cssFile</string> + </key> + <value> + <string>%PYTHON%/eric5/CSSs/default.css</string> + </value> + <key> + <string>ignoreDirectories</string> + </key> + <value> + <list> + <string>.eric5project</string> + <string>.ropeproject</string> + <string>_eric5project</string> + <string>_ropeproject</string> + </list> + </value> + <key> + <string>ignoreFilePatterns</string> + </key> + <value> + <list> + <string>Ui_*.py</string> + </list> + </value> + <key> + <string>outputDirectory</string> + </key> + <value> + <string>ProjectKivy/Documentation/source</string> + </value> + <key> + <string>qtHelpEnabled</string> + </key> + <value> + <bool>False</bool> + </value> + <key> + <string>sourceExtensions</string> + </key> + <value> + <list> + <string></string> + </list> + </value> + <key> + <string>useRecursion</string> + </key> + <value> + <bool>True</bool> + </value> + </dict> + </value> + </dict> + </DocumentationParams> + </Documentation> </Project>
diff -r 373da5610be1 -r b7e3e3b131ea PluginProjectKivy.py --- a/PluginProjectKivy.py Wed Jun 12 18:51:49 2013 +0200 +++ b/PluginProjectKivy.py Wed Jun 12 20:05:16 2013 +0200 @@ -7,9 +7,11 @@ Module implementing the Kivy project plug-in. """ +import os +import glob import fnmatch -from PyQt4.QtCore import QObject +from PyQt4.QtCore import QObject, QTranslator from E5Gui.E5Application import e5App @@ -31,6 +33,23 @@ pyqtApi = 2 # End-of-Header +error = "" + + +def apiFiles(language): + """ + Module function to return the API files made available by this plugin. + + @return list of API filenames (list of string) + """ + if language in ["Python2"]: + apisDir = \ + os.path.join(os.path.dirname(__file__), "ProjectKivy", "APIs") + apis = glob.glob(os.path.join(apisDir, '*.api')) + else: + apis = [] + return apis + class ProjectKivyPlugin(QObject): """ @@ -59,6 +78,9 @@ QObject.__init__(self, ui) self.__ui = ui self.__initialize() + + self.__translator = None + self.__loadTranslator() def __initialize(self): """ @@ -72,9 +94,16 @@ @return tuple of None and activation status (boolean) """ - self.__e5project.registerProjectType("Kivy", self.trUtf8("Kivy"), - self.fileTypesCallback, - lexerAssociationCallback=self.lexerAssociationCallback) + try: + self.__e5project.registerProjectType("Kivy", self.trUtf8("Kivy"), + self.fileTypesCallback, + lexerAssociationCallback=self.lexerAssociationCallback, + progLanguages=["Python2"]) + except TypeError: + # for backward compatibility + self.__e5project.registerProjectType("Kivy", self.trUtf8("Kivy"), + self.fileTypesCallback, + lexerAssociationCallback=self.lexerAssociationCallback) from Project.ProjectBrowser import SourcesBrowserFlag, FormsBrowserFlag, \ TranslationsBrowserFlag, OthersBrowserFlag @@ -87,15 +116,27 @@ LEXERS[self.KivyLexerKey] = self.KivyLexerEntry import QScintilla.Lexers - QScintilla.Lexers.registerLexer( - "Kivy", - self.trUtf8("Kivy"), - "dummy.kv", - self.getLexer, - [self.trUtf8('Kivy Files (*.kv)')], - [self.trUtf8('Kivy Files (*.kv)')], - ['*.kv', '*.kivy'] - ) + if self.__ui.versionIsNewer('5.3.5', '20130611'): + QScintilla.Lexers.registerLexer( + "Kivy", + self.trUtf8("Kivy"), + "dummy.kv", + self.getLexer, + [self.trUtf8('Kivy Files (*.kv *.kivy)')], + [self.trUtf8('Kivy Files (*.kv)')], + ['*.kv', '*.kivy'] + ) + else: + # work around a bug in older versions + QScintilla.Lexers.registerLexer( + "Kivy", + self.trUtf8("Kivy"), + "dummy.kv", + self.getLexer, + self.trUtf8('Kivy Files (*.kv *.kivy)'), + self.trUtf8('Kivy Files (*.kv)'), + ['*.kv', '*.kivy'] + ) return None, True @@ -112,6 +153,26 @@ self.__initialize() + def __loadTranslator(self): + """ + Private method to load the translation file. + """ + if self.__ui is not None: + loc = self.__ui.getLocale() + if loc and loc != "C": + locale_dir = \ + os.path.join(os.path.dirname(__file__), "ProjectKivy", "i18n") + translation = "django_%s" % loc + translator = QTranslator(None) + loaded = translator.load(translation, locale_dir) + if loaded: + self.__translator = translator + e5App().installTranslator(self.__translator) + else: + print("Warning: translation file '{0}' could not be loaded.".format( + translation)) + print("Using default.") + def fileTypesCallback(self): """ Public method get the filetype associations of the Kivy project type.
diff -r 373da5610be1 -r b7e3e3b131ea PluginProjectKivy.zip Binary file PluginProjectKivy.zip has changed
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/APIs/kivy.api --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/APIs/kivy.api Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,3394 @@ +kivy.adapters.adapter.Adapter.args_converter?7 +kivy.adapters.adapter.Adapter.bind_triggers_to_view?4(func) +kivy.adapters.adapter.Adapter.cls?7 +kivy.adapters.adapter.Adapter.data?7 +kivy.adapters.adapter.Adapter.get_data_item?4() +kivy.adapters.adapter.Adapter.get_view?4(index) +kivy.adapters.adapter.Adapter.template?7 +kivy.adapters.adapter.Adapter?1(**kwargs) +kivy.adapters.args_converters.list_item_args_converter?7 +kivy.adapters.dictadapter.DictAdapter.bind_triggers_to_view?4(func) +kivy.adapters.dictadapter.DictAdapter.cut_to_sel?4(*args) +kivy.adapters.dictadapter.DictAdapter.data?7 +kivy.adapters.dictadapter.DictAdapter.get_count?4() +kivy.adapters.dictadapter.DictAdapter.get_data_item?4(index) +kivy.adapters.dictadapter.DictAdapter.initialize_sorted_keys?4(*args) +kivy.adapters.dictadapter.DictAdapter.sorted_keys?7 +kivy.adapters.dictadapter.DictAdapter.trim_left_of_sel?4(*args) +kivy.adapters.dictadapter.DictAdapter.trim_right_of_sel?4(*args) +kivy.adapters.dictadapter.DictAdapter.trim_to_sel?4(*args) +kivy.adapters.dictadapter.DictAdapter.update_for_new_data?4(*args) +kivy.adapters.dictadapter.DictAdapter?1(**kwargs) +kivy.adapters.listadapter.ListAdapter.allow_empty_selection?7 +kivy.adapters.listadapter.ListAdapter.cached_views?7 +kivy.adapters.listadapter.ListAdapter.check_for_empty_selection?4(*args) +kivy.adapters.listadapter.ListAdapter.create_view?4(index) +kivy.adapters.listadapter.ListAdapter.cut_to_sel?4(*args) +kivy.adapters.listadapter.ListAdapter.data?7 +kivy.adapters.listadapter.ListAdapter.delete_cache?4(*args) +kivy.adapters.listadapter.ListAdapter.deselect_data_item?4(item) +kivy.adapters.listadapter.ListAdapter.deselect_item_view?4(view) +kivy.adapters.listadapter.ListAdapter.deselect_list?4(l) +kivy.adapters.listadapter.ListAdapter.get_count?4() +kivy.adapters.listadapter.ListAdapter.get_data_item?4(index) +kivy.adapters.listadapter.ListAdapter.get_view?4(index) +kivy.adapters.listadapter.ListAdapter.handle_selection?4(view, hold_dispatch=False, *args) +kivy.adapters.listadapter.ListAdapter.initialize_selection?4(*args) +kivy.adapters.listadapter.ListAdapter.on_selection_change?4(*args) +kivy.adapters.listadapter.ListAdapter.options?7 +kivy.adapters.listadapter.ListAdapter.propagate_selection_to_data?7 +kivy.adapters.listadapter.ListAdapter.select_data_item?4(item) +kivy.adapters.listadapter.ListAdapter.select_item_view?4(view) +kivy.adapters.listadapter.ListAdapter.select_list?4(view_list, extend=True) +kivy.adapters.listadapter.ListAdapter.selection?7 +kivy.adapters.listadapter.ListAdapter.selection_limit?7 +kivy.adapters.listadapter.ListAdapter.selection_mode?7 +kivy.adapters.listadapter.ListAdapter.selection_mode_changed?4(*args) +kivy.adapters.listadapter.ListAdapter.set_data_item_selection?4(item, value) +kivy.adapters.listadapter.ListAdapter.trim_left_of_sel?4(*args) +kivy.adapters.listadapter.ListAdapter.trim_right_of_sel?4(*args) +kivy.adapters.listadapter.ListAdapter.trim_to_sel?4(*args) +kivy.adapters.listadapter.ListAdapter.update_for_new_data?4(*args) +kivy.adapters.listadapter.ListAdapter?1(**kwargs) +kivy.adapters.models.SelectableDataItem.is_selected?4(value) +kivy.adapters.models.SelectableDataItem?1(**kwargs) +kivy.adapters.simplelistadapter.SimpleListAdapter.data?7 +kivy.adapters.simplelistadapter.SimpleListAdapter.get_count?4() +kivy.adapters.simplelistadapter.SimpleListAdapter.get_data_item?4(index) +kivy.adapters.simplelistadapter.SimpleListAdapter.get_view?4(index) +kivy.adapters.simplelistadapter.SimpleListAdapter?1(**kwargs) +kivy.animation.Animation._calculate?5(a, b, t) +kivy.animation.Animation._clock_install?5() +kivy.animation.Animation._clock_uninstall?5() +kivy.animation.Animation._initialize?5(widget) +kivy.animation.Animation._instances?8 +kivy.animation.Animation._register?5() +kivy.animation.Animation._unregister?5() +kivy.animation.Animation._update?5(dt) +kivy.animation.Animation.animated_properties?4() +kivy.animation.Animation.cancel?4(widget) +kivy.animation.Animation.cancel_all?4(*largs) +kivy.animation.Animation.cancel_property?4(widget, prop) +kivy.animation.Animation.duration?4() +kivy.animation.Animation.on_complete?4(widget) +kivy.animation.Animation.on_progress?4(widget, progress) +kivy.animation.Animation.on_start?4(widget) +kivy.animation.Animation.start?4(widget) +kivy.animation.Animation.stop?4(widget) +kivy.animation.Animation.stop_all?4(*largs) +kivy.animation.Animation.stop_property?4(widget, prop) +kivy.animation.Animation.transition?4() +kivy.animation.Animation?1(**kw) +kivy.animation.AnimationTransition._in_bounce_internal?5(d) +kivy.animation.AnimationTransition._out_bounce_internal?5(d) +kivy.animation.AnimationTransition.in_back?4() +kivy.animation.AnimationTransition.in_bounce?4() +kivy.animation.AnimationTransition.in_circ?4() +kivy.animation.AnimationTransition.in_cubic?4() +kivy.animation.AnimationTransition.in_elastic?4() +kivy.animation.AnimationTransition.in_expo?4() +kivy.animation.AnimationTransition.in_out_back?4() +kivy.animation.AnimationTransition.in_out_bounce?4() +kivy.animation.AnimationTransition.in_out_circ?4() +kivy.animation.AnimationTransition.in_out_cubic?4() +kivy.animation.AnimationTransition.in_out_elastic?4() +kivy.animation.AnimationTransition.in_out_expo?4() +kivy.animation.AnimationTransition.in_out_quad?4() +kivy.animation.AnimationTransition.in_out_quart?4() +kivy.animation.AnimationTransition.in_out_quint?4() +kivy.animation.AnimationTransition.in_out_sine?4() +kivy.animation.AnimationTransition.in_quad?4() +kivy.animation.AnimationTransition.in_quart?4() +kivy.animation.AnimationTransition.in_quint?4() +kivy.animation.AnimationTransition.in_sine?4() +kivy.animation.AnimationTransition.linear?4() +kivy.animation.AnimationTransition.out_back?4() +kivy.animation.AnimationTransition.out_bounce?4() +kivy.animation.AnimationTransition.out_circ?4() +kivy.animation.AnimationTransition.out_cubic?4() +kivy.animation.AnimationTransition.out_elastic?4() +kivy.animation.AnimationTransition.out_expo?4() +kivy.animation.AnimationTransition.out_quad?4() +kivy.animation.AnimationTransition.out_quart?4() +kivy.animation.AnimationTransition.out_quint?4() +kivy.animation.AnimationTransition.out_sine?4() +kivy.animation.Parallel.duration?4() +kivy.animation.Parallel.on_anim_complete?4(instance, widget) +kivy.animation.Parallel.start?4(widget) +kivy.animation.Parallel.stop?4(widget) +kivy.animation.Parallel?1(anim1, anim2) +kivy.animation.Sequence.duration?4() +kivy.animation.Sequence.on_anim1_complete?4(instance, widget) +kivy.animation.Sequence.on_anim1_progress?4(instance, widget, progress) +kivy.animation.Sequence.on_anim1_start?4(instance, widget) +kivy.animation.Sequence.on_anim2_complete?4(instance, widget) +kivy.animation.Sequence.on_anim2_progress?4(instance, widget, progress) +kivy.animation.Sequence.start?4(widget) +kivy.animation.Sequence.stop?4(widget) +kivy.animation.Sequence?1(anim1, anim2) +kivy.app.App._create_settings?5() +kivy.app.App._install_settings_keys?5(window) +kivy.app.App._on_config_change?5(*largs) +kivy.app.App._on_keyboard_settings?5(window, *largs) +kivy.app.App._running_app?8 +kivy.app.App.build?4() +kivy.app.App.build_config?4(config) +kivy.app.App.build_settings?4(settings) +kivy.app.App.close_settings?4(*largs) +kivy.app.App.directory?4() +kivy.app.App.get_application_config?4(defaultpath='%(appdir)s/%(appname)s.ini') +kivy.app.App.get_application_icon?4() +kivy.app.App.get_application_name?4() +kivy.app.App.get_running_app?4() +kivy.app.App.icon?7 +kivy.app.App.load_config?4() +kivy.app.App.load_kv?4(filename=None) +kivy.app.App.name?4() +kivy.app.App.on_config_change?4(config, section, key, value) +kivy.app.App.on_pause?4() +kivy.app.App.on_resume?4() +kivy.app.App.on_start?4() +kivy.app.App.on_stop?4() +kivy.app.App.open_settings?4(*largs) +kivy.app.App.run?4() +kivy.app.App.stop?4(*largs) +kivy.app.App.title?7 +kivy.app.App.use_kivy_settings?7 +kivy.app.App.user_data_dir?4() +kivy.app.App?1(**kwargs) +kivy.app.platform?7 +kivy.atlas.Atlas._get_filename?5() +kivy.atlas.Atlas._load?5() +kivy.atlas.Atlas.argv?7 +kivy.atlas.Atlas.create?4(filenames, size, padding=2) +kivy.atlas.Atlas.filename?7 +kivy.atlas.Atlas.filenames?7 +kivy.atlas.Atlas.outname?7 +kivy.atlas.Atlas.ret?7 +kivy.atlas.Atlas.textures?7 +kivy.atlas.Atlas?1(filename) +kivy.atlas.CoreImage?7 +kivy.base.EventLoop?7 +kivy.base.EventLoopBase._dispatch_input?5(*ev) +kivy.base.EventLoopBase.add_event_listener?4(listener) +kivy.base.EventLoopBase.add_input_provider?4(provider, auto_remove=False) +kivy.base.EventLoopBase.add_postproc_module?4(mod) +kivy.base.EventLoopBase.close?4() +kivy.base.EventLoopBase.dispatch_input?4() +kivy.base.EventLoopBase.ensure_window?4() +kivy.base.EventLoopBase.exit?4() +kivy.base.EventLoopBase.idle?4() +kivy.base.EventLoopBase.on_pause?4() +kivy.base.EventLoopBase.on_start?4() +kivy.base.EventLoopBase.on_stop?4() +kivy.base.EventLoopBase.post_dispatch_input?4(etype, me) +kivy.base.EventLoopBase.remove_event_listener?4(listener) +kivy.base.EventLoopBase.remove_input_provider?4(provider) +kivy.base.EventLoopBase.remove_postproc_module?4(mod) +kivy.base.EventLoopBase.run?4() +kivy.base.EventLoopBase.set_window?4(window) +kivy.base.EventLoopBase.start?4() +kivy.base.EventLoopBase.stop?4() +kivy.base.EventLoopBase.touches?4() +kivy.base.EventLoopBase?1() +kivy.base.ExceptionHandler.handle_exception?4(exception) +kivy.base.ExceptionHandler?1() +kivy.base.ExceptionManager?7 +kivy.base.ExceptionManagerBase.PASS?7 +kivy.base.ExceptionManagerBase.RAISE?7 +kivy.base.ExceptionManagerBase.add_handler?4(cls) +kivy.base.ExceptionManagerBase.handle_exception?4(inst) +kivy.base.ExceptionManagerBase.remove_handler?4(cls) +kivy.base.ExceptionManagerBase?1() +kivy.base._run_mainloop?5() +kivy.base.runTouchApp?4(widget=None, slave=False) +kivy.base.stopTouchApp?4() +kivy.cache.Cache._categories?8 +kivy.cache.Cache._objects?8 +kivy.cache.Cache._purge_by_timeout?5() +kivy.cache.Cache._purge_oldest?5(maxpurge=1) +kivy.cache.Cache.append?4(key, obj, timeout=None) +kivy.cache.Cache.get?4(key, default=None) +kivy.cache.Cache.get_lastaccess?4(key, default=None) +kivy.cache.Cache.get_timestamp?4(key, default=None) +kivy.cache.Cache.print_usage?4() +kivy.cache.Cache.register?4(limit=None, timeout=None) +kivy.cache.Cache.remove?4(key=None) +kivy.clock.ClockBase.Clock?7 +kivy.clock.ClockBase.MIN_SLEEP?7 +kivy.clock.ClockBase.SLEEP_UNDERSHOOT?7 +kivy.clock.ClockBase._process_events?5() +kivy.clock.ClockBase._process_events_before_frame?5() +kivy.clock.ClockBase._release_references?5() +kivy.clock.ClockBase._remove_empty?5() +kivy.clock.ClockBase.create_trigger?4(callback, timeout=0) +kivy.clock.ClockBase.frametime?4() +kivy.clock.ClockBase.get_boottime?4() +kivy.clock.ClockBase.get_fps?4() +kivy.clock.ClockBase.get_rfps?4() +kivy.clock.ClockBase.get_time?4() +kivy.clock.ClockBase.schedule_interval?4(callback, timeout) +kivy.clock.ClockBase.schedule_once?4(callback, timeout=0) +kivy.clock.ClockBase.tick?4() +kivy.clock.ClockBase.tick_draw?4() +kivy.clock.ClockBase.unschedule?4(callback) +kivy.clock.ClockBase?1() +kivy.clock.ClockEvent.do?4(dt) +kivy.clock.ClockEvent.get_callback?4() +kivy.clock.ClockEvent.is_triggered?4() +kivy.clock.ClockEvent.release?4() +kivy.clock.ClockEvent.tick?4(curtime) +kivy.clock.ClockEvent?1(clock, loop, callback, timeout, starttime, cid) +kivy.clock._ClockBase._libc?8 +kivy.clock._ClockBase.usleep?4(microseconds) +kivy.clock._ClockBase?2() +kivy.clock._ClockBase_1.usleep?4(microseconds) +kivy.clock._ClockBase_2.usleep?4(microseconds) +kivy.clock._hash?5(cb) +kivy.compat.PY2?7 +kivy.compat.string_types?7 +kivy.config.Config?7 +kivy.config.ConfigParser.Config?7 +kivy.config.ConfigParser._do_callbacks?5(section, key, value) +kivy.config.ConfigParser.add_callback?4(callback, section=None, key=None) +kivy.config.ConfigParser.adddefaultsection?4(section) +kivy.config.ConfigParser.get?4(section, option, **kwargs) +kivy.config.ConfigParser.getdefault?4(section, option, defaultvalue) +kivy.config.ConfigParser.getdefaultint?4(section, option, defaultvalue) +kivy.config.ConfigParser.need_save?7 +kivy.config.ConfigParser.read?4(filename) +kivy.config.ConfigParser.set?4(section, option, value) +kivy.config.ConfigParser.setdefault?4(section, option, value) +kivy.config.ConfigParser.setdefaults?4(section, keyvalues) +kivy.config.ConfigParser.version?7 +kivy.config.ConfigParser.write?4() +kivy.config.ConfigParser?1() +kivy.config.KIVY_CONFIG_VERSION?7 +kivy.config._is_rpi?8 +kivy.core.audio.Sound._get_filename?5() +kivy.core.audio.Sound._get_length?5() +kivy.core.audio.Sound._get_status?5() +kivy.core.audio.Sound.filename?7 +kivy.core.audio.Sound.get_pos?4() +kivy.core.audio.Sound.length?7 +kivy.core.audio.Sound.load?4() +kivy.core.audio.Sound.loop?7 +kivy.core.audio.Sound.on_play?4() +kivy.core.audio.Sound.on_source?4(instance, filename) +kivy.core.audio.Sound.on_stop?4() +kivy.core.audio.Sound.play?4() +kivy.core.audio.Sound.seek?4(position) +kivy.core.audio.Sound.source?7 +kivy.core.audio.Sound.state?7 +kivy.core.audio.Sound.status?7 +kivy.core.audio.Sound.stop?4() +kivy.core.audio.Sound.unload?4() +kivy.core.audio.Sound.volume?7 +kivy.core.audio.SoundLoader._classes?8 +kivy.core.audio.SoundLoader.load?4() +kivy.core.audio.SoundLoader.register?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer._get_length?5() +kivy.core.audio.audio_gstreamer.SoundGstreamer._get_volume?5() +kivy.core.audio.audio_gstreamer.SoundGstreamer._on_gst_message?5(bus, message) +kivy.core.audio.audio_gstreamer.SoundGstreamer._set_volume?5(volume) +kivy.core.audio.audio_gstreamer.SoundGstreamer.extensions?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer.get_pos?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer.load?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer.play?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer.seek?4(position) +kivy.core.audio.audio_gstreamer.SoundGstreamer.stop?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer.unload?4() +kivy.core.audio.audio_gstreamer.SoundGstreamer?1(**kwargs) +kivy.core.audio.audio_libs?7 +kivy.core.audio.audio_pygame.SoundPygame._check_play?5(dt) +kivy.core.audio.audio_pygame.SoundPygame._get_length?5() +kivy.core.audio.audio_pygame.SoundPygame._get_volume?5() +kivy.core.audio.audio_pygame.SoundPygame._set_volume?5(volume) +kivy.core.audio.audio_pygame.SoundPygame.do_loop?4() +kivy.core.audio.audio_pygame.SoundPygame.extensions?4() +kivy.core.audio.audio_pygame.SoundPygame.get_pos?4() +kivy.core.audio.audio_pygame.SoundPygame.load?4() +kivy.core.audio.audio_pygame.SoundPygame.play?4() +kivy.core.audio.audio_pygame.SoundPygame.seek?4(position) +kivy.core.audio.audio_pygame.SoundPygame.stop?4() +kivy.core.audio.audio_pygame.SoundPygame.unload?4() +kivy.core.audio.audio_pygame.SoundPygame?1(**kwargs) +kivy.core.audio.audio_pygame._platform?8 +kivy.core.camera.Camera?7 +kivy.core.camera.CameraBase._copy_to_gpu?5() +kivy.core.camera.CameraBase._get_index?5() +kivy.core.camera.CameraBase._get_resolution?5() +kivy.core.camera.CameraBase._get_texture?5() +kivy.core.camera.CameraBase._set_index?5(x) +kivy.core.camera.CameraBase._set_resolution?5(res) +kivy.core.camera.CameraBase._update?5(dt) +kivy.core.camera.CameraBase.index?7 +kivy.core.camera.CameraBase.init_camera?4() +kivy.core.camera.CameraBase.on_load?4() +kivy.core.camera.CameraBase.on_texture?4() +kivy.core.camera.CameraBase.resolution?7 +kivy.core.camera.CameraBase.start?4() +kivy.core.camera.CameraBase.stop?4() +kivy.core.camera.CameraBase.texture?7 +kivy.core.camera.CameraBase?1(**kwargs) +kivy.core.camera.camera_gstreamer.CameraGStreamer._gst_new_buffer?5(*largs) +kivy.core.camera.camera_gstreamer.CameraGStreamer._update?5(dt) +kivy.core.camera.camera_gstreamer.CameraGStreamer.init_camera?4() +kivy.core.camera.camera_gstreamer.CameraGStreamer.start?4() +kivy.core.camera.camera_gstreamer.CameraGStreamer.stop?4() +kivy.core.camera.camera_gstreamer.CameraGStreamer?1(**kwargs) +kivy.core.camera.camera_opencv.CameraOpenCV._update?5(dt) +kivy.core.camera.camera_opencv.CameraOpenCV.init_camera?4() +kivy.core.camera.camera_opencv.CameraOpenCV.start?4() +kivy.core.camera.camera_opencv.CameraOpenCV.stop?4() +kivy.core.camera.camera_opencv.CameraOpenCV?1(**kwargs) +kivy.core.camera.camera_videocapture.CameraVideoCapture._update?5(dt) +kivy.core.camera.camera_videocapture.CameraVideoCapture.init_camera?4() +kivy.core.camera.camera_videocapture.CameraVideoCapture.start?4() +kivy.core.camera.camera_videocapture.CameraVideoCapture.stop?4() +kivy.core.camera.camera_videocapture.CameraVideoCapture?1(**kwargs) +kivy.core.camera.providers?7 +kivy.core.clipboard.Clipboard?7 +kivy.core.clipboard.ClipboardBase.get?4(mimetype) +kivy.core.clipboard.ClipboardBase.get_types?4() +kivy.core.clipboard.ClipboardBase.put?4(data, mimetype) +kivy.core.clipboard.clipboard_dummy.ClipboardDummy.get?4(mimetype='text/plain') +kivy.core.clipboard.clipboard_dummy.ClipboardDummy.get_types?4() +kivy.core.clipboard.clipboard_dummy.ClipboardDummy.put?4(data, mimetype='text/plain') +kivy.core.clipboard.clipboard_dummy.ClipboardDummy?1() +kivy.core.clipboard.clipboard_pygame.ClipboardPygame._is_init?8 +kivy.core.clipboard.clipboard_pygame.ClipboardPygame.get?4(mimetype='text/plain') +kivy.core.clipboard.clipboard_pygame.ClipboardPygame.get_types?4() +kivy.core.clipboard.clipboard_pygame.ClipboardPygame.init?4() +kivy.core.clipboard.clipboard_pygame.ClipboardPygame.put?4(data, mimetype='text/plain') +kivy.core.core_register_libs?4(category, libs) +kivy.core.core_select_lib?4(category, llist, create_instance=False) +kivy.core.gl.MIN_REQUIRED_GL_VERSION?7 +kivy.core.gl.init_gl?4() +kivy.core.gl.msgbox?4(message) +kivy.core.gl.print_gl_version?4() +kivy.core.image.Image._anim?5(*largs) +kivy.core.image.Image._get_anim_delay?5() +kivy.core.image.Image._get_filename?5() +kivy.core.image.Image._get_image?5() +kivy.core.image.Image._img_iterate?5(*largs) +kivy.core.image.Image._set_anim_delay?5(x) +kivy.core.image.Image._set_filename?5(value) +kivy.core.image.Image._set_image?5(image) +kivy.core.image.Image.anim_available?4() +kivy.core.image.Image.anim_delay?7 +kivy.core.image.Image.anim_index?4() +kivy.core.image.Image.anim_reset?4(allow_anim) +kivy.core.image.Image.copy_attributes?7 +kivy.core.image.Image.filename?7 +kivy.core.image.Image.height?4() +kivy.core.image.Image.image?7 +kivy.core.image.Image.load?4(**kwargs) +kivy.core.image.Image.nocache?4() +kivy.core.image.Image.on_texture?4(*largs) +kivy.core.image.Image.read_pixel?4(x, y) +kivy.core.image.Image.remove_from_cache?4() +kivy.core.image.Image.save?4(filename) +kivy.core.image.Image.size?4() +kivy.core.image.Image.texture?4() +kivy.core.image.Image.width?4() +kivy.core.image.Image?1(arg, **kwargs) +kivy.core.image.ImageData._supported_fmts?8 +kivy.core.image.ImageData.add_mipmap?4(level, width, height, data) +kivy.core.image.ImageData.data?4() +kivy.core.image.ImageData.get_mipmap?4(level) +kivy.core.image.ImageData.have_mipmap?4() +kivy.core.image.ImageData.height?4() +kivy.core.image.ImageData.iterate_mipmaps?4() +kivy.core.image.ImageData.release_data?4() +kivy.core.image.ImageData.size?4() +kivy.core.image.ImageData.width?4() +kivy.core.image.ImageData?1(width, height, fmt, data, source=None, flip_vertical=True) +kivy.core.image.ImageLoader.load?4(**kwargs) +kivy.core.image.ImageLoader.loaders?7 +kivy.core.image.ImageLoader.register?4() +kivy.core.image.ImageLoader.zip_loader?4(**kwargs) +kivy.core.image.ImageLoaderBase.can_save?4() +kivy.core.image.ImageLoaderBase.height?4() +kivy.core.image.ImageLoaderBase.load?4(filename) +kivy.core.image.ImageLoaderBase.nocache?4() +kivy.core.image.ImageLoaderBase.populate?4() +kivy.core.image.ImageLoaderBase.save?4() +kivy.core.image.ImageLoaderBase.size?4() +kivy.core.image.ImageLoaderBase.texture?4() +kivy.core.image.ImageLoaderBase.textures?4() +kivy.core.image.ImageLoaderBase.width?4() +kivy.core.image.ImageLoaderBase?1(filename, **kwargs) +kivy.core.image.Texture?7 +kivy.core.image.image_libs?7 +kivy.core.image.img_dds.ImageLoaderDDS.extensions?4() +kivy.core.image.img_dds.ImageLoaderDDS.load?4(filename) +kivy.core.image.img_gif.Debug?7 +kivy.core.image.img_gif.Gif.EXTENSION_INTRODUCER?7 +kivy.core.image.img_gif.Gif.FMT_EXT_GRAPHIC_CONTROL?7 +kivy.core.image.img_gif.Gif.FMT_HEADER?7 +kivy.core.image.img_gif.Gif.FMT_IMGDESC?7 +kivy.core.image.img_gif.Gif.GIF_TRAILER?7 +kivy.core.image.img_gif.Gif.IMAGE_SEPARATOR?7 +kivy.core.image.img_gif.Gif.LABEL_COMMENT?7 +kivy.core.image.img_gif.Gif.LABEL_GRAPHIC_CONTROL?7 +kivy.core.image.img_gif.Gif.LABEL_PLAINTEXT?7 +kivy.core.image.img_gif.Gif.new_image?4(header=None) +kivy.core.image.img_gif.Gif.pop?4(data, length=1) +kivy.core.image.img_gif.Gif.pops?4(format, data) +kivy.core.image.img_gif.Gif.print_info?4() +kivy.core.image.img_gif.Gif?1(data, debug) +kivy.core.image.img_gif.GifDecoder.bits_to_int?4(bits) +kivy.core.image.img_gif.GifDecoder.clear?4() +kivy.core.image.img_gif.GifDecoder.fill?4() +kivy.core.image.img_gif.GifDecoder.get_color_table?4(size) +kivy.core.image.img_gif.GifDecoder.lzw_decode?4(input, initial_codesize, color_table_size) +kivy.core.image.img_gif.GifDecoder.pop?4(_bits) +kivy.core.image.img_gif.GifDecoder.readable?4() +kivy.core.image.img_gif.GifDecoder.string_to_bits?4(string) +kivy.core.image.img_gif.GifDecoder?1(data, debug=False) +kivy.core.image.img_gif.ImageDescriptor.get_header?4() +kivy.core.image.img_gif.ImageDescriptor.header?7 +kivy.core.image.img_gif.ImageDescriptor.setup_header?4(header) +kivy.core.image.img_gif.ImageDescriptor?1(parent, header=None) +kivy.core.image.img_gif.ImageLoaderGIF.extensions?4() +kivy.core.image.img_gif.ImageLoaderGIF.load?4(filename) +kivy.core.image.img_gif.KNOWN_FORMATS?7 +kivy.core.image.img_gif.get_bits?4(flags, reverse=False, bits=8) +kivy.core.image.img_gif.pack_bits?4(bits) +kivy.core.image.img_pil.ImageLoaderPIL._img_correct?5(_img_tmp) +kivy.core.image.img_pil.ImageLoaderPIL._img_read?5(im) +kivy.core.image.img_pil.ImageLoaderPIL.can_save?4() +kivy.core.image.img_pil.ImageLoaderPIL.extensions?4() +kivy.core.image.img_pil.ImageLoaderPIL.load?4(filename) +kivy.core.image.img_pil.ImageLoaderPIL.save?4(width, height, fmt, pixels) +kivy.core.image.img_pygame.ImageLoaderPygame.can_save?4() +kivy.core.image.img_pygame.ImageLoaderPygame.extensions?4() +kivy.core.image.img_pygame.ImageLoaderPygame.load?4(filename) +kivy.core.image.img_pygame.ImageLoaderPygame.save?4(width, height, fmt, pixels) +kivy.core.image.img_tex.ImageLoaderTex.extensions?4() +kivy.core.image.img_tex.ImageLoaderTex.load?4(filename) +kivy.core.image.load?4(filename) +kivy.core.spelling.Spelling?7 +kivy.core.spelling.SpellingBase.check?4(word) +kivy.core.spelling.SpellingBase.list_languages?4() +kivy.core.spelling.SpellingBase.select_language?4(language) +kivy.core.spelling.SpellingBase.suggest?4(fragment) +kivy.core.spelling.SpellingBase?1(language=None) +kivy.core.spelling._libs?8 +kivy.core.spelling.spelling_enchant.SpellingEnchant.check?4(word) +kivy.core.spelling.spelling_enchant.SpellingEnchant.list_languages?4() +kivy.core.spelling.spelling_enchant.SpellingEnchant.select_language?4(language) +kivy.core.spelling.spelling_enchant.SpellingEnchant.suggest?4(fragment) +kivy.core.spelling.spelling_enchant.SpellingEnchant?1(language=None) +kivy.core.spelling.spelling_osxappkit.SpellingOSXAppKit.check?4(word) +kivy.core.spelling.spelling_osxappkit.SpellingOSXAppKit.list_languages?4() +kivy.core.spelling.spelling_osxappkit.SpellingOSXAppKit.select_language?4(language) +kivy.core.spelling.spelling_osxappkit.SpellingOSXAppKit.suggest?4(fragment) +kivy.core.spelling.spelling_osxappkit.SpellingOSXAppKit?1(language=None) +kivy.core.text.DEFAULT_FONT?7 +kivy.core.text.FONT_BOLD?7 +kivy.core.text.FONT_BOLDITALIC?7 +kivy.core.text.FONT_ITALIC?7 +kivy.core.text.FONT_REGULAR?7 +kivy.core.text.Label?7 +kivy.core.text.LabelBase._cache_glyphs?8 +kivy.core.text.LabelBase._fonts?8 +kivy.core.text.LabelBase._fonts_cache?8 +kivy.core.text.LabelBase._get_text?5() +kivy.core.text.LabelBase._get_text_size?5() +kivy.core.text.LabelBase._render_begin?5() +kivy.core.text.LabelBase._render_end?5() +kivy.core.text.LabelBase._render_text?5(text, x, y) +kivy.core.text.LabelBase._set_text?5(text) +kivy.core.text.LabelBase._set_text_size?5(x) +kivy.core.text.LabelBase._texture_1px?8 +kivy.core.text.LabelBase._texture_fill?5(texture) +kivy.core.text.LabelBase._texture_refresh?5(*l) +kivy.core.text.LabelBase.content_height?4() +kivy.core.text.LabelBase.content_size?4() +kivy.core.text.LabelBase.content_width?4() +kivy.core.text.LabelBase.fontid?4() +kivy.core.text.LabelBase.get_extents?4(text) +kivy.core.text.LabelBase.height?4() +kivy.core.text.LabelBase.label?7 +kivy.core.text.LabelBase.refresh?4() +kivy.core.text.LabelBase.register?4(fn_regular, fn_italic=None, fn_bold=None, fn_bolditalic=None) +kivy.core.text.LabelBase.render?4(real=False) +kivy.core.text.LabelBase.resolve_font_name?4() +kivy.core.text.LabelBase.shorten?4(text, margin=2) +kivy.core.text.LabelBase.size?4() +kivy.core.text.LabelBase.text?7 +kivy.core.text.LabelBase.text_size?7 +kivy.core.text.LabelBase.texture_1px?4() +kivy.core.text.LabelBase.usersize?7 +kivy.core.text.LabelBase.width?4() +kivy.core.text.LabelBase?1(text='', font_size=12, font_name=DEFAULT_FONT, bold=False, italic=False, halign='left', valign='bottom', shorten=False, text_size=None, mipmap=False, color=None, line_height=1.0, **kwargs) +kivy.core.text.markup.MarkupLabel._pop_style?5(k) +kivy.core.text.markup.MarkupLabel._pre_render?5() +kivy.core.text.markup.MarkupLabel._pre_render_label?5(word, options, lines) +kivy.core.text.markup.MarkupLabel._push_style?5(k) +kivy.core.text.markup.MarkupLabel._real_render?5() +kivy.core.text.markup.MarkupLabel.anchors?4() +kivy.core.text.markup.MarkupLabel.markup?4() +kivy.core.text.markup.MarkupLabel.refs?4() +kivy.core.text.markup.MarkupLabel.render?4(real=False) +kivy.core.text.markup.MarkupLabel?1(*largs, **kwargs) +kivy.core.text.markup.MarkupLabelBase?7 +kivy.core.text.text_pil.LabelPIL._cache?8 +kivy.core.text.text_pil.LabelPIL._render_begin?5() +kivy.core.text.text_pil.LabelPIL._render_end?5() +kivy.core.text.text_pil.LabelPIL._render_text?5(text, x, y) +kivy.core.text.text_pil.LabelPIL._select_font?5() +kivy.core.text.text_pil.LabelPIL.get_extents?4(text) +kivy.core.text.text_pil.default_font?7 +kivy.core.text.text_pygame.LabelPygame._get_font?5() +kivy.core.text.text_pygame.LabelPygame._get_font_id?5() +kivy.core.text.text_pygame.LabelPygame._render_begin?5() +kivy.core.text.text_pygame.LabelPygame._render_end?5() +kivy.core.text.text_pygame.LabelPygame._render_text?5(text, x, y) +kivy.core.text.text_pygame.LabelPygame.get_ascent?4() +kivy.core.text.text_pygame.LabelPygame.get_descent?4() +kivy.core.text.text_pygame.LabelPygame.get_extents?4(text) +kivy.core.text.text_pygame.pygame_cache?7 +kivy.core.text.text_pygame.pygame_cache_order?7 +kivy.core.video.Video?7 +kivy.core.video.VideoBase._do_eos?5() +kivy.core.video.VideoBase._get_duration?5() +kivy.core.video.VideoBase._get_filename?5() +kivy.core.video.VideoBase._get_position?5() +kivy.core.video.VideoBase._get_state?5() +kivy.core.video.VideoBase._get_texture?5() +kivy.core.video.VideoBase._get_volume?5() +kivy.core.video.VideoBase._set_filename?5(filename) +kivy.core.video.VideoBase._set_position?5(pos) +kivy.core.video.VideoBase._set_volume?5(volume) +kivy.core.video.VideoBase._update?5(dt) +kivy.core.video.VideoBase.duration?7 +kivy.core.video.VideoBase.filename?7 +kivy.core.video.VideoBase.load?4() +kivy.core.video.VideoBase.on_eos?4() +kivy.core.video.VideoBase.on_frame?4() +kivy.core.video.VideoBase.on_load?4() +kivy.core.video.VideoBase.pause?4() +kivy.core.video.VideoBase.play?4() +kivy.core.video.VideoBase.position?7 +kivy.core.video.VideoBase.seek?4(percent) +kivy.core.video.VideoBase.state?7 +kivy.core.video.VideoBase.stop?4() +kivy.core.video.VideoBase.texture?7 +kivy.core.video.VideoBase.unload?4() +kivy.core.video.VideoBase.volume?7 +kivy.core.video.VideoBase?1(**kwargs) +kivy.core.video.video_ffmpeg.VideoFFMpeg._do_eos?5() +kivy.core.video.video_ffmpeg.VideoFFMpeg._get_duration?5() +kivy.core.video.video_ffmpeg.VideoFFMpeg._get_position?5() +kivy.core.video.video_ffmpeg.VideoFFMpeg._get_volume?5() +kivy.core.video.video_ffmpeg.VideoFFMpeg._set_volume?5(volume) +kivy.core.video.video_ffmpeg.VideoFFMpeg._update?5(dt) +kivy.core.video.video_ffmpeg.VideoFFMpeg.load?4() +kivy.core.video.video_ffmpeg.VideoFFMpeg.play?4() +kivy.core.video.video_ffmpeg.VideoFFMpeg.seek?4(percent) +kivy.core.video.video_ffmpeg.VideoFFMpeg.stop?4() +kivy.core.video.video_ffmpeg.VideoFFMpeg.unload?4() +kivy.core.video.video_ffmpeg.VideoFFMpeg?1(**kwargs) +kivy.core.video.video_gstreamer.VideoGStreamer._get_duration?5() +kivy.core.video.video_gstreamer.VideoGStreamer._get_position?5() +kivy.core.video.video_gstreamer.VideoGStreamer._get_uri?5() +kivy.core.video.video_gstreamer.VideoGStreamer._get_volume?5() +kivy.core.video.video_gstreamer.VideoGStreamer._gst_init?5() +kivy.core.video.video_gstreamer.VideoGStreamer._set_volume?5(volume) +kivy.core.video.video_gstreamer.VideoGStreamer._update?5(dt) +kivy.core.video.video_gstreamer.VideoGStreamer._update_texture?5(buf) +kivy.core.video.video_gstreamer.VideoGStreamer.load?4() +kivy.core.video.video_gstreamer.VideoGStreamer.pause?4() +kivy.core.video.video_gstreamer.VideoGStreamer.play?4() +kivy.core.video.video_gstreamer.VideoGStreamer.seek?4(percent) +kivy.core.video.video_gstreamer.VideoGStreamer.stop?4() +kivy.core.video.video_gstreamer.VideoGStreamer.unload?4() +kivy.core.video.video_gstreamer.VideoGStreamer?1(**kwargs) +kivy.core.video.video_gstreamer._VIDEO_CAPS?8 +kivy.core.video.video_gstreamer._gst_new_buffer?5(obj, appsink) +kivy.core.video.video_gstreamer._on_gst_eos?5(obj, *largs) +kivy.core.video.video_gstreamer._on_gst_message?5(bus, message) +kivy.core.video.video_pyglet.FakePygletContext._workaround_unpack_row_length?8 +kivy.core.video.video_pyglet.VideoPyglet._get_duration?5() +kivy.core.video.video_pyglet.VideoPyglet._get_position?5() +kivy.core.video.video_pyglet.VideoPyglet._get_volume?5() +kivy.core.video.video_pyglet.VideoPyglet._set_volume?5(volume) +kivy.core.video.video_pyglet.VideoPyglet._update?5(dt) +kivy.core.video.video_pyglet.VideoPyglet.load?4() +kivy.core.video.video_pyglet.VideoPyglet.play?4() +kivy.core.video.video_pyglet.VideoPyglet.seek?4(percent) +kivy.core.video.video_pyglet.VideoPyglet.stop?4() +kivy.core.video.video_pyglet.VideoPyglet.unload?4() +kivy.core.window.Keyboard._on_vkeyboard_key_down?5(instance, keycode, text, modifiers) +kivy.core.window.Keyboard._on_vkeyboard_key_up?5(instance, keycode, text, modifiers) +kivy.core.window.Keyboard._on_window_key_down?5(instance, keycode, scancode, text, modifiers) +kivy.core.window.Keyboard._on_window_key_up?5(instance, keycode, *largs) +kivy.core.window.Keyboard.keycode_to_string?4(value) +kivy.core.window.Keyboard.keycodes?7 +kivy.core.window.Keyboard.on_key_down?4(keycode, text, modifiers) +kivy.core.window.Keyboard.on_key_up?4(keycode) +kivy.core.window.Keyboard.release?4() +kivy.core.window.Keyboard.string_to_keycode?4(value) +kivy.core.window.Keyboard?1(**kwargs) +kivy.core.window.VKeyboard?7 +kivy.core.window.Window?7 +kivy.core.window.WindowBase._clearcolor?8 +kivy.core.window.WindowBase._get_center?5() +kivy.core.window.WindowBase._get_clearcolor?5() +kivy.core.window.WindowBase._get_height?5() +kivy.core.window.WindowBase._get_modifiers?5() +kivy.core.window.WindowBase._get_rotation?5() +kivy.core.window.WindowBase._get_size?5() +kivy.core.window.WindowBase._get_system_size?5() +kivy.core.window.WindowBase._get_width?5() +kivy.core.window.WindowBase._modifiers?8 +kivy.core.window.WindowBase._rotation?8 +kivy.core.window.WindowBase._set_clearcolor?5(value) +kivy.core.window.WindowBase._set_rotation?5(x) +kivy.core.window.WindowBase._set_size?5(size) +kivy.core.window.WindowBase._set_system_size?5(size) +kivy.core.window.WindowBase._size?8 +kivy.core.window.WindowBase._update_childsize?5(instance, value) +kivy.core.window.WindowBase.add_widget?4(widget) +kivy.core.window.WindowBase.canvas?7 +kivy.core.window.WindowBase.center?7 +kivy.core.window.WindowBase.children?7 +kivy.core.window.WindowBase.clear?4() +kivy.core.window.WindowBase.clearcolor?7 +kivy.core.window.WindowBase.close?4() +kivy.core.window.WindowBase.configure_keyboards?4() +kivy.core.window.WindowBase.create_window?4(*largs) +kivy.core.window.WindowBase.dpi?4() +kivy.core.window.WindowBase.flip?4() +kivy.core.window.WindowBase.fullscreen?7 +kivy.core.window.WindowBase.get_parent_layout?4() +kivy.core.window.WindowBase.get_parent_window?4() +kivy.core.window.WindowBase.get_root_window?4() +kivy.core.window.WindowBase.height?7 +kivy.core.window.WindowBase.icon?7 +kivy.core.window.WindowBase.left?7 +kivy.core.window.WindowBase.modifiers?7 +kivy.core.window.WindowBase.mouse_pos?7 +kivy.core.window.WindowBase.on_close?4(*largs) +kivy.core.window.WindowBase.on_draw?4() +kivy.core.window.WindowBase.on_dropfile?4(filename) +kivy.core.window.WindowBase.on_flip?4() +kivy.core.window.WindowBase.on_key_down?4(key, scancode=None, codepoint=None, modifier=None, **kwargs) +kivy.core.window.WindowBase.on_key_up?4(key, scancode=None, codepoint=None, modifier=None, **kwargs) +kivy.core.window.WindowBase.on_keyboard?4(key, scancode=None, codepoint=None, modifier=None, **kwargs) +kivy.core.window.WindowBase.on_motion?4(etype, me) +kivy.core.window.WindowBase.on_mouse_down?4(x, y, button, modifiers) +kivy.core.window.WindowBase.on_mouse_move?4(x, y, modifiers) +kivy.core.window.WindowBase.on_mouse_up?4(x, y, button, modifiers) +kivy.core.window.WindowBase.on_resize?4(width, height) +kivy.core.window.WindowBase.on_rotate?4(rotation) +kivy.core.window.WindowBase.on_touch_down?4(touch) +kivy.core.window.WindowBase.on_touch_move?4(touch) +kivy.core.window.WindowBase.on_touch_up?4(touch) +kivy.core.window.WindowBase.parent?7 +kivy.core.window.WindowBase.position?7 +kivy.core.window.WindowBase.release_all_keyboards?4() +kivy.core.window.WindowBase.release_keyboard?4(target=None) +kivy.core.window.WindowBase.remove_widget?4(widget) +kivy.core.window.WindowBase.render_context?7 +kivy.core.window.WindowBase.request_keyboard?4(callback, target) +kivy.core.window.WindowBase.rotation?7 +kivy.core.window.WindowBase.screenshot?4(name='screenshot%(counter)04d.png') +kivy.core.window.WindowBase.set_icon?4(filename) +kivy.core.window.WindowBase.set_title?4(title) +kivy.core.window.WindowBase.set_vkeyboard_class?4(cls) +kivy.core.window.WindowBase.size?7 +kivy.core.window.WindowBase.system_size?7 +kivy.core.window.WindowBase.title?7 +kivy.core.window.WindowBase.to_widget?4(x, y, initial=True, relative=False) +kivy.core.window.WindowBase.to_window?4(x, y, initial=True, relative=False) +kivy.core.window.WindowBase.toggle_fullscreen?4() +kivy.core.window.WindowBase.top?7 +kivy.core.window.WindowBase.update_childsize?4(childs=None) +kivy.core.window.WindowBase.update_viewport?4() +kivy.core.window.WindowBase.width?7 +kivy.core.window.WindowBase?1(**kwargs) +kivy.core.window.window_egl_rpi.WindowEglRpi._create_egl_context?5(win, flags) +kivy.core.window.window_egl_rpi.WindowEglRpi._create_window?5(w, h) +kivy.core.window.window_egl_rpi.WindowEglRpi._mainloop?5() +kivy.core.window.window_egl_rpi.WindowEglRpi.close?4() +kivy.core.window.window_egl_rpi.WindowEglRpi.create_window?4() +kivy.core.window.window_egl_rpi.WindowEglRpi.flip?4() +kivy.core.window.window_egl_rpi.WindowEglRpi.mainloop?4() +kivy.core.window.window_pygame.WindowPygame._mainloop?5() +kivy.core.window.window_pygame.WindowPygame._pygame_set_mode?5(size=None) +kivy.core.window.window_pygame.WindowPygame._pygame_update_modifiers?5(mods=None) +kivy.core.window.window_pygame.WindowPygame.close?4() +kivy.core.window.window_pygame.WindowPygame.create_window?4(*largs) +kivy.core.window.window_pygame.WindowPygame.flip?4() +kivy.core.window.window_pygame.WindowPygame.mainloop?4() +kivy.core.window.window_pygame.WindowPygame.on_keyboard?4(key, scancode=None, codepoint=None, modifier=None, **kwargs) +kivy.core.window.window_pygame.WindowPygame.on_title?4(instance, value) +kivy.core.window.window_pygame.WindowPygame.release_keyboard?4(*largs) +kivy.core.window.window_pygame.WindowPygame.request_keyboard?4(*largs) +kivy.core.window.window_pygame.WindowPygame.screenshot?4(*largs, **kwargs) +kivy.core.window.window_pygame.WindowPygame.set_icon?4(filename) +kivy.core.window.window_pygame.WindowPygame.toggle_fullscreen?4() +kivy.core.window.window_pygame.glReadPixels?7 +kivy.core.window.window_sdl.SDLMotionEvent.depack?4(args) +kivy.core.window.window_sdl.SDLMotionEventProvider.q?7 +kivy.core.window.window_sdl.SDLMotionEventProvider.touchmap?7 +kivy.core.window.window_sdl.SDLMotionEventProvider.update?4(dispatch_fn) +kivy.core.window.window_sdl.SDLMotionEventProvider.win?7 +kivy.core.window.window_sdl.WindowSDL._check_keyboard_shown?5(dt) +kivy.core.window.window_sdl.WindowSDL._do_resize?5(dt) +kivy.core.window.window_sdl.WindowSDL._mainloop?5() +kivy.core.window.window_sdl.WindowSDL._pygame_update_modifiers?5(mods=None) +kivy.core.window.window_sdl.WindowSDL.close?4() +kivy.core.window.window_sdl.WindowSDL.create_window?4() +kivy.core.window.window_sdl.WindowSDL.do_pause?4() +kivy.core.window.window_sdl.WindowSDL.flip?4() +kivy.core.window.window_sdl.WindowSDL.mainloop?4() +kivy.core.window.window_sdl.WindowSDL.on_keyboard?4(key, scancode=None, str=None, modifier=None) +kivy.core.window.window_sdl.WindowSDL.release_keyboard?4(*largs) +kivy.core.window.window_sdl.WindowSDL.request_keyboard?4(*largs) +kivy.core.window.window_sdl.WindowSDL.screenshot?4(*largs, **kwargs) +kivy.core.window.window_sdl.WindowSDL.set_icon?4(filename) +kivy.core.window.window_sdl.WindowSDL.set_title?4(title) +kivy.effects.dampedscroll.DampedScrollEffect.apply_distance?4(distance) +kivy.effects.dampedscroll.DampedScrollEffect.edge_damping?7 +kivy.effects.dampedscroll.DampedScrollEffect.on_overscroll?4(*args) +kivy.effects.dampedscroll.DampedScrollEffect.on_value?4(*args) +kivy.effects.dampedscroll.DampedScrollEffect.spring_constant?7 +kivy.effects.dampedscroll.DampedScrollEffect.update_velocity?4(dt) +kivy.effects.kinetic.KineticEffect.apply_distance?4(distance) +kivy.effects.kinetic.KineticEffect.cancel?4() +kivy.effects.kinetic.KineticEffect.friction?7 +kivy.effects.kinetic.KineticEffect.is_manual?7 +kivy.effects.kinetic.KineticEffect.max_history?7 +kivy.effects.kinetic.KineticEffect.start?4(val, t=None) +kivy.effects.kinetic.KineticEffect.stop?4(val, t=None) +kivy.effects.kinetic.KineticEffect.update?4(val, t=None) +kivy.effects.kinetic.KineticEffect.update_velocity?4(dt) +kivy.effects.kinetic.KineticEffect.value?7 +kivy.effects.kinetic.KineticEffect.velocity?7 +kivy.effects.kinetic.KineticEffect?1(**kwargs) +kivy.effects.opacityscroll.OpacityScrollEffect.on_overscroll?4(*args) +kivy.effects.scroll.ScrollEffect.displacement?7 +kivy.effects.scroll.ScrollEffect.drag_threshold?7 +kivy.effects.scroll.ScrollEffect.max?7 +kivy.effects.scroll.ScrollEffect.min?7 +kivy.effects.scroll.ScrollEffect.on_value?4(*args) +kivy.effects.scroll.ScrollEffect.overscroll?7 +kivy.effects.scroll.ScrollEffect.reset?4(pos) +kivy.effects.scroll.ScrollEffect.scroll?7 +kivy.effects.scroll.ScrollEffect.start?4(val, t=None) +kivy.effects.scroll.ScrollEffect.stop?4(val, t=None) +kivy.effects.scroll.ScrollEffect.target_widget?7 +kivy.effects.scroll.ScrollEffect.update?4(val, t=None) +kivy.event.EventDispatcher?7 +kivy.ext.NEED_UNZIP?7 +kivy.ext._is_valid_ext_name?5(name) +kivy.ext.load?4(extname, version) +kivy.ext.unzip_extensions?4() +kivy.extras.highlight.KivyLexer.aliases?7 +kivy.extras.highlight.KivyLexer.filenames?7 +kivy.extras.highlight.KivyLexer.k?7 +kivy.extras.highlight.KivyLexer.name?7 +kivy.extras.highlight.KivyLexer.tokens?7 +kivy.factory.Factory?7 +kivy.factory.FactoryBase.get?7 +kivy.factory.FactoryBase.is_template?4(classname) +kivy.factory.FactoryBase.register?4(classname, cls=None, module=None, is_template=False, baseclasses=None, filename=None) +kivy.factory.FactoryBase.unregister?4(*classnames) +kivy.factory.FactoryBase.unregister_from_filename?4(filename) +kivy.factory.FactoryBase?1() +kivy.factory_registers.r?7 +kivy.garden.GardenImporter._load_module?5(fullname, moddir) +kivy.garden.GardenImporter.find_module?4(fullname, path) +kivy.garden.GardenImporter.load_module?4(fullname) +kivy.garden.garden_app_dir?7 +kivy.garden.garden_system_dir?7 +kivy.geometry.angle_pq?4(r) +kivy.geometry.circumcircle?4(a, b, c) +kivy.geometry.minimum_bounding_circle?4(points) +kivy.geometry.x_axis_angle?4(q) +kivy.gesture.Gesture.DEFAULT_TOLERANCE?7 +kivy.gesture.Gesture._center_gesture?5() +kivy.gesture.Gesture._scale_gesture?5() +kivy.gesture.Gesture.add_stroke?4(point_list=None) +kivy.gesture.Gesture.dot_product?4(comparison_gesture) +kivy.gesture.Gesture.get_rigid_rotation?4(dstpts) +kivy.gesture.Gesture.get_score?4(comparison_gesture, rotation_invariant=True) +kivy.gesture.Gesture.normalize?4(stroke_samples=32) +kivy.gesture.Gesture.rotate?4(angle) +kivy.gesture.Gesture?1(tolerance=None) +kivy.gesture.GestureDatabase.add_gesture?4(gesture) +kivy.gesture.GestureDatabase.find?4(gesture, minscore=0.9, rotation_invariant=True) +kivy.gesture.GestureDatabase.gesture_to_str?4(gesture) +kivy.gesture.GestureDatabase.str_to_gesture?4(data) +kivy.gesture.GestureDatabase?1() +kivy.gesture.GesturePoint.scale?4(factor) +kivy.gesture.GesturePoint?1(x, y) +kivy.gesture.GestureStroke.add_point?4(x, y) +kivy.gesture.GestureStroke.center_stroke?4(offset_x, offset_y) +kivy.gesture.GestureStroke.max_x?4() +kivy.gesture.GestureStroke.max_y?4() +kivy.gesture.GestureStroke.min_x?4() +kivy.gesture.GestureStroke.min_y?4() +kivy.gesture.GestureStroke.normalize_stroke?4(sample_points = 32) +kivy.gesture.GestureStroke.points_distance?4(point1, point2) +kivy.gesture.GestureStroke.scale_stroke?4(scale_factor) +kivy.gesture.GestureStroke.stroke_length?4(point_list=None) +kivy.gesture.GestureStroke?1() +kivy.input.factory.MotionEventFactory.get?4() +kivy.input.factory.MotionEventFactory.list?4() +kivy.input.factory.MotionEventFactory.register?4(classname) +kivy.input.motionevent.MotionEvent.apply_transform_2d?4(transform) +kivy.input.motionevent.MotionEvent.copy_to?4(to) +kivy.input.motionevent.MotionEvent.depack?4(args) +kivy.input.motionevent.MotionEvent.distance?4(other_touch) +kivy.input.motionevent.MotionEvent.dpos?4() +kivy.input.motionevent.MotionEvent.grab?4(class_instance, exclusive=False) +kivy.input.motionevent.MotionEvent.is_mouse_scrolling?4(*args) +kivy.input.motionevent.MotionEvent.move?4(args) +kivy.input.motionevent.MotionEvent.opos?4() +kivy.input.motionevent.MotionEvent.pop?4() +kivy.input.motionevent.MotionEvent.ppos?4() +kivy.input.motionevent.MotionEvent.push?4(attrs=None) +kivy.input.motionevent.MotionEvent.scale_for_screen?4(w, h, p=None, rotation=0) +kivy.input.motionevent.MotionEvent.spos?4() +kivy.input.motionevent.MotionEvent.ungrab?4(class_instance) +kivy.input.motionevent.MotionEvent.update_time_end?4() +kivy.input.motionevent.MotionEvent?1(device, id, args) +kivy.input.motionevent.MotionEventBase?7 +kivy.input.postproc.dejitter.InputPostprocDejitter.process?4(events) +kivy.input.postproc.dejitter.InputPostprocDejitter.taxicab_distance?4(p, q) +kivy.input.postproc.dejitter.InputPostprocDejitter?1() +kivy.input.postproc.doubletap.InputPostprocDoubleTap.find_double_tap?4(ref) +kivy.input.postproc.doubletap.InputPostprocDoubleTap.process?4(events) +kivy.input.postproc.doubletap.InputPostprocDoubleTap?1() +kivy.input.postproc.ignorelist.InputPostprocIgnoreList.collide_ignore?4(touch) +kivy.input.postproc.ignorelist.InputPostprocIgnoreList.process?4(events) +kivy.input.postproc.ignorelist.InputPostprocIgnoreList?1() +kivy.input.postproc.kivy_postproc_modules?7 +kivy.input.postproc.retaintouch.InputPostprocRetainTouch.process?4(events) +kivy.input.postproc.retaintouch.InputPostprocRetainTouch?1() +kivy.input.postproc.tripletap.InputPostprocTripleTap.find_triple_tap?4(ref) +kivy.input.postproc.tripletap.InputPostprocTripleTap.process?4(events) +kivy.input.postproc.tripletap.InputPostprocTripleTap?1() +kivy.input.provider.MotionEventProvider.start?4() +kivy.input.provider.MotionEventProvider.stop?4() +kivy.input.provider.MotionEventProvider.update?4(dispatch_fn) +kivy.input.provider.MotionEventProvider?1(device, args) +kivy.input.providers.androidjoystick.AndroidMotionEvent.depack?4(args) +kivy.input.providers.androidjoystick.AndroidMotionEventProvider.create_joystick?4(index) +kivy.input.providers.androidjoystick.AndroidMotionEventProvider.start?4() +kivy.input.providers.androidjoystick.AndroidMotionEventProvider.stop?4() +kivy.input.providers.androidjoystick.AndroidMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.androidjoystick.AndroidMotionEventProvider?1(device, args) +kivy.input.providers.hidinput.HIDInputMotionEventProvider._thread_run?5(**kwargs) +kivy.input.providers.hidinput.HIDInputMotionEventProvider.normalize?4(vmin, vmax) +kivy.input.providers.hidinput.HIDInputMotionEventProvider.options?7 +kivy.input.providers.hidinput.HIDInputMotionEventProvider.process?4() +kivy.input.providers.hidinput.HIDInputMotionEventProvider.process_as_mouse?4(tv_usec, ev_type, ev_code, ev_value) +kivy.input.providers.hidinput.HIDInputMotionEventProvider.process_as_multitouch?4(tv_usec, ev_type, ev_code, ev_value) +kivy.input.providers.hidinput.HIDInputMotionEventProvider.start?4() +kivy.input.providers.hidinput.HIDInputMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.hidinput.HIDInputMotionEventProvider?1(device, args) +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_BLOB_ID?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_ORIENTATION?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_POSITION_X?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_POSITION_Y?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_PRESSURE?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_TOOL_TYPE?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_TOUCH_MAJOR?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_TOUCH_MINOR?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_TRACKING_ID?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_WIDTH_MAJOR?7 +kivy.input.providers.hidinput.HIDMotionEvent.ABS_MT_WIDTH_MINOR?7 +kivy.input.providers.hidinput.HIDMotionEvent.EVIOCGABS?7 +kivy.input.providers.hidinput.HIDMotionEvent.EVIOCGBIT?7 +kivy.input.providers.hidinput.HIDMotionEvent.EVIOCGNAME?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_ABS?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_CNT?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_FF?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_FF_STATUS?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_KEY?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_LED?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_MAX?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_MSC?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_PWR?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_REL?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_REP?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_SND?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_SW?7 +kivy.input.providers.hidinput.HIDMotionEvent.EV_SYN?7 +kivy.input.providers.hidinput.HIDMotionEvent.HIDInputMotionEventProvider?7 +kivy.input.providers.hidinput.HIDMotionEvent.KEY_MAX?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_CNT?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_GESTURE?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_MAX?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_PULSELED?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_RAW?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_SCAN?7 +kivy.input.providers.hidinput.HIDMotionEvent.MSC_SERIAL?7 +kivy.input.providers.hidinput.HIDMotionEvent.SYN_CONFIG?7 +kivy.input.providers.hidinput.HIDMotionEvent.SYN_MT_REPORT?7 +kivy.input.providers.hidinput.HIDMotionEvent.SYN_REPORT?7 +kivy.input.providers.hidinput.HIDMotionEvent.depack?4(args) +kivy.input.providers.hidinput.HIDMotionEvent.struct_input_absinfo_sz?7 +kivy.input.providers.hidinput.HIDMotionEvent.struct_input_event_sz?7 +kivy.input.providers.hidinput.HIDMotionEvent.sz_l?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MISC?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_BLOB_ID?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_ORIENTATION?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_POSITION_X?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_POSITION_Y?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_PRESSURE?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_TOOL_TYPE?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_TOUCH_MAJOR?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_TOUCH_MINOR?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_TRACKING_ID?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_WIDTH_MAJOR?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_MT_WIDTH_MINOR?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_PRESSURE?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_X?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.ABS_Y?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EVIOCGABS?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EVIOCGBIT?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EVIOCGNAME?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_ABS?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_CNT?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_FF?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_FF_STATUS?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_KEY?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_LED?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_MAX?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_MSC?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_PWR?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_REL?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_REP?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_SND?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_SW?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.EV_SYN?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.KEY_MAX?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.LinuxWacomMotionEventProvider?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_CNT?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_GESTURE?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_MAX?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_PULSELED?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_RAW?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_SCAN?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.MSC_SERIAL?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.SYN_CONFIG?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.SYN_MT_REPORT?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.SYN_REPORT?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.depack?4(args) +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.struct_input_absinfo_sz?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.struct_input_event_sz?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEvent.sz_l?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider._thread_run?5(**kwargs) +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider.normalize?4(vmin, vmax) +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider.options?7 +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider.process?4() +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider.start?4() +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.linuxwacom.LinuxWacomMotionEventProvider?1(device, args) +kivy.input.providers.mactouch.MTData._fields_?8 +kivy.input.providers.mactouch.MTPoint._fields_?8 +kivy.input.providers.mactouch.MTVector._fields_?8 +kivy.input.providers.mactouch.MacMotionEvent.depack?4(args) +kivy.input.providers.mactouch.MacMotionEventProvider._mts_callback?5(data_ptr, n_fingers, timestamp, frame) +kivy.input.providers.mactouch.MacMotionEventProvider.start?4() +kivy.input.providers.mactouch.MacMotionEventProvider.stop?4() +kivy.input.providers.mactouch.MacMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.mactouch.MacMotionEventProvider?1(*largs, **kwargs) +kivy.input.providers.mactouch._instance?8 +kivy.input.providers.mouse.Color?7 +kivy.input.providers.mouse.MouseMotionEvent.clear_graphics?4(win) +kivy.input.providers.mouse.MouseMotionEvent.depack?4(args) +kivy.input.providers.mouse.MouseMotionEvent.update_graphics?4(win, create=False) +kivy.input.providers.mouse.MouseMotionEventProvider.create_touch?4(rx, ry, is_double_tap, do_graphics, button) +kivy.input.providers.mouse.MouseMotionEventProvider.find_touch?4(x, y) +kivy.input.providers.mouse.MouseMotionEventProvider.on_mouse_motion?4(win, x, y, modifiers) +kivy.input.providers.mouse.MouseMotionEventProvider.on_mouse_press?4(win, x, y, button, modifiers) +kivy.input.providers.mouse.MouseMotionEventProvider.on_mouse_release?4(win, x, y, button, modifiers) +kivy.input.providers.mouse.MouseMotionEventProvider.remove_touch?4(cur) +kivy.input.providers.mouse.MouseMotionEventProvider.start?4() +kivy.input.providers.mouse.MouseMotionEventProvider.stop?4() +kivy.input.providers.mouse.MouseMotionEventProvider.test_activity?4() +kivy.input.providers.mouse.MouseMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.mouse.MouseMotionEventProvider?1(device, args) +kivy.input.providers.mtdev.MTDMotionEvent.MTDMotionEventProvider?7 +kivy.input.providers.mtdev.MTDMotionEvent.depack?4(args) +kivy.input.providers.mtdev.MTDMotionEventProvider._thread_run?5(**kwargs) +kivy.input.providers.mtdev.MTDMotionEventProvider.normalize?4(vmin, vmax) +kivy.input.providers.mtdev.MTDMotionEventProvider.options?7 +kivy.input.providers.mtdev.MTDMotionEventProvider.process?4() +kivy.input.providers.mtdev.MTDMotionEventProvider.start?4() +kivy.input.providers.mtdev.MTDMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.mtdev.MTDMotionEventProvider?1(device, args) +kivy.input.providers.platform?7 +kivy.input.providers.probesysfs.Input.device?4() +kivy.input.providers.probesysfs.Input.get_capabilities?4() +kivy.input.providers.probesysfs.Input.has_capability?4(capability) +kivy.input.providers.probesysfs.Input.name?4() +kivy.input.providers.probesysfs.Input?1(path) +kivy.input.providers.probesysfs.ProbeSysfsHardwareProbe.probe?4() +kivy.input.providers.probesysfs.ProbeSysfsHardwareProbe?1(device, args) +kivy.input.providers.probesysfs.get_inputs?4(path) +kivy.input.providers.probesysfs.getconf?4(var) +kivy.input.providers.probesysfs.read_line?4(path) +kivy.input.providers.tuio.Tuio2dCurMotionEvent.depack?4(args) +kivy.input.providers.tuio.Tuio2dCurMotionEvent?1(device, id, args) +kivy.input.providers.tuio.Tuio2dObjMotionEvent.depack?4(args) +kivy.input.providers.tuio.Tuio2dObjMotionEvent?1(device, id, args) +kivy.input.providers.tuio.TuioMotionEvent.angle?7 +kivy.input.providers.tuio.TuioMotionEvent.mot_accel?7 +kivy.input.providers.tuio.TuioMotionEvent.rot_accel?7 +kivy.input.providers.tuio.TuioMotionEvent.xmot?7 +kivy.input.providers.tuio.TuioMotionEvent.ymot?7 +kivy.input.providers.tuio.TuioMotionEvent.zmot?7 +kivy.input.providers.tuio.TuioMotionEvent?1(device, id, args) +kivy.input.providers.tuio.TuioMotionEventProvider._osc_tuio_cb?5(*incoming) +kivy.input.providers.tuio.TuioMotionEventProvider._update?5(dispatch_fn, value) +kivy.input.providers.tuio.TuioMotionEventProvider.create?4(**kwargs) +kivy.input.providers.tuio.TuioMotionEventProvider.register?4(classname) +kivy.input.providers.tuio.TuioMotionEventProvider.start?4() +kivy.input.providers.tuio.TuioMotionEventProvider.stop?4() +kivy.input.providers.tuio.TuioMotionEventProvider.unregister?4(classname) +kivy.input.providers.tuio.TuioMotionEventProvider.update?4(dispatch_fn) +kivy.input.providers.tuio.TuioMotionEventProvider?1(device, args) +kivy.input.providers.wm_common.GWL_WNDPROC?7 +kivy.input.providers.wm_common.PEN_EVENT_TOUCH_MASK?7 +kivy.input.providers.wm_common.PEN_OR_TOUCH_MASK?7 +kivy.input.providers.wm_common.PEN_OR_TOUCH_SIGNATURE?7 +kivy.input.providers.wm_common.QUERYSYSTEMGESTURE_WNDPROC?7 +kivy.input.providers.wm_common.TABLET_DISABLE_FLICKFALLBACKKEYS?7 +kivy.input.providers.wm_common.TABLET_DISABLE_FLICKS?7 +kivy.input.providers.wm_common.TABLET_DISABLE_PENBARRELFEEDBACK?7 +kivy.input.providers.wm_common.TABLET_DISABLE_PENTAPFEEDBACK?7 +kivy.input.providers.wm_common.TABLET_DISABLE_PRESSANDHOLD?7 +kivy.input.providers.wm_common.TABLET_DISABLE_SMOOTHSCROLLING?7 +kivy.input.providers.wm_common.TABLET_DISABLE_TOUCHSWITCH?7 +kivy.input.providers.wm_common.TABLET_DISABLE_TOUCHUIFORCEOFF?7 +kivy.input.providers.wm_common.TABLET_DISABLE_TOUCHUIFORCEON?7 +kivy.input.providers.wm_common.TABLET_ENABLE_FLICKLEARNINGMODE?7 +kivy.input.providers.wm_common.TABLET_ENABLE_FLICKSONCONTEXT?7 +kivy.input.providers.wm_common.TOUCHEVENTF_DOWN?7 +kivy.input.providers.wm_common.TOUCHEVENTF_MOVE?7 +kivy.input.providers.wm_common.TOUCHEVENTF_UP?7 +kivy.input.providers.wm_common.WM_LBUTTONDBLCLK?7 +kivy.input.providers.wm_common.WM_LBUTTONDOWN?7 +kivy.input.providers.wm_common.WM_LBUTTONUP?7 +kivy.input.providers.wm_common.WM_MBUTTONDBLCLK?7 +kivy.input.providers.wm_common.WM_MBUTTONDOWN?7 +kivy.input.providers.wm_common.WM_MBUTTONUP?7 +kivy.input.providers.wm_common.WM_MOUSEFIRST?7 +kivy.input.providers.wm_common.WM_MOUSELAST?7 +kivy.input.providers.wm_common.WM_MOUSEMOVE?7 +kivy.input.providers.wm_common.WM_MOUSEWHEEL?7 +kivy.input.providers.wm_common.WM_RBUTTONDBLCLK?7 +kivy.input.providers.wm_common.WM_RBUTTONDOWN?7 +kivy.input.providers.wm_common.WM_RBUTTONUP?7 +kivy.input.providers.wm_common.WM_TABLET_QUERYSYSTEMGESTURE?7 +kivy.input.providers.wm_common.WM_TOUCH?7 +kivy.input.providers.wm_pen.RECT.SetWindowLong_wrapper?7 +kivy.input.providers.wm_pen.RECT._fields_?8 +kivy.input.providers.wm_pen.RECT.h?7 +kivy.input.providers.wm_pen.RECT.w?7 +kivy.input.providers.wm_pen.RECT.x?7 +kivy.input.providers.wm_pen.RECT.y?7 +kivy.input.providers.wm_pen.WM_Pen.LRESULT?7 +kivy.input.providers.wm_pen.WM_Pen.WM_PenProvider?7 +kivy.input.providers.wm_pen.WM_Pen.WNDPROC?7 +kivy.input.providers.wm_pen.WM_Pen.depack?4(args) +kivy.input.providers.wm_pen.WM_Pen.win_rect?7 +kivy.input.providers.wm_pen.WM_PenProvider._is_pen_message?5(msg) +kivy.input.providers.wm_pen.WM_PenProvider._pen_handler?5(msg, wParam, lParam) +kivy.input.providers.wm_pen.WM_PenProvider._pen_wndProc?5(hwnd, msg, wParam, lParam) +kivy.input.providers.wm_pen.WM_PenProvider.start?4() +kivy.input.providers.wm_pen.WM_PenProvider.stop?4() +kivy.input.providers.wm_pen.WM_PenProvider.update?4(dispatch_fn) +kivy.input.providers.wm_touch.RECT.SetWindowLong_wrapper?7 +kivy.input.providers.wm_touch.RECT._fields_?8 +kivy.input.providers.wm_touch.RECT.h?7 +kivy.input.providers.wm_touch.RECT.w?7 +kivy.input.providers.wm_touch.RECT.x?7 +kivy.input.providers.wm_touch.RECT.y?7 +kivy.input.providers.wm_touch.TOUCHINPUT._event_type?5() +kivy.input.providers.wm_touch.TOUCHINPUT._fields_?8 +kivy.input.providers.wm_touch.TOUCHINPUT.event_type?7 +kivy.input.providers.wm_touch.TOUCHINPUT.screen_x?4() +kivy.input.providers.wm_touch.TOUCHINPUT.screen_y?4() +kivy.input.providers.wm_touch.TOUCHINPUT.size?4() +kivy.input.providers.wm_touch.WM_MotionEvent.LRESULT?7 +kivy.input.providers.wm_touch.WM_MotionEvent.WM_MotionEventProvider?7 +kivy.input.providers.wm_touch.WM_MotionEvent.WNDPROC?7 +kivy.input.providers.wm_touch.WM_MotionEvent.depack?4(args) +kivy.input.providers.wm_touch.WM_MotionEventProvider._mouse_handler?5(msg, wparam, lParam) +kivy.input.providers.wm_touch.WM_MotionEventProvider._touch_handler?5(msg, wParam, lParam) +kivy.input.providers.wm_touch.WM_MotionEventProvider._touch_wndProc?5(hwnd, msg, wParam, lParam) +kivy.input.providers.wm_touch.WM_MotionEventProvider.start?4() +kivy.input.providers.wm_touch.WM_MotionEventProvider.stop?4() +kivy.input.providers.wm_touch.WM_MotionEventProvider.update?4(dispatch_fn) +kivy.input.recorder.Recorder.counter?7 +kivy.input.recorder.Recorder.filename?7 +kivy.input.recorder.Recorder.on_keyboard?4(etype, window, key, *args, **kwargs) +kivy.input.recorder.Recorder.on_motion?4(window, etype, motionevent) +kivy.input.recorder.Recorder.on_play?4(instance, value) +kivy.input.recorder.Recorder.on_record?4(instance, value) +kivy.input.recorder.Recorder.play?7 +kivy.input.recorder.Recorder.record?7 +kivy.input.recorder.Recorder.record_attrs?7 +kivy.input.recorder.Recorder.record_fd?7 +kivy.input.recorder.Recorder.record_profile_mask?7 +kivy.input.recorder.Recorder.record_time?7 +kivy.input.recorder.Recorder.release?4() +kivy.input.recorder.Recorder.start?4() +kivy.input.recorder.Recorder.stop?4() +kivy.input.recorder.Recorder.update?4(dispatch_fn) +kivy.input.recorder.Recorder.window?7 +kivy.input.recorder.Recorder?1(**kwargs) +kivy.input.recorder.RecorderMotionEvent.depack?4(args) +kivy.input.recorder.start?4(win, ctx) +kivy.input.recorder.stop?4(win, ctx) +kivy.input.shape.ShapeRect?1() +kivy.interactive.InteractiveLauncher.run?4() +kivy.interactive.InteractiveLauncher.startApp?4(*args, **kwargs) +kivy.interactive.InteractiveLauncher.stop?4() +kivy.interactive.InteractiveLauncher?1(app=None, *args, **kwargs) +kivy.interactive.SafeMembrane.isMethod?4(fn) +kivy.interactive.SafeMembrane.safeIn?4() +kivy.interactive.SafeMembrane.safeOut?4() +kivy.interactive.SafeMembrane?1(ob, *args, **kwargs) +kivy.interactive.safeWait?4(dt) +kivy.interactive.unwrap?4(ob) +kivy.kivy_base_dir?7 +kivy.kivy_config_fn?7 +kivy.kivy_configure?4() +kivy.kivy_data_dir?7 +kivy.kivy_exts_dir?7 +kivy.kivy_home_dir?7 +kivy.kivy_icons_dir?7 +kivy.kivy_modules_dir?7 +kivy.kivy_options?7 +kivy.kivy_register_post_configuration?4(callback) +kivy.kivy_shader_dir?7 +kivy.kivy_usage?4() +kivy.kivy_userexts_dir?7 +kivy.kivy_usermodules_dir?7 +kivy.lang.Builder?7 +kivy.lang.BuilderBase._apply_rule?5(widget, rule, rootrule, template_ctx=None) +kivy.lang.BuilderBase._build_canvas?5(canvas, widget, rule, rootrule) +kivy.lang.BuilderBase._cache_match?8 +kivy.lang.BuilderBase._clear_matchcache?5() +kivy.lang.BuilderBase.apply?4(widget) +kivy.lang.BuilderBase.dump_builder_stats?4() +kivy.lang.BuilderBase.load_file?4(filename, **kwargs) +kivy.lang.BuilderBase.load_string?4(string, **kwargs) +kivy.lang.BuilderBase.match?4(widget) +kivy.lang.BuilderBase.match_rule?4(index, rule) +kivy.lang.BuilderBase.sync?4() +kivy.lang.BuilderBase.template?4(*args, **ctx) +kivy.lang.BuilderBase.unload_file?4(filename) +kivy.lang.BuilderBase?1() +kivy.lang.Instruction?7 +kivy.lang.Parser.CLASS_RANGE?7 +kivy.lang.Parser.PROP_ALLOWED?7 +kivy.lang.Parser.PROP_RANGE?7 +kivy.lang.Parser.execute_directives?4() +kivy.lang.Parser.parse?4(content) +kivy.lang.Parser.parse_level?4(level, lines, spaces=0) +kivy.lang.Parser.strip_comments?4(lines) +kivy.lang.Parser?1(**kwargs) +kivy.lang.ParserException?1(context, line, message) +kivy.lang.ParserRule._build_rule?5() +kivy.lang.ParserRule._build_template?5() +kivy.lang.ParserRule._detect_selectors?5() +kivy.lang.ParserRule._forbid_selectors?5() +kivy.lang.ParserRule.create_missing?4(widget) +kivy.lang.ParserRule.precompile?4() +kivy.lang.ParserRule?1(ctx, line, name, level) +kivy.lang.ParserRuleProperty.precompile?4() +kivy.lang.ParserRuleProperty?1(ctx, line, name, value) +kivy.lang.ParserSelector.match?4(widget) +kivy.lang.ParserSelector?1(key) +kivy.lang.ParserSelectorClass.match?4(widget) +kivy.lang.ParserSelectorId.match?4(widget) +kivy.lang.ParserSelectorName.get_bases?4(cls) +kivy.lang.ParserSelectorName.match?4(widget) +kivy.lang.ParserSelectorName.parents?7 +kivy.lang.ProxyApp._ensure_app?5() +kivy.lang.ProxyApp?1() +kivy.lang._delayed_calls?8 +kivy.lang.call_fn?4(*args) +kivy.lang.create_handler?4(iself, element, key, value, rule, idmap, delayed=False) +kivy.lang.custom_callback?4(__kvlang__, idmap, *largs, **kwargs) +kivy.lang.delayed_call_fn?4(*args) +kivy.lang.global_idmap?7 +kivy.lang.lang_key?7 +kivy.lang.lang_keyvalue?7 +kivy.lang.lang_str?7 +kivy.lang.trace?7 +kivy.lib.ddsfile.DDPF_ALPHAPIXELS?7 +kivy.lib.ddsfile.DDPF_FOURCC?7 +kivy.lib.ddsfile.DDPF_LUMINANCE?7 +kivy.lib.ddsfile.DDPF_RGB?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_NEGATIVEX?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_NEGATIVEY?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_NEGATIVEZ?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_POSITIVEX?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_POSITIVEY?7 +kivy.lib.ddsfile.DDSCAPS2_CUBEMAP_POSITIVEZ?7 +kivy.lib.ddsfile.DDSCAPS2_VOLUME?7 +kivy.lib.ddsfile.DDSCAPS_COMPLEX?7 +kivy.lib.ddsfile.DDSCAPS_MIPMAP?7 +kivy.lib.ddsfile.DDSCAPS_TEXTURE?7 +kivy.lib.ddsfile.DDSD_CAPS?7 +kivy.lib.ddsfile.DDSD_DEPTH?7 +kivy.lib.ddsfile.DDSD_HEIGHT?7 +kivy.lib.ddsfile.DDSD_LINEARSIZE?7 +kivy.lib.ddsfile.DDSD_MIPMAPCOUNT?7 +kivy.lib.ddsfile.DDSD_PITCH?7 +kivy.lib.ddsfile.DDSD_PIXELFORMAT?7 +kivy.lib.ddsfile.DDSD_WIDTH?7 +kivy.lib.ddsfile.DDSFile._get_dxt?5() +kivy.lib.ddsfile.DDSFile._get_size?5() +kivy.lib.ddsfile.DDSFile._set_dxt?5(dxt) +kivy.lib.ddsfile.DDSFile._set_size?5(size) +kivy.lib.ddsfile.DDSFile.add_image?4(level, bpp, fmt, width, height, data) +kivy.lib.ddsfile.DDSFile.dxt?7 +kivy.lib.ddsfile.DDSFile.fields?7 +kivy.lib.ddsfile.DDSFile.load?4(filename) +kivy.lib.ddsfile.DDSFile.save?4(filename) +kivy.lib.ddsfile.DDSFile.size?7 +kivy.lib.ddsfile.DDSFile?1(filename=None) +kivy.lib.ddsfile.DDS_DXT1?7 +kivy.lib.ddsfile.DDS_DXT2?7 +kivy.lib.ddsfile.DDS_DXT3?7 +kivy.lib.ddsfile.DDS_DXT4?7 +kivy.lib.ddsfile.DDS_DXT5?7 +kivy.lib.ddsfile.DDS_DXTN?7 +kivy.lib.ddsfile.align_value?4(val, b) +kivy.lib.ddsfile.check_flags?4(val, fl) +kivy.lib.ddsfile.dxt_size?4(w, h, dxt) +kivy.lib.ddsfile.dxt_to_str?4(dxt) +kivy.lib.ddsfile.str_to_dxt?4(dxt) +kivy.lib.mtdev.Device.close?4() +kivy.lib.mtdev.Device.get?4() +kivy.lib.mtdev.Device.get_abs?4(index) +kivy.lib.mtdev.Device.get_max_abs?4() +kivy.lib.mtdev.Device.get_slot?4() +kivy.lib.mtdev.Device.has_abs?4(index) +kivy.lib.mtdev.Device.has_mtdata?4() +kivy.lib.mtdev.Device.has_slot?4() +kivy.lib.mtdev.Device.idle?4(ms) +kivy.lib.mtdev.Device?1(filename) +kivy.lib.mtdev.MTDEV_ABS_ORIENTATION?7 +kivy.lib.mtdev.MTDEV_ABS_POSITION_X?7 +kivy.lib.mtdev.MTDEV_ABS_POSITION_Y?7 +kivy.lib.mtdev.MTDEV_ABS_SIZE?7 +kivy.lib.mtdev.MTDEV_ABS_TOUCH_MAJOR?7 +kivy.lib.mtdev.MTDEV_ABS_TOUCH_MINOR?7 +kivy.lib.mtdev.MTDEV_ABS_TRACKING_ID?7 +kivy.lib.mtdev.MTDEV_ABS_WIDTH_MAJOR?7 +kivy.lib.mtdev.MTDEV_ABS_WIDTH_MINOR?7 +kivy.lib.mtdev.MTDEV_CODE_ABS_X?7 +kivy.lib.mtdev.MTDEV_CODE_ABS_Y?7 +kivy.lib.mtdev.MTDEV_CODE_ABS_Z?7 +kivy.lib.mtdev.MTDEV_CODE_BLOB_ID?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_DIGI?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_STYLUS2?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_STYLUS?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_AIRBRUSH?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_BRUSH?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_DOUBLETAP?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_FINGER?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_LENS?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_MOUSE?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_PEN?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_PENCIL?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_QUADTAP?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_RUBBER?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOOL_TRIPLETAP?7 +kivy.lib.mtdev.MTDEV_CODE_BTN_TOUCH?7 +kivy.lib.mtdev.MTDEV_CODE_ORIENTATION?7 +kivy.lib.mtdev.MTDEV_CODE_POSITION_X?7 +kivy.lib.mtdev.MTDEV_CODE_POSITION_Y?7 +kivy.lib.mtdev.MTDEV_CODE_PRESSURE?7 +kivy.lib.mtdev.MTDEV_CODE_SLOT?7 +kivy.lib.mtdev.MTDEV_CODE_TOOL_TYPE?7 +kivy.lib.mtdev.MTDEV_CODE_TOUCH_MAJOR?7 +kivy.lib.mtdev.MTDEV_CODE_TOUCH_MINOR?7 +kivy.lib.mtdev.MTDEV_CODE_TRACKING_ID?7 +kivy.lib.mtdev.MTDEV_CODE_WIDTH_MAJOR?7 +kivy.lib.mtdev.MTDEV_CODE_WIDTH_MINOR?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_ABS?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_FF?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_FF_STATUS?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_KEY?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_LED?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_MSC?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_PWR?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_REL?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_REP?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_SND?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_SW?7 +kivy.lib.mtdev.MTDEV_TYPE_EV_SYN?7 +kivy.lib.mtdev.input_absinfo._fields_?8 +kivy.lib.mtdev.input_event._fields_?8 +kivy.lib.mtdev.libmtdev?7 +kivy.lib.mtdev.mtdev._fields_?8 +kivy.lib.mtdev.mtdev_caps._fields_?8 +kivy.lib.mtdev.mtdev_close?7 +kivy.lib.mtdev.mtdev_get?7 +kivy.lib.mtdev.mtdev_idle?7 +kivy.lib.mtdev.mtdev_open?7 +kivy.lib.mtdev.timeval._fields_?8 +kivy.lib.osc.OSC.CallbackManager.add?4(callback, name) +kivy.lib.osc.OSC.CallbackManager.blob?7 +kivy.lib.osc.OSC.CallbackManager.bundle?7 +kivy.lib.osc.OSC.CallbackManager.bundlebinary?7 +kivy.lib.osc.OSC.CallbackManager.c?7 +kivy.lib.osc.OSC.CallbackManager.data?7 +kivy.lib.osc.OSC.CallbackManager.dispatch?4(message, source = None) +kivy.lib.osc.OSC.CallbackManager.handle?4(data, source = None) +kivy.lib.osc.OSC.CallbackManager.message?7 +kivy.lib.osc.OSC.CallbackManager.print1?7 +kivy.lib.osc.OSC.CallbackManager.printingCallback?4() +kivy.lib.osc.OSC.CallbackManager.raw?7 +kivy.lib.osc.OSC.CallbackManager.strings?7 +kivy.lib.osc.OSC.CallbackManager.unbundler?4(messages) +kivy.lib.osc.OSC.CallbackManager?1() +kivy.lib.osc.OSC.OSCArgument?4(next) +kivy.lib.osc.OSC.OSCBlob?4(next) +kivy.lib.osc.OSC.OSCMessage.append?4(argument, typehint = None) +kivy.lib.osc.OSC.OSCMessage.clear?4() +kivy.lib.osc.OSC.OSCMessage.clearData?4() +kivy.lib.osc.OSC.OSCMessage.getBinary?4() +kivy.lib.osc.OSC.OSCMessage.rawAppend?4(data) +kivy.lib.osc.OSC.OSCMessage.setAddress?4(address) +kivy.lib.osc.OSC.OSCMessage.setMessage?4(message) +kivy.lib.osc.OSC.OSCMessage.setTypetags?4(typetags) +kivy.lib.osc.OSC.OSCMessage?1() +kivy.lib.osc.OSC.decodeOSC?4(data) +kivy.lib.osc.OSC.hexDump?4(bytes) +kivy.lib.osc.OSC.parseArgs?4(args) +kivy.lib.osc.OSC.readBlob?4(data) +kivy.lib.osc.OSC.readDouble?4(data) +kivy.lib.osc.OSC.readFloat?4(data) +kivy.lib.osc.OSC.readInt?4(data) +kivy.lib.osc.OSC.readLong?4(data) +kivy.lib.osc.OSC.readString?4(data) +kivy.lib.osc.oscAPI.OSCServer.run?4() +kivy.lib.osc.oscAPI.OSCServer?1(**kwargs) +kivy.lib.osc.oscAPI._get_haveSocket?5(self) +kivy.lib.osc.oscAPI._get_isRunning?5(self) +kivy.lib.osc.oscAPI._queue_message?5(self, message) +kivy.lib.osc.oscAPI._readQueue?5(thread_id=None) +kivy.lib.osc.oscAPI._set_haveSocket?5(self, value) +kivy.lib.osc.oscAPI._set_isRunning?5(self, value) +kivy.lib.osc.oscAPI.appendToBundle?4(bundle, oscAddress, dataArray) +kivy.lib.osc.oscAPI.bind?4(oscid, func, oscaddress) +kivy.lib.osc.oscAPI.createBinaryMsg?4(oscAddress, dataArray) +kivy.lib.osc.oscAPI.createBundle?4() +kivy.lib.osc.oscAPI.dontListen?4(id = None) +kivy.lib.osc.oscAPI.init?4() +kivy.lib.osc.oscAPI.listen?4(ipAddr='127.0.0.1', port=9001) +kivy.lib.osc.oscAPI.oscLock?7 +kivy.lib.osc.oscAPI.oscThreads?7 +kivy.lib.osc.oscAPI.outSocket?7 +kivy.lib.osc.oscAPI.printStuff?4(msg) +kivy.lib.osc.oscAPI.readQueue?4(thread_id=None) +kivy.lib.osc.oscAPI.sendBundle?4(bundle, ipAddr='127.0.0.1', port=9000) +kivy.lib.osc.oscAPI.sendMsg?4(oscAddress, dataArray=[], ipAddr='127.0.0.1', port=9000) +kivy.loader.LoaderBase.Loader?7 +kivy.loader.LoaderBase._get_error_image?5() +kivy.loader.LoaderBase._get_loading_image?5() +kivy.loader.LoaderBase._get_max_upload_per_frame?5() +kivy.loader.LoaderBase._get_num_workers?5() +kivy.loader.LoaderBase._load?5(kwargs) +kivy.loader.LoaderBase._load_local?5(filename, kwargs) +kivy.loader.LoaderBase._load_urllib?5(filename, kwargs) +kivy.loader.LoaderBase._set_error_image?5(image) +kivy.loader.LoaderBase._set_loading_image?5(image) +kivy.loader.LoaderBase._set_max_upload_per_frame?5(num) +kivy.loader.LoaderBase._set_num_workers?5(num) +kivy.loader.LoaderBase._update?5(*largs) +kivy.loader.LoaderBase._wait_for_resume?5() +kivy.loader.LoaderBase.error_image?7 +kivy.loader.LoaderBase.image?4(filename, load_callback=None, post_callback=None, **kwargs) +kivy.loader.LoaderBase.loading_image?7 +kivy.loader.LoaderBase.max_upload_per_frame?7 +kivy.loader.LoaderBase.num_workers?7 +kivy.loader.LoaderBase.pause?4() +kivy.loader.LoaderBase.resume?4() +kivy.loader.LoaderBase.run?4(*largs) +kivy.loader.LoaderBase.start?4() +kivy.loader.LoaderBase.stop?4() +kivy.loader.LoaderBase?1() +kivy.loader.LoaderThreadPool.run?4(*largs) +kivy.loader.LoaderThreadPool.start?4() +kivy.loader.LoaderThreadPool.stop?4() +kivy.loader.LoaderThreadPool?1() +kivy.loader.ProxyImage.on_load?4() +kivy.loader.ProxyImage?1(arg, **kwargs) +kivy.loader._ThreadPool.add_task?4(func, *args, **kargs) +kivy.loader._ThreadPool.stop?4() +kivy.loader._ThreadPool?2(num_threads) +kivy.loader._Worker.run?4() +kivy.loader._Worker?2(pool, tasks) +kivy.logger.BOLD_SEQ?7 +kivy.logger.COLORS?7 +kivy.logger.COLOR_SEQ?7 +kivy.logger.ColoredFormatter.format?4(record) +kivy.logger.ColoredFormatter?1(msg, use_color=True) +kivy.logger.ConsoleHandler.filter?4(record) +kivy.logger.FileHandler._configure?5() +kivy.logger.FileHandler._write_message?5(record) +kivy.logger.FileHandler.emit?4(message) +kivy.logger.FileHandler.fd?7 +kivy.logger.FileHandler.filename?7 +kivy.logger.FileHandler.history?7 +kivy.logger.FileHandler.purge_logs?4(directory) +kivy.logger.LOG_LEVELS?7 +kivy.logger.LogFile.flush?4() +kivy.logger.LogFile.write?4(s) +kivy.logger.LogFile?1(channel, func) +kivy.logger.Logger?7 +kivy.logger.LoggerHistory.emit?4(message) +kivy.logger.LoggerHistory.history?7 +kivy.logger.LoggerHistory?7 +kivy.logger.RESET_SEQ?7 +kivy.logger.formatter_message?4(message, use_color=True) +kivy.logger.logger_config_update?4(section, key, value) +kivy.logger.previous_stderr?7 +kivy.metrics.Metrics?7 +kivy.metrics.MetricsBase.density?4() +kivy.metrics.MetricsBase.dpi?4() +kivy.metrics.MetricsBase.dpi_rounded?4() +kivy.metrics.MetricsBase.fontscale?4() +kivy.metrics.cm?4(value) +kivy.metrics.dp?4(value) +kivy.metrics.inch?4(value) +kivy.metrics.metrics?7 +kivy.metrics.mm?4(value) +kivy.metrics.pt?4(value) +kivy.metrics.sp?4(value) +kivy.modules.ModuleBase._configure_module?5(name) +kivy.modules.ModuleBase.activate_module?4(name, win) +kivy.modules.ModuleBase.add_path?4(path) +kivy.modules.ModuleBase.configure?4() +kivy.modules.ModuleBase.deactivate_module?4(name, win) +kivy.modules.ModuleBase.import_module?4(name) +kivy.modules.ModuleBase.list?4() +kivy.modules.ModuleBase.register_window?4(win) +kivy.modules.ModuleBase.unregister_window?4(win) +kivy.modules.ModuleBase.update?4() +kivy.modules.ModuleBase.usage_list?4() +kivy.modules.ModuleBase?1(**kwargs) +kivy.modules.ModuleContext?1() +kivy.modules.Modules?7 +kivy.modules.inspector.Inspector.activated?7 +kivy.modules.inspector.Inspector.animation_close?4(instance, value) +kivy.modules.inspector.Inspector.content?7 +kivy.modules.inspector.Inspector.highlight_at?4(x, y) +kivy.modules.inspector.Inspector.highlight_widget?4(widget, info=True, *largs) +kivy.modules.inspector.Inspector.inspect_enabled?7 +kivy.modules.inspector.Inspector.keyboard_shortcut?4(win, scancode, *largs) +kivy.modules.inspector.Inspector.layout?7 +kivy.modules.inspector.Inspector.on_activated?4(instance, activated) +kivy.modules.inspector.Inspector.on_touch_down?4(touch) +kivy.modules.inspector.Inspector.on_touch_move?4(touch) +kivy.modules.inspector.Inspector.on_touch_up?4(touch) +kivy.modules.inspector.Inspector.on_window_children?4(win, children) +kivy.modules.inspector.Inspector.pick?4(widget, x, y) +kivy.modules.inspector.Inspector.save_property_boolean?4(widget, key, index, instance, ) +kivy.modules.inspector.Inspector.save_property_numeric?4(widget, key, index, instance, value) +kivy.modules.inspector.Inspector.save_property_option?4(widget, key, instance, *l) +kivy.modules.inspector.Inspector.save_property_text?4(widget, key, index, instance, value) +kivy.modules.inspector.Inspector.show_property?4(instance, value, key=None, index=-1, *l) +kivy.modules.inspector.Inspector.show_widget_info?4() +kivy.modules.inspector.Inspector.treeview?7 +kivy.modules.inspector.Inspector.update_node_content?4(node, *l) +kivy.modules.inspector.Inspector.update_widget_graphics?4(*l) +kivy.modules.inspector.Inspector.widget?7 +kivy.modules.inspector.Inspector.widget_info?7 +kivy.modules.inspector.Inspector?1(**kwargs) +kivy.modules.inspector.TreeViewProperty._get_widget?5() +kivy.modules.inspector.TreeViewProperty.inspector?7 +kivy.modules.inspector.TreeViewProperty.key?7 +kivy.modules.inspector.TreeViewProperty.refresh?7 +kivy.modules.inspector.TreeViewProperty.widget?7 +kivy.modules.inspector.TreeViewProperty.widget_ref?7 +kivy.modules.inspector.create_inspector?4(win, ctx, *l) +kivy.modules.inspector.start?4(win, ctx) +kivy.modules.inspector.stop?4(win, ctx) +kivy.modules.keybinding._on_keyboard_handler?5(instance, key, scancode, codepoint, modifiers) +kivy.modules.keybinding.start?4(win, ctx) +kivy.modules.keybinding.stop?4(win, ctx) +kivy.modules.monitor.StatsInput.process?4(events) +kivy.modules.monitor._maxinput?8 +kivy.modules.monitor._statsinput?8 +kivy.modules.monitor.start?4(win, ctx) +kivy.modules.monitor.stop?4(win, ctx) +kivy.modules.monitor.update_fps?4(ctx, *largs) +kivy.modules.monitor.update_stats?4(ctx, *largs) +kivy.modules.recorder.on_recorder_key?4(recorder, window, key, *largs) +kivy.modules.recorder.start?4(win, ctx) +kivy.modules.recorder.stop?4(win, ctx) +kivy.modules.screen.apply_device?4(device, scale, orientation) +kivy.modules.screen.configure?4(ctx) +kivy.modules.screen.devices?7 +kivy.modules.screen.start?4(win, ctx) +kivy.modules.screen.stop?4(win, ctx) +kivy.modules.screen.usage?4(device=None) +kivy.modules.touchring._touch_down?5(win, touch) +kivy.modules.touchring._touch_move?5(win, touch) +kivy.modules.touchring._touch_up?5(win, touch) +kivy.modules.touchring.pointer_alpha?7 +kivy.modules.touchring.pointer_image?7 +kivy.modules.touchring.pointer_scale?7 +kivy.modules.touchring.start?4(win, ctx) +kivy.modules.touchring.stop?4(win, ctx) +kivy.modules.webdebugger.FlaskThread.dump_metrics?4(dt) +kivy.modules.webdebugger.FlaskThread.run?4() +kivy.modules.webdebugger.app?7 +kivy.modules.webdebugger.background_jpg?7 +kivy.modules.webdebugger.g_raphael_js?7 +kivy.modules.webdebugger.g_raphael_line_js?7 +kivy.modules.webdebugger.getfile?4(name) +kivy.modules.webdebugger.history_max?7 +kivy.modules.webdebugger.html_index?7 +kivy.modules.webdebugger.index?4() +kivy.modules.webdebugger.jquery_js?7 +kivy.modules.webdebugger.metrics?7 +kivy.modules.webdebugger.metrics_json?4() +kivy.modules.webdebugger.raphael_js?7 +kivy.modules.webdebugger.start?4(win, ctx) +kivy.modules.webdebugger.stop?4(win, ctx) +kivy.network.urlrequest.UrlRequest._dispatch_result?5(dt) +kivy.network.urlrequest.UrlRequest._fetch_url?5(url, body, headers, q) +kivy.network.urlrequest.UrlRequest.chunk_size?4() +kivy.network.urlrequest.UrlRequest.decode_result?4(result, resp) +kivy.network.urlrequest.UrlRequest.error?4() +kivy.network.urlrequest.UrlRequest.get_connection_for_scheme?4(scheme) +kivy.network.urlrequest.UrlRequest.is_finished?4() +kivy.network.urlrequest.UrlRequest.on_error?4(error) +kivy.network.urlrequest.UrlRequest.on_success?4(result) +kivy.network.urlrequest.UrlRequest.req?7 +kivy.network.urlrequest.UrlRequest.resp_headers?4() +kivy.network.urlrequest.UrlRequest.resp_status?4() +kivy.network.urlrequest.UrlRequest.result?4() +kivy.network.urlrequest.UrlRequest.run?4() +kivy.network.urlrequest.UrlRequest.wait?4(delay=0.5) +kivy.network.urlrequest.UrlRequest?1(url, on_success=None, on_redirect=None, on_failure=None, on_error=None, on_progress=None, req_body=None, req_headers=None, chunk_size=8192, timeout=None, method=None, debug=False) +kivy.network.urlrequest.g_requests?7 +kivy.parse_version?4(version) +kivy.parser.color_error?4(text) +kivy.parser.parse_bool?4(text) +kivy.parser.parse_color?4(text) +kivy.parser.parse_filename?4(filename) +kivy.parser.parse_float4?4(text) +kivy.parser.parse_float?7 +kivy.parser.parse_int2?4(text) +kivy.parser.parse_int?7 +kivy.parser.parse_string?4(text) +kivy.require?4(version) +kivy.resources.resource_add_path?4(path) +kivy.resources.resource_find?4(filename) +kivy.resources.resource_paths?7 +kivy.resources.resource_remove_path?4(path) +kivy.storage.AbstractStore._schedule?5(callback, **kwargs) +kivy.storage.AbstractStore.async_clear?4(callback) +kivy.storage.AbstractStore.async_count?4(callback) +kivy.storage.AbstractStore.async_delete?4(callback, key) +kivy.storage.AbstractStore.async_exists?4(callback, key) +kivy.storage.AbstractStore.async_find?4(callback, **filters) +kivy.storage.AbstractStore.async_get?4(callback, key) +kivy.storage.AbstractStore.async_keys?4(callback) +kivy.storage.AbstractStore.async_put?4(callback, key, **values) +kivy.storage.AbstractStore.clear?4() +kivy.storage.AbstractStore.count?4() +kivy.storage.AbstractStore.delete?4(key) +kivy.storage.AbstractStore.exists?4(key) +kivy.storage.AbstractStore.find?4(**filters) +kivy.storage.AbstractStore.get?4(key) +kivy.storage.AbstractStore.keys?4() +kivy.storage.AbstractStore.put?4(key, **values) +kivy.storage.AbstractStore.store_clear?4() +kivy.storage.AbstractStore.store_clear_async?4(callback) +kivy.storage.AbstractStore.store_count?4() +kivy.storage.AbstractStore.store_count_async?4(callback) +kivy.storage.AbstractStore.store_delete?4(key) +kivy.storage.AbstractStore.store_delete_async?4(key, callback) +kivy.storage.AbstractStore.store_exists?4(key) +kivy.storage.AbstractStore.store_exists_async?4(key, callback) +kivy.storage.AbstractStore.store_find?4(filters) +kivy.storage.AbstractStore.store_find_async?4(filters, callback) +kivy.storage.AbstractStore.store_get?4(key) +kivy.storage.AbstractStore.store_get_async?4(key, callback) +kivy.storage.AbstractStore.store_keys?4() +kivy.storage.AbstractStore.store_keys_async?4(callback) +kivy.storage.AbstractStore.store_load?4() +kivy.storage.AbstractStore.store_put?4(key, value) +kivy.storage.AbstractStore.store_put_async?4(key, value, callback) +kivy.storage.AbstractStore.store_sync?4() +kivy.storage.AbstractStore?1(**kwargs) +kivy.storage.dictstore.DictStore.store_count?4() +kivy.storage.dictstore.DictStore.store_delete?4(key) +kivy.storage.dictstore.DictStore.store_exists?4(key) +kivy.storage.dictstore.DictStore.store_find?4(filters) +kivy.storage.dictstore.DictStore.store_get?4(key) +kivy.storage.dictstore.DictStore.store_keys?4() +kivy.storage.dictstore.DictStore.store_put?4(key, value) +kivy.storage.dictstore.DictStore?1(data=None, **kwargs) +kivy.storage.jsonstore.JsonStore.store_count?4() +kivy.storage.jsonstore.JsonStore.store_delete?4(key) +kivy.storage.jsonstore.JsonStore.store_exists?4(key) +kivy.storage.jsonstore.JsonStore.store_find?4(filters) +kivy.storage.jsonstore.JsonStore.store_get?4(key) +kivy.storage.jsonstore.JsonStore.store_keys?4() +kivy.storage.jsonstore.JsonStore.store_load?4() +kivy.storage.jsonstore.JsonStore.store_put?4(key, value) +kivy.storage.jsonstore.JsonStore.store_sync?4() +kivy.storage.jsonstore.JsonStore?1(filename, **kwargs) +kivy.storage.redisstore.RedisStore.prefix?7 +kivy.storage.redisstore.RedisStore.store_delete?4(key) +kivy.storage.redisstore.RedisStore.store_exists?4(key) +kivy.storage.redisstore.RedisStore.store_find?4(filters) +kivy.storage.redisstore.RedisStore.store_get?4(key) +kivy.storage.redisstore.RedisStore.store_keys?4() +kivy.storage.redisstore.RedisStore.store_load?4() +kivy.storage.redisstore.RedisStore.store_put?4(key, values) +kivy.storage.redisstore.RedisStore.store_sync?4() +kivy.storage.redisstore.RedisStore?1(redis_params, **kwargs) +kivy.support._android_ask_redraw?5(*largs) +kivy.support._gobject_iteration?5(*largs) +kivy.support.android_check_pause?4(*largs) +kivy.support.g_android_redraw_count?7 +kivy.support.install_android?4() +kivy.support.install_gobject_iteration?4() +kivy.support.install_twisted_reactor?4(**kwargs) +kivy.support.reactor_start?4(*args) +kivy.support.reactor_stop?4(*args) +kivy.support.reactor_wake?4(twisted_loop_next) +kivy.support.reactor_work?4(*args) +kivy.tests.common.GraphicUnitTest.do_close?4() +kivy.tests.common.GraphicUnitTest.do_yes?4() +kivy.tests.common.GraphicUnitTest.interactive_ask_diff?4(code, tmpfn, reffn, testid) +kivy.tests.common.GraphicUnitTest.interactive_ask_ref?4(code, imagefn, testid) +kivy.tests.common.GraphicUnitTest.on_window_flip?4(window) +kivy.tests.common.GraphicUnitTest.render?4(root, framecount=1) +kivy.tests.common.GraphicUnitTest.run?4(name) +kivy.tests.common.GraphicUnitTest.setUp?4() +kivy.tests.common.GraphicUnitTest.tearDown?4(fake=False) +kivy.tests.common.log?7 +kivy.tests.perf_test_textinput.PerfApp.build?4() +kivy.tests.perf_test_textinput.PerfApp.dlt?4() +kivy.tests.perf_test_textinput.PerfApp.load_large_text?4(*largs) +kivy.tests.perf_test_textinput.PerfApp.load_text?4() +kivy.tests.perf_test_textinput.PerfApp.pste?4() +kivy.tests.perf_test_textinput.PerfApp.start_test?4(*largs) +kivy.tests.perf_test_textinput.PerfApp.stress_del?4(*largs) +kivy.tests.perf_test_textinput.PerfApp.stress_insert?4(*largs) +kivy.tests.perf_test_textinput.PerfApp.stress_selection?4(*largs) +kivy.tests.perf_test_textinput.PerfApp.test?4() +kivy.tests.perf_test_textinput.PerfApp?1(**kwargs) +kivy.tests.test_adapters.Adapter_1?1(**kwargs) +kivy.tests.test_adapters.AdaptersTestCase.dummy_converter?4() +kivy.tests.test_adapters.AdaptersTestCase.setUp?4() +kivy.tests.test_adapters.AdaptersTestCase.sorted_keys_ok?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_bad_sorted_keys?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_composite?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_no_sorted_keys?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_operations_trimming?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_reset_data?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_selection_mode_single_with_propagation?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_selection_mode_single_without_propagation?4() +kivy.tests.test_adapters.AdaptersTestCase.test_dict_adapter_sorted_keys?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_adapter?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_adapter_bind_triggers_to_view?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_an_adapter_with_both_cls_and_template?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_an_adapter_with_neither_cls_nor_template?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_an_adapter_with_no_data?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_dict_adapter_bind_triggers_to_view?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_list_adapter?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_list_adapter_no_args_converter?4() +kivy.tests.test_adapters.AdaptersTestCase.test_instantiating_list_adapters_with_both_cls_and_template?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_bindings?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_operations_trimming?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_reset_data?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_selection_mode_multiple_select_list?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_selection_mode_none?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_selection_mode_single?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_with_custom_data_item_class?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_with_dict_data?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_with_dicts_as_data?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_with_dicts_as_data_multiple_selection?4() +kivy.tests.test_adapters.AdaptersTestCase.test_list_adapter_with_widget_as_data_item_class?4() +kivy.tests.test_adapters.AdaptersTestCase.test_simple_list_adapter_for_exceptions?4() +kivy.tests.test_adapters.AdaptersTestCase.test_simple_list_adapter_methods?4() +kivy.tests.test_adapters.AdaptersTestCase.test_simple_list_adapter_with_template?4() +kivy.tests.test_adapters.AdaptersTestCase.test_view_from_list_adapter?4() +kivy.tests.test_adapters.BadDataItem.allow_empty_selection?7 +kivy.tests.test_adapters.BadDataItem.args_converter?7 +kivy.tests.test_adapters.BadDataItem.cls?7 +kivy.tests.test_adapters.BadDataItem.propagate_selection_to_data?7 +kivy.tests.test_adapters.BadDataItem.selection_mode?7 +kivy.tests.test_adapters.BadDataItem.text?7 +kivy.tests.test_adapters.BadDataItem.view?7 +kivy.tests.test_adapters.CategoryItem?1(**kwargs) +kivy.tests.test_adapters.DataItem?1(text='', is_selected=False) +kivy.tests.test_adapters.DataItemWithMethod._is_selected?8 +kivy.tests.test_adapters.DataItemWithMethod.is_selected?4() +kivy.tests.test_adapters.DataItem_1.is_selected?7 +kivy.tests.test_adapters.DataItem_1.text?7 +kivy.tests.test_adapters.FruitItem?1(**kwargs) +kivy.tests.test_adapters.FruitsListAdapter.fruit_category_changed?4(fruit_categories_adapter, *args) +kivy.tests.test_adapters.FruitsListAdapter?1(**kwargs) +kivy.tests.test_adapters.PetListener.callback?4(*args) +kivy.tests.test_adapters.PetListener?1(pet) +kivy.tests.test_adapters.PetListener?1(pets) +kivy.tests.test_adapters.PetListener_1.callback?4(*args) +kivy.tests.test_adapters.PetListener_2.callback?4(*args) +kivy.tests.test_adapters.PetListener_3.callback?4(*args) +kivy.tests.test_adapters.attributes_and_units?7 +kivy.tests.test_adapters.category_data_items?7 +kivy.tests.test_adapters.fruit_categories?7 +kivy.tests.test_adapters.fruit_data?7 +kivy.tests.test_adapters.fruit_data_attribute_units?7 +kivy.tests.test_adapters.fruit_data_attributes?7 +kivy.tests.test_adapters.fruit_data_items?7 +kivy.tests.test_adapters.fruit_data_list_of_dicts?7 +kivy.tests.test_adapters.integers_dict?7 +kivy.tests.test_adapters.reset_to_defaults?4(db_dict) +kivy.tests.test_animations.AnimationTestCase.setUp?4() +kivy.tests.test_animations.AnimationTestCase.sleep?4(t) +kivy.tests.test_animations.AnimationTestCase.test_animated_properties?4() +kivy.tests.test_animations.AnimationTestCase.test_duration?4() +kivy.tests.test_animations.AnimationTestCase.test_start_animation?4() +kivy.tests.test_animations.AnimationTestCase.test_stop_all?4() +kivy.tests.test_animations.AnimationTestCase.test_stop_all_2?4() +kivy.tests.test_animations.AnimationTestCase.test_stop_animation?4() +kivy.tests.test_animations.AnimationTestCase.test_transition?4() +kivy.tests.test_app.AppTest.test_start_app_with_kv?4() +kivy.tests.test_app.AppTest.test_start_raw_app?4() +kivy.tests.test_app.AppTest.test_user_data_dir?4() +kivy.tests.test_audio.AudioGstreamerTestCase.make_sound?4(source) +kivy.tests.test_audio.AudioPygameTestCase.make_sound?4(source) +kivy.tests.test_audio.AudioTestCase.get_sound?4() +kivy.tests.test_audio.AudioTestCase.test_length_playing?4() +kivy.tests.test_audio.AudioTestCase.test_length_simple?4() +kivy.tests.test_audio.AudioTestCase.test_length_stopped?4() +kivy.tests.test_audio.SAMPLE_FILE?7 +kivy.tests.test_audio.SAMPLE_LENGTH?7 +kivy.tests.test_audio.SAMPLE_LENGTH_MAX?7 +kivy.tests.test_audio.SAMPLE_LENGTH_MIN?7 +kivy.tests.test_clock.ClockTestCase.setUp?4() +kivy.tests.test_clock.ClockTestCase.test_schedule_once?4() +kivy.tests.test_clock.ClockTestCase.test_schedule_once_draw_after?4() +kivy.tests.test_clock.ClockTestCase.test_schedule_once_draw_before?4() +kivy.tests.test_clock.ClockTestCase.test_schedule_once_twice?4() +kivy.tests.test_clock.ClockTestCase.test_unschedule?4() +kivy.tests.test_clock.ClockTestCase.test_unschedule_after_tick?4() +kivy.tests.test_clock.ClockTestCase.test_unschedule_draw?4() +kivy.tests.test_clock.callback?4(dt) +kivy.tests.test_clock.counter?7 +kivy.tests.test_filechooser.FileChooserTestCase.test_filechooserlistview?4() +kivy.tests.test_fonts.FontTestCase.setUp?4() +kivy.tests.test_fonts.FontTestCase.test_unicode_name?4() +kivy.tests.test_graphics.FBOInstructionTestCase.test_fbo_pixels?4() +kivy.tests.test_graphics.VertexInstructionTest.test_circle?4() +kivy.tests.test_graphics.VertexInstructionTest.test_ellipse?4() +kivy.tests.test_graphics.VertexInstructionTest.test_point?4() +kivy.tests.test_graphics.VertexInstructionTest.test_point_add?4() +kivy.tests.test_image.ImageTestCase.setUp?4() +kivy.tests.test_image.ImageTestCase.test_keep_data?4() +kivy.tests.test_invalid_lang.InvalidLangTestCase.test_invalid_childname?4() +kivy.tests.test_invalid_lang.InvalidLangTestCase.test_invalid_childname_before?4() +kivy.tests.test_issue_1084.UnicodeIssueSetting.build?4() +kivy.tests.test_issue_1084.UnicodeIssueSetting.build_config?4(config) +kivy.tests.test_issue_1084.data?7 +kivy.tests.test_issue_1091.PaddingSpacingTestCase.test_tb_lr_stacklayout?4() +kivy.tests.test_issue_599.Issue599.test_minmax?4() +kivy.tests.test_issue_599.PropertyWidget.foo?7 +kivy.tests.test_issue_609.Issue609.test_markup_pos?4() +kivy.tests.test_issue_883.LabelEmptyMarkupTestCase.test_empty_markup?4() +kivy.tests.test_lang.BaseClass.add_widget?4(widget) +kivy.tests.test_lang.BaseClass.bind?4(**kwargs) +kivy.tests.test_lang.BaseClass.create_property?4(name) +kivy.tests.test_lang.BaseClass.is_event_type?4(key) +kivy.tests.test_lang.BaseClass?1(**kwargs) +kivy.tests.test_lang.LangTestCase.import_builder?4() +kivy.tests.test_lang.LangTestCase.test_loading_failed_1?4() +kivy.tests.test_lang.LangTestCase.test_parser_numeric_1?4() +kivy.tests.test_lang.LangTestCase.test_parser_numeric_2?4() +kivy.tests.test_lang.LangTestCase.test_references?4() +kivy.tests.test_lang.LangTestCase.test_references_with_template?4() +kivy.tests.test_lang.LangTestCase.test_references_with_template_case_2?4() +kivy.tests.test_lang.LangTestCase.test_references_with_template_case_3?4() +kivy.tests.test_lang.LangTestCase.test_with_eight_spaces?4() +kivy.tests.test_lang.LangTestCase.test_with_multiline?4() +kivy.tests.test_lang.LangTestCase.test_with_one_space?4() +kivy.tests.test_lang.LangTestCase.test_with_two_spaces?4() +kivy.tests.test_lang.TestClass.obj?7 +kivy.tests.test_lang.TestClass2.obj?7 +kivy.tests.test_lang.TestClass3.obj?7 +kivy.tests.test_lang_complex.LangComplexTestCase.test_complex_rewrite?4() +kivy.tests.test_lang_complex.MainWidget.refwid2?7 +kivy.tests.test_lang_complex.MainWidget.refwid?7 +kivy.tests.test_lang_complex.TestWidget.can_edit?7 +kivy.tests.test_lang_complex.TestWidget.on_release?4() +kivy.tests.test_lang_complex.TestWidget.source2?7 +kivy.tests.test_lang_complex.TestWidget.source3?7 +kivy.tests.test_lang_complex.TestWidget.source?7 +kivy.tests.test_lang_complex.TestWidget?1(**kwargs) +kivy.tests.test_lang_complex.rules?7 +kivy.tests.test_properties.CustomAlias._get_prop?5() +kivy.tests.test_properties.CustomAlias._set_prop?5(value) +kivy.tests.test_properties.CustomAlias.basevalue?7 +kivy.tests.test_properties.CustomAlias.prop?7 +kivy.tests.test_properties.PropertiesTestCase.get_right?4() +kivy.tests.test_properties.PropertiesTestCase.observe?4(value) +kivy.tests.test_properties.PropertiesTestCase.set_right?4(value) +kivy.tests.test_properties.PropertiesTestCase.test_alias?4() +kivy.tests.test_properties.PropertiesTestCase.test_aliasproperty_with_cache?4() +kivy.tests.test_properties.PropertiesTestCase.test_base?4() +kivy.tests.test_properties.PropertiesTestCase.test_bounded_numeric_property?4() +kivy.tests.test_properties.PropertiesTestCase.test_bounded_numeric_property_error_handler?4() +kivy.tests.test_properties.PropertiesTestCase.test_bounded_numeric_property_error_value?4() +kivy.tests.test_properties.PropertiesTestCase.test_dict?4() +kivy.tests.test_properties.PropertiesTestCase.test_dictcheck?4() +kivy.tests.test_properties.PropertiesTestCase.test_listcheck?4() +kivy.tests.test_properties.PropertiesTestCase.test_numericcheck?4() +kivy.tests.test_properties.PropertiesTestCase.test_objectcheck?4() +kivy.tests.test_properties.PropertiesTestCase.test_observer?4() +kivy.tests.test_properties.PropertiesTestCase.test_propertynone?4() +kivy.tests.test_properties.PropertiesTestCase.test_reference?4() +kivy.tests.test_properties.PropertiesTestCase.test_stringcheck?4() +kivy.tests.test_properties.wid?7 +kivy.tests.test_selection.CategoryItem?1(**kwargs) +kivy.tests.test_selection.DictAdapterTestCase.setUp?4() +kivy.tests.test_selection.DictAdapterTestCase.test_dict_adapter_selection_cascade?4() +kivy.tests.test_selection.FruitItem?1(**kwargs) +kivy.tests.test_selection.FruitSelectionObserver.call_count?7 +kivy.tests.test_selection.FruitSelectionObserver.fruit_name?7 +kivy.tests.test_selection.FruitSelectionObserver.on_selection_change?4(list_adapter, *args) +kivy.tests.test_selection.FruitsDictAdapter.fruit_category_changed?4(fruit_categories_adapter, *args) +kivy.tests.test_selection.ListAdapterTestCase.setUp?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_handle_selection?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_mode_multiple_and_limited?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_mode_multiple_auto_selection?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_mode_none?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_mode_single?4() +kivy.tests.test_selection.ListAdapterTestCase.test_list_adapter_selection_mode_single_auto_selection?4() +kivy.tests.test_selection.attributes_and_units?7 +kivy.tests.test_selection.category_data_items?7 +kivy.tests.test_selection.fruit_categories?7 +kivy.tests.test_selection.fruit_data?7 +kivy.tests.test_selection.fruit_data_attribute_units?7 +kivy.tests.test_selection.fruit_data_attributes?7 +kivy.tests.test_selection.fruit_data_items?7 +kivy.tests.test_selection.fruit_data_list_of_dicts?7 +kivy.tests.test_selection.integers_dict?7 +kivy.tests.test_selection.reset_to_defaults?4(data) +kivy.tests.test_storage.StorageTestCase._do_store_test_empty?5(store) +kivy.tests.test_storage.StorageTestCase._do_store_test_filled?5(store) +kivy.tests.test_storage.StorageTestCase.test_dict_storage?4() +kivy.tests.test_storage.StorageTestCase.test_json_storage?4() +kivy.tests.test_storage.StorageTestCase.test_redis_storage?4() +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.box?4(r, g, b) +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.linksp?4(*largs) +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.test_anchor_layout_xy?4() +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.test_anchorlayout_default?4() +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.test_anchorlayout_x?4() +kivy.tests.test_uix_anchorlayout.UIXAnchorLayoutTestcase.test_anchorlayout_y?4() +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.box?4(r, g, b) +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.linksp?4(*largs) +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.test_boxlayout_orientation?4() +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.test_boxlayout_padding?4() +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.test_boxlayout_padding_spacing?4() +kivy.tests.test_uix_boxlayout.UIXBoxLayoutTestcase.test_boxlayout_spacing?4() +kivy.tests.test_uix_listview.ListViewModal?1(**kwargs) +kivy.tests.test_uix_listview.ListViewTestCase.setUp?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_list_view_declared_in_kv_with_adapter?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_list_view_declared_in_kv_with_item_strings?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_list_view_reset_data?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_list_view_with_list_of_integers?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_list_view_with_list_of_integers_scrolling?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_simple_list_view?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_simple_list_view_deletion?4() +kivy.tests.test_uix_listview.ListViewTestCase.test_simple_list_view_explicit_simple_list_adapter?4() +kivy.tests.test_uix_listview.PetListener.callback?4(*args) +kivy.tests.test_uix_listview.PetListener?1(pet) +kivy.tests.test_uix_widget.CallerWidget?1(**kwargs) +kivy.tests.test_uix_widget.NestedWidget.title?7 +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_add_widget_index_0?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_add_widget_index_1?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_add_widget_index_2?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_button_properties?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_default_widgets?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_image_properties?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_slider_properties?4() +kivy.tests.test_uix_widget.UIXWidgetTestCase.test_widget_root_from_code_with_kv?4() +kivy.tests.test_urlrequest.UrlRequestTest._on_error?5(req, *args) +kivy.tests.test_urlrequest.UrlRequestTest._on_progress?5(req, *args) +kivy.tests.test_urlrequest.UrlRequestTest._on_redirect?5(req, *args) +kivy.tests.test_urlrequest.UrlRequestTest._on_success?5(req, *args) +kivy.tests.test_urlrequest.UrlRequestTest.test_callbacks?4() +kivy.tests.test_widget.WidgetTestCase.setUp?4() +kivy.tests.test_widget.WidgetTestCase.test_add_remove_widget?4() +kivy.tests.test_widget.WidgetTestCase.test_collision?4() +kivy.tests.test_widget.WidgetTestCase.test_invalid_add_widget?4() +kivy.tests.test_widget.WidgetTestCase.test_position?4() +kivy.tests.test_widget.WidgetTestCase.test_size?4() +kivy.tools.benchmark.bench_button_creation.run?4() +kivy.tools.benchmark.bench_button_creation?1() +kivy.tools.benchmark.bench_button_creation_with_tick.benchs?7 +kivy.tools.benchmark.bench_button_creation_with_tick.clock_total?7 +kivy.tools.benchmark.bench_button_creation_with_tick.log?4(newline=True) +kivy.tools.benchmark.bench_button_creation_with_tick.payload?7 +kivy.tools.benchmark.bench_button_creation_with_tick.r?7 +kivy.tools.benchmark.bench_button_creation_with_tick.reply?7 +kivy.tools.benchmark.bench_button_creation_with_tick.report?7 +kivy.tools.benchmark.bench_button_creation_with_tick.report_newline?7 +kivy.tools.benchmark.bench_button_creation_with_tick.run?4() +kivy.tools.benchmark.bench_button_creation_with_tick?1() +kivy.tools.benchmark.bench_label_creation.run?4() +kivy.tools.benchmark.bench_label_creation?1() +kivy.tools.benchmark.bench_label_creation_with_tick.run?4() +kivy.tools.benchmark.bench_label_creation_with_tick?1() +kivy.tools.benchmark.bench_widget_creation.run?4() +kivy.tools.benchmark.bench_widget_creation_with_root.run?4() +kivy.tools.benchmark.bench_widget_dispatch.run?4() +kivy.tools.benchmark.bench_widget_dispatch?1() +kivy.tools.benchmark.bench_widget_draw.run?4() +kivy.tools.benchmark.bench_widget_draw?1() +kivy.tools.benchmark.benchmark_version?7 +kivy.tools.benchmark.clockfn?7 +kivy.tools.extensions.make-kivyext.Extension.create_files?4() +kivy.tools.extensions.make-kivyext.Extension.make_folder?4() +kivy.tools.extensions.make-kivyext.Extension?1(name, shortname, author, email, output_folder) +kivy.tools.extensions.make-kivyext.FILE_HEADER_TEMPLATE?7 +kivy.tools.extensions.make-kivyext.SETUP_PY_TEMPLATE?7 +kivy.tools.extensions.make-kivyext._sep_re?8 +kivy.tools.extensions.make-kivyext.guess_package?4(name) +kivy.tools.extensions.make-kivyext.main?4() +kivy.tools.extensions.make-kivyext.prompt?4(name, default=None) +kivy.tools.extensions.make-kivyext.prompt_bool?4(name, default=False) +kivy.tools.extensions.make-kivyext.prompt_choices?4(name, choices) +kivy.tools.packaging.factory.FactoryBuild.description?7 +kivy.tools.packaging.factory.FactoryBuild.finalize_options?4() +kivy.tools.packaging.factory.FactoryBuild.initialize_options?4() +kivy.tools.packaging.factory.FactoryBuild.run?4() +kivy.tools.packaging.factory.FactoryBuild.user_options?7 +kivy.tools.packaging.factory.ignore_list?7 +kivy.tools.packaging.googlecode_upload.encode_upload_request?4(fields, file_path) +kivy.tools.packaging.googlecode_upload.main?4() +kivy.tools.packaging.googlecode_upload.upload?4(file, project_name, user_name, password, summary, labels=None) +kivy.tools.packaging.googlecode_upload.upload_find_auth?4(file_path, project_name, summary, labels=None, user_name=None, password=None, tries=3) +kivy.tools.packaging.osx.build.OSXPortableBuild.description?7 +kivy.tools.packaging.osx.build.OSXPortableBuild.download_deps?4() +kivy.tools.packaging.osx.build.OSXPortableBuild.finalize_options?4() +kivy.tools.packaging.osx.build.OSXPortableBuild.get_latest_hash?4() +kivy.tools.packaging.osx.build.OSXPortableBuild.initialize_options?4() +kivy.tools.packaging.osx.build.OSXPortableBuild.report_hook?4(block_size, total_size) +kivy.tools.packaging.osx.build.OSXPortableBuild.run?4() +kivy.tools.packaging.osx.build.OSXPortableBuild.user_options?7 +kivy.tools.packaging.osx.build.OSXPortableBuild.write_plist?4(target) +kivy.tools.packaging.pyinstaller_hooks.curdir?7 +kivy.tools.packaging.pyinstaller_hooks.hook-kivy._kivy_modules?8 +kivy.tools.packaging.pyinstaller_hooks.hook-kivy.datas?7 +kivy.tools.packaging.pyinstaller_hooks.hook-kivy.get_modules?4() +kivy.tools.packaging.pyinstaller_hooks.hook-kivy.hiddenimports?7 +kivy.tools.packaging.pyinstaller_hooks.install_hooks?4(sym, hookspath=None) +kivy.tools.packaging.pyinstaller_hooks.rt-hook-kivy.root?7 +kivy.tools.packaging.win32.build.WindowsPortableBuild.description?7 +kivy.tools.packaging.win32.build.WindowsPortableBuild.finalize_options?4() +kivy.tools.packaging.win32.build.WindowsPortableBuild.initialize_options?4() +kivy.tools.packaging.win32.build.WindowsPortableBuild.report_hook?4(block_size, total_size) +kivy.tools.packaging.win32.build.WindowsPortableBuild.run?4() +kivy.tools.packaging.win32.build.WindowsPortableBuild.user_options?7 +kivy.tools.packaging.win32.build.zip_directory?4(dir, zip_file) +kivy.tools.report.ext?7 +kivy.tools.report.report?7 +kivy.tools.report.s?7 +kivy.tools.report.testimport?4(libname) +kivy.tools.report.title?4(t) +kivy.tools.stub-gl-debug.a?7 +kivy.tools.stub-gl-debug.lines?7 +kivy.tools.stub-gl-debug.replace?4(s) +kivy.tools.texturecompress.Etc1Tool.compress?4() +kivy.tools.texturecompress.Etc1Tool.locate_etc1tool?4() +kivy.tools.texturecompress.Etc1Tool?1(options) +kivy.tools.texturecompress.PvrtcTool.compress?4() +kivy.tools.texturecompress.PvrtcTool.locate_texturetool?4() +kivy.tools.texturecompress.PvrtcTool?1(options) +kivy.tools.texturecompress.Tool.compress?4() +kivy.tools.texturecompress.Tool.nearest_pow2?4(v) +kivy.tools.texturecompress.Tool.run?4() +kivy.tools.texturecompress.Tool.runcmd?4(cmd) +kivy.tools.texturecompress.Tool.tex_fn?4() +kivy.tools.texturecompress.Tool.write_tex?4(data, fmt, image_size, texture_size, mipmap=False, formatinfo=None) +kivy.tools.texturecompress.Tool?1(options) +kivy.uix.abstractview.AbstractView.adapter?7 +kivy.uix.accordion.Accordion._do_layout?5(dt) +kivy.uix.accordion.Accordion.acc?7 +kivy.uix.accordion.Accordion.add_widget?4(widget, *largs) +kivy.uix.accordion.Accordion.anim_duration?7 +kivy.uix.accordion.Accordion.anim_func?7 +kivy.uix.accordion.Accordion.btn?7 +kivy.uix.accordion.Accordion.controls?7 +kivy.uix.accordion.Accordion.min_space?7 +kivy.uix.accordion.Accordion.orientation?7 +kivy.uix.accordion.Accordion.root?7 +kivy.uix.accordion.Accordion.select?4(instance) +kivy.uix.accordion.Accordion.slider?7 +kivy.uix.accordion.Accordion.toggle_layout?4() +kivy.uix.accordion.Accordion.update_min_space?4(value) +kivy.uix.accordion.Accordion?1(**kwargs) +kivy.uix.accordion.AccordionItem._update_title?5(dt) +kivy.uix.accordion.AccordionItem.accordion?7 +kivy.uix.accordion.AccordionItem.add_widget?4(widget) +kivy.uix.accordion.AccordionItem.background_disabled_normal?7 +kivy.uix.accordion.AccordionItem.background_disabled_selected?7 +kivy.uix.accordion.AccordionItem.background_normal?7 +kivy.uix.accordion.AccordionItem.background_selected?7 +kivy.uix.accordion.AccordionItem.collapse?7 +kivy.uix.accordion.AccordionItem.collapse_alpha?7 +kivy.uix.accordion.AccordionItem.container?7 +kivy.uix.accordion.AccordionItem.container_title?7 +kivy.uix.accordion.AccordionItem.content_size?7 +kivy.uix.accordion.AccordionItem.min_space?7 +kivy.uix.accordion.AccordionItem.on_collapse?4(instance, value) +kivy.uix.accordion.AccordionItem.on_collapse_alpha?4(instance, value) +kivy.uix.accordion.AccordionItem.on_touch_down?4(touch) +kivy.uix.accordion.AccordionItem.orientation?7 +kivy.uix.accordion.AccordionItem.remove_widget?4(widget) +kivy.uix.accordion.AccordionItem.title?7 +kivy.uix.accordion.AccordionItem.title_args?7 +kivy.uix.accordion.AccordionItem.title_template?7 +kivy.uix.accordion.AccordionItem?1(**kwargs) +kivy.uix.anchorlayout.AnchorLayout.anchor_x?7 +kivy.uix.anchorlayout.AnchorLayout.anchor_y?7 +kivy.uix.anchorlayout.AnchorLayout.do_layout?4(*largs) +kivy.uix.anchorlayout.AnchorLayout.padding?7 +kivy.uix.anchorlayout.AnchorLayout?1(**kwargs) +kivy.uix.boxlayout.BoxLayout.add_widget?4(widget, index=0) +kivy.uix.boxlayout.BoxLayout.do_layout?4(*largs) +kivy.uix.boxlayout.BoxLayout.orientation?7 +kivy.uix.boxlayout.BoxLayout.padding?7 +kivy.uix.boxlayout.BoxLayout.remove_widget?4(widget) +kivy.uix.boxlayout.BoxLayout.spacing?7 +kivy.uix.boxlayout.BoxLayout?1(**kwargs) +kivy.uix.bubble.Bubble.add_widget?4(*l) +kivy.uix.bubble.Bubble.arrow_image?7 +kivy.uix.bubble.Bubble.arrow_pos?7 +kivy.uix.bubble.Bubble.background_color?7 +kivy.uix.bubble.Bubble.background_image?7 +kivy.uix.bubble.Bubble.border?7 +kivy.uix.bubble.Bubble.clear_widgets?4(**kwargs) +kivy.uix.bubble.Bubble.content?7 +kivy.uix.bubble.Bubble.limit_to?7 +kivy.uix.bubble.Bubble.on_arrow_image?4(*l) +kivy.uix.bubble.Bubble.on_arrow_pos?4(*l) +kivy.uix.bubble.Bubble.on_background_color?4(*l) +kivy.uix.bubble.Bubble.on_background_image?4(*l) +kivy.uix.bubble.Bubble.on_orientation?4(*l) +kivy.uix.bubble.Bubble.on_pos?4(instance, pos) +kivy.uix.bubble.Bubble.options?7 +kivy.uix.bubble.Bubble.orientation?7 +kivy.uix.bubble.Bubble.remove_widget?4(*l) +kivy.uix.bubble.Bubble?1(**kwargs) +kivy.uix.button.Button._do_press?5() +kivy.uix.button.Button._do_release?5() +kivy.uix.button.Button.background_color?7 +kivy.uix.button.Button.background_disabled_down?7 +kivy.uix.button.Button.background_disabled_normal?7 +kivy.uix.button.Button.background_down?7 +kivy.uix.button.Button.background_normal?7 +kivy.uix.button.Button.border?7 +kivy.uix.button.Button.on_press?4() +kivy.uix.button.Button.on_release?4() +kivy.uix.button.Button.on_touch_down?4(touch) +kivy.uix.button.Button.on_touch_move?4(touch) +kivy.uix.button.Button.on_touch_up?4(touch) +kivy.uix.button.Button.state?7 +kivy.uix.button.Button.trigger_action?4(duration=0.1) +kivy.uix.button.Button.trigger_release?4() +kivy.uix.camera.Camera._camera_loaded?5(*largs) +kivy.uix.camera.Camera._on_index?5(*largs) +kivy.uix.camera.Camera.index?7 +kivy.uix.camera.Camera.on_play?4(instance, value) +kivy.uix.camera.Camera.on_tex?4(*l) +kivy.uix.camera.Camera.play?7 +kivy.uix.camera.Camera.resolution?7 +kivy.uix.camera.Camera?1(**kwargs) +kivy.uix.carousel.Carousel._change_touch_mode?5(*largs) +kivy.uix.carousel.Carousel._curr_slide?5() +kivy.uix.carousel.Carousel._current?8 +kivy.uix.carousel.Carousel._do_touch_up?5(touch, *largs) +kivy.uix.carousel.Carousel._get_index?5() +kivy.uix.carousel.Carousel._get_slides_container?5() +kivy.uix.carousel.Carousel._get_uid?5(prefix='sv') +kivy.uix.carousel.Carousel._index?8 +kivy.uix.carousel.Carousel._insert_visible_slides?5() +kivy.uix.carousel.Carousel._next?8 +kivy.uix.carousel.Carousel._next_slide?5() +kivy.uix.carousel.Carousel._offset?8 +kivy.uix.carousel.Carousel._position_visible_slides?5(*args) +kivy.uix.carousel.Carousel._prev?8 +kivy.uix.carousel.Carousel._prev_slide?5() +kivy.uix.carousel.Carousel._set_index?5(value) +kivy.uix.carousel.Carousel._start_animation?5(*args) +kivy.uix.carousel.Carousel._touch?8 +kivy.uix.carousel.Carousel.add_widget?4(widget, index=0) +kivy.uix.carousel.Carousel.anim_cancel_duration?7 +kivy.uix.carousel.Carousel.anim_move_duration?7 +kivy.uix.carousel.Carousel.clear_widgets?4() +kivy.uix.carousel.Carousel.current_slide?7 +kivy.uix.carousel.Carousel.direction?7 +kivy.uix.carousel.Carousel.get_slide_container?4(slide) +kivy.uix.carousel.Carousel.index?7 +kivy.uix.carousel.Carousel.load_next?4(mode='next') +kivy.uix.carousel.Carousel.load_previous?4() +kivy.uix.carousel.Carousel.loop?7 +kivy.uix.carousel.Carousel.min_move?7 +kivy.uix.carousel.Carousel.next_slide?7 +kivy.uix.carousel.Carousel.on__offset?4(*args) +kivy.uix.carousel.Carousel.on_index?4(*args) +kivy.uix.carousel.Carousel.on_pos?4(*args) +kivy.uix.carousel.Carousel.on_size?4(*args) +kivy.uix.carousel.Carousel.on_slides?4(*args) +kivy.uix.carousel.Carousel.on_touch_down?4(touch) +kivy.uix.carousel.Carousel.on_touch_move?4(touch) +kivy.uix.carousel.Carousel.on_touch_up?4(touch) +kivy.uix.carousel.Carousel.previous_slide?7 +kivy.uix.carousel.Carousel.remove_widget?4(widget, *args, **kwargs) +kivy.uix.carousel.Carousel.scroll_distance?7 +kivy.uix.carousel.Carousel.scroll_timeout?7 +kivy.uix.carousel.Carousel.slides?7 +kivy.uix.carousel.Carousel.slides_container?7 +kivy.uix.carousel.Carousel?1(**kwargs) +kivy.uix.carousel.Example1.build?4() +kivy.uix.checkbox.CheckBox._clear_groups?5() +kivy.uix.checkbox.CheckBox._release_group?5(current) +kivy.uix.checkbox.CheckBox._toggle_active?5() +kivy.uix.checkbox.CheckBox.active?7 +kivy.uix.checkbox.CheckBox.group?7 +kivy.uix.checkbox.CheckBox.on_group?4(*largs) +kivy.uix.checkbox.CheckBox.on_touch_down?4(touch) +kivy.uix.checkbox.CheckBox?1(**kwargs) +kivy.uix.codeinput.Cache_append?7 +kivy.uix.codeinput.Cache_get?7 +kivy.uix.codeinput.CodeInput._create_line_label?5(text, hint=False) +kivy.uix.codeinput.CodeInput._cursor_offset?5() +kivy.uix.codeinput.CodeInput._get_bbcode?5(ntext) +kivy.uix.codeinput.CodeInput._get_line_options?5() +kivy.uix.codeinput.CodeInput._get_text_width?5(text, tab_width, _label_cached) +kivy.uix.codeinput.CodeInput.lexer?7 +kivy.uix.codeinput.CodeInput.on_foreground_color?4(instance, text_color) +kivy.uix.codeinput.CodeInput.on_lexer?4(instance, value) +kivy.uix.codeinput.CodeInput?1(**kwargs) +kivy.uix.codeinput.CodeInputTest.build?4() +kivy.uix.colorpicker.ColorPicker._get_hex?5() +kivy.uix.colorpicker.ColorPicker._set_hex?5(value) +kivy.uix.colorpicker.ColorPicker._trigger_update_clr?5(mode, clr_idx, text) +kivy.uix.colorpicker.ColorPicker._trigger_update_hex?5(text) +kivy.uix.colorpicker.ColorPicker._update_clr?5(dt) +kivy.uix.colorpicker.ColorPicker._update_hex?5(dt) +kivy.uix.colorpicker.ColorPicker.color?7 +kivy.uix.colorpicker.ColorPicker.font_name?7 +kivy.uix.colorpicker.ColorPicker.foreground_color?7 +kivy.uix.colorpicker.ColorPicker.hex_color?7 +kivy.uix.colorpicker.ColorPicker.hsv?7 +kivy.uix.colorpicker.ColorPicker.on_color?4(instance, value) +kivy.uix.colorpicker.ColorPicker.on_hsv?4(instance, value) +kivy.uix.colorpicker.ColorPicker.wheel?7 +kivy.uix.colorpicker.ColorPicker?1(**kwargs) +kivy.uix.colorpicker.ColorPickerApp.build?4() +kivy.uix.colorpicker.ColorWheel._get_touch_r?5(pos) +kivy.uix.colorpicker.ColorWheel._hsv?8 +kivy.uix.colorpicker.ColorWheel._inertia_cutoff?8 +kivy.uix.colorpicker.ColorWheel._inertia_slowdown?8 +kivy.uix.colorpicker.ColorWheel._num_touches?8 +kivy.uix.colorpicker.ColorWheel._origin?8 +kivy.uix.colorpicker.ColorWheel._piece_divisions?8 +kivy.uix.colorpicker.ColorWheel._pieces_of_pie?8 +kivy.uix.colorpicker.ColorWheel._pinch_flag?8 +kivy.uix.colorpicker.ColorWheel._radius?8 +kivy.uix.colorpicker.ColorWheel.a?7 +kivy.uix.colorpicker.ColorWheel.b?7 +kivy.uix.colorpicker.ColorWheel.change_alpha?4(val) +kivy.uix.colorpicker.ColorWheel.color?7 +kivy.uix.colorpicker.ColorWheel.g?7 +kivy.uix.colorpicker.ColorWheel.inertial_decr_sv_idx?4(dt) +kivy.uix.colorpicker.ColorWheel.inertial_incr_sv_idx?4(dt) +kivy.uix.colorpicker.ColorWheel.init_wheel?4(dt) +kivy.uix.colorpicker.ColorWheel.on__hsv?4(instance, value) +kivy.uix.colorpicker.ColorWheel.on__origin?4(instance, value) +kivy.uix.colorpicker.ColorWheel.on__radius?4(instance, value) +kivy.uix.colorpicker.ColorWheel.on_touch_down?4(touch) +kivy.uix.colorpicker.ColorWheel.on_touch_move?4(touch) +kivy.uix.colorpicker.ColorWheel.on_touch_up?4(touch) +kivy.uix.colorpicker.ColorWheel.r?7 +kivy.uix.colorpicker.ColorWheel.recolor_wheel?4() +kivy.uix.colorpicker.ColorWheel?1(**kwargs) +kivy.uix.colorpicker._ColorArc.change_color?4(color=None, color_delta=None, sv=None, a=None) +kivy.uix.colorpicker._ColorArc.get_mesh?4() +kivy.uix.colorpicker._ColorArc?2(r_min, r_max, theta_min, theta_max, color=(0, 0, 1, 1), origin = (0, 0), **kwargs) +kivy.uix.colorpicker.distance?4(pt1, pt2) +kivy.uix.colorpicker.polar_to_rect?4(origin, r, theta) +kivy.uix.colorpicker.rect_to_polar?4(origin, x, y) +kivy.uix.dropdown.DropDown._container_minimum_size?5(instance, size) +kivy.uix.dropdown.DropDown._reposition?5(*largs) +kivy.uix.dropdown.DropDown.add_widget?4(*largs) +kivy.uix.dropdown.DropDown.attach_to?7 +kivy.uix.dropdown.DropDown.auto_width?7 +kivy.uix.dropdown.DropDown.btn?7 +kivy.uix.dropdown.DropDown.clear_widgets?4() +kivy.uix.dropdown.DropDown.container?7 +kivy.uix.dropdown.DropDown.dismiss?4(*largs) +kivy.uix.dropdown.DropDown.dismiss_on_select?7 +kivy.uix.dropdown.DropDown.max_height?7 +kivy.uix.dropdown.DropDown.on_select?4(data) +kivy.uix.dropdown.DropDown.on_touch_down?4(touch) +kivy.uix.dropdown.DropDown.on_touch_up?4(touch) +kivy.uix.dropdown.DropDown.open?4(widget) +kivy.uix.dropdown.DropDown.remove_widget?4(*largs) +kivy.uix.dropdown.DropDown.select?4(data) +kivy.uix.dropdown.DropDown.show_dropdown?4(*largs) +kivy.uix.dropdown.DropDown.touch_move?4(touch) +kivy.uix.dropdown.DropDown?1(**kwargs) +kivy.uix.filechooser.FileChooserApp.build?4() +kivy.uix.filechooser.FileChooserController._ENTRY_TEMPLATE?8 +kivy.uix.filechooser.FileChooserController._add_files?5(path, parent=None) +kivy.uix.filechooser.FileChooserController._apply_filters?5(files) +kivy.uix.filechooser.FileChooserController._create_files_entries?5(*args) +kivy.uix.filechooser.FileChooserController._force_unicode?5(s) +kivy.uix.filechooser.FileChooserController._generate_file_entries?5(*args, **kwargs) +kivy.uix.filechooser.FileChooserController._hide_progress?5() +kivy.uix.filechooser.FileChooserController._save_previous_path?5(instance, value) +kivy.uix.filechooser.FileChooserController._show_progress?5() +kivy.uix.filechooser.FileChooserController._trigger_update?5(*args) +kivy.uix.filechooser.FileChooserController._update_files?5(*args, **kwargs) +kivy.uix.filechooser.FileChooserController._update_item_selection?5(*args) +kivy.uix.filechooser.FileChooserController.cancel?4(*largs) +kivy.uix.filechooser.FileChooserController.close_subselection?4(entry) +kivy.uix.filechooser.FileChooserController.dirselect?7 +kivy.uix.filechooser.FileChooserController.entry_released?4(entry, touch) +kivy.uix.filechooser.FileChooserController.entry_subselect?4(entry) +kivy.uix.filechooser.FileChooserController.entry_touched?4(entry, touch) +kivy.uix.filechooser.FileChooserController.file_encodings?7 +kivy.uix.filechooser.FileChooserController.files?7 +kivy.uix.filechooser.FileChooserController.filter_dirs?7 +kivy.uix.filechooser.FileChooserController.filters?7 +kivy.uix.filechooser.FileChooserController.get_nice_size?4() +kivy.uix.filechooser.FileChooserController.multiselect?7 +kivy.uix.filechooser.FileChooserController.on_entries_cleared?4() +kivy.uix.filechooser.FileChooserController.on_entry_added?4(node, parent=None) +kivy.uix.filechooser.FileChooserController.on_remove_subentry?4(subentry, entry) +kivy.uix.filechooser.FileChooserController.on_subentry_to_entry?4(subentry, entry) +kivy.uix.filechooser.FileChooserController.on_submit?4(selected, touch=None) +kivy.uix.filechooser.FileChooserController.on_touch_down?4(touch) +kivy.uix.filechooser.FileChooserController.on_touch_up?4(touch) +kivy.uix.filechooser.FileChooserController.open_entry?4(entry) +kivy.uix.filechooser.FileChooserController.path?7 +kivy.uix.filechooser.FileChooserController.progress_cls?7 +kivy.uix.filechooser.FileChooserController.rootpath?7 +kivy.uix.filechooser.FileChooserController.selection?7 +kivy.uix.filechooser.FileChooserController.show_hidden?7 +kivy.uix.filechooser.FileChooserController.sort_func?7 +kivy.uix.filechooser.FileChooserController?1(**kwargs) +kivy.uix.filechooser.FileChooserIconView._ENTRY_TEMPLATE?8 +kivy.uix.filechooser.FileChooserListView._ENTRY_TEMPLATE?8 +kivy.uix.filechooser.FileChooserProgressBase.cancel?4(*largs) +kivy.uix.filechooser.FileChooserProgressBase.index?7 +kivy.uix.filechooser.FileChooserProgressBase.on_touch_down?4(touch) +kivy.uix.filechooser.FileChooserProgressBase.on_touch_move?4(touch) +kivy.uix.filechooser.FileChooserProgressBase.on_touch_up?4(touch) +kivy.uix.filechooser.FileChooserProgressBase.path?7 +kivy.uix.filechooser.FileChooserProgressBase.total?7 +kivy.uix.filechooser._have_win32file?8 +kivy.uix.filechooser.alphanumeric_folders_first?4(files) +kivy.uix.filechooser.filesize_units?7 +kivy.uix.filechooser.is_hidden_unix?4(fn) +kivy.uix.filechooser.is_hidden_win?4(fn) +kivy.uix.filechooser.platform?7 +kivy.uix.floatlayout.FloatLayout.add_widget?4(widget, index=0) +kivy.uix.floatlayout.FloatLayout.do_layout?4(*largs, **kwargs) +kivy.uix.floatlayout.FloatLayout.remove_widget?4(widget) +kivy.uix.floatlayout.FloatLayout?1(**kwargs) +kivy.uix.gridlayout.GridLayout.col_default_width?7 +kivy.uix.gridlayout.GridLayout.col_force_default?7 +kivy.uix.gridlayout.GridLayout.cols?7 +kivy.uix.gridlayout.GridLayout.cols_minimum?7 +kivy.uix.gridlayout.GridLayout.do_layout?4(*largs) +kivy.uix.gridlayout.GridLayout.get_max_widgets?4() +kivy.uix.gridlayout.GridLayout.minimum_height?7 +kivy.uix.gridlayout.GridLayout.minimum_size?7 +kivy.uix.gridlayout.GridLayout.minimum_width?7 +kivy.uix.gridlayout.GridLayout.on_children?4(instance, value) +kivy.uix.gridlayout.GridLayout.padding?7 +kivy.uix.gridlayout.GridLayout.row_default_height?7 +kivy.uix.gridlayout.GridLayout.row_force_default?7 +kivy.uix.gridlayout.GridLayout.rows?7 +kivy.uix.gridlayout.GridLayout.rows_minimum?7 +kivy.uix.gridlayout.GridLayout.spacing?7 +kivy.uix.gridlayout.GridLayout.update_minimum_size?4(*largs) +kivy.uix.gridlayout.GridLayout?1(**kwargs) +kivy.uix.gridlayout.nmax?4(*args) +kivy.uix.image.AsyncImage._load_source?5(*args) +kivy.uix.image.AsyncImage._on_source_load?5(value) +kivy.uix.image.AsyncImage._on_tex_change?5(*largs) +kivy.uix.image.AsyncImage.is_uri?4(filename) +kivy.uix.image.AsyncImage.texture_update?4(*largs) +kivy.uix.image.AsyncImage?1(**kwargs) +kivy.uix.image.Image._on_tex_change?5(*largs) +kivy.uix.image.Image.allow_stretch?7 +kivy.uix.image.Image.anim_delay?7 +kivy.uix.image.Image.color?7 +kivy.uix.image.Image.get_image_ratio?4() +kivy.uix.image.Image.get_norm_image_size?4() +kivy.uix.image.Image.image_ratio?7 +kivy.uix.image.Image.keep_data?7 +kivy.uix.image.Image.keep_ratio?7 +kivy.uix.image.Image.mipmap?7 +kivy.uix.image.Image.nocache?7 +kivy.uix.image.Image.norm_image_size?7 +kivy.uix.image.Image.on_anim_delay?4(instance, value) +kivy.uix.image.Image.on_nocache?4(*args) +kivy.uix.image.Image.on_texture?4(instance, value) +kivy.uix.image.Image.reload?4() +kivy.uix.image.Image.source?7 +kivy.uix.image.Image.texture?7 +kivy.uix.image.Image.texture_size?7 +kivy.uix.image.Image.texture_update?4(*largs) +kivy.uix.image.Image?1(**kwargs) +kivy.uix.label.Label._create_label?5() +kivy.uix.label.Label._font_properties?8 +kivy.uix.label.Label._trigger_texture_update?5(name=None, source=None, value=None) +kivy.uix.label.Label.anchors?7 +kivy.uix.label.Label.bold?7 +kivy.uix.label.Label.color?7 +kivy.uix.label.Label.disabled_color?7 +kivy.uix.label.Label.font_name?7 +kivy.uix.label.Label.font_size?7 +kivy.uix.label.Label.halign?7 +kivy.uix.label.Label.italic?7 +kivy.uix.label.Label.line_height?7 +kivy.uix.label.Label.markup?7 +kivy.uix.label.Label.mipmap?7 +kivy.uix.label.Label.on_ref_press?4(ref) +kivy.uix.label.Label.on_touch_down?4(touch) +kivy.uix.label.Label.padding?7 +kivy.uix.label.Label.padding_x?7 +kivy.uix.label.Label.padding_y?7 +kivy.uix.label.Label.refs?7 +kivy.uix.label.Label.shorten?7 +kivy.uix.label.Label.text?7 +kivy.uix.label.Label.text_size?7 +kivy.uix.label.Label.texture?7 +kivy.uix.label.Label.texture_size?7 +kivy.uix.label.Label.texture_update?4(*largs) +kivy.uix.label.Label.valign?7 +kivy.uix.label.Label?1(**kwargs) +kivy.uix.layout.Layout.add_widget?4(widget, index=0) +kivy.uix.layout.Layout.do_layout?4(*largs) +kivy.uix.layout.Layout.remove_widget?4(widget) +kivy.uix.layout.Layout?1(**kwargs) +kivy.uix.listview.CompositeListItem.background_color?7 +kivy.uix.listview.CompositeListItem.deselect?4(*args) +kivy.uix.listview.CompositeListItem.deselect_from_child?4(child, *args) +kivy.uix.listview.CompositeListItem.deselected_color?7 +kivy.uix.listview.CompositeListItem.representing_cls?7 +kivy.uix.listview.CompositeListItem.select?4(*args) +kivy.uix.listview.CompositeListItem.select_from_child?4(child, *args) +kivy.uix.listview.CompositeListItem.selected_color?7 +kivy.uix.listview.CompositeListItem?1(**kwargs) +kivy.uix.listview.ListItemButton.deselect?4(*args) +kivy.uix.listview.ListItemButton.deselect_from_composite?4(*args) +kivy.uix.listview.ListItemButton.deselected_color?7 +kivy.uix.listview.ListItemButton.select?4(*args) +kivy.uix.listview.ListItemButton.select_from_composite?4(*args) +kivy.uix.listview.ListItemButton.selected_color?7 +kivy.uix.listview.ListItemButton?1(**kwargs) +kivy.uix.listview.ListItemLabel.deselect?4(*args) +kivy.uix.listview.ListItemLabel.deselect_from_composite?4(*args) +kivy.uix.listview.ListItemLabel.select?4(*args) +kivy.uix.listview.ListItemLabel.select_from_composite?4(*args) +kivy.uix.listview.ListItemLabel?1(**kwargs) +kivy.uix.listview.ListView._count?8 +kivy.uix.listview.ListView._index?8 +kivy.uix.listview.ListView._reset_spopulate?5(*args) +kivy.uix.listview.ListView._scroll?5(scroll_y) +kivy.uix.listview.ListView._sizes?8 +kivy.uix.listview.ListView._spopulate?5(*args) +kivy.uix.listview.ListView._wend?8 +kivy.uix.listview.ListView._wstart?8 +kivy.uix.listview.ListView.container?7 +kivy.uix.listview.ListView.divider?7 +kivy.uix.listview.ListView.divider_height?7 +kivy.uix.listview.ListView.item_strings?7 +kivy.uix.listview.ListView.item_strings_changed?4(*args) +kivy.uix.listview.ListView.on_scroll_complete?4(*args) +kivy.uix.listview.ListView.populate?4(istart=None, iend=None) +kivy.uix.listview.ListView.row_height?7 +kivy.uix.listview.ListView.scroll_to?4(index=0) +kivy.uix.listview.ListView.scrolling?7 +kivy.uix.listview.ListView?1(**kwargs) +kivy.uix.listview.SelectableView.deselect?4(*args) +kivy.uix.listview.SelectableView.index?7 +kivy.uix.listview.SelectableView.is_selected?7 +kivy.uix.listview.SelectableView.select?4(*args) +kivy.uix.listview.SelectableView?1(**kwargs) +kivy.uix.modalview.ModalView._align_center?5(*l) +kivy.uix.modalview.ModalView._anim_alpha?8 +kivy.uix.modalview.ModalView._anim_duration?8 +kivy.uix.modalview.ModalView._handle_keyboard?5(window, key, *largs) +kivy.uix.modalview.ModalView._real_remove_widget?5() +kivy.uix.modalview.ModalView._search_window?5() +kivy.uix.modalview.ModalView._update_center?5(*args) +kivy.uix.modalview.ModalView._window?8 +kivy.uix.modalview.ModalView.attach_to?7 +kivy.uix.modalview.ModalView.auto_dismiss?7 +kivy.uix.modalview.ModalView.background?7 +kivy.uix.modalview.ModalView.background_color?7 +kivy.uix.modalview.ModalView.border?7 +kivy.uix.modalview.ModalView.content?7 +kivy.uix.modalview.ModalView.dismiss?4(*largs, **kwargs) +kivy.uix.modalview.ModalView.layout?7 +kivy.uix.modalview.ModalView.on__anim_alpha?4(instance, value) +kivy.uix.modalview.ModalView.on_dismiss?4() +kivy.uix.modalview.ModalView.on_open?4() +kivy.uix.modalview.ModalView.on_size?4(instance, value) +kivy.uix.modalview.ModalView.on_touch_down?4(touch) +kivy.uix.modalview.ModalView.on_touch_move?4(touch) +kivy.uix.modalview.ModalView.on_touch_up?4(touch) +kivy.uix.modalview.ModalView.open?4(*largs) +kivy.uix.modalview.ModalView.open_view?4() +kivy.uix.modalview.ModalView.view?7 +kivy.uix.modalview.ModalView?1(**kwargs) +kivy.uix.popup.Popup._container?8 +kivy.uix.popup.Popup.add_widget?4(widget) +kivy.uix.popup.Popup.content?7 +kivy.uix.popup.Popup.content_cancel?7 +kivy.uix.popup.Popup.layout?7 +kivy.uix.popup.Popup.on__container?4(instance, value) +kivy.uix.popup.Popup.on_content?4(instance, value) +kivy.uix.popup.Popup.on_touch_down?4(touch) +kivy.uix.popup.Popup.popup?7 +kivy.uix.popup.Popup.separator_color?7 +kivy.uix.popup.Popup.separator_height?7 +kivy.uix.popup.Popup.title?7 +kivy.uix.popup.Popup.title_size?7 +kivy.uix.progressbar.ProgressBar._get_value?5() +kivy.uix.progressbar.ProgressBar._set_value?5(value) +kivy.uix.progressbar.ProgressBar.get_norm_value?4() +kivy.uix.progressbar.ProgressBar.max?7 +kivy.uix.progressbar.ProgressBar.set_norm_value?4(value) +kivy.uix.progressbar.ProgressBar.value?7 +kivy.uix.progressbar.ProgressBar.value_normalized?7 +kivy.uix.progressbar.ProgressBar?1(**kwargs) +kivy.uix.relativelayout.RelativeLayout.do_layout?4(*args) +kivy.uix.relativelayout.RelativeLayout.on_touch_down?4(touch) +kivy.uix.relativelayout.RelativeLayout.on_touch_move?4(touch) +kivy.uix.relativelayout.RelativeLayout.on_touch_up?4(touch) +kivy.uix.relativelayout.RelativeLayout.to_local?4(x, y, **k) +kivy.uix.relativelayout.RelativeLayout.to_parent?4(x, y, **k) +kivy.uix.relativelayout.RelativeLayout?1(**kw) +kivy.uix.rst.RstBlockQuote.content?7 +kivy.uix.rst.RstDocument._load_from_source?5() +kivy.uix.rst.RstDocument._load_from_text?5(*largs) +kivy.uix.rst.RstDocument.add_anchors?4(node) +kivy.uix.rst.RstDocument.anchors_widgets?7 +kivy.uix.rst.RstDocument.colors?7 +kivy.uix.rst.RstDocument.content?7 +kivy.uix.rst.RstDocument.document_root?7 +kivy.uix.rst.RstDocument.goto?4(ref, *largs) +kivy.uix.rst.RstDocument.on_ref_press?4(node, ref) +kivy.uix.rst.RstDocument.on_source?4(instance, value) +kivy.uix.rst.RstDocument.on_text?4(instance, value) +kivy.uix.rst.RstDocument.preload?4(filename) +kivy.uix.rst.RstDocument.refs_assoc?7 +kivy.uix.rst.RstDocument.render?4() +kivy.uix.rst.RstDocument.resolve_path?4(filename) +kivy.uix.rst.RstDocument.scatter?7 +kivy.uix.rst.RstDocument.show_errors?7 +kivy.uix.rst.RstDocument.source?7 +kivy.uix.rst.RstDocument.text?7 +kivy.uix.rst.RstDocument.title?7 +kivy.uix.rst.RstDocument.toctrees?7 +kivy.uix.rst.RstDocument?1(**kwargs) +kivy.uix.rst.RstListItem.content?7 +kivy.uix.rst.RstLiteralBlock.content?7 +kivy.uix.rst.RstNote.content?7 +kivy.uix.rst.RstParagraph.mx?7 +kivy.uix.rst.RstParagraph.my?7 +kivy.uix.rst.RstTerm.text?7 +kivy.uix.rst.RstTitle.section?7 +kivy.uix.rst.RstWarning.content?7 +kivy.uix.rst.VideoDirective.final_argument_whitespace?7 +kivy.uix.rst.VideoDirective.generic?7 +kivy.uix.rst.VideoDirective.has_content?7 +kivy.uix.rst.VideoDirective.option_spec?7 +kivy.uix.rst.VideoDirective.optional_arguments?7 +kivy.uix.rst.VideoDirective.required_arguments?7 +kivy.uix.rst.VideoDirective.role?7 +kivy.uix.rst.VideoDirective.run?4() +kivy.uix.rst._ToctreeVisitor.dispatch_departure?4(node) +kivy.uix.rst._ToctreeVisitor.dispatch_visit?4(node) +kivy.uix.rst._ToctreeVisitor.pop?4() +kivy.uix.rst._ToctreeVisitor.push?4(tree) +kivy.uix.rst._ToctreeVisitor?2(*largs) +kivy.uix.rst._Visitor.colorize?4(text, name) +kivy.uix.rst._Visitor.dispatch_departure?4(node) +kivy.uix.rst._Visitor.dispatch_visit?4(node) +kivy.uix.rst._Visitor.pop?4() +kivy.uix.rst._Visitor.push?4(widget) +kivy.uix.rst._Visitor.set_text?4(node, parent) +kivy.uix.rst._Visitor?2(root, *largs) +kivy.uix.scatter.Scatter._bring_to_front?5() +kivy.uix.scatter.Scatter._get_bbox?5() +kivy.uix.scatter.Scatter._get_center?5() +kivy.uix.scatter.Scatter._get_do_translation?5() +kivy.uix.scatter.Scatter._get_pos?5() +kivy.uix.scatter.Scatter._get_rotation?5() +kivy.uix.scatter.Scatter._get_scale?5() +kivy.uix.scatter.Scatter._get_x?5() +kivy.uix.scatter.Scatter._get_y?5() +kivy.uix.scatter.Scatter._set_center?5(center) +kivy.uix.scatter.Scatter._set_do_translation?5(value) +kivy.uix.scatter.Scatter._set_pos?5(pos) +kivy.uix.scatter.Scatter._set_rotation?5(rotation) +kivy.uix.scatter.Scatter._set_scale?5(scale) +kivy.uix.scatter.Scatter._set_x?5(x) +kivy.uix.scatter.Scatter._set_y?5(y) +kivy.uix.scatter.Scatter.apply_transform?4(trans, post_multiply=False, anchor=(0, 0)) +kivy.uix.scatter.Scatter.auto_bring_to_front?7 +kivy.uix.scatter.Scatter.bbox?7 +kivy.uix.scatter.Scatter.center?7 +kivy.uix.scatter.Scatter.center_x?7 +kivy.uix.scatter.Scatter.center_y?7 +kivy.uix.scatter.Scatter.collide_point?4(x, y) +kivy.uix.scatter.Scatter.do_collide_after_children?7 +kivy.uix.scatter.Scatter.do_rotation?7 +kivy.uix.scatter.Scatter.do_scale?7 +kivy.uix.scatter.Scatter.do_translation?7 +kivy.uix.scatter.Scatter.do_translation_x?7 +kivy.uix.scatter.Scatter.do_translation_y?7 +kivy.uix.scatter.Scatter.get_center_x?4() +kivy.uix.scatter.Scatter.get_center_y?4() +kivy.uix.scatter.Scatter.get_right?4() +kivy.uix.scatter.Scatter.get_top?4() +kivy.uix.scatter.Scatter.on_touch_down?4(touch) +kivy.uix.scatter.Scatter.on_touch_move?4(touch) +kivy.uix.scatter.Scatter.on_touch_up?4(touch) +kivy.uix.scatter.Scatter.on_transform?4(instance, value) +kivy.uix.scatter.Scatter.on_transform_with_touch?4(touch) +kivy.uix.scatter.Scatter.pos?7 +kivy.uix.scatter.Scatter.right?7 +kivy.uix.scatter.Scatter.rotation?7 +kivy.uix.scatter.Scatter.scale?7 +kivy.uix.scatter.Scatter.scale_max?7 +kivy.uix.scatter.Scatter.scale_min?7 +kivy.uix.scatter.Scatter.set_center_x?4(value) +kivy.uix.scatter.Scatter.set_center_y?4(value) +kivy.uix.scatter.Scatter.set_right?4(value) +kivy.uix.scatter.Scatter.set_top?4(value) +kivy.uix.scatter.Scatter.to_local?4(x, y, **k) +kivy.uix.scatter.Scatter.to_parent?4(x, y, **k) +kivy.uix.scatter.Scatter.top?7 +kivy.uix.scatter.Scatter.transform?7 +kivy.uix.scatter.Scatter.transform_inv?7 +kivy.uix.scatter.Scatter.transform_with_touch?4(touch) +kivy.uix.scatter.Scatter.translation_touches?7 +kivy.uix.scatter.Scatter.x?7 +kivy.uix.scatter.Scatter.y?7 +kivy.uix.scatter.Scatter?1(**kwargs) +kivy.uix.scatter.ScatterPlane.collide_point?4(x, y) +kivy.uix.scatter.ScatterPlane?1(**kwargs) +kivy.uix.scatterlayout.ScatterLayout.add_widget?4(*l) +kivy.uix.scatterlayout.ScatterLayout.clear_widgets?4() +kivy.uix.scatterlayout.ScatterLayout.content?7 +kivy.uix.scatterlayout.ScatterLayout.remove_widget?4(*l) +kivy.uix.scatterlayout.ScatterLayout.update_size?4(instance, size) +kivy.uix.scatterlayout.ScatterLayout?1(**kw) +kivy.uix.screenmanager.FadeTransition.FADE_TRANSITION_FS?7 +kivy.uix.screenmanager.FadeTransition.fs?7 +kivy.uix.screenmanager.Screen.manager?7 +kivy.uix.screenmanager.Screen.name?7 +kivy.uix.screenmanager.Screen.on_enter?4(*args) +kivy.uix.screenmanager.Screen.on_leave?4(*args) +kivy.uix.screenmanager.Screen.on_pre_enter?4(*args) +kivy.uix.screenmanager.Screen.on_pre_leave?4(*args) +kivy.uix.screenmanager.Screen.transition_progress?7 +kivy.uix.screenmanager.Screen.transition_state?7 +kivy.uix.screenmanager.ScreenManager._get_screen_names?5() +kivy.uix.screenmanager.ScreenManager._screen_name_changed?5(screen, name) +kivy.uix.screenmanager.ScreenManager._update_pos?5(instance, value) +kivy.uix.screenmanager.ScreenManager.add_widget?4(screen) +kivy.uix.screenmanager.ScreenManager.current?7 +kivy.uix.screenmanager.ScreenManager.current_screen?7 +kivy.uix.screenmanager.ScreenManager.get_screen?4(name) +kivy.uix.screenmanager.ScreenManager.has_screen?4(name) +kivy.uix.screenmanager.ScreenManager.on_current?4(instance, value) +kivy.uix.screenmanager.ScreenManager.on_touch_down?4(touch) +kivy.uix.screenmanager.ScreenManager.on_touch_move?4(touch) +kivy.uix.screenmanager.ScreenManager.on_touch_up?4(touch) +kivy.uix.screenmanager.ScreenManager.previous?4() +kivy.uix.screenmanager.ScreenManager.real_add_widget?4(*l) +kivy.uix.screenmanager.ScreenManager.real_remove_widget?4(*l) +kivy.uix.screenmanager.ScreenManager.remove_widget?4(*l) +kivy.uix.screenmanager.ScreenManager.screen_names?7 +kivy.uix.screenmanager.ScreenManager.screens?7 +kivy.uix.screenmanager.ScreenManager.transition?7 +kivy.uix.screenmanager.ScreenManager?1(**kwargs) +kivy.uix.screenmanager.ShaderTransition.add_screen?4(screen) +kivy.uix.screenmanager.ShaderTransition.fs?7 +kivy.uix.screenmanager.ShaderTransition.make_screen_fbo?4(screen) +kivy.uix.screenmanager.ShaderTransition.on_complete?4() +kivy.uix.screenmanager.ShaderTransition.on_progress?4(progress) +kivy.uix.screenmanager.ShaderTransition.remove_screen?4(screen) +kivy.uix.screenmanager.ShaderTransition.vs?7 +kivy.uix.screenmanager.SlideTransition.direction?7 +kivy.uix.screenmanager.SlideTransition.on_complete?4() +kivy.uix.screenmanager.SlideTransition.on_progress?4(progression) +kivy.uix.screenmanager.SwapTransition.add_screen?4(screen) +kivy.uix.screenmanager.SwapTransition.on_complete?4() +kivy.uix.screenmanager.SwapTransition.on_progress?4(progression) +kivy.uix.screenmanager.TestApp.build?4() +kivy.uix.screenmanager.TestApp.change_view?4(*l) +kivy.uix.screenmanager.TestApp.remove_screen?4(*l) +kivy.uix.screenmanager.TransitionBase._anim?8 +kivy.uix.screenmanager.TransitionBase._on_complete?5(*l) +kivy.uix.screenmanager.TransitionBase._on_progress?5(*l) +kivy.uix.screenmanager.TransitionBase.add_screen?4(screen) +kivy.uix.screenmanager.TransitionBase.duration?7 +kivy.uix.screenmanager.TransitionBase.is_active?7 +kivy.uix.screenmanager.TransitionBase.manager?7 +kivy.uix.screenmanager.TransitionBase.on_complete?4() +kivy.uix.screenmanager.TransitionBase.on_progress?4(progression) +kivy.uix.screenmanager.TransitionBase.remove_screen?4(screen) +kivy.uix.screenmanager.TransitionBase.screen_in?7 +kivy.uix.screenmanager.TransitionBase.screen_out?7 +kivy.uix.screenmanager.TransitionBase.start?4(manager) +kivy.uix.screenmanager.TransitionBase.stop?4() +kivy.uix.screenmanager.WipeTransition.WIPE_TRANSITION_FS?7 +kivy.uix.screenmanager.WipeTransition.fs?7 +kivy.uix.scrollview.ScrollView._change_touch_mode?5(*largs) +kivy.uix.scrollview.ScrollView._do_touch_up?5(touch, *largs) +kivy.uix.scrollview.ScrollView._get_do_scroll?5() +kivy.uix.scrollview.ScrollView._get_hbar?5() +kivy.uix.scrollview.ScrollView._get_uid?5(prefix='sv') +kivy.uix.scrollview.ScrollView._get_vbar?5() +kivy.uix.scrollview.ScrollView._set_do_scroll?5(value) +kivy.uix.scrollview.ScrollView._set_viewport_size?5(instance, value) +kivy.uix.scrollview.ScrollView._start_decrease_alpha?5(*l) +kivy.uix.scrollview.ScrollView._update_effect_bounds?5(*args) +kivy.uix.scrollview.ScrollView._update_effect_widget?5(*args) +kivy.uix.scrollview.ScrollView._update_effect_x?5(*args) +kivy.uix.scrollview.ScrollView._update_effect_x_bounds?5(*args) +kivy.uix.scrollview.ScrollView._update_effect_y?5(*args) +kivy.uix.scrollview.ScrollView._update_effect_y_bounds?5(*args) +kivy.uix.scrollview.ScrollView._viewport?8 +kivy.uix.scrollview.ScrollView.add_widget?4(widget, index=0) +kivy.uix.scrollview.ScrollView.bar_alpha?7 +kivy.uix.scrollview.ScrollView.bar_color?7 +kivy.uix.scrollview.ScrollView.bar_margin?7 +kivy.uix.scrollview.ScrollView.bar_width?7 +kivy.uix.scrollview.ScrollView.convert_distance_to_scroll?4(dx, dy) +kivy.uix.scrollview.ScrollView.do_scroll?7 +kivy.uix.scrollview.ScrollView.do_scroll_x?7 +kivy.uix.scrollview.ScrollView.do_scroll_y?7 +kivy.uix.scrollview.ScrollView.effect_cls?7 +kivy.uix.scrollview.ScrollView.effect_x?7 +kivy.uix.scrollview.ScrollView.effect_y?7 +kivy.uix.scrollview.ScrollView.hbar?7 +kivy.uix.scrollview.ScrollView.on__viewport?4(instance, value) +kivy.uix.scrollview.ScrollView.on_effect_cls?4(instance, cls) +kivy.uix.scrollview.ScrollView.on_effect_x?4(instance, value) +kivy.uix.scrollview.ScrollView.on_effect_y?4(instance, value) +kivy.uix.scrollview.ScrollView.on_touch_down?4(touch) +kivy.uix.scrollview.ScrollView.on_touch_move?4(touch) +kivy.uix.scrollview.ScrollView.on_touch_up?4(touch) +kivy.uix.scrollview.ScrollView.remove_widget?4(widget) +kivy.uix.scrollview.ScrollView.scroll_distance?7 +kivy.uix.scrollview.ScrollView.scroll_timeout?7 +kivy.uix.scrollview.ScrollView.scroll_x?7 +kivy.uix.scrollview.ScrollView.scroll_y?7 +kivy.uix.scrollview.ScrollView.update_from_scroll?4(*largs) +kivy.uix.scrollview.ScrollView.vbar?7 +kivy.uix.scrollview.ScrollView.viewport_size?7 +kivy.uix.scrollview.ScrollView?1(**kwargs) +kivy.uix.scrollview._scroll_timeout?8 +kivy.uix.selectableview.SelectableView.deselect?4(*args) +kivy.uix.selectableview.SelectableView.index?7 +kivy.uix.selectableview.SelectableView.is_selected?7 +kivy.uix.selectableview.SelectableView.select?4(*args) +kivy.uix.selectableview.SelectableView?1(**kwargs) +kivy.uix.settings.SettingBoolean.values?7 +kivy.uix.settings.SettingItem.add_widget?4(*largs) +kivy.uix.settings.SettingItem.content?7 +kivy.uix.settings.SettingItem.desc?7 +kivy.uix.settings.SettingItem.disabled?7 +kivy.uix.settings.SettingItem.key?7 +kivy.uix.settings.SettingItem.on_release?4() +kivy.uix.settings.SettingItem.on_touch_down?4(touch) +kivy.uix.settings.SettingItem.on_touch_up?4(touch) +kivy.uix.settings.SettingItem.on_value?4(instance, value) +kivy.uix.settings.SettingItem.panel?7 +kivy.uix.settings.SettingItem.section?7 +kivy.uix.settings.SettingItem.selected_alpha?7 +kivy.uix.settings.SettingItem.title?7 +kivy.uix.settings.SettingItem.value?7 +kivy.uix.settings.SettingItem?1(**kwargs) +kivy.uix.settings.SettingNumeric._validate?5(instance) +kivy.uix.settings.SettingOptions._create_popup?5(instance) +kivy.uix.settings.SettingOptions._set_option?5(instance) +kivy.uix.settings.SettingOptions.on_panel?4(instance, value) +kivy.uix.settings.SettingOptions.options?7 +kivy.uix.settings.SettingOptions.popup?7 +kivy.uix.settings.SettingPath._create_popup?5(instance) +kivy.uix.settings.SettingPath._dismiss?5(*largs) +kivy.uix.settings.SettingPath._validate?5(instance) +kivy.uix.settings.SettingPath.on_panel?4(instance, value) +kivy.uix.settings.SettingPath.popup?7 +kivy.uix.settings.SettingPath.textinput?7 +kivy.uix.settings.SettingSidebarLabel.on_touch_down?4(touch) +kivy.uix.settings.SettingSidebarLabel.panel?7 +kivy.uix.settings.SettingSidebarLabel.panel_uid?7 +kivy.uix.settings.SettingSidebarLabel.selected?7 +kivy.uix.settings.SettingString._create_popup?5(instance) +kivy.uix.settings.SettingString._dismiss?5(*largs) +kivy.uix.settings.SettingString._validate?5(instance) +kivy.uix.settings.SettingString.on_panel?4(instance, value) +kivy.uix.settings.SettingString.popup?7 +kivy.uix.settings.SettingString.textinput?7 +kivy.uix.settings.SettingTitle.title?7 +kivy.uix.settings.Settings.add_json_panel?4(title, config, filename=None, data=None) +kivy.uix.settings.Settings.add_kivy_panel?4() +kivy.uix.settings.Settings.add_widget?4(widget, index=0) +kivy.uix.settings.Settings.content?7 +kivy.uix.settings.Settings.create_json_panel?4(title, config, filename=None, data=None) +kivy.uix.settings.Settings.get_panel_by_uid?4(uid) +kivy.uix.settings.Settings.menu?7 +kivy.uix.settings.Settings.on_close?4() +kivy.uix.settings.Settings.on_config_change?4(config, section, key, value) +kivy.uix.settings.Settings.on_content?4(instance, value) +kivy.uix.settings.Settings.on_menu?4(instance, value) +kivy.uix.settings.Settings.on_touch_down?4(touch) +kivy.uix.settings.Settings.register_type?4(tp, cls) +kivy.uix.settings.Settings.select?4(panel) +kivy.uix.settings.Settings.selection?7 +kivy.uix.settings.Settings.unselect?4() +kivy.uix.settings.Settings?1(**kwargs) +kivy.uix.settings.SettingsApp.build?4() +kivy.uix.settings.SettingsPanel.config?7 +kivy.uix.settings.SettingsPanel.get_value?4(section, key) +kivy.uix.settings.SettingsPanel.on_config?4(instance, value) +kivy.uix.settings.SettingsPanel.set_value?4(section, key, value) +kivy.uix.settings.SettingsPanel.settings?7 +kivy.uix.settings.SettingsPanel.title?7 +kivy.uix.settings.SettingsPanel?1(**kwargs) +kivy.uix.slider.Slider.get_norm_value?4() +kivy.uix.slider.Slider.get_value_pos?4() +kivy.uix.slider.Slider.max?7 +kivy.uix.slider.Slider.min?7 +kivy.uix.slider.Slider.on_touch_down?4(touch) +kivy.uix.slider.Slider.on_touch_move?4(touch) +kivy.uix.slider.Slider.on_touch_up?4(touch) +kivy.uix.slider.Slider.orientation?7 +kivy.uix.slider.Slider.padding?7 +kivy.uix.slider.Slider.range?7 +kivy.uix.slider.Slider.set_norm_value?4(value) +kivy.uix.slider.Slider.set_value_pos?4(pos) +kivy.uix.slider.Slider.step?7 +kivy.uix.slider.Slider.value?7 +kivy.uix.slider.Slider.value_normalized?7 +kivy.uix.slider.Slider.value_pos?7 +kivy.uix.slider.SliderApp.build?4() +kivy.uix.spinner.Spinner._build_dropdown?5(*largs) +kivy.uix.spinner.Spinner._on_dropdown_select?5(instance, data, *largs) +kivy.uix.spinner.Spinner._toggle_dropdown?5(*largs) +kivy.uix.spinner.Spinner._update_dropdown?5(*largs) +kivy.uix.spinner.Spinner.dropdown_cls?7 +kivy.uix.spinner.Spinner.is_open?7 +kivy.uix.spinner.Spinner.on_is_open?4(instance, value) +kivy.uix.spinner.Spinner.option_cls?7 +kivy.uix.spinner.Spinner.values?7 +kivy.uix.spinner.Spinner?1(**kwargs) +kivy.uix.splitter.Splitter.add_widget?4(widget, index=0) +kivy.uix.splitter.Splitter.border?7 +kivy.uix.splitter.Splitter.clear_widgets?4() +kivy.uix.splitter.Splitter.max_size?7 +kivy.uix.splitter.Splitter.min_size?7 +kivy.uix.splitter.Splitter.on_press?4() +kivy.uix.splitter.Splitter.on_release?4() +kivy.uix.splitter.Splitter.on_sizable_from?4(instance, sizable_from) +kivy.uix.splitter.Splitter.options?7 +kivy.uix.splitter.Splitter.remove_widget?4(widget, *largs) +kivy.uix.splitter.Splitter.sizable_from?7 +kivy.uix.splitter.Splitter.strip_cls?7 +kivy.uix.splitter.Splitter.strip_down?4(instance, touch) +kivy.uix.splitter.Splitter.strip_move?4(instance, touch) +kivy.uix.splitter.Splitter.strip_size?7 +kivy.uix.splitter.Splitter.strip_up?4(instance, touch) +kivy.uix.splitter.Splitter?1(**kwargs) +kivy.uix.splitter.SplitterApp.build?4() +kivy.uix.stacklayout.StackLayout.do_layout?4(*largs) +kivy.uix.stacklayout.StackLayout.minimum_height?7 +kivy.uix.stacklayout.StackLayout.minimum_size?7 +kivy.uix.stacklayout.StackLayout.minimum_width?7 +kivy.uix.stacklayout.StackLayout.orientation?7 +kivy.uix.stacklayout.StackLayout.padding?7 +kivy.uix.stacklayout.StackLayout.spacing?7 +kivy.uix.stacklayout.StackLayout?1(**kwargs) +kivy.uix.switch.Switch.active?7 +kivy.uix.switch.Switch.active_norm_pos?7 +kivy.uix.switch.Switch.on_touch_down?4(touch) +kivy.uix.switch.Switch.on_touch_move?4(touch) +kivy.uix.switch.Switch.on_touch_up?4(touch) +kivy.uix.switch.Switch.touch_control?7 +kivy.uix.switch.Switch.touch_distance?7 +kivy.uix.tabbedpanel.TabbedPanel._current_tab?8 +kivy.uix.tabbedpanel.TabbedPanel._default_tab?8 +kivy.uix.tabbedpanel.TabbedPanel._load_default_tab_content?5(dt) +kivy.uix.tabbedpanel.TabbedPanel._reposition_tabs?5(*l) +kivy.uix.tabbedpanel.TabbedPanel._setup_default_tab?5() +kivy.uix.tabbedpanel.TabbedPanel._switch_to_first_tab?5(*l) +kivy.uix.tabbedpanel.TabbedPanel._update_scrollview?5(scrl_v, *l) +kivy.uix.tabbedpanel.TabbedPanel._update_tab_width?5(*l) +kivy.uix.tabbedpanel.TabbedPanel._update_tabs?5(*l) +kivy.uix.tabbedpanel.TabbedPanel._update_top?5(*args) +kivy.uix.tabbedpanel.TabbedPanel._updt_top?5(sctr, top, scrl_v_width, *args) +kivy.uix.tabbedpanel.TabbedPanel.add_widget?4(widget, index=0) +kivy.uix.tabbedpanel.TabbedPanel.background_color?7 +kivy.uix.tabbedpanel.TabbedPanel.background_disabled_image?7 +kivy.uix.tabbedpanel.TabbedPanel.background_image?7 +kivy.uix.tabbedpanel.TabbedPanel.border?7 +kivy.uix.tabbedpanel.TabbedPanel.clear_tabs?4(*l) +kivy.uix.tabbedpanel.TabbedPanel.clear_widgets?4(**kwargs) +kivy.uix.tabbedpanel.TabbedPanel.content?7 +kivy.uix.tabbedpanel.TabbedPanel.current_tab?7 +kivy.uix.tabbedpanel.TabbedPanel.default_tab?7 +kivy.uix.tabbedpanel.TabbedPanel.default_tab_cls?7 +kivy.uix.tabbedpanel.TabbedPanel.default_tab_content?7 +kivy.uix.tabbedpanel.TabbedPanel.default_tab_text?7 +kivy.uix.tabbedpanel.TabbedPanel.do_default_tab?7 +kivy.uix.tabbedpanel.TabbedPanel.get_current_tab?4() +kivy.uix.tabbedpanel.TabbedPanel.get_def_tab?4() +kivy.uix.tabbedpanel.TabbedPanel.get_def_tab_content?4() +kivy.uix.tabbedpanel.TabbedPanel.get_tab_list?4() +kivy.uix.tabbedpanel.TabbedPanel.on_default_tab_text?4(*args) +kivy.uix.tabbedpanel.TabbedPanel.on_do_default_tab?4(instance, value) +kivy.uix.tabbedpanel.TabbedPanel.on_tab_height?4(*l) +kivy.uix.tabbedpanel.TabbedPanel.on_tab_pos?4(*l) +kivy.uix.tabbedpanel.TabbedPanel.on_tab_width?4(*l) +kivy.uix.tabbedpanel.TabbedPanel.remove_widget?4(widget) +kivy.uix.tabbedpanel.TabbedPanel.set_def_tab?4(new_tab) +kivy.uix.tabbedpanel.TabbedPanel.set_def_tab_content?4(*l) +kivy.uix.tabbedpanel.TabbedPanel.switch_to?4(header) +kivy.uix.tabbedpanel.TabbedPanel.tab_height?7 +kivy.uix.tabbedpanel.TabbedPanel.tab_list?7 +kivy.uix.tabbedpanel.TabbedPanel.tab_pos?7 +kivy.uix.tabbedpanel.TabbedPanel.tab_width?7 +kivy.uix.tabbedpanel.TabbedPanel?1(**kwargs) +kivy.uix.tabbedpanel.TabbedPanelHeader.content?7 +kivy.uix.tabbedpanel.TabbedPanelHeader.on_release?4(*largs) +kivy.uix.tabbedpanel.TabbedPanelHeader.on_touch_down?4(touch) +kivy.uix.tabbedpanel.TabbedPanelItem.add_widget?4(widget, index=0) +kivy.uix.tabbedpanel.TabbedPanelItem.remove_widget?4(widget) +kivy.uix.tabbedpanel.TabbedPanelStrip.tabbed_panel?7 +kivy.uix.textinput.Cache_append?7 +kivy.uix.textinput.Cache_get?7 +kivy.uix.textinput.Cache_register?7 +kivy.uix.textinput.Cache_remove?7 +kivy.uix.textinput.Clipboard?7 +kivy.uix.textinput.FL_IS_NEWLINE?7 +kivy.uix.textinput.TextInputCutCopyPaste.but_copy?7 +kivy.uix.textinput.TextInputCutCopyPaste.but_cut?7 +kivy.uix.textinput.TextInputCutCopyPaste.but_paste?7 +kivy.uix.textinput.TextInputCutCopyPaste.but_selectall?7 +kivy.uix.textinput.TextInputCutCopyPaste.textinput?7 +kivy.uix.textinput._auto_indent?5(self, substring) +kivy.uix.textinput._check_parent?5(self, dt) +kivy.uix.textinput._copy?5(self, data) +kivy.uix.textinput._create_line_label?5(self, text, hint=False) +kivy.uix.textinput._cut?5(self, data) +kivy.uix.textinput._delete_line?5(self, idx) +kivy.uix.textinput._do_blink_cursor?5(self, dt) +kivy.uix.textinput._draw_selection?5(self, *largs) +kivy.uix.textinput._ensure_clipboard?5(self) +kivy.uix.textinput._get_cursor?5(self) +kivy.uix.textinput._get_cursor_col?5(self) +kivy.uix.textinput._get_cursor_pos?5(self) +kivy.uix.textinput._get_cursor_row?5(self) +kivy.uix.textinput._get_line_from_cursor?5(self, start, new_text) +kivy.uix.textinput._get_line_options?5(self) +kivy.uix.textinput._get_text?5(self) +kivy.uix.textinput._get_text_width?5(self, text, tab_width, _label_cached) +kivy.uix.textinput._hide_cut_copy_paste?5(self, win=None) +kivy.uix.textinput._insert_lines?5(self, start, finish, len_lines, _lines_flags, _lines, _lines_labels, _line_rects) +kivy.uix.textinput._is_desktop?8 +kivy.uix.textinput._key_down?5(self, key, repeat=False) +kivy.uix.textinput._key_up?5(self, key, repeat=False) +kivy.uix.textinput._keyboard_on_key_down?5(self, window, keycode, text, modifiers) +kivy.uix.textinput._keyboard_on_key_up?5(self, window, keycode) +kivy.uix.textinput._keyboard_released?5(self) +kivy.uix.textinput._paste?5(self) +kivy.uix.textinput._refresh_hint_text?5(self) +kivy.uix.textinput._refresh_line_options?5(self, *largs) +kivy.uix.textinput._refresh_text?5(self, text, *largs) +kivy.uix.textinput._refresh_text_from_property?5(self, *largs) +kivy.uix.textinput._refresh_text_from_trigger?5(self, dt, *largs) +kivy.uix.textinput._reload_remove_observer?5(wr) +kivy.uix.textinput._set_cursor?5(self, pos) +kivy.uix.textinput._set_line_text?5(self, line_num, text) +kivy.uix.textinput._set_text?5(self, text) +kivy.uix.textinput._set_undo_redo_bkspc?5(self, ol_index, new_index, substring, from_undo) +kivy.uix.textinput._set_unredo_delsel?5(self, a, b, substring, from_undo) +kivy.uix.textinput._set_unredo_insert?5(self, ci, sci, substring, from_undo) +kivy.uix.textinput._show_cut_copy_paste?5(self, pos, win, parent_changed=False, mode='', *l) +kivy.uix.textinput._split_smart?5(self, text) +kivy.uix.textinput._textinput_clear_cache?5(*l) +kivy.uix.textinput._textinput_list?8 +kivy.uix.textinput._tokenize?5(self, text) +kivy.uix.textinput._trigger_refresh_line_options?5(self, *largs) +kivy.uix.textinput._trigger_refresh_text?5(self, *largs) +kivy.uix.textinput._trigger_update_graphics?5(self, *largs) +kivy.uix.textinput._update_graphics?5(self, *largs) +kivy.uix.textinput._update_graphics_selection?5(self) +kivy.uix.textinput._update_selection?5(self, finished=False) +kivy.uix.textinput._update_text_options?5(self, *largs) +kivy.uix.textinput.build?4(self) +kivy.uix.textinput.cancel_selection?4(self) +kivy.uix.textinput.cursor_index?4(self) +kivy.uix.textinput.cursor_offset?4(self) +kivy.uix.textinput.delete_selection?4(self, from_undo=False) +kivy.uix.textinput.do?4(self, action) +kivy.uix.textinput.do_backspace?4(self, from_undo=False, mode='bkspc') +kivy.uix.textinput.do_cursor_movement?4(self, action) +kivy.uix.textinput.do_redo?4(self) +kivy.uix.textinput.do_undo?4(self) +kivy.uix.textinput.get_cursor_from_index?4(self, index) +kivy.uix.textinput.get_cursor_from_xy?4(self, x, y) +kivy.uix.textinput.get_sel_from?4(self) +kivy.uix.textinput.get_sel_to?4(self) +kivy.uix.textinput.insert_text?4(self, substring, from_undo=False) +kivy.uix.textinput.long_touch?4(self, dt) +kivy.uix.textinput.on_cursor?4(self, instance, value) +kivy.uix.textinput.on_disabled?4(self, instance, value) +kivy.uix.textinput.on_double_tap?4(self) +kivy.uix.textinput.on_focus?4(self, instance, value, *largs) +kivy.uix.textinput.on_hint_text?4(self, instance, value) +kivy.uix.textinput.on_padding_x?4(self, instance, value) +kivy.uix.textinput.on_padding_y?4(self, instance, value) +kivy.uix.textinput.on_parent?4(self, instance, value) +kivy.uix.textinput.on_quad_touch?4(self) +kivy.uix.textinput.on_readonly?4(self, instance, value) +kivy.uix.textinput.on_size?4(self, instance, value) +kivy.uix.textinput.on_text_validate?4(self) +kivy.uix.textinput.on_touch_down?4(self, touch) +kivy.uix.textinput.on_touch_move?4(self, touch) +kivy.uix.textinput.on_touch_up?4(self, touch) +kivy.uix.textinput.on_triple_tap?4(self) +kivy.uix.textinput.reset_undo?4(self) +kivy.uix.textinput.select_all?4(self) +kivy.uix.textinput.select_text?4(self, start, end) +kivy.uix.togglebutton.ToggleButton._clear_groups?5() +kivy.uix.togglebutton.ToggleButton._do_press?5() +kivy.uix.togglebutton.ToggleButton._do_release?5() +kivy.uix.togglebutton.ToggleButton._release_group?5(current) +kivy.uix.togglebutton.ToggleButton.get_widgets?4() +kivy.uix.togglebutton.ToggleButton.group?7 +kivy.uix.togglebutton.ToggleButton.on_group?4(*largs) +kivy.uix.togglebutton.ToggleButton?1(**kwargs) +kivy.uix.treeview.TestApp.build?4() +kivy.uix.treeview.TreeView._do_initial_load?5(*largs) +kivy.uix.treeview.TreeView._do_layout?5(*largs) +kivy.uix.treeview.TreeView._do_layout_node?5(node, level, y) +kivy.uix.treeview.TreeView._do_node_load?5(node) +kivy.uix.treeview.TreeView._do_open_node?5(node) +kivy.uix.treeview.TreeView._root?8 +kivy.uix.treeview.TreeView._selected_node?8 +kivy.uix.treeview.TreeView.add_node?4(node, parent=None) +kivy.uix.treeview.TreeView.get_node_at_pos?4(pos) +kivy.uix.treeview.TreeView.get_root?4() +kivy.uix.treeview.TreeView.get_selected_node?4() +kivy.uix.treeview.TreeView.hide_root?7 +kivy.uix.treeview.TreeView.indent_level?7 +kivy.uix.treeview.TreeView.indent_start?7 +kivy.uix.treeview.TreeView.iterate_all_nodes?4(node=None) +kivy.uix.treeview.TreeView.iterate_open_nodes?4(node=None) +kivy.uix.treeview.TreeView.load_func?7 +kivy.uix.treeview.TreeView.minimum_height?7 +kivy.uix.treeview.TreeView.minimum_size?7 +kivy.uix.treeview.TreeView.minimum_width?7 +kivy.uix.treeview.TreeView.on_load_func?4(instance, value) +kivy.uix.treeview.TreeView.on_node_collapse?4(node) +kivy.uix.treeview.TreeView.on_node_expand?4(node) +kivy.uix.treeview.TreeView.on_root_options?4(instance, value) +kivy.uix.treeview.TreeView.on_touch_down?4(touch) +kivy.uix.treeview.TreeView.remove_node?4(node) +kivy.uix.treeview.TreeView.root?7 +kivy.uix.treeview.TreeView.root_options?7 +kivy.uix.treeview.TreeView.select_node?4(node) +kivy.uix.treeview.TreeView.selected_node?7 +kivy.uix.treeview.TreeView.toggle_node?4(node) +kivy.uix.treeview.TreeView?1(**kwargs) +kivy.uix.treeview.TreeViewNode.color_selected?7 +kivy.uix.treeview.TreeViewNode.even_color?7 +kivy.uix.treeview.TreeViewNode.is_leaf?7 +kivy.uix.treeview.TreeViewNode.is_loaded?7 +kivy.uix.treeview.TreeViewNode.is_open?7 +kivy.uix.treeview.TreeViewNode.is_selected?7 +kivy.uix.treeview.TreeViewNode.level?7 +kivy.uix.treeview.TreeViewNode.no_selection?7 +kivy.uix.treeview.TreeViewNode.nodes?7 +kivy.uix.treeview.TreeViewNode.odd?7 +kivy.uix.treeview.TreeViewNode.odd_color?7 +kivy.uix.treeview.TreeViewNode.parent_node?7 +kivy.uix.treeview.TreeViewNode?1(**kwargs) +kivy.uix.video.Video._do_video_load?5(*largs) +kivy.uix.video.Video._on_eos?5(*largs) +kivy.uix.video.Video._on_load?5(*largs) +kivy.uix.video.Video._on_video_frame?5(*largs) +kivy.uix.video.Video._trigger_video_load?5(*largs) +kivy.uix.video.Video.duration?7 +kivy.uix.video.Video.eos?7 +kivy.uix.video.Video.loaded?7 +kivy.uix.video.Video.on_play?4(instance, value) +kivy.uix.video.Video.on_state?4(instance, value) +kivy.uix.video.Video.on_volume?4(instance, value) +kivy.uix.video.Video.options?7 +kivy.uix.video.Video.play?7 +kivy.uix.video.Video.position?7 +kivy.uix.video.Video.seek?4(percent) +kivy.uix.video.Video.state?7 +kivy.uix.video.Video.volume?7 +kivy.uix.video.Video?1(**kwargs) +kivy.uix.video.VideoApp.build?4() +kivy.uix.video.VideoApp.replay?4(*args) +kivy.uix.videoplayer.VideoPlayer._load_annotations?5() +kivy.uix.videoplayer.VideoPlayer._load_thumbnail?5() +kivy.uix.videoplayer.VideoPlayer._play_started?5(instance, value) +kivy.uix.videoplayer.VideoPlayer.allow_fullscreen?7 +kivy.uix.videoplayer.VideoPlayer.annotations?7 +kivy.uix.videoplayer.VideoPlayer.container?7 +kivy.uix.videoplayer.VideoPlayer.duration?7 +kivy.uix.videoplayer.VideoPlayer.fullscreen?7 +kivy.uix.videoplayer.VideoPlayer.image_loading?7 +kivy.uix.videoplayer.VideoPlayer.image_overlay_play?7 +kivy.uix.videoplayer.VideoPlayer.image_pause?7 +kivy.uix.videoplayer.VideoPlayer.image_play?7 +kivy.uix.videoplayer.VideoPlayer.image_stop?7 +kivy.uix.videoplayer.VideoPlayer.image_volumehigh?7 +kivy.uix.videoplayer.VideoPlayer.image_volumelow?7 +kivy.uix.videoplayer.VideoPlayer.image_volumemedium?7 +kivy.uix.videoplayer.VideoPlayer.image_volumemuted?7 +kivy.uix.videoplayer.VideoPlayer.on_fullscreen?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.on_play?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.on_position?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.on_source?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.on_state?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayer.on_volume?4(instance, value) +kivy.uix.videoplayer.VideoPlayer.options?7 +kivy.uix.videoplayer.VideoPlayer.play?7 +kivy.uix.videoplayer.VideoPlayer.position?7 +kivy.uix.videoplayer.VideoPlayer.seek?4(percent) +kivy.uix.videoplayer.VideoPlayer.source?7 +kivy.uix.videoplayer.VideoPlayer.state?7 +kivy.uix.videoplayer.VideoPlayer.thumbnail?7 +kivy.uix.videoplayer.VideoPlayer.volume?7 +kivy.uix.videoplayer.VideoPlayer?1(**kwargs) +kivy.uix.videoplayer.VideoPlayerAnnotation.annotation?7 +kivy.uix.videoplayer.VideoPlayerAnnotation.duration?7 +kivy.uix.videoplayer.VideoPlayerAnnotation.on_annotation?4(instance, ann) +kivy.uix.videoplayer.VideoPlayerAnnotation.start?7 +kivy.uix.videoplayer.VideoPlayerPlayPause.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayerPlayPause.video?7 +kivy.uix.videoplayer.VideoPlayerPreview.click_done?7 +kivy.uix.videoplayer.VideoPlayerPreview.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayerPreview.source?7 +kivy.uix.videoplayer.VideoPlayerPreview.video?7 +kivy.uix.videoplayer.VideoPlayerProgressBar._hide_bubble?5() +kivy.uix.videoplayer.VideoPlayerProgressBar._show_bubble?5() +kivy.uix.videoplayer.VideoPlayerProgressBar._showhide_bubble?5(instance, value) +kivy.uix.videoplayer.VideoPlayerProgressBar._update_bubble?5(*l) +kivy.uix.videoplayer.VideoPlayerProgressBar._update_seek?5(x) +kivy.uix.videoplayer.VideoPlayerProgressBar.alpha?7 +kivy.uix.videoplayer.VideoPlayerProgressBar.on_alpha?4(instance, value) +kivy.uix.videoplayer.VideoPlayerProgressBar.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayerProgressBar.on_touch_move?4(touch) +kivy.uix.videoplayer.VideoPlayerProgressBar.on_touch_up?4(touch) +kivy.uix.videoplayer.VideoPlayerProgressBar.on_video?4(instance, value) +kivy.uix.videoplayer.VideoPlayerProgressBar.seek?7 +kivy.uix.videoplayer.VideoPlayerProgressBar.video?7 +kivy.uix.videoplayer.VideoPlayerProgressBar?1(**kwargs) +kivy.uix.videoplayer.VideoPlayerStop.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayerStop.video?7 +kivy.uix.videoplayer.VideoPlayerVolume.on_touch_down?4(touch) +kivy.uix.videoplayer.VideoPlayerVolume.on_touch_move?4(touch) +kivy.uix.videoplayer.VideoPlayerVolume.on_touch_up?4(touch) +kivy.uix.videoplayer.VideoPlayerVolume.video?7 +kivy.uix.vkeyboard.VKeyboard._get_modifiers?5() +kivy.uix.vkeyboard.VKeyboard._load_layout?5(*largs) +kivy.uix.vkeyboard.VKeyboard._load_layouts?5(*largs) +kivy.uix.vkeyboard.VKeyboard._update_dock_mode?5(win, *largs) +kivy.uix.vkeyboard.VKeyboard._update_layout_mode?5(*l) +kivy.uix.vkeyboard.VKeyboard.active_keys?7 +kivy.uix.vkeyboard.VKeyboard.available_layouts?7 +kivy.uix.vkeyboard.VKeyboard.background?7 +kivy.uix.vkeyboard.VKeyboard.background_border?7 +kivy.uix.vkeyboard.VKeyboard.background_color?7 +kivy.uix.vkeyboard.VKeyboard.background_disabled?7 +kivy.uix.vkeyboard.VKeyboard.callback?7 +kivy.uix.vkeyboard.VKeyboard.change_layout?4() +kivy.uix.vkeyboard.VKeyboard.collide_margin?4(x, y) +kivy.uix.vkeyboard.VKeyboard.docked?7 +kivy.uix.vkeyboard.VKeyboard.draw_keys?4() +kivy.uix.vkeyboard.VKeyboard.font_name?7 +kivy.uix.vkeyboard.VKeyboard.font_size?7 +kivy.uix.vkeyboard.VKeyboard.get_key_at_pos?4(x, y) +kivy.uix.vkeyboard.VKeyboard.have_capslock?7 +kivy.uix.vkeyboard.VKeyboard.have_shift?7 +kivy.uix.vkeyboard.VKeyboard.key_background_color?7 +kivy.uix.vkeyboard.VKeyboard.key_background_down?7 +kivy.uix.vkeyboard.VKeyboard.key_background_normal?7 +kivy.uix.vkeyboard.VKeyboard.key_border?7 +kivy.uix.vkeyboard.VKeyboard.key_disabled_background_normal?7 +kivy.uix.vkeyboard.VKeyboard.key_margin?7 +kivy.uix.vkeyboard.VKeyboard.layout?7 +kivy.uix.vkeyboard.VKeyboard.layout_geometry?7 +kivy.uix.vkeyboard.VKeyboard.layout_mode?7 +kivy.uix.vkeyboard.VKeyboard.layout_path?7 +kivy.uix.vkeyboard.VKeyboard.margin_hint?7 +kivy.uix.vkeyboard.VKeyboard.on_disabled?4(intance, value) +kivy.uix.vkeyboard.VKeyboard.on_key_down?4(*largs) +kivy.uix.vkeyboard.VKeyboard.on_key_up?4(*largs) +kivy.uix.vkeyboard.VKeyboard.on_touch_down?4(touch) +kivy.uix.vkeyboard.VKeyboard.on_touch_up?4(touch) +kivy.uix.vkeyboard.VKeyboard.process_key_on?4(touch) +kivy.uix.vkeyboard.VKeyboard.process_key_up?4(touch) +kivy.uix.vkeyboard.VKeyboard.refresh?4(force=False) +kivy.uix.vkeyboard.VKeyboard.refresh_active_keys_layer?4() +kivy.uix.vkeyboard.VKeyboard.refresh_keys?4() +kivy.uix.vkeyboard.VKeyboard.refresh_keys_hint?4() +kivy.uix.vkeyboard.VKeyboard.setup_mode?4(*largs) +kivy.uix.vkeyboard.VKeyboard.setup_mode_dock?4(*largs) +kivy.uix.vkeyboard.VKeyboard.setup_mode_free?4() +kivy.uix.vkeyboard.VKeyboard.target?7 +kivy.uix.vkeyboard.VKeyboard.vk?7 +kivy.uix.vkeyboard.VKeyboard?1(**kwargs) +kivy.uix.vkeyboard.default_layout_path?7 +kivy.uix.widget.Widget.add_widget?4(widget, index=0) +kivy.uix.widget.Widget.canvas?7 +kivy.uix.widget.Widget.center?7 +kivy.uix.widget.Widget.center_x?7 +kivy.uix.widget.Widget.center_y?7 +kivy.uix.widget.Widget.children?7 +kivy.uix.widget.Widget.clear_widgets?4() +kivy.uix.widget.Widget.cls?7 +kivy.uix.widget.Widget.collide_point?4(x, y) +kivy.uix.widget.Widget.collide_widget?4(wid) +kivy.uix.widget.Widget.disabled?7 +kivy.uix.widget.Widget.get_center_x?4() +kivy.uix.widget.Widget.get_center_y?4() +kivy.uix.widget.Widget.get_parent_window?4() +kivy.uix.widget.Widget.get_right?4() +kivy.uix.widget.Widget.get_root_window?4() +kivy.uix.widget.Widget.get_top?4() +kivy.uix.widget.Widget.height?7 +kivy.uix.widget.Widget.id?7 +kivy.uix.widget.Widget.ids?7 +kivy.uix.widget.Widget.on_disabled?4(instance, value) +kivy.uix.widget.Widget.on_opacity?4(instance, value) +kivy.uix.widget.Widget.on_touch_down?4(touch) +kivy.uix.widget.Widget.on_touch_move?4(touch) +kivy.uix.widget.Widget.on_touch_up?4(touch) +kivy.uix.widget.Widget.opacity?7 +kivy.uix.widget.Widget.parent?7 +kivy.uix.widget.Widget.pos?7 +kivy.uix.widget.Widget.pos_hint?7 +kivy.uix.widget.Widget.remove_widget?4(widget) +kivy.uix.widget.Widget.right?7 +kivy.uix.widget.Widget.set_center_x?4(value) +kivy.uix.widget.Widget.set_center_y?4(value) +kivy.uix.widget.Widget.set_right?4(value) +kivy.uix.widget.Widget.set_top?4(value) +kivy.uix.widget.Widget.size?7 +kivy.uix.widget.Widget.size_hint?7 +kivy.uix.widget.Widget.size_hint_x?7 +kivy.uix.widget.Widget.size_hint_y?7 +kivy.uix.widget.Widget.to_local?4(x, y, relative=False) +kivy.uix.widget.Widget.to_parent?4(x, y, relative=False) +kivy.uix.widget.Widget.to_widget?4(x, y, relative=False) +kivy.uix.widget.Widget.to_window?4(x, y, initial=True, relative=False) +kivy.uix.widget.Widget.top?7 +kivy.uix.widget.Widget.width?7 +kivy.uix.widget.Widget.x?7 +kivy.uix.widget.Widget.y?7 +kivy.uix.widget.Widget?1(**kwargs) +kivy.uix.widget.WidgetBase?7 +kivy.uix.widget.WidgetMetaclass?1(name, bases, attrs) +kivy.utils.DEPRECATED_CALLERS?7 +kivy.utils.SafeList.clear?4() +kivy.utils.SafeList.iterate?4(reverse=False) +kivy.utils._platform_android?8 +kivy.utils._platform_ios?8 +kivy.utils.boundary?4(value, minvalue, maxvalue) +kivy.utils.deprecated?4(func) +kivy.utils.difference?4(set1, set2) +kivy.utils.escape_markup?4(text) +kivy.utils.format_bytes_to_human?4(size, precision=2) +kivy.utils.get_color_from_hex?4(s) +kivy.utils.get_hex_from_color?4(color) +kivy.utils.get_random_color?4(alpha=1.0) +kivy.utils.interpolate?4(value_from, value_to, step=10) +kivy.utils.intersection?4(set1, set2) +kivy.utils.is_color_transparent?4(c) +kivy.utils.new_func?4(*args, **kwargs) +kivy.utils.platform?4() +kivy.utils.reify?1(func) +kivy.utils.strtotuple?4(s) +kivy.vector.Vector._get_x?5() +kivy.vector.Vector._get_y?5() +kivy.vector.Vector._set_x?5(x) +kivy.vector.Vector._set_y?5(y) +kivy.vector.Vector.angle?4(a) +kivy.vector.Vector.distance2?4(to) +kivy.vector.Vector.distance?4(to) +kivy.vector.Vector.dot?4(a) +kivy.vector.Vector.in_bbox?4(a, b) +kivy.vector.Vector.length2?4() +kivy.vector.Vector.length?4() +kivy.vector.Vector.line_intersection?4(v2, v3, v4) +kivy.vector.Vector.normalize?4() +kivy.vector.Vector.rotate?4(angle) +kivy.vector.Vector.x?7 +kivy.vector.Vector.y?7 +kivy.vector.Vector?1(*largs) +kivy.weakmethod.WeakMethod.is_dead?4() +kivy.weakmethod.WeakMethod?1(method) +kivy.weakmethod.WeakMethod_1.is_dead?4() +pep8.BENCHMARK_KEYS?7 +pep8.BINARY_OPERATORS?7 +pep8.BaseReport.error?4(line_number, offset, text, check) +pep8.BaseReport.get_count?4(prefix='') +pep8.BaseReport.get_file_results?4() +pep8.BaseReport.get_statistics?4(prefix='') +pep8.BaseReport.increment_logical_line?4() +pep8.BaseReport.init_file?4(filename, lines, expected, line_offset) +pep8.BaseReport.print_benchmark?4() +pep8.BaseReport.print_filename?7 +pep8.BaseReport.print_statistics?4(prefix='') +pep8.BaseReport.start?4() +pep8.BaseReport.stop?4() +pep8.BaseReport?1(options) +pep8.COMMENT_WITH_NL?7 +pep8.COMPARE_SINGLETON_REGEX?7 +pep8.COMPARE_TYPE_REGEX?7 +pep8.Checker.build_tokens_line?4() +pep8.Checker.check_all?4(expected=None, line_offset=0) +pep8.Checker.check_logical?4() +pep8.Checker.check_physical?4(line) +pep8.Checker.generate_tokens?4() +pep8.Checker.readline?4() +pep8.Checker.readline_check_physical?4() +pep8.Checker.run_check?4(check, argument_names) +pep8.Checker?1(filename, lines=None, options=None, report=None, **kwargs) +pep8.DEFAULT_EXCLUDE?7 +pep8.DEFAULT_IGNORE?7 +pep8.DOCSTRING_REGEX?7 +pep8.DiffReport.error?4(line_number, offset, text, check) +pep8.DiffReport?1(options) +pep8.ERRORCODE_REGEX?7 +pep8.EXTRANEOUS_WHITESPACE_REGEX?7 +pep8.FileReport.print_filename?7 +pep8.HUNK_REGEX?7 +pep8.INDENT_REGEX?7 +pep8.KEYWORDS?7 +pep8.KEYWORD_REGEX?7 +pep8.LAMBDA_REGEX?7 +pep8.MAX_LINE_LENGTH?7 +pep8.OPERATORS?7 +pep8.OPERATOR_REGEX?7 +pep8.RAISE_COMMA_REGEX?7 +pep8.REPORT_FORMAT?7 +pep8.RERAISE_COMMA_REGEX?7 +pep8.SELFTEST_REGEX?7 +pep8.SINGLETONS?7 +pep8.SKIP_TOKENS?7 +pep8.StandardReport.error?4(line_number, offset, text, check) +pep8.StandardReport?1(options) +pep8.StyleGuide.check_files?4(paths=None) +pep8.StyleGuide.excluded?4(filename) +pep8.StyleGuide.get_checks?4(argument_name) +pep8.StyleGuide.ignore_code?4(code) +pep8.StyleGuide.init_report?4(reporter=None) +pep8.StyleGuide.input_dir?4(dirname) +pep8.StyleGuide.input_file?4(filename, lines=None, expected=None, line_offset=0) +pep8.StyleGuide?1(*args, **kwargs) +pep8.TestReport.get_file_results?4() +pep8.TestReport.print_results?4() +pep8.TestReport?1(options) +pep8.UNARY_OPERATORS?7 +pep8.WHITESPACE?7 +pep8.WHITESPACE_AFTER_COMMA_REGEX?7 +pep8._main?5() +pep8.blank_lines?4(logical_line, blank_lines, indent_level, line_number, previous_logical, previous_indent_level) +pep8.comparison_to_singleton?4(logical_line) +pep8.comparison_type?4(logical_line) +pep8.compound_statements?4(logical_line) +pep8.continuation_line_indentation?4(logical_line, tokens, indent_level, verbose) +pep8.expand_indent?4(line) +pep8.explicit_line_join?4(logical_line, tokens) +pep8.extraneous_whitespace?4(logical_line) +pep8.filename_match?4(filename, patterns, default=True) +pep8.find_checks?4(argument_name) +pep8.imports_on_separate_lines?4(logical_line) +pep8.indentation?4(logical_line, previous_logical, indent_char, indent_level, previous_indent_level) +pep8.init_tests?4(pep8style) +pep8.maximum_line_length?4(physical_line, max_line_length) +pep8.missing_newline?4(physical_line) +pep8.missing_whitespace?4(logical_line) +pep8.missing_whitespace_around_operator?4(logical_line, tokens) +pep8.mute_string?4(text) +pep8.parse_udiff?4(diff, patterns=None, parent='.') +pep8.process_options?4(arglist=None, parse_argv=False, config_file=None) +pep8.python_3000_backticks?4(logical_line) +pep8.python_3000_has_key?4(logical_line) +pep8.python_3000_not_equal?4(logical_line) +pep8.python_3000_raise_comma?4(logical_line) +pep8.read_config?4(options, args, arglist, parser) +pep8.readlines?4(filename) +pep8.run_tests?4(filename) +pep8.selftest?4(options) +pep8.tabs_obsolete?4(physical_line) +pep8.tabs_or_spaces?4(physical_line, indent_char) +pep8.trailing_whitespace?4(physical_line) +pep8.whitespace_around_comma?4(logical_line) +pep8.whitespace_around_keywords?4(logical_line) +pep8.whitespace_around_named_parameter_equals?4(logical_line, tokens) +pep8.whitespace_around_operator?4(logical_line) +pep8.whitespace_before_inline_comment?4(logical_line, tokens) +pep8.whitespace_before_parameters?4(logical_line, tokens) +pep8kivy.KivyStyleChecker.report_error?4(line_number, offset, text, check) +pep8kivy.KivyStyleChecker?1(filename) +pep8kivy.check?4(fn) +pep8kivy.htmlmode?7 +pep8kivy.pep8_ignores?7 +pep8kivy.usage?4() +subset_gles.add_defines_to_set?4(header) +subset_gles.already_extracted?7 +subset_gles.extract_common_symbols?4(symbols1, symbols2, already_extracted) +subset_gles.gl?7 +subset_gles.gl_symbols?7 +subset_gles.gles?7 +subset_gles.gles_symbols?7 +subset_gles.glext?7 +subset_gles.glext_symbols?7
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/APIs/kivy.bas --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/APIs/kivy.bas Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,327 @@ +AbstractStore EventDispatcher +AbstractView FloatLayout +Accordion Widget +AccordionException Exception +AccordionItem FloatLayout +Adapter EventDispatcher +Adapter_1 Adapter +AdaptersTestCase unittest.TestCase +AnchorLayout Layout +AndroidMotionEvent MotionEvent +AndroidMotionEventProvider MotionEventProvider +Animation EventDispatcher +AnimationTestCase unittest.TestCase +App EventDispatcher +AppTest unittest.TestCase +AsyncImage Image +Atlas EventDispatcher +AudioGstreamerTestCase AudioTestCase +AudioPygameTestCase AudioTestCase +AudioTestCase unittest.TestCase +BadDataItem Label +BaseWidget FloatLayout +BoxLayout Layout +Bubble GridLayout +BubbleButton Button +BubbleContent GridLayout +BuilderException ParserException +Button Label +CallerWidget FloatLayout +Camera Image +CameraBase EventDispatcher +CameraGStreamer CameraBase +CameraOpenCV CameraBase +CameraVideoCapture CameraBase +Carousel StencilView +CategoryItem SelectableDataItem +CheckBox Widget +ClipboardDummy ClipboardBase +ClipboardPygame ClipboardBase +ClockBase _ClockBase +ClockTestCase unittest.TestCase +CodeInput TextInput +CodeInputTest App +ColorException Exception +ColorPicker RelativeLayout +ColorPickerApp App +ColorWheel Widget +ColoredFormatter logging.Formatter +CompositeListItem BoxLayout SelectableView +ConfigParser PythonConfigParser +ConsoleHandler logging.StreamHandler +CoreCriticalException Exception +CustomAlias EventDispatcher +CustomLabel Label +DDSException Exception +DampedScrollEffect ScrollEffect +DataItemWithMethod DataItem +DataItem_1 Label +DictAdapter ListAdapter +DictAdapterTestCase unittest.TestCase +DictStore AbstractStore +DiffReport StandardReport +DropDown ScrollView +DropDownException Exception +EnhancedDictionnary dict +Etc1Tool Tool +EventLoopBase EventDispatcher +Example1 App +FBOInstructionTestCase unittest.TestCase +FactoryBuild Command +FactoryException Exception +FadeTransition ShaderTransition +FakeMotionEvent MotionEvent +FileChooserApp App +FileChooserController FloatLayout +FileChooserIconView FileChooserController +FileChooserListView FileChooserController +FileChooserProgress FileChooserProgressBase +FileChooserProgressBase FloatLayout +FileChooserTestCase GraphicUnitTest +FileHandler logging.Handler +FileReport BaseReport +FlaskThread threading.Thread +FloatLayout Layout +FontTestCase unittest.TestCase +ForceUnicodeError Exception +FruitItem SelectableDataItem +FruitSelectionObserver Widget +FruitsDictAdapter DictAdapter +FruitsListAdapter ListAdapter +GifDecoder Gif +GraphicUnitTest unittest.TestCase +GridLayout Layout +GridLayoutException Exception +HIDInputMotionEventProvider MotionEventProvider +HIDMotionEvent MotionEvent +Image Widget +ImageLoaderDDS ImageLoaderBase +ImageLoaderGIF ImageLoaderBase +ImageLoaderPIL ImageLoaderBase +ImageLoaderPygame ImageLoaderBase +ImageLoaderTex ImageLoaderBase +ImageTestCase unittest.TestCase +Inspector FloatLayout +InteractiveLauncher SafeMembrane +InvalidLangTestCase unittest.TestCase +Issue599 unittest.TestCase +Issue609 GraphicUnitTest +JsonStore AbstractStore +Keyboard EventDispatcher +KineticEffect EventDispatcher +KivyLexer RegexLexer +KivyStyleChecker pep8 +Label Widget +LabelEmptyMarkupTestCase unittest.TestCase +LabelPIL LabelBase +LabelPygame LabelBase +LangComplexTestCase unittest.TestCase +LangTestCase unittest.TestCase +Layout Widget +LinuxWacomMotionEvent MotionEvent +LinuxWacomMotionEventProvider MotionEventProvider +ListAdapter Adapter EventDispatcher +ListAdapterTestCase unittest.TestCase +ListItemButton Button SelectableView +ListItemLabel Label SelectableView +ListView AbstractView EventDispatcher +ListViewModal ModalView +ListViewModal_1 ModalView +ListViewTestCase unittest.TestCase +LoaderThreadPool LoaderBase +LoggerHistory logging.Handler +MTDMotionEvent MotionEvent +MTDMotionEventProvider MotionEventProvider +MTData ctypes.Structure +MTPoint ctypes.Structure +MTVector ctypes.Structure +MacMotionEvent MotionEvent +MacMotionEventProvider MotionEventProvider +MainWidget Widget +MarkupLabel MarkupLabelBase +MissingOrderedDict OrderedDict +ModalView AnchorLayout +MotionEvent MotionEventBase +MotionEventMetaclass type +MouseMotionEvent MotionEvent +MouseMotionEventProvider MotionEventProvider +MyWidget NestedWidget +NestedWidget FloatLayout +NoLanguageSelectedError Exception +NoSuchLangError Exception +OSCServer _OSCServer +OSXPortableBuild Command +OpacityScrollEffect DampedScrollEffect +PaddingSpacingTestCase unittest.TestCase +Parallel Animation +ParserException Exception +ParserSelectorClass ParserSelector +ParserSelectorId ParserSelector +ParserSelectorName ParserSelector +PerfApp App FloatLayout +Popup ModalView +PopupException Exception +ProbeSysfsHardwareProbe MotionEventProvider +ProgressBar Widget +PropertiesTestCase unittest.TestCase +PropertyWidget EventDispatcher +ProxyImage Image +PvrtcTool Tool +QueryDict dict +RECT Structure +Recorder EventDispatcher +RecorderMotionEvent MotionEvent +RedisStore AbstractStore +RelativeLayout FloatLayout +RstAsyncImage AsyncImage +RstBlockQuote GridLayout +RstDefinition GridLayout +RstDefinitionList GridLayout +RstDefinitionSpace Widget +RstDocument ScrollView +RstEmptySpace Widget +RstEntry GridLayout +RstFieldBody GridLayout +RstFieldList GridLayout +RstFieldName Label +RstGridLayout GridLayout +RstImage Image +RstList GridLayout +RstListBullet Label +RstListItem GridLayout +RstLiteralBlock GridLayout +RstNote GridLayout +RstParagraph Label +RstSystemMessage GridLayout +RstTable GridLayout +RstTerm AnchorLayout +RstTitle Label +RstTransition Widget +RstVideoPlayer VideoPlayer +RstWarning GridLayout +SDLMotionEvent MotionEvent +SDLMotionEventProvider MotionEventProvider +SafeList list +Scatter Widget +ScatterLayout Scatter +ScatterPlane Scatter +Screen RelativeLayout +ScreenManager FloatLayout +ScreenManagerException Exception +ScrollEffect KineticEffect +ScrollView StencilView +Sequence Animation +SettingBoolean SettingItem +SettingItem FloatLayout +SettingNumeric SettingString +SettingOptions SettingItem +SettingPath SettingItem +SettingSidebarLabel Label +SettingSpacer Widget +SettingString SettingItem +SettingTitle Label +Settings BoxLayout +SettingsApp App +SettingsPanel GridLayout +ShaderTransition TransitionBase +ShapeRect Shape +SimpleListAdapter Adapter +SlideTransition TransitionBase +Slider Widget +SliderApp App +Sound EventDispatcher +SoundGstreamer Sound +SoundPygame Sound +SpellingEnchant SpellingBase +SpellingOSXAppKit SpellingBase +Spinner Button +SpinnerOption Button +Splitter BoxLayout +SplitterApp App +SplitterStrip Button +StackLayout Layout +StandardReport BaseReport +StencilView Widget +StorageTestCase unittest.TestCase +SwapTransition TransitionBase +Switch Widget +TOUCHINPUT Structure +TabbedPanel GridLayout +TabbedPanelContent FloatLayout +TabbedPanelException Exception +TabbedPanelHeader ToggleButton +TabbedPanelItem TabbedPanelHeader +TabbedPanelStrip GridLayout +TestApp App +TestClass BaseClass +TestClass2 BaseClass +TestClass3 BaseClass +TestKvApp App +TestProperty EventDispatcher +TestReport StandardReport +TestWidget Widget +TestWidget2 Widget +TextInput Widget +TextInputApp App +TextInputCutCopyPaste Bubble +ToggleButton Button +TransitionBase EventDispatcher +TreeView Widget +TreeViewException Exception +TreeViewLabel Label TreeViewNode +TreeViewProperty BoxLayout TreeViewNode +Tuio2dCurMotionEvent TuioMotionEvent +Tuio2dObjMotionEvent TuioMotionEvent +TuioMotionEvent MotionEvent +TuioMotionEventProvider MotionEventProvider +UIXAnchorLayoutTestcase GraphicUnitTest +UIXBoxLayoutTestcase GraphicUnitTest +UIXWidgetTestCase GraphicUnitTest +UnicodeIssueSetting App +UrlRequest Thread +UrlRequestTest unittest.TestCase +VKeyboard Scatter +Vector list +VertexInstructionTest GraphicUnitTest +Video Image +VideoApp App +VideoBase EventDispatcher +VideoDirective Directive +VideoFFMpeg VideoBase +VideoGStreamer VideoBase +VideoNull VideoBase +VideoPlayer GridLayout +VideoPlayerAnnotation Label +VideoPlayerPlayPause Image +VideoPlayerPreview FloatLayout +VideoPlayerProgressBar ProgressBar +VideoPlayerStop Image +VideoPlayerVolume Image +VideoPyglet VideoBase +WM_MotionEvent MotionEvent +WM_MotionEventProvider MotionEventProvider +WM_Pen MotionEvent +WM_PenProvider MotionEventProvider +Widget WidgetBase +WidgetException Exception +WidgetMetaclass type +WidgetTestCase unittest.TestCase +WindowBase EventDispatcher +WindowEglRpi WindowBase +WindowPygame WindowBase +WindowSDL WindowBase +WindowsPortableBuild Command +WipeTransition ShaderTransition +_ColorArc InstructionGroup +_OSCServer Process +_OSCServer_1 Thread +_ToctreeVisitor nodes.NodeVisitor +_Visitor nodes.NodeVisitor +_Worker Thread +input_absinfo Structure +input_event Structure +mtdev Structure +mtdev_caps Structure +role_doc nodes.Inline nodes.TextElement +role_video nodes.General nodes.TextElement +timeval Structure
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/LICENSE.GPL --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/LICENSE.GPL Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,901 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/source/Plugin_Project_Kivy.PluginProjectKivy.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/source/Plugin_Project_Kivy.PluginProjectKivy.html Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,184 @@ +<!DOCTYPE html> +<html><head> +<title>Plugin_Project_Kivy.PluginProjectKivy</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>Plugin_Project_Kivy.PluginProjectKivy</h1> +<p> +Module implementing the Kivy project plug-in. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#ProjectKivyPlugin">ProjectKivyPlugin</a></td> +<td>Class implementing the Kivy project plugin.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr> +<td><a href="#apiFiles">apiFiles</a></td> +<td>Module function to return the API files made available by this plugin.</td> +</tr> +</table> +<hr /><hr /> +<a NAME="ProjectKivyPlugin" ID="ProjectKivyPlugin"></a> +<h2>ProjectKivyPlugin</h2> +<p> + Class implementing the Kivy project plugin. +</p> +<h3>Derived from</h3> +QObject +<h3>Class Attributes</h3> +<table> +<tr><td>KivyLexerEntry</td></tr><tr><td>KivyLexerKey</td></tr><tr><td>lexerAssociations</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ProjectKivyPlugin.__init__">ProjectKivyPlugin</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.__initialize">__initialize</a></td> +<td>Private slot to (re)initialize the plugin.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.__loadTranslator">__loadTranslator</a></td> +<td>Private method to load the translation file.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.activate">activate</a></td> +<td>Public method to activate this plugin.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.deactivate">deactivate</a></td> +<td>Public method to deactivate this plugin.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.fileTypesCallback">fileTypesCallback</a></td> +<td>Public method get the filetype associations of the Kivy project type.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.getLexer">getLexer</a></td> +<td>Public method to instantiate a Pygments Kivy lexer object.</td> +</tr><tr> +<td><a href="#ProjectKivyPlugin.lexerAssociationCallback">lexerAssociationCallback</a></td> +<td>Public method to get the lexer association of the Kivy project type for a file.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ProjectKivyPlugin.__init__" ID="ProjectKivyPlugin.__init__"></a> +<h4>ProjectKivyPlugin (Constructor)</h4> +<b>ProjectKivyPlugin</b>(<i>ui</i>) +<p> + Constructor +</p><dl> +<dt><i>ui</i></dt> +<dd> +reference to the user interface object (UI.UserInterface) +</dd> +</dl><a NAME="ProjectKivyPlugin.__initialize" ID="ProjectKivyPlugin.__initialize"></a> +<h4>ProjectKivyPlugin.__initialize</h4> +<b>__initialize</b>(<i></i>) +<p> + Private slot to (re)initialize the plugin. +</p><a NAME="ProjectKivyPlugin.__loadTranslator" ID="ProjectKivyPlugin.__loadTranslator"></a> +<h4>ProjectKivyPlugin.__loadTranslator</h4> +<b>__loadTranslator</b>(<i></i>) +<p> + Private method to load the translation file. +</p><a NAME="ProjectKivyPlugin.activate" ID="ProjectKivyPlugin.activate"></a> +<h4>ProjectKivyPlugin.activate</h4> +<b>activate</b>(<i></i>) +<p> + Public method to activate this plugin. +</p><dl> +<dt>Returns:</dt> +<dd> +tuple of None and activation status (boolean) +</dd> +</dl><a NAME="ProjectKivyPlugin.deactivate" ID="ProjectKivyPlugin.deactivate"></a> +<h4>ProjectKivyPlugin.deactivate</h4> +<b>deactivate</b>(<i></i>) +<p> + Public method to deactivate this plugin. +</p><a NAME="ProjectKivyPlugin.fileTypesCallback" ID="ProjectKivyPlugin.fileTypesCallback"></a> +<h4>ProjectKivyPlugin.fileTypesCallback</h4> +<b>fileTypesCallback</b>(<i></i>) +<p> + Public method get the filetype associations of the Kivy project type. +</p><dl> +<dt>Returns:</dt> +<dd> +dictionary with file type associations +</dd> +</dl><a NAME="ProjectKivyPlugin.getLexer" ID="ProjectKivyPlugin.getLexer"></a> +<h4>ProjectKivyPlugin.getLexer</h4> +<b>getLexer</b>(<i>parent=None</i>) +<p> + Public method to instantiate a Pygments Kivy lexer object. +</p><dl> +<dt><i>parent</i></dt> +<dd> +reference to the parent object (QObject) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +reference to the instanciated lexer object (QsciLexer) +</dd> +</dl><a NAME="ProjectKivyPlugin.lexerAssociationCallback" ID="ProjectKivyPlugin.lexerAssociationCallback"></a> +<h4>ProjectKivyPlugin.lexerAssociationCallback</h4> +<b>lexerAssociationCallback</b>(<i>filename</i>) +<p> + Public method to get the lexer association of the Kivy project type for + a file. +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +name of the lexer (string) (Pygments lexers are prefixed with 'Pygments|') +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="apiFiles" ID="apiFiles"></a> +<h2>apiFiles</h2> +<b>apiFiles</b>(<i>language</i>) +<p> + Module function to return the API files made available by this plugin. +</p><dl> +<dt>Returns:</dt> +<dd> +list of API filenames (list of string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/source/Plugin_Project_Kivy.ProjectKivy.KivyLexer.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/source/Plugin_Project_Kivy.ProjectKivy.KivyLexer.html Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html><head> +<title>Plugin_Project_Kivy.ProjectKivy.KivyLexer</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>Plugin_Project_Kivy.ProjectKivy.KivyLexer</h1> +<p> +"" +Module implementing a Pygments lexer for the Kivy language. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>__all__</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#KivyLexer">KivyLexer</a></td> +<td>Class implementing a Pygments lexer for the Kivy language.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="KivyLexer" ID="KivyLexer"></a> +<h2>KivyLexer</h2> +<p> + Class implementing a Pygments lexer for the Kivy language. +</p> +<h3>Derived from</h3> +RegexLexer +<h3>Class Attributes</h3> +<table> +<tr><td>aliases</td></tr><tr><td>filenames</td></tr><tr><td>mimetypes</td></tr><tr><td>name</td></tr><tr><td>tokens</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/source/index-Plugin_Project_Kivy.ProjectKivy.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/source/index-Plugin_Project_Kivy.ProjectKivy.html Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html><head> +<title>Plugin_Project_Kivy.ProjectKivy</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body> +<h1>Plugin_Project_Kivy.ProjectKivy</h1> +<p> +Package implementing project support for eric5 Kivy projects. +</p> + + +<h3>Modules</h3> +<table> +<tr> +<td><a href="Plugin_Project_Kivy.ProjectKivy.KivyLexer.html">KivyLexer</a></td> +<td>"" Module implementing a Pygments lexer for the Kivy language.</td> +</tr> +</table> +</body></html> \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/source/index-Plugin_Project_Kivy.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/source/index-Plugin_Project_Kivy.html Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,42 @@ +<!DOCTYPE html> +<html><head> +<title>Plugin_Project_Kivy</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body> +<h1>Plugin_Project_Kivy</h1> +<p> +Package implementing the Kivy project plugin. +</p> + +<h3>Packages</h3> +<table> +<tr> +<td><a href="index-Plugin_Project_Kivy.ProjectKivy.html">ProjectKivy</a></td> +<td>Package implementing project support for eric5 Kivy projects.</td> +</tr> +</table> + +<h3>Modules</h3> +<table> +<tr> +<td><a href="Plugin_Project_Kivy.PluginProjectKivy.html">PluginProjectKivy</a></td> +<td>Module implementing the Kivy project plug-in.</td> +</tr> +</table> +</body></html> \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/Documentation/source/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/Documentation/source/index.html Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html><head> +<title>Table of contents</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body> +<h1>Table of contents</h1> + + +<h3>Packages</h3> +<table> +<tr> +<td><a href="index-Plugin_Project_Kivy.html">Plugin_Project_Kivy</a></td> +<td>Package implementing the Kivy project plugin.</td> +</tr> +</table> + +</body></html> \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/KivyLexer.py --- a/ProjectKivy/KivyLexer.py Wed Jun 12 18:51:49 2013 +0200 +++ b/ProjectKivy/KivyLexer.py Wed Jun 12 20:05:16 2013 +0200 @@ -1,43 +1,51 @@ -# -*- coding: utf-8 -*- - -# Copyright (c) 2013 Detlev Offenbach <detlev@die-offenbachs.de> -# - -""""" -Pygments lexer for the Kivy language -""" - -from pygments.lexer import RegexLexer, bygroups, using -from pygments.lexers.agile import PythonLexer -from pygments.token import * - -__all__ = ['KivyLexer'] - -class KivyLexer(RegexLexer): - name = 'Kivy' - aliases = ['kivy', 'kv'] - filenames = ['*.kv', '*.kivy'] - mimetypes = ['application/x-kivy'] - tokens = { - 'root': [ - (r'#:.*?$', Comment.Preproc), - (r'#.*?$', using(PythonLexer)), - (r'\s+', Text), - (r'<.+>', Name.Namespace), - (r'(\[)(\s*)(.*?)(\s*)(@)', - bygroups(Punctuation, Text, Name.Class, Text, Operator), - 'classList'), - (r'[A-Za-z][A-Za-z0-9]*$', Name.Attribute), - (r'(.*?)(\s*)(:)(\s*)$', - bygroups(Name.Class, Text, Punctuation, Text)), - (r'(.*?)(\s*)(:)(\s*)(.*?)$', - bygroups(Name.Attribute, Text, Punctuation, Text, - using(PythonLexer)))], - 'classList': [ - (r'(,)(\s*)([A-Z][A-Za-z0-9]*)', - bygroups(Punctuation, Text, Name.Class)), - (r'(\+)(\s*)([A-Z][A-Za-z0-9]*)', - bygroups(Operator, Text, Name.Class)), - (r'\s+', Text), - (r'[A-Z][A-Za-z0-9]*', Name.Class), - (r'\]', Punctuation, '#pop')]} +# -*- coding: utf-8 -*- + +# Copyright (c) 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""""" +Module implementing a Pygments lexer for the Kivy language. +""" + +# +# Lexer class is derived from the highlighter contained in the Kivy package. +# Copyright of the original by the Kivy Team. +# + +from pygments.lexer import RegexLexer, bygroups, using +from pygments.lexers.agile import PythonLexer +from pygments.token import Comment, Text, Name, Punctuation, Operator + +__all__ = ['KivyLexer'] + +class KivyLexer(RegexLexer): + """ + Class implementing a Pygments lexer for the Kivy language. + """ + name = 'Kivy' + aliases = ['kivy', 'kv'] + filenames = ['*.kv', '*.kivy'] + mimetypes = ['application/x-kivy'] + tokens = { + 'root': [ + (r'#:.*?$', Comment.Preproc), + (r'#.*?$', using(PythonLexer)), + (r'\s+', Text), + (r'<.+>', Name.Namespace), + (r'(\[)(\s*)(.*?)(\s*)(@)', + bygroups(Punctuation, Text, Name.Class, Text, Operator), + 'classList'), + (r'[A-Za-z][A-Za-z0-9]*$', Name.Attribute), + (r'(.*?)(\s*)(:)(\s*)$', + bygroups(Name.Class, Text, Punctuation, Text)), + (r'(.*?)(\s*)(:)(\s*)(.*?)$', + bygroups(Name.Attribute, Text, Punctuation, Text, + using(PythonLexer)))], + 'classList': [ + (r'(,)(\s*)([A-Z][A-Za-z0-9]*)', + bygroups(Punctuation, Text, Name.Class)), + (r'(\+)(\s*)([A-Z][A-Za-z0-9]*)', + bygroups(Operator, Text, Name.Class)), + (r'\s+', Text), + (r'[A-Z][A-Za-z0-9]*', Name.Class), + (r'\]', Punctuation, '#pop')]}
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/i18n/kivy_de.qm Binary file ProjectKivy/i18n/kivy_de.qm has changed
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/i18n/kivy_de.ts --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/i18n/kivy_de.ts Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS> +<TS version="2.0" language="de_DE"> +<context> + <name>ProjectKivyPlugin</name> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy</source> + <translation>Kivy</translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv)</source> + <translation>Kivy Dateien (*.kv)</translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv *.kivy)</source> + <translation>Kivy Dateien (*.kv *.kivy)</translation> + </message> +</context> +</TS>
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/i18n/kivy_en.qm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/i18n/kivy_en.qm Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,1 @@ +<¸dÊÍ!¿`¡½Ý \ No newline at end of file
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/i18n/kivy_en.ts --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/i18n/kivy_en.ts Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS><TS version="2.0"> +<context> + <name>ProjectKivyPlugin</name> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv *.kivy)</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS>
diff -r 373da5610be1 -r b7e3e3b131ea ProjectKivy/i18n/kivy_es.ts --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ProjectKivy/i18n/kivy_es.ts Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE TS><TS version="2.0"> +<context> + <name>ProjectKivyPlugin</name> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="PluginProjectKivy.py" line="131"/> + <source>Kivy Files (*.kv *.kivy)</source> + <translation type="unfinished"></translation> + </message> +</context> +</TS>
diff -r 373da5610be1 -r b7e3e3b131ea __init__.py --- a/__init__.py Wed Jun 12 18:51:49 2013 +0200 +++ b/__init__.py Wed Jun 12 20:05:16 2013 +0200 @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Package implementing the Kivy project plugin. +"""