new gtk-fortran binding

2011-04-19 Thread Vincent MAGNIN
Dear GTK+ developers, I would like to report a new GTK+ binding: gtk-fortran. I launched the project less than four months ago with Jerry DeLisle, one of the GNU gfortran developers. The home page is: https://github.com/jerryd/gtk-fortran/wiki We have a GTK+ 2.24.4 branch and a 3.0.8 branch.

Re: new gtk-fortran binding

2011-04-19 Thread Martyn Russell
On 18/04/11 16:06, Vincent MAGNIN wrote: Dear GTK+ developers, Hello Vincent, I would like to report a new GTK+ binding: gtk-fortran. I launched the project less than four months ago with Jerry DeLisle, one of the GNU gfortran developers. The home page is: https://github.com/jerryd/gtk-fortra

Re: new gtk-fortran binding

2011-04-19 Thread Nicolas Setton
> I also had to add the 2.24 and 3.x columns in there so I have continued the > previous status from all other bindings. > > If anyone out there sees their binding is out of date, please let me know and > I can update it accordingly: > > http://www.gtk.org/language-bindings.html the Ada row s

New GTK+ website design

2011-04-19 Thread Martyn Russell
Hi all, I've been meaning to send this for some time now. I managed to get some of the last things fixed up and the site hosted on my server for some testing. Thanks to Devin for all the hard work put in on this. The biggest change is that all the pages are written in PHP and the style is a

Re: New GTK+ website design (with link)

2011-04-19 Thread Martyn Russell
On 19/04/11 15:30, Martyn Russell wrote: Hi all, Of course, the link would help :) http://curlybeast.net:8080/ -- Regards, Martyn ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Re: new gtk-fortran binding

2011-04-19 Thread Martyn Russell
On 19/04/11 14:57, Nicolas Setton wrote: I also had to add the 2.24 and 3.x columns in there so I have continued the previous status from all other bindings. If anyone out there sees their binding is out of date, please let me know and I can update it accordingly: http://www.gtk.org/language-bi

Re: New GTK+ website design

2011-04-19 Thread Cosimo Cecchi
Hi Martyn, On Tue, 2011-04-19 at 15:30 +0100, Martyn Russell wrote: > There are a few things to decide on, so I will try to get some consensus > from you all before making the final decision on these points: > > 1. The titles are available in blue (default) or red. If you append > "?red"

Re[2]: gtk+3.0.9 compile error on Sparc Solaris10 by solstudio12.2

2011-04-19 Thread Mizuho Matsunaga
Hi Suxiang I resoved this error. These library and header files are exits. I think this error information is wrong. I check config.log. This hint is point of error X11 files. I found xineramaproto don't install. I try to install xineramaproto and build gtk. Next error ocured. demos/apple_red

Crashes with long words in strings passed to gtk_widget_set_tooltip_text()

2011-04-19 Thread Fabian Keil
The attached example program (by Colin Leroy) passes a string with a long "word" to gtk_widget_set_tooltip_text() which causes a crash when the tooltip is supposed to be shown. (gdb) r --sync Starting program: /home/fk/kram/tooltip-crashes/long_tooltip_crash --sync [New LWP 101212] [New Thread 805

Re[3]: gtk+3.0.9 compile error on Sparc Solaris10 by solstudio12.2

2011-04-19 Thread Mizuho Matsunaga
Hi all Next error occured! gmake[4]: Entering directory `/opt/src/gtk+-3.0.9/gtk' CC gtksearchenginesimple.lo "/usr/include/sys/feature_tests.h", line 332: #error: "Compiler or options invalid for pre-UNIX 03 X /Open applications and pre-2001 POSIX applications" cc: acomp failed for gtkse

Re: New GTK+ website design

2011-04-19 Thread Allin Cottrell
On Tue, 19 Apr 2011, Martyn Russell wrote: > Are there any other points or questions people have about the > content/design that we should address before moving over to this? In general this looks very good. One nit: I don't care for the faux-embossed text in the header ("The GTK+ Project"). The

Re: Crashes with long words in strings passed to gtk_widget_set_tooltip_text()

2011-04-19 Thread Emmanuel Thomas-Maurin
The text is too long. Rendering it creates a Gdk pixmap that is *too wide* (width > 64 k - 1, not supported.) AFAIY, X pixmaps can't be wider than 32 K - 1 but I may be wrong. This could relate to X, not GTK itself. On 04/19/2011 05:50 PM, Fabian Keil wrote: > The attached example program (by Co

Re: New GTK+ website design

2011-04-19 Thread Matthew Bucknall
On Tue, Apr 19, 2011 at 3:30 PM, Martyn Russell wrote: > Hi all, > > I've been meaning to send this for some time now. I managed to get some of > the last things fixed up and the site hosted on my server for some testing. > > Thanks to Devin for all the hard work put in on this. The biggest change

Re: Crashes with long words in strings passed to gtk_widget_set_tooltip_text()

2011-04-19 Thread Emmanuel Thomas-Maurin
It seems gdk pixmap width is stored as 16-bit unsigned int and x pixmap width as 16-bit signed int. Usually, tooltip texts are rather short and your app don't need to check anything. And I can't see why somebody would need a windows wider than 32 K, unless an unrealized one for some special purpose

Re: Crashes with long words in strings passed to gtk_widget_set_tooltip_text()

2011-04-19 Thread Morten Welinder
> If you really want to safely pass a very long text, > you will have to know the font (family and size) then check with stuff > like pango_layout_set_text() and pango_layout_get_pixel_size(). This happened in Gnumeric at some point too. Basically, every time user supplied string make it into too

Re: Crashes with long words in strings passed to gtk_widget_set_tooltip_text()

2011-04-19 Thread Emmanuel Thomas-Maurin
On 04/20/2011 02:34 AM, Morten Welinder wrote: >> If you really want to safely pass a very long text, >> you will have to know the font (family and size) then check with stuff >> like pango_layout_set_text() and pango_layout_get_pixel_size(). > > This happened in Gnumeric at some point too. Basic

Re: Re[3]: gtk+3.0.9 compile error on Sparc Solaris10 by solstudio12.2

2011-04-19 Thread Yasushi SHOJI
At Wed, 20 Apr 2011 01:05:12 +0900, Mizuho Matsunaga wrote: > > gmake[4]: Entering directory `/opt/src/gtk+-3.0.9/gtk' > CC gtksearchenginesimple.lo > "/usr/include/sys/feature_tests.h", line 332: #error: "Compiler or options > invalid for pre-UNIX 03 X > /Open applications and pre-2001 PO