This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 01-14 13:12:27.377 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libssl1.1.so | |
| 01-14 13:12:27.377 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_mixer.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_ttf.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libmain.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libSDL2.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libhidapi.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libffi.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libsqlite3.so | |
| 01-14 13:12:27.378 32718 32718 V pythonutil: Pattern libsqlite3\.so matched file libsqlite3.so | |
| 01-14 13:12:27.379 32718 32718 V pythonutil: Checking pattern libsqlite3\.so against libcrypto1.1.so |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Hoverable Behaviour (changing when the mouse is on the widget by O. Poyen. | |
| License: LGPL | |
| """ | |
| __author__ = 'Olivier POYEN' | |
| from kivy.properties import BooleanProperty, ObjectProperty | |
| from kivy.core.window import Window | |
| class HoverBehavior(object): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| __all__ = ('start', 'sleep', 'event', ) | |
| import types | |
| from functools import partial | |
| from collections import namedtuple | |
| from kivy.clock import Clock | |
| CallbackParameter = namedtuple('CallbackParameter', ('args', 'kwargs', )) |