Re: deprecating some unused parts of glib

2010-06-22 Thread Andrew W. Nosenko
On Mon, Jun 21, 2010 at 21:58, Matthias Clasen matthias.cla...@gmail.com wrote: Just a quick note: I am planning to act on https://bugzilla.gnome.org/show_bug.cgi?id=551271 soon, and deprecate GRelation and GCompletion, plus possible the GHook stuff. Could you point me to the modern

Re: deprecating some unused parts of glib

2010-06-22 Thread Holger Berndt
On Mo, 21.06.2010 14:58, Matthias Clasen wrote: I am planning to act on https://bugzilla.gnome.org/show_bug.cgi?id=551271 soon, and deprecate GRelation and GCompletion, plus possible the GHook stuff. If you're interested in usage examples of these classes: All three are used in Claws Mail.

[PATCH] gdk/gdkpixmap.[ch]: state constness of `data` in create pixmap routines

2010-06-22 Thread Ben Stewart
Hi all, The attached patch file resolves an issue where const char * data cannot be passed to the GDK create pixmap from XPM routines. Apologies in advance if this is not the correct venue to submit a patch - this is the first one I have submitted to the GTK+ project. Cheers, Ben

Re: [PATCH] gdk/gdkpixmap.[ch]: state constness of `data` in create pixmap routines

2010-06-22 Thread Javier Jardón
2010/6/22 Ben Stewart ben.stewart+gtk...@tucuxi.org: Hi all, The attached patch file resolves an issue where const char * data cannot be passed to the GDK create pixmap from XPM routines. Apologies in advance if this is not the correct venue to submit a patch - this is the first one I have

Re: [REMINDER] gtk team IRC meeting - 2010-06-22

2010-06-22 Thread Nicolas Dufresne
Le mardi 22 juin 2010 à 15:24 +0100, Emmanuele Bassi a écrit : this is a reminder for the GTK+ team IRC meeting, * date: 2010-06-22 * time: 20:00 UTC [0] * channel: #gtk-devel on irc.gnome.org * agenda: - Decisions about the latest missing accessor functions. - Potential API changes

Re: [PATCH] gdk/gdkpixmap.[ch]: state constness of `data` in create pixmap routines

2010-06-22 Thread Morten Welinder
The public interface for the following routines are affected by the patch, however this should not affect any software calling into the GDK library. What do you build that assertion on? Have a look at the program below. With const, the second foo call causes gcc to complain over types.

Pop-up menus and XGrabKeyboard/XGrabPointer

2010-06-22 Thread Anders Kaseorg
Currently when GTK+ creates a pop-up menu, it uses XGrabKeyboard and XGrabPointer to grab the keyboard and mouse. This has at least three unfortunate side effects. 1. Global shortcut keys such as PrtSc and volume keys don’t work while a menu is open. This has led to a flurry of bug reports