54cee09b73
git-svn-id: http://www.neo1973-germany.de/svn@214 46df4e5c-bc4e-4628-a0fc-830ba316316d
20 lines
630 B
Python
20 lines
630 B
Python
#!/usr/bin/env python2.5
|
|
# -*- coding: utf-8 -*-
|
|
__author__ = "Soeren Apel (abraxa@dar-clan.de), Frank Gau (fgau@gau-net.de), Thomas Gstaedtner (thomas (a) gstaedtner (.) net)"
|
|
__version__ = "prototype"
|
|
__copyright__ = "Copyright (c) 2008"
|
|
__license__ = "GPL3"
|
|
|
|
from epydial import *
|
|
|
|
class SmsScreen(EdjeGroup):
|
|
|
|
def __init__(self, screen_manager):
|
|
EdjeGroup.__init__(self, screen_manager, SMS_SCREEN_NAME)
|
|
|
|
@edje.decorators.signal_callback("mouse,up,1", "*")
|
|
def on_edje_signal_dialer_status_triggered(self, emission, source):
|
|
if source == "button_10":
|
|
PyneoController.show_dialer_screen()
|
|
print 'source: ', source
|
|
|