Open Source Telephony
 help / color / mirror / Atom feed
* [PATCH 6/6] test-stk-menu: Add support for BIP commands
@ 2011-03-22 12:51 Philippe Nunes
  0 siblings, 0 replies; only message in thread
From: Philippe Nunes @ 2011-03-22 12:51 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1415 bytes --]

---
 test/test-stk-menu |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/test/test-stk-menu b/test/test-stk-menu
index 639fe77..85b9a0b 100755
--- a/test/test-stk-menu
+++ b/test/test-stk-menu
@@ -170,6 +170,18 @@ class StkAgent(dbus.service.Object):
 			return False
 
 	@dbus.service.method("org.ofono.SimToolkitAgent",
+				in_signature="sy", out_signature="b")
+	def ConfirmOpenChannel(self, info, icon):
+		print "Open channel confirmation: (%s)" % (info)
+		print "Icon: (%d)" % (icon)
+		key = raw_input("Enter Confirmation (y, n):")
+
+		if key == 'y':
+			return True
+		else:
+			return False
+
+	@dbus.service.method("org.ofono.SimToolkitAgent",
 					in_signature="", out_signature="")
 	def Cancel(self):
 		print "Cancel"
@@ -198,6 +210,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 DisplayChannelActivity(self, text, icon):
+		print "Channel activity (%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)
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-03-22 12:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-22 12:51 [PATCH 6/6] test-stk-menu: Add support for BIP commands Philippe Nunes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox