Re: gtk+ 2.24 installation problems

2012-03-02 Thread Allin Cottrell
On Fri, 2 Mar 2012, Roger Davis wrote: I am trying to install the latest version of GTK+ v2 on my CentOS 6.2 system. The CentOS 6.2 install gave me v2.18, but I need some features that the GTK+ 2 reference manual says are available only in 2.20 or later. I downloaded the v2.24 source tarball fr

Re: gtk+ 2.24 installation problems

2012-03-02 Thread Roger Davis
Hello all, I've figured out a bit more with my installation issues but am still stuck. There are actually a number of pkgconfig directories on my CentOS 6.2 system. There's a whole scad of .pc files in /usr/lib64/pkgconfig, including glib-2.0.pc, so that would seem to be where CentOS originally p

gtk+ 2.24 installation problems

2012-03-02 Thread Roger Davis
Hello all, I am trying to install the latest version of GTK+ v2 on my CentOS 6.2 system. The CentOS 6.2 install gave me v2.18, but I need some features that the GTK+ 2 reference manual says are available only in 2.20 or later. I downloaded the v2.24 source tarball from gtk.org, but when I did a

Arrow speed (tic rate) of scrollbar widgets

2012-03-02 Thread Stefan Salewski
Is there a way to set the speed (tic rate, repetition frequency) for scrollbar widgets when LMB is pressed over the arrow keys? I have used this C example for testing: http://developer.gnome.org/gtk-tutorial/stable/x743.html When pressing the left mouse button on the arrow keys of the scrollbar

new Gtk3-openGl-binding

2012-03-02 Thread fwork
Since gtk-2.20 a OpenGL-redraw sometimes clears all parent-widgets; with gtkglarea and with gtkglext and also direct into a gtk_drawing_area_new, on Linux and Windows. See Bugzilla-bugs 626751 and 645208. This problem also exists with gtk3. So we have tried to make a new opengl-binding, with a o

Re: memory leak on windows

2012-03-02 Thread Allin Cottrell
On Fri, 2 Mar 2012, Gaetano Guerriero wrote: this code leaks memory on Windows XP until the program crashes after some minutes [...] Well, using GTK 2.24.9 on Linux the program runs cleanly (no leaks) as verified by valgrind, after a minor modification to make it close down properly when the

memory leak on windows

2012-03-02 Thread Gaetano Guerriero
Greetings, this code leaks memory on Windows XP until the program crashes after some minutes: === #include "gtk/gtk.h" static gboolean progressbar_pulse(gpointer data) { gtk_progress_bar_pulse(GTK_PROGRESS_BAR(data)); return TRUE; } int main(int argc, char *argv[]) {