gtkmm-2.99.8 recipe for target 'event.lo' failed

2015-04-29 Thread Mihamina Rakotomandimby
Hi all, Compiling 2.99.8 on my box I get this error: Makefile:443: recipe for target 'event.lo' failed make[2]: *** [event.lo] Error 1 make[2]: Leaving directory '/home/mrakotomandimby/gtkmm-2.99.8/gdk/gdkmm' Makefile:586: recipe for target 'all-recursive' failed make[1]: *** [all-recursive]

Re: GDK_KP_Decimal (on Windows)

2015-04-29 Thread Jasper St. Pierre
It was likely left out by accident, and nobody so far hit this code path yet. Thanks for finding it! It looks super easy to fix. On Wed, Apr 29, 2015 at 8:01 AM, John Emmas john...@tiscali.co.uk wrote: On 29/04/2015 08:54, John Emmas wrote: The Windows version looks slightly different:-

Re: GDK_KP_Decimal (on Windows)

2015-04-29 Thread John Emmas
On 29/04/2015 16:25, Ignacio Casal Quinteiro wrote: Hi John, out of curiosity can you check if this is true for gtk3? Hi Ignacio. I don't actually build Gtk+3 but it looks like GDK_KP_Decimal is still missing. Strangely, it's also missing from 'gdkkeys-x11.c' - and yet I got told that

GDK_KP_Decimal (on Windows)

2015-04-29 Thread John Emmas
I'm working on an app (Gtk+2) which uses the numeric keypad as 'hotkeys'. So if a user presses say, 5, on his numeric keypad, it'll get interpreted as an accelerator key and will perform some action. The same is true for the other numbers. The same should be true for the decimal point key -

[gtk-osx-devel] [PATCH 1/3] Moduleset: fixing the repository link of cups module

2015-04-29 Thread Kirill Moizik
The link in outdated. Updating to new link Signed-off-by: Kirill Moizik kir...@daynix.com --- modulesets/gtk-osx-bootstrap.modules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modulesets/gtk-osx-bootstrap.modules b/modulesets/gtk-osx-bootstrap.modules index

Re: GDK_KP_Decimal (on Windows)

2015-04-29 Thread Ignacio Casal Quinteiro
Hi John, out of curiosity can you check if this is true for gtk3? Cheers. On Wed, Apr 29, 2015 at 5:01 PM, John Emmas john...@tiscali.co.uk wrote: On 29/04/2015 08:54, John Emmas wrote: The Windows version looks slightly different:- case VK_ADD: *ksymp = GDK_KP_Add; break;

TreeView, row will be displayed

2015-04-29 Thread prizrak
Hi guys. Does exist way (like signal) to detect moment when cell will be displayed in TreeView? For example I have long structure which greater than available rect in UI (will be scrolled) and I want load some additional data for rows only when they will be real displayed. Thanks.

Re: GDK_KP_Decimal (on Windows)

2015-04-29 Thread John Emmas
On 29/04/2015 08:54, John Emmas wrote: The Windows version looks slightly different:- case VK_ADD: *ksymp = GDK_KP_Add; break; case VK_SEPARATOR: *ksymp = GDK_KP_Separator; break; case VK_SUBTRACT: *ksymp = GDK_KP_Subtract; break; // some others However, the