Widget overlapping Notebook

2007-03-09 Thread Hylke Donker
Hello, I'm having some problems with an EventBox widget. In my application, I have a Notebook widget, that contains a VBox for each tab. After I have added an EventBox widget to my application, one of the widgets(from a specific VBox, that is attached to the Notebook widget) is overlapping the

Expose event crashes app with segv

2007-03-09 Thread Hui Wang
Hi all, I am developing a application, which is able to play back several jpeg/mpeg files simultaneously in a single window(like NxN cell table), I mainly use gdk_draw_rgb_image to render decoded frame. It works quite well for a while but fails to stand for more then 2 week. It will crash with

Re: Multimedia widgets in GTK+?

2007-03-09 Thread Stefan Kost
Hi Bastien, I found the BaconVolume quite useful So +1 from myself too. Other things that I miss: * a volume-meter I use GtkVUMeter right now, I would like to see a input/output vu-meters in the mixer. this is a good indicator for people to trac down why the don't hear their music. is the

g_slist and const

2007-03-09 Thread Asbjørn
I'm tightning my code and i wonder why some of the g_slist functions don't use const. gint g_slist_position (GSList *list, GSList *llink); gint g_slist_index (GSList *list, gconstpointer data); guintg_slist_length(GSList *list);

Re: g_slist and const

2007-03-09 Thread Havoc Pennington
Hi, Asbjørn wrote: I'm tightning my code and i wonder why some of the g_slist functions don't use const. Here is an old mail on the topic: http://mail.gnome.org/archives/gtk-devel-list/2001-May/msg00485.html Havoc ___ gtk-devel-list mailing list

Re: g_slist and const

2007-03-09 Thread Asbjørn
On Friday 09 March 2007 20:39, Havoc Pennington wrote: Hi, Asbjørn wrote: I'm tightning my code and i wonder why some of the g_slist functions don't use const. Here is an old mail on the topic: http://mail.gnome.org/archives/gtk-devel-list/2001-May/msg00485.html Havoc Ok, i see the

Re: g_slist and const

2007-03-09 Thread Hubert Figuiere
Asbjørn wrote: I use C++/glib and i get this strange looking function: guint my_class::length (const GSList *list) /* const to protect my list */ { /* cast it to a non const pointer! */ return (g_slist_length ((GSList *) list)); } So i want glib C to be more C++ friendly