test: Add DisplayAction method in test-stk-menu

This commit is contained in:
Philippe Nunes 2011-03-30 12:27:44 +02:00 committed by Denis Kenzior
parent 5ba49490c8
commit 1f7cd4393f
1 changed files with 10 additions and 0 deletions

View File

@ -198,6 +198,16 @@ class StkAgent(dbus.service.Object):
print "Text: %s" % (text)
print "Icon: %d" % (icon)
@dbus.service.method("org.ofono.SimToolkitAgent",
in_signature="sy", out_signature="")
def DisplayAction(self, text, icon):
print "Text: (%s)" % (text)
print "Icon: (%d)" % (icon)
key = raw_input("Press 't' to terminate the session ")
if key == 't':
raise EndSession("User wishes to terminate session")
def property_changed(name, value):
print "SimToolKit property: %s changed to '%s'" % (name, value)