Added tool to kill GGS subsystems, added ggs_coordinator:get_all_players

This commit is contained in:
Jonatan Pålsson 2011-02-25 20:46:45 +01:00
parent bf972de0b5
commit a20f9351d4
5 changed files with 191 additions and 6 deletions

View file

@ -25,11 +25,11 @@ class GGSChat:
thread.start_new_thread(self.listenChat, ())
thread.start_new_thread(self.luserCheck, ())
#Create our dictionay and connect it
dic = {"on_window1_destroy_event" : gtk.main_quit
, "on_sendButton_clicked" : lambda x: self.chat()
, "on_entry_activate" : lambda x : self.chat()
, "on_nickBox_activate" : lambda x : self.changeNick()
, "on_chatBox_focus" : lambda x, y: self.wTree.get_widget("entry").grab_focus()
dic = {"on_window1_destroy_event" : gtk.main_quit
, "on_sendButton_clicked" : lambda x: self.chat()
, "on_entry_activate" : lambda x : self.chat()
, "on_nickBox_activate" : lambda x : self.changeNick()
, "on_chatBox_focus" : lambda x, y: self.wTree.get_widget("entry").grab_focus()
}
self.wTree.signal_autoconnect(dic)