2006-07-26 15:38:54 +02:00
|
|
|
from gettext import gettext as _
|
2006-06-22 21:59:38 +02:00
|
|
|
|
|
|
|
from sugar.activity.Activity import Activity
|
|
|
|
from sugar.chat.BuddyChat import BuddyChat
|
2006-08-09 15:53:10 +02:00
|
|
|
from sugar.presence.PresenceService import PresenceService
|
2006-06-22 21:59:38 +02:00
|
|
|
|
|
|
|
class ChatActivity(Activity):
|
2006-08-09 15:53:10 +02:00
|
|
|
def __init__(self):
|
2006-07-26 15:38:54 +02:00
|
|
|
Activity.__init__(self)
|
|
|
|
self.set_title(_('Private chat'))
|
|
|
|
|
2006-08-09 15:53:10 +02:00
|
|
|
def cmd_connect(self, args):
|
|
|
|
pservice = PresenceService()
|
|
|
|
service = pservice.get(args[0])
|
|
|
|
|
|
|
|
self._chat = BuddyChat(service)
|
2006-07-26 15:38:54 +02:00
|
|
|
self.add(self._chat)
|
|
|
|
self._chat.show()
|
2006-06-22 21:59:38 +02:00
|
|
|
|
2006-08-09 15:53:10 +02:00
|
|
|
def cmd_message(self, args):
|
|
|
|
self._chat.recv_message(args[0])
|
|
|
|
|
|
|
|
def execute(self, command, args):
|
|
|
|
if command == 'connect':
|
|
|
|
self.cmd_connect(args)
|
|
|
|
elif command == 'message':
|
2006-08-10 00:54:54 +02:00
|
|
|
self.cmd_message(args)
|
2006-08-09 15:53:10 +02:00
|
|
|
|