Files
mopidy-touchscreen/mopidy_touchscreen/__init__.py
2015-05-23 14:14:28 +02:00

46 lines
1.4 KiB
Python

from __future__ import unicode_literals
import os
from mopidy import config, ext
from .touch_screen import TouchScreen
__version__ = '1.0.0'
class Extension(ext.Extension):
dist_name = 'Mopidy-Touchscreen'
ext_name = 'touchscreen'
version = __version__
def get_default_config(self):
conf_file = os.path.join(os.path.dirname(__file__),
'ext.conf')
return config.read(conf_file)
def get_config_schema(self):
schema = super(Extension, self).get_config_schema()
schema['screen_width'] = config.Integer(minimum=1)
schema['screen_height'] = config.Integer(minimum=1)
schema['resolution_factor'] = config.Integer(minimum=6)
schema['cursor'] = config.Boolean()
schema['fullscreen'] = config.Boolean()
schema['cache_dir'] = config.Path()
schema['gpio'] = config.Boolean()
schema['gpio_left'] = config.Integer()
schema['gpio_right'] = config.Integer()
schema['gpio_up'] = config.Integer()
schema['gpio_down'] = config.Integer()
schema['gpio_enter'] = config.Integer()
schema['sdl_fbdev'] = config.String()
schema['sdl_mousdrv'] = config.String()
schema['sdl_mousedev'] = config.String()
schema['sdl_audiodriver'] = config.String()
schema['sdl_path_dsp'] = config.String()
return schema
def setup(self, registry):
registry.add('frontend', TouchScreen)