Re: Fulscreen mode

2013-06-15 Thread Dov Grobgeld
You just need to use gtk_widget_hide() on the widget and it and its child widgets will not be shown. On Sun, Jun 16, 2013 at 4:28 AM, John Coppens wrote: > Hi... > > I created a program with three elements in an HBox (gtk2): two > treeviews and a GtkGlExt drawing area. I'd like to toggle the dr

Fulscreen mode

2013-06-15 Thread John Coppens
Hi... I created a program with three elements in an HBox (gtk2): two treeviews and a GtkGlExt drawing area. I'd like to toggle the drawing area fullscreen/normal. Ie., not show the treeviews (or any other element - such as menus) while in fullscreen mode. Is that possible somehow? Thanks for any

Re: GUI freeze and long blocking operation

2013-06-15 Thread Kip Warner
On Sat, 2013-06-15 at 09:54 +0100, jcup...@gmail.com wrote: > I never found the Python debuggers very useful. Event-driven programs > are not a great fit with traditional debuggers, in my opinion, because > execution is so non-linear. You are running tiny scraps of code all > over the place in an o

Re: GTK free function doesn't appear to have any affect.

2013-06-15 Thread Allin Cottrell
On Sat, 15 Jun 2013, dE wrote: On 06/15/13 14:24, dE wrote: On 06/15/13 03:35, Chris Vine wrote: On Fri, 14 Jun 2013 23:03:55 +0530 dE wrote: On 06/14/13 22:09, Chris Vine wrote: On Fri, 14 Jun 2013 21:41:05 +0530 dE wrote: On 06/14/13 17:02, Matthias Clasen wrote: On Fri, Jun 14, 2013 a

Re: GTK free function doesn't appear to have any affect.

2013-06-15 Thread dE
On 06/15/13 14:24, dE wrote: On 06/15/13 03:35, Chris Vine wrote: On Fri, 14 Jun 2013 23:03:55 +0530 dE wrote: On 06/14/13 22:09, Chris Vine wrote: On Fri, 14 Jun 2013 21:41:05 +0530 dE wrote: On 06/14/13 17:02, Matthias Clasen wrote: On Fri, Jun 14, 2013 at 3:27 AM, dE wrote: I was moni

Gio FTP transfers stops after 25 seconds

2013-06-15 Thread Mathieu Comandon
Hi, On my project, I've been wanting to reproduce the behavior of Gio.File.copy_async in a Python program (since this method isn't available in the bindings). I managed to have something working quite well and it handles correctly local files, HTTP, Samba but not FTP. The download starts normally

Re: GTK free function doesn't appear to have any affect.

2013-06-15 Thread dE
On 06/15/13 03:35, Chris Vine wrote: On Fri, 14 Jun 2013 23:03:55 +0530 dE wrote: On 06/14/13 22:09, Chris Vine wrote: On Fri, 14 Jun 2013 21:41:05 +0530 dE wrote: On 06/14/13 17:02, Matthias Clasen wrote: On Fri, Jun 14, 2013 at 3:27 AM, dE wrote: I was monitoring the memory usage before

Re: GUI freeze and long blocking operation

2013-06-15 Thread jcupitt
On 15 June 2013 01:33, Kip Warner wrote: > as a last resort. Maybe you have some debugging tips? I'm finding it > hard to debug in Python compared to all the many frontends to GDB for > native code. I never found the Python debuggers very useful. Event-driven programs are not a great fit with tra