Newer
Older
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
## Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2006-2007 Jean-Marie Traissard <jim AT lapin.org>
## Travis Shirk <travis AT pobox.com>
## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Julien Pivotto <roidelapluie AT gmail.com>
## Stephan Erb <steve-e AT h3c.de>
## Copyright (C) 2007-2008 Brendan Taylor <whateley AT gmail.com>
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
## This file is part of Gajim.
##
## Gajim is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 3 only.
## Gajim is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
from common import gajim

Yann Leboulanger
committed
from common import helpers
# Derived types MUST register their type IDs here if custom behavor is required
TYPE_CHAT = 'chat'
TYPE_GC = 'gc'
TYPE_PM = 'pm'
####################
'''An abstract base widget that can embed in the gtk.Notebook of a MessageWindow'''
def __init__(self, type_id, parent_win, widget_name, contact, account, resource = None):
# dict { cb id : widget}
# keep all registered callbacks of widgets, created by self.xml
self.type_id = type_id
self.parent_win = parent_win
self.widget_name = widget_name
self.contact = contact
self.account = account
gajim.last_message_time[self.account][self.get_full_jid()] = 0
self.xml = gtkgui_helpers.get_glade('message_window.glade', widget_name)
self.widget = self.xml.get_widget(widget_name)

Yann Leboulanger
committed
def get_full_jid(self):
fjid = self.contact.jid
if self.resource:
fjid += '/' + self.resource

Yann Leboulanger
committed
def set_control_active(self, state):
'''Called when the control becomes active (state is True)
or inactive (state is False)'''
def allow_shutdown(self, method, on_response_yes, on_response_no,
on_response_minimize):
'''Called to check is a control is allowed to shutdown.
If a control is not in a suitable shutdown state this method
should call on_response_no, else on_response_yes or
on_response_minimize '''
# NOTE: Derived classes MAY implement this
on_response_yes(self)
def shutdown(self):
# NOTE: Derived classes MUST implement this
pass # NOTE: Derived classes SHOULD implement this
pass # NOTE: Derived classes SHOULD implement this
def toggle_emoticons(self):
pass # NOTE: Derived classes MAY implement this
def update_font(self):
pass # NOTE: Derived classes SHOULD implement this
def update_tags(self):
pass # NOTE: Derived classes SHOULD implement this
(label_str, color) either of which can be None
if chatstate is given that means we have HE SENT US a chatstate and
we want it displayed'''
# NOTE: Derived classes MUST implement this
# Return a markup'd label and optional gtk.Color in a tupple like:
#return (label_str, None)
pass
# Return a suitable tab image for display.
# None clears any current label.
def prepare_context_menu(self):
# NOTE: Derived classes SHOULD implement this
return None
def chat_buttons_set_visible(self, state):
# NOTE: Derived classes MAY implement this
def get_specific_unread(self):
return len(gajim.events.get_events(self.account,
self.contact.jid))

Brendan Taylor
committed
def set_session(self, session):
oldsession = None
if hasattr(self, 'session'):
oldsession = self.session

Brendan Taylor
committed
self.session = session
if session:
session.control = self
new_key = session.thread_id
jid = self.contact.jid
if self.resource:
jid += '/' + self.resource
crypto_changed = bool(session and session.enable_encryption) != \
bool(oldsession and oldsession.enable_encryption)
if crypto_changed:
self.print_esession_details()

Yann Leboulanger
committed
def send_message(self, message, keyID = '', type = 'chat',
chatstate = None, msg_id = None, composing_xep = None, resource = None,
user_nick = None):
# Send the given message to the active tab.
# Doesn't return None if error
jid = self.contact.jid

Yann Leboulanger
committed
message = helpers.remove_invalid_xml_chars(message)

Brendan Taylor
committed
conn = gajim.connections[self.account]

Brendan Taylor
committed
sess = conn.find_controlless_session(jid)

Brendan Taylor
committed
if self.resource:
jid += '/' + self.resource

Brendan Taylor
committed
if not sess:
sess = conn.make_new_session(jid)
self.set_session(sess)
# Send and update history

Brendan Taylor
committed
return conn.send_message(jid, message, keyID, type = type,
chatstate = chatstate, msg_id = msg_id,
composing_xep = composing_xep,
session = self.session,
original_message = original_message)

Yann Leboulanger
committed
# vim: se ts=3: