From 279f51e960b0716098add300fb66d3be0a76c6d1 Mon Sep 17 00:00:00 2001 From: yvesf Date: Fri, 29 May 2009 18:43:03 +0000 Subject: blah git-svn-id: http://xapek.org/svn/common/omegle@1047 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- chat.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'chat.py') diff --git a/chat.py b/chat.py index 8d7713c..be36aec 100644 --- a/chat.py +++ b/chat.py @@ -3,7 +3,7 @@ import urwid.curses_display import sys,time from omegle import OmegleChat -class Conversation(object): +class ConversationWindow(object): def __init__(self): self.edit = urwid.Edit(caption="Send: ",edit_text="Hi!",multiline=True) self.editbox = urwid.Filler(self.edit) @@ -95,9 +95,9 @@ class Omegle(OmegleChat): def on_wait(self): self.chatwindow.add_message("Server send Wait") -class Chat(Conversation): +class Chat(ConversationWindow): def __init__(self): - Conversation.__init__(self) + ConversationWindow.__init__(self) self.omegle = Omegle(self) def on_toggle_connect(self): @@ -124,3 +124,8 @@ class Chat(Conversation): import logging logging.basicConfig(filename="chat.py.log",level=logging.DEBUG) Chat().main() + +""" +Unterstuetzt im moment noch nicht das senden des /typing +partner sieht nicht wenn man tippt +""" -- cgit v1.2.1