Re: Unable to get Python/Gtk code to work...

2009-10-13 Thread Mike Massonnet
Hi, From a quick view there is no Gtk.init at the beginning (I don't know python/gtk very well, but from a search it doesn't seem to be needed there), and at the end it doesn't enter the main loop with gtk.main(). 2009/10/12 Daniel B. Thurman d...@cdkkt.com: I am a first timer here and I am

Re: catching esc pressed in a dialog with entry and treeview

2009-10-13 Thread Mike Massonnet
Hi, Right thing to do should be to connect the dialog to the signal GtkWidget:key-press-event, possibly filter on GDK_Escape, and return true (see the api for more info on the return value, true will block any further calls). 2009/10/12 Manu TM manutm...@gmail.com: Hi I'm having a problem

Re: Coding a console program frontend

2009-10-13 Thread Ardhan Madras
Hi, However the child proccess (the GUI) when tries to read data from the pipe it hangs. If you run this program you can see that the printf( BEFORE READ LINE\n ) is printed but the printf( AFTER READ LINE\n ) is not.. What I'm doing wrong? What do you means with *hang*? or it's being

Is there a code example to match file-types with icon themes automatically?

2009-10-13 Thread Daniel B. Thurman
Are there any code examples available that can automatically match the file-type with the gtk.icon_theme_get_default() method? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Bugzilla bug 562498: (u)int16 fundamental types

2009-10-13 Thread Michael B. Trausch
I originally sent this message in July, but it never received any replies. This is still an issue, and so I'm hoping that maybe sending it again would prompt someone to look at the bug. The bug still exists, though some of its manifestations have been worked around; it is blocking at least one

Re: Creating Buttons from PNG Images. (GTK+C)

2009-10-13 Thread Vivien Malerba
2009/10/12 K.B. balarkalp...@yahoo.com: Hello every one, Sorry if i am posting this question in wrong place. I am new to GTK just doing some examples manually and by using Glade... I just want to create Buttons like shown in below Image. Image:

GTK+ on windows

2009-10-13 Thread Ted Bullock
In the background of writing some software on top of GTK+ I have started working on making my application build on windows rather than just my opensuse-factory desktop. Looking at the the information on gtk.org I thought to myself, maybe I can just create a visual studio project file for the

Re: GTK+ on windows

2009-10-13 Thread Vivien Malerba
2009/10/13 Dov Grobgeld dov.grobg...@gmail.com: I have created several cross-platform gtk programs, and while it took a while to get right the first time, my development is now so trustworthy that I can do all my development under Linux and then once it works, just generate a windows installer

Re: GTK+ on windows

2009-10-13 Thread David Nečas
On Tue, Oct 13, 2009 at 03:49:16PM +0200, Dov Grobgeld wrote: One more thing. More or less agreeing with the previous points, except the main one: After a long time of DLL-hell it has been settled that each application provides an entire copy of all the gtk runtime environment. But why on

Re: GTK+ on windows

2009-10-13 Thread jcupitt
2009/10/13 Dov Grobgeld dov.grobg...@gmail.com: I have created several cross-platform gtk programs, and while it took a while to get right the first time, my development is now so trustworthy that I can do all my development under Linux and then once it works, just generate a windows installer

Re: GTK+ on windows

2009-10-13 Thread Ted Bullock
A couple points Dov: A lot of what you are talking about relates to distribution rather than build. Applications can distribute gtk however they want, I am talking about how one goes about building their application. The problem with the build system is that it is really hard to use it from