From 4f3b8dc3e8f54ffd8b751ecff9ada895fad3cc94 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sun, 11 Dec 2005 10:31:42 +0000
Subject: [PATCH] move handle_event from systray.py to gajim.py

---
 src/gajim.py   | 35 +++++++++++++++++++++++++++++++++++
 src/systray.py | 38 +-------------------------------------
 2 files changed, 36 insertions(+), 37 deletions(-)

diff --git a/src/gajim.py b/src/gajim.py
index 5aceeed7f0..eba29fb78f 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -1253,6 +1253,41 @@ def save_config(self):
 				err_str).get_response()
 			sys.exit()
 
+	def handle_event(self, account, jid, typ):
+		wins = self.instances[account]
+		w = None
+		if typ == 'gc':
+			if wins['gc'].has_key(jid):
+				w = wins['gc'][jid]
+		elif typ == 'chat':
+			if wins['chats'].has_key(jid):
+				w = wins['chats'][jid]
+			else:
+				self.roster.new_chat(gajim.contacts[account][jid][0], account)
+				w = wins['chats'][jid]
+		elif typ == 'pm':
+			if wins['chats'].has_key(jid):
+				w = wins['chats'][jid]
+			else:
+				room_jid, nick = jid.split('/', 1)
+				show = gajim.gc_contacts[account][room_jid][nick].show
+				c = Contact(jid = jid, name = nick, groups = ['none'],
+					show = show, ask = 'none')
+				self.roster.new_chat(c, account)
+				w = wins['chats'][jid]
+		elif typ in ('normal', 'file-request', 'file-request-error',
+			'file-send-error', 'file-error', 'file-stopped', 'file-completed'):
+			# Get the first single message event
+			ev = gajim.get_first_event(account, jid, typ)
+			# Open the window
+			self.roster.open_event(account, jid, ev)
+		if w:
+			w.set_active_tab(jid)
+			w.window.present()
+			w.window.window.focus()
+			tv = w.conversation_textviews[jid]
+			tv.scroll_to_end()
+
 	def __init__(self):
 		gajim.interface = self
 		self.default_values = {
diff --git a/src/systray.py b/src/systray.py
index f3c8dbb7ae..dae4688329 100644
--- a/src/systray.py
+++ b/src/systray.py
@@ -293,43 +293,7 @@ def handle_first_event(self):
 		account = self.jids[0][0]
 		jid = self.jids[0][1]
 		typ = self.jids[0][2]
-		self.handle_event(account, jid, typ)
-
-	def handle_event(self, account, jid, typ):
-		wins = gajim.interface.instances[account]
-		w = None
-		if typ == 'gc':
-			if wins['gc'].has_key(jid):
-				w = wins['gc'][jid]
-		elif typ == 'chat':
-			if wins['chats'].has_key(jid):
-				w = wins['chats'][jid]
-			else:
-				gajim.interface.roster.new_chat(
-					gajim.contacts[account][jid][0], account)
-				w = wins['chats'][jid]
-		elif typ == 'pm':
-			if wins['chats'].has_key(jid):
-				w = wins['chats'][jid]
-			else:
-				room_jid, nick = jid.split('/', 1)
-				show = gajim.gc_contacts[account][room_jid][nick].show
-				c = Contact(jid = jid, name = nick, groups = ['none'],
-					show = show, ask = 'none')
-				gajim.interface.roster.new_chat(c, account)
-				w = wins['chats'][jid]
-		elif typ in ('normal', 'file-request', 'file-request-error',
-			'file-send-error', 'file-error', 'file-stopped', 'file-completed'):
-			# Get the first single message event
-			ev = gajim.get_first_event(account, jid, typ)
-			# Open the window
-			gajim.interface.roster.open_event(account, jid, ev)
-		if w:
-			w.set_active_tab(jid)
-			w.window.present()
-			w.window.window.focus()
-			tv = w.conversation_textviews[jid]
-			tv.scroll_to_end()
+		gajim.interface.handle_event(account, jid, typ)
 
 	def on_middle_click(self):
 		'''middle click raises window to have complete focus (fe. get kbd events)
-- 
GitLab