Re: A Gtk2 Chat Client

2008-01-07 Thread Jamie Lahowetz
I just corrected a few things on the program and have received a new error when the server was running and the program connects to the server: !!! Leaked fileno: 1680 (total refcnt=) !!! Read: !!! refcnt = !!! ev cnt = !!! Write: !!! refcnt = !!!

Re: A Gtk2 Chat Client

2008-01-05 Thread Martijn van Beers
On Fri, 2008-01-04 at 10:58 -0600, Jamie Lahowetz wrote: Yah that was the problem, there was no loop and therefore the app ended. I got it working by creating the main Gtk2 loop. No, there was a loop, but it didn't have anything to do, so it ended itself. You need to give it something to do

Re: A Gtk2 Chat Client

2008-01-05 Thread Jamie Lahowetz
I am encountering a few problems with my program. the first problem is that the program does not close completely when the GUI is closed. It seems as though the POE::Client component is still running. How can I assure that the program is destroyed completely? Another problem I am having is that

Re: A Gtk2 Chat Client

2008-01-05 Thread Whitney Jackson
I am encountering a few problems with my program. the first problem is that the program does not close completely when the GUI is closed. It seems as though the POE::Client component is still running. How can I assure that the program is destroyed completely? I don't think you want this

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