Calling idle callbacks without handling events

2012-02-04 Thread Noam Yorav-Raphael
Hello, I'm the creator of a program called DreamPie, and there's one GTK bug that causes it to crash ( https://bugzilla.gnome.org/show_bug.cgi?id=611069 ). I now found the cause of the bug and filed a patch, and I wonder if a workaround is possible, for users of current and old GTK versions.

I want to fix a bug in GTK and need some guidance

2012-01-24 Thread Noam Yorav-Raphael
Hello, My name is Noam Yorav-Raphael. I wrote the DreamPie Python shell, and a bug in GTK ( https://bugzilla.gnome.org/show_bug.cgi?id=611069 ) causes it to crash in some situations. I'd like to fix that bug. I have some experience in writing in C and using gdb, and I'm using Ubuntu 11.10

Re: I want to fix a bug in GTK and need some guidance

2012-01-24 Thread Noam Yorav-Raphael
10:12, Noam Yorav-Raphael noamr...@gmail.com wrote: Can someone guide me on how to compile GTK with debugging enabled, and how to compile a C program that would use the GTK I compiled, so I can run it under gdb and try to fix the bug? It's pretty easy. Download the gtk sources, untar

Making an element look like a resize grip

2010-07-11 Thread Noam Yorav-Raphael
Hello, I have made a widget that acts as a resize grip (I had to write one by myself because the resize grip of the statusbar doesn't work on popup windows for some reason). I used an EventBox for that, and manually handled button down, up, motion events. My question is: can I make it look like

Implementing my own ScrolledWindow

2010-07-05 Thread Noam Yorav-Raphael
Hello, I sent this to the pygtk mailing list, but didn't get an answer. I thought that since the question equally applies to using GTK+ from C, I could post it here. I would like to implement my own ScrolledWindow that will hold a TextView. The reason is that I would like to use the small square

Re: Implementing my own ScrolledWindow

2010-07-05 Thread Noam Yorav-Raphael
Thanks a lot! You helped me find the answer: I had to call textview.set_size_request(0, 0), so now the textview doesn't request space for all its contents. Thanks again, Noam On Mon, Jul 5, 2010 at 9:54 AM, Tadej Borovšak tadeb...@gmail.com wrote: Hello. How can I make it not expand? You