A Gtk2 Chat Client

2008-01-04 Thread Jamie Lahowetz
I would like to create a Gtk2 based Chat client that can be used with the chat server on the POE cookbook. To do this I have to sort of reteach myself on using Gtk2 in the POE loop. Currently I am trying to get the program to create a simple window. I'm having trouble with this, the window seems

Re: A Gtk2 Chat Client

2008-01-04 Thread Mike Schroeder
Is the window disappearing or is the script exiting? I know with POE::Loop::Wx you sometimes need to add a keep alive loop in POE... On 03/01/08 06:04 PM, Jamie Lahowetz wrote: I would like to create a Gtk2 based Chat client that can be used with the chat server on the POE cookbook. To do

Re: A Gtk2 Chat Client

2008-01-04 Thread Martijn van Beers
On Thu, 2008-01-03 at 19:04 -0600, Jamie Lahowetz wrote: I would like to create a Gtk2 based Chat client that can be used with the chat server on the POE cookbook. To do this I have to sort of reteach myself on using Gtk2 in the POE loop. Currently I am trying to get the program to create a

Re: A Gtk2 Chat Client

2008-01-04 Thread Jamie Lahowetz
Yah that was the problem, there was no loop and therefore the app ended. I got it working by creating the main Gtk2 loop. I have ran into another problem. I am trying to add the client session to the app and have been getting errors on it. I think these errors have to do with my lack of knowledge