gajim-plural/src/message_control.py

248 lines
6.3 KiB
Python
Raw Normal View History

# -*- coding:utf-8 -*-
## src/message_control.py
##
## 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/>.
##
import gtkgui_helpers
from common import gajim
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'
####################
class MessageControl(object):
2009-11-25 21:59:43 +01:00
"""
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
Merge one_window branch Merged revisions 9143,9145-9155,9157-9162,9164-9169,9171-9177 via svnmerge from svn://88.191.11.156/gajim/branches/one_window ........ r9145 | nicfit | 2007-12-13 21:49:09 -0700 (Thu, 13 Dec 2007) | 2 lines Implemented the original Nikos patch with an HPaned instead of a HBox and only do this mode when one_message_window == 'always' ........ r9152 | nicfit | 2007-12-15 13:33:56 -0700 (Sat, 15 Dec 2007) | 2 lines Added config and GUI for one_message_window_with_roster ........ r9153 | nicfit | 2007-12-15 13:41:46 -0700 (Sat, 15 Dec 2007) | 2 lines Use one_message_window_with_roster and some whitespace cleanup ........ r9154 | nicfit | 2007-12-15 14:04:49 -0700 (Sat, 15 Dec 2007) | 2 lines Scratch the chckbox for with roster mode, use one_message_window opt and combo ........ r9155 | nicfit | 2007-12-15 17:01:13 -0700 (Sat, 15 Dec 2007) | 2 lines MessageWindowMgr knows about ONE_MESSAGE_WINDOW_ALWAYS_WITH_ROSTER and MessageWindow can reparent itself rather then the roster having to do so. ........ r9157 | nicfit | 2007-12-15 17:47:20 -0700 (Sat, 15 Dec 2007) | 2 lines Resizing fixes and make the roster window shrink when last tab is removed ........ r9158 | nicfit | 2007-12-15 19:15:11 -0700 (Sat, 15 Dec 2007) | 2 lines Added "Show roster" (CTRL+R) to view menu when using always_with_roster to quickly hide/show the roster. ........ r9159 | nicfit | 2007-12-15 19:49:30 -0700 (Sat, 15 Dec 2007) | 2 lines Handle window title setting in always_with_roster mode. ........ r9160 | nicfit | 2007-12-15 20:13:57 -0700 (Sat, 15 Dec 2007) | 2 lines Removed FIXME ........ r9167 | nicfit | 2007-12-17 18:40:59 -0700 (Mon, 17 Dec 2007) | 2 lines When roster is hidden, show it when the number of MessageWindow controls == 0 ........ r9168 | nicfit | 2007-12-17 19:07:49 -0700 (Mon, 17 Dec 2007) | 2 lines Disable hiding roster when there are no message controls open ........ r9169 | nicfit | 2007-12-17 20:41:11 -0700 (Mon, 17 Dec 2007) | 2 lines Bunch of saved size bugs fixed ........
2007-12-19 00:42:22 +01:00
self.handlers = {}
self.type_id = type_id
self.parent_win = parent_win
self.widget_name = widget_name
self.contact = contact
self.account = account
self.hide_chat_buttons = False
2006-03-14 14:10:09 +01:00
self.resource = resource
2006-01-08 00:40:37 +01:00
self.session = None
gajim.last_message_time[self.account][self.get_full_jid()] = 0
self.xml = gtkgui_helpers.get_gtk_builder('%s.ui' % widget_name)
self.widget = self.xml.get_object('%s_vbox' % widget_name)
def get_full_jid(self):
fjid = self.contact.jid
if self.resource:
fjid += '/' + self.resource
2006-03-14 17:58:50 +01:00
return fjid
2006-01-02 10:04:30 +01:00
def set_control_active(self, state):
2009-11-25 21:59:43 +01:00
"""
Called when the control becomes active (state is True) or inactive (state
is False)
"""
2006-12-30 01:53:02 +01:00
pass # Derived classes MUST implement this method
2006-01-02 10:04:30 +01:00
def minimizable(self):
2009-11-25 21:59:43 +01:00
"""
Called to check if control can be minimized
Derived classes MAY implement this.
"""
return False
def safe_shutdown(self):
2009-11-25 21:59:43 +01:00
"""
Called to check if control can be closed without loosing data.
returns True if control can be closed safely else False
Derived classes MAY implement this.
"""
return True
def allow_shutdown(self, method, on_response_yes, on_response_no,
2009-11-25 21:59:43 +01:00
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
2009-11-25 21:59:43 +01:00
on_response_minimize
Derived classes MAY implement this.
"""
on_response_yes(self)
def shutdown(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes MUST implement this
"""
pass
def repaint_themed_widgets(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes SHOULD implement this
"""
pass
def update_ui(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes SHOULD implement this
"""
pass
def toggle_emoticons(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes MAY implement this
"""
pass
def update_font(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes SHOULD implement this
"""
pass
def update_tags(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes SHOULD implement this
"""
pass
2006-01-05 03:58:59 +01:00
def get_tab_label(self, chatstate):
2009-11-25 21:59:43 +01:00
"""
Return a suitable tab label string. Returns a tuple such as: (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
Derivded classes MUST implement this.
"""
# Return a markup'd label and optional gtk.Color in a tupple like:
2009-11-25 21:59:43 +01:00
# return (label_str, None)
pass
def get_tab_image(self, count_unread=True):
2008-05-19 20:48:53 +02:00
# Return a suitable tab image for display.
# None clears any current label.
2006-01-05 03:58:59 +01:00
return None
def prepare_context_menu(self):
2009-11-25 21:59:43 +01:00
"""
Derived classes SHOULD implement this
"""
return None
def chat_buttons_set_visible(self, state):
2009-11-25 21:59:43 +01:00
"""
Derived classes MAY implement this
"""
self.hide_chat_buttons = state
2006-02-04 03:52:36 +01:00
def got_connected(self):
pass
2006-02-04 03:52:36 +01:00
def got_disconnected(self):
pass
def get_specific_unread(self):
2008-05-19 20:48:53 +02:00
return len(gajim.events.get_events(self.account,
self.contact.jid))
def set_session(self, session):
2008-05-04 02:24:27 +02:00
oldsession = None
if hasattr(self, 'session'):
oldsession = self.session
2008-05-04 02:24:27 +02:00
if oldsession and session == oldsession:
return
self.session = session
if session:
session.control = self
if oldsession:
2008-06-10 04:58:04 +02:00
oldsession.control = None
jid = self.contact.jid
if self.resource:
jid += '/' + self.resource
2008-05-04 02:24:27 +02:00
2008-07-18 06:01:07 +02:00
crypto_changed = bool(session and session.enable_encryption) != \
bool(oldsession and oldsession.enable_encryption)
2008-07-18 06:01:07 +02:00
if crypto_changed:
self.print_esession_details()
def send_message(self, message, keyID='', type_='chat', chatstate=None,
2009-11-25 21:59:43 +01:00
msg_id=None, composing_xep=None, resource=None, user_nick=None,
xhtml=None, callback=None, callback_args=[]):
# Send the given message to the active tab.
# Doesn't return None if error
jid = self.contact.jid
message = helpers.remove_invalid_xml_chars(message)
original_message = message
conn = gajim.connections[self.account]
if not self.session:
if not resource:
if self.resource:
resource = self.resource
else:
resource = self.contact.resource
sess = conn.find_controlless_session(jid, resource=resource)
if self.resource:
jid += '/' + self.resource
if not sess:
if self.type_id == TYPE_PM:
sess = conn.make_new_session(jid, type_='pm')
else:
sess = conn.make_new_session(jid)
self.set_session(sess)
# Send and update history
conn.send_message(jid, message, keyID, type_=type_, chatstate=chatstate,
msg_id=msg_id, composing_xep=composing_xep, resource=self.resource,
user_nick=user_nick, session=self.session,
original_message=original_message, xhtml=xhtml, callback=callback,
callback_args=callback_args)
# vim: se ts=3: