comparison frontends/src/primitivus/chat.py @ 225:fd9b7834d98a

distutils installation script, draft
author Goffi <goffi@goffi.org>
date Wed, 05 Jan 2011 01:56:36 +0100
parents 86d249b6d9b7
children b1794cbb88e5
comparison
equal deleted inserted replaced
224:9c6ee3f9ab29 225:fd9b7834d98a
18 You should have received a copy of the GNU General Public License 18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. 19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 """ 20 """
21 21
22 import urwid 22 import urwid
23 from quick_frontend.quick_contact_list import QuickContactList
24 from quick_frontend.quick_chat import QuickChat
25 from urwid_satext import sat_widgets 23 from urwid_satext import sat_widgets
24 from urwid_satext.files_management import FileDialog
25 from sat_frontends.quick_frontend.quick_contact_list import QuickContactList
26 from sat_frontends.quick_frontend.quick_chat import QuickChat
27 from sat_frontends.primitivus.card_game import CardGame
26 import time 28 import time
27 from tools.jid import JID 29 from sat.tools.jid import JID
28 from card_game import CardGame
29 from urwid_satext.files_management import FileDialog
30 30
31 31
32 class ChatText(urwid.FlowWidget): 32 class ChatText(urwid.FlowWidget):
33 """Manage the printing of chat message""" 33 """Manage the printing of chat message"""
34 34