Glib assertion failed messages

2007-06-05 Thread Joao Moreira
Hi, I have a very simple program that uses glib (indirectly). Actually I only define a GError variable. I'm getting the following messages when I run it : (process:3085): GLib-GObject-CRITICAL **: gtype.c:2240: initialization assertion failed, use IA__g_type_init() prior to this function

RE: Glib assertion failed messages

2007-06-05 Thread Kumar Siddharth
sometimes it is related to the value of PKG_CONFIG_PATH and LD_LIBRARY_PATH, depending upon the libraries against which you have compiled and linked. Regards, Siddharth TATA Elxsi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Joao Moreira Sent: Tuesday,

RE: Glib assertion failed messages

2007-06-05 Thread Kumar Siddharth
Sorry, i missed the assertion message. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kumar Siddharth Sent: Tuesday, June 05, 2007 8:13 PM To: Joao Moreira; gtk-app-devel-list@gnome.org Subject: RE: Glib assertion failed messages sometimes it is related

Win32 custom (pixbuf) cursors reverting to standard pointer on left/right click

2007-06-05 Thread Jason Compton
We have an application using GTK (2.10.12 DLLs) and have encountered a problem with custom cursors. On the Linux and OSX/X11.app builds of the game, the pixbuf cursors correctly remain on the screen when the mouse is right or left-clicked. On Win32, the pixbufs revert to the standard Windows

Re: Using Pango or Cairo with GTK on DirectFB

2007-06-05 Thread Attilio Fiandrotti
Hi could you please provide a working version of this application? many thanks Attilio Dennis Hall ha scritto: I'm having trouble with refresh when I used either Pango or Cairo calls with GTK over Direct FB. I've modified the scribble.c sample so that some test text is drawn using pango

GLib 2.13.4 released

2007-06-05 Thread Matthias Clasen
GLib 2.13.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.13/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.13/ glib-2.13.4.tar.bz2 md5sum: 47477a53d6ad4c7a690a8f75c284e1b7 glib-2.13.4.tar.gz md5sum: c6f5ba5dfd84329a5c974085321fdd57 This is a quick followup release to

Re: GtkBuildable type resolver

2007-06-05 Thread Andy Wingo
Hi Tristan, On Mon, 2007-06-04 at 15:32 -0400, Tristan Van Berkom wrote: One thing that might or might not be a can of worms is language bindings. I wonder if someone more experienced than myself in this realm could point out how we plan to load widgets written in other languages from the

[REMINDER] GTK+ developers Team meeting tonight

2007-06-05 Thread Emmanuele Bassi
hi everyone; tonight there will be a gtk+ team IRC meeting: #gtk-devel on irc.gimp.org, at 20:00 UTC[1] the discussion points for the meeting are: * discussion on previous meeting's action items[2]; * gtk+ 2.12 schedule updates; as usual, everyone can attend. ciao, Emmanuele. +++ [1]

Re: GtkBuildable type resolver

2007-06-05 Thread Owen Taylor
On Mon, 2007-06-04 at 23:00 +0300, Markku Vire wrote: Hi, I faced similar scenario while writing a tiny gobject code generator. I ended up to use similar techinique than your second alternative. It works nicely in 99% of the cases, but cannot handle cases like: GtkIMContext =

Re: GtkBuildable type resolver

2007-06-05 Thread Brian J. Tarricone
On Tue, 05 Jun 2007 11:23:36 -0400 Owen Taylor wrote: Actually, GtkIMContext fits the standard naming rules we have for mixed-case names: They are something like: NAME := INITIAL_WORD WORD+ INITIAL_WORD := [A-Z][a-z0-9]* WORD := [A_Z]{2,} | [A-Z][a-z0-9]+ So: GString = g_string GtkCTree

Re: GtkBuildable type resolver

2007-06-05 Thread Owen Taylor
On Tue, 2007-06-05 at 09:18 -0700, Brian J. Tarricone wrote: On Tue, 05 Jun 2007 11:23:36 -0400 Owen Taylor wrote: Actually, GtkIMContext fits the standard naming rules we have for mixed-case names: They are something like: NAME := INITIAL_WORD WORD+ INITIAL_WORD := [A-Z][a-z0-9]*

Re: GtkBuildable type resolver

2007-06-05 Thread Owen Taylor
On Tue, 2007-06-05 at 11:23 -0400, Owen Taylor wrote: On Mon, 2007-06-04 at 23:00 +0300, Markku Vire wrote: Hi, I faced similar scenario while writing a tiny gobject code generator. I ended up to use similar techinique than your second alternative. It works nicely in 99% of the cases,

RE: non-blocking read of stdin on windows

2007-06-05 Thread David Byron
On Wednesday, May 30, 2007 @ 11:44p, Tor Lillqvist wrote: What is stdin connected to in your case? Do you always mean the console window a console executable is attached to? Or do you want this to work in general, even if stdin has bee connected to whatever file or device, either through

Re: GtkBuildable type resolver

2007-06-05 Thread Johan Dahlin
Owen Taylor wrote: On Tue, 2007-06-05 at 11:23 -0400, Owen Taylor wrote: On Mon, 2007-06-04 at 23:00 +0300, Markku Vire wrote: Hi, I faced similar scenario while writing a tiny gobject code generator. I ended up to use similar techinique than your second alternative. It works nicely in 99%

Re: GtkBuildable type resolver

2007-06-05 Thread Johan Dahlin
Tristan Van Berkom wrote: On Mon, 2007-06-04 at 16:04 -0300, Johan Dahlin wrote: [..] One thing that might or might not be a can of worms is language bindings. I wonder if someone more experienced than myself in this realm could point out how we plan to load widgets written in other languages

Re: GtkBuildable type resolver

2007-06-05 Thread Tristan Van Berkom
On Tue, 2007-06-05 at 14:38 -0300, Johan Dahlin wrote: Tristan Van Berkom wrote: On Mon, 2007-06-04 at 16:04 -0300, Johan Dahlin wrote: [..] One thing that might or might not be a can of worms is language bindings. I wonder if someone more experienced than myself in this realm could

Re: GtkBuildable type resolver

2007-06-05 Thread Brian J. Tarricone
On Tue, 05 Jun 2007 12:44:55 -0400 Owen Taylor wrote: On Tue, 2007-06-05 at 11:23 -0400, Owen Taylor wrote: NAME := INITIAL_WORD WORD+ INITIAL_WORD := [A-Z][a-z0-9]* WORD := [A_Z]{2,} | [A-Z][a-z0-9]+ As I said, something like ... to correct myself: WORD :=

Re: Weekly Bug Report 04/06/2007

2007-06-05 Thread Vincent Untz
Hi Xan, Le lundi 04 juin 2007, à 23:24 +0300, Xan Lopez a écrit : Where applicable, I've put in brackets the last maintainer(s) to touch the bug report, but anyone is welcome to give his input. Comments or ideas on how to improve the reports would be greatly appreciated. I think in the

Re: gtk+/glib versions for GNOME 2.20

2007-06-05 Thread Vincent Untz
Le lundi 28 mai 2007, à 16:12 +0200, Vincent Untz a écrit : Le mardi 15 mai 2007, à 15:05 +0200, Vincent Untz a écrit : Hi, In [1], Tim mentioned that the current plan was to release GTK+ 2.12 mid-June. Is this still the case or do you expect a delay? This would be useful to know, so

Re: gtk+/glib versions for GNOME 2.20

2007-06-05 Thread Bastien Nocera
On Tue, 2007-06-05 at 23:21 +0200, Vincent Untz wrote: After today's GTK+ meeting, it seems the GTK+ developers are really committed to the GUADEC release date for GTK+ 2.12. This sounds good from the GNOME point of view. What do other people in the release team think? Means I can start

GTK+ Team Meeting Minutes - June 5th

2007-06-05 Thread Emmanuele Bassi
hey everyone; new minutes for the meeting held on june, 5th 2007. the (slightly) edited log will appear, as usual, on the we site: http://www.gtk.org/plan/meetings/ ciao, Emmanuele. +++ 1) gtk+ meeting at GUADEC Behdad asked for the day and time when the usual GTK+ team meeting at

Re: gtk+/glib versions for GNOME 2.20

2007-06-05 Thread Elijah Newren
On 6/5/07, Vincent Untz [EMAIL PROTECTED] wrote: Le lundi 28 mai 2007, à 16:12 +0200, Vincent Untz a écrit : Le mardi 15 mai 2007, à 15:05 +0200, Vincent Untz a écrit : Hi, In [1], Tim mentioned that the current plan was to release GTK+ 2.12 mid-June. Is this still the case or do

Re: GtkBuildable type resolver

2007-06-05 Thread muppet
On Jun 5, 2007, at 1:38 PM, Johan Dahlin wrote: Tristan Van Berkom wrote: On Mon, 2007-06-04 at 16:04 -0300, Johan Dahlin wrote: [..] One thing that might or might not be a can of worms is language bindings. I wonder if someone more experienced than myself in this realm could point out how

GLib 2.13.4 released

2007-06-05 Thread Matthias Clasen
GLib 2.13.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.13/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.13/ glib-2.13.4.tar.bz2 md5sum: 47477a53d6ad4c7a690a8f75c284e1b7 glib-2.13.4.tar.gz md5sum: c6f5ba5dfd84329a5c974085321fdd57 This is a quick followup release to

how to use GtkCellRendererToggle in GtkTreeView???

2007-06-05 Thread Zhibin.Guan
I want to design a GtkTreeView, includes a GtkCellRendererToggle in column. but asks that this GtkCellRendererToggle is a RadioToggle. so there are serverl lines in this GtkTreeView, but all GtkCellRendererToggle in these lines combines a Radio Group. every time, there is a actived

Re: GtkEntry update problems. Or: How do I force a widget to loose focus?

2007-06-05 Thread Toralf Lund
[ ... ] And I don't see the GtkEntry in question from inside signal handers for buttons, menu items etc, of course... You do. When the action that requires to commit the update first occurs, use gtk_window_set_focus() (you should be able to see the window) to get the focused

GLib 2.13.4 released

2007-06-05 Thread Matthias Clasen
GLib 2.13.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.13/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.13/ glib-2.13.4.tar.bz2 md5sum: 47477a53d6ad4c7a690a8f75c284e1b7 glib-2.13.4.tar.gz md5sum: c6f5ba5dfd84329a5c974085321fdd57 This is a quick followup release to