diff frontends/src/primitivus/chat.py @ 1786:104874018ab0

quick_frontend, primitivus (chat): move notification command to quick_frontend
author souliane <souliane@mailoo.org>
date Tue, 12 Jan 2016 17:52:17 +0100
parents d17772b0fe22
children 526e4145253c
line wrap: on
line diff
--- a/frontends/src/primitivus/chat.py	Fri Jan 08 18:54:23 2016 +0100
+++ b/frontends/src/primitivus/chat.py	Tue Jan 12 17:52:17 2016 +0100
@@ -303,13 +303,9 @@
         @param message (unicode): message content
         @param extra (dict): extra data
         """
+        QuickChat.printMessage(self, nick, my_message, message, timestamp, extra, profile)
         new_text = ChatText(self, timestamp, nick, my_message, message)
         self.content.append(new_text)
-        if not timestamp:
-            # XXX: do not send notifications for each line of the history being displayed
-            # FIXME: this must be changed in the future if the timestamp is passed with
-            # all messages and not only with the messages coming from the history.
-            self._notify(nick, message)
 
     def printInfo(self, msg, type_='normal', extra=None):
         """Print general info
@@ -319,6 +315,7 @@
             me: "/me" information like "/me clenches his fist" ==> "toto clenches his fist"
         @param timestamp (float): number of seconds since epoch
         """
+        QuickChat.printInfo(self, msg, type_, extra)
         if extra is None:
             extra = {}
         try:
@@ -327,9 +324,8 @@
             timestamp = None
         _widget = ChatText(self, timestamp, None, False, msg, is_info=True)
         self.content.append(_widget)
-        self._notify(msg=msg)
 
-    def _notify(self, contact="somebody", msg=""):
+    def notify(self, contact="somebody", msg=""):
         """Notify the user of a new message if primitivus doesn't have the focus.
 
         @param contact (unicode): contact who wrote to the users