c57f7e0695
git-svn-id: http://www.neo1973-germany.de/svn@229 46df4e5c-bc4e-4628-a0fc-830ba316316d
57 lines
2 KiB
Python
57 lines
2 KiB
Python
#!/usr/bin/env python2.5
|
|
# -*- coding: utf-8 -*-
|
|
__author__ = "Soeren Apel (abraxa@dar-clan.de), Frank Gau (fgau@gau-net.de), Thomas Gstaedner (thomas (a) gstaedtner (.) net)"
|
|
__version__ = "prototype"
|
|
__copyright__ = "Copyright (c) 2008"
|
|
__license__ = "GPL3"
|
|
|
|
from epydial import *
|
|
|
|
class AudioScreen(EdjeGroup):
|
|
toggle = 0
|
|
volume = 0.9
|
|
|
|
def __init__(self, screen_manager):
|
|
EdjeGroup.__init__(self, screen_manager, AUDIO_SCREEN_NAME)
|
|
PyneoController.set_volume(self.volume)
|
|
self.part_text_set("volume_label", "volume %d%%" % (self.volume*100))
|
|
|
|
def register_pyneo_callbacks(self):
|
|
PyneoController.register_callback("on_get_mp3_tags", self.on_get_mp3_tags)
|
|
|
|
def on_get_mp3_tags(self, status):
|
|
self.part_text_set("mp3_tags", "artist: %s<br>album: %s<br>title: %s" % (status['artist'], status['album'], status['title']))
|
|
|
|
@edje.decorators.signal_callback("music_player_send", "*")
|
|
def on_edje_signal_audio_screen_triggered(self, emission, source):
|
|
if source == "headline":
|
|
PyneoController.pause_music()
|
|
PyneoController.show_dialer_screen()
|
|
if source == "play_pause":
|
|
if self.toggle == 0:
|
|
self.signal_emit("key1", "")
|
|
PyneoController.play_music()
|
|
self.toggle = 1
|
|
elif self.toggle == 1:
|
|
self.signal_emit("key2", "")
|
|
PyneoController.pause_music()
|
|
self.toggle = 0
|
|
PyneoController.get_mp3_tags()
|
|
if source == "stop":
|
|
self.signal_emit("key2", "")
|
|
self.toggle = 0
|
|
PyneoController.stop_music()
|
|
PyneoController.get_mp3_tags()
|
|
if source == "track_right":
|
|
PyneoController.next_music()
|
|
if source == "track_left":
|
|
PyneoController.previous_music()
|
|
if source == "player-plus":
|
|
self.volume = self.volume + 0.1
|
|
PyneoController.set_volume(self.volume)
|
|
self.part_text_set("volume_label", "volume %d%%" % (self.volume*100))
|
|
if source == "player-minus":
|
|
self.volume = self.volume - 0.1
|
|
PyneoController.set_volume(self.volume)
|
|
self.part_text_set("volume_label", "volume %d%%" % (self.volume*100))
|
|
print 'source: ', source
|