GTK+ 2.8.6

2005-10-03 Thread Matthias Clasen
GTK+ 2.8.6 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.6.tar.bz2 md5sum: 2bcb9e3feb62ac895101cb8ee87ca49a gtk+-2.8.6.tar.gzmd5sum: daf2b9cd4e29c8cb770828f9d7705796 This is a bugfix release in the 2.8.x series

Re: Cross Compiling Glib-1.2 and Gtk-1.2

2005-10-03 Thread Antonio Gomes
> Dillo Web Browser only support Gtk1.2, not Gtk2.0 so that reason Im > trying to Cross Compile the said versions. Actually, I did not get such kind od error before. So, my advice is: use Minimo instead of using Dillo. Well, dillo seems "smaller" than Minimo (regarding footprint), it does not sup

GTK+ 2.8.5

2005-10-03 Thread Matthias Clasen
GTK+ 2.8.5 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.5.tar.bz2 md5sum: cc25d162c5924e9bae02fb04c6fd494d gtk+-2.8.5.tar.gzmd5sum: 5809435d16e53e82fb3d5d930fd8a36e This is a bugfix release in the 2.8.x series

Re: Theming an application

2005-10-03 Thread Andrew Shafer
Awesome What can you do to switch themes while the application is running? On Mon, 2005-10-03 at 18:25 +0100, John Cupitt wrote: > Hi Andrew, > > On 10/3/05, Andrew Shafer <[EMAIL PROTECTED]> wrote: > > Can anyone provide an example of code that sets the theme on an > > application? > > One e

Re: Theming an application

2005-10-03 Thread John Cupitt
Hi Andrew, On 10/3/05, Andrew Shafer <[EMAIL PROTECTED]> wrote: > Can anyone provide an example of code that sets the theme on an > application? One easy way is to call gtk_rc_add_default_file( "/usr/share/themes/whatever/gtk-2.0/gtkrc" ) before you call gtk_init(): http://developer.gnome.org/do

GLib 2.8.3

2005-10-03 Thread Matthias Clasen
GLib 2.8.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ glib-2.8.3.tar.bz2 md5sum: 58177fe64c189b86bac1625350512159 glib-2.8.3.tar.gzmd5sum: ea61e475c586d082559652a0f10a038f This is a quick follow-up release to fix a bug that crept into 2.8.2. GLib is the low-level c

GtkTextView - text justification

2005-10-03 Thread Scott Dattalo
I have a gtk_text_view displaying the contents of a syntax-highlighted file. I'd like to create a column along the left side of the buffer for holding icons that are dynamically drawn (these icons align with the rows of text). In addition, I'd like to retain the text justification of the tex

Re: When is g_object_ref needed ?

2005-10-03 Thread Tristan Van Berkom
Frédéric Terraza wrote: Thanks. But there are still some mysteries. For example, this sequence : my_pixmap = gdk_pixmap_new(...) ; my_gc = gdk_gc_new(my_pixmap) ; g_object_unref(my_pixmap) ; g_object_unref(my_gc) ; seems to lead to an error. I was told that g_object_unref(my_pixmap) ; would un

Theming an application

2005-10-03 Thread Andrew Shafer
I'm new to this tool kit and I'm stumbling along so any tips will be greatly appreciated. I want to apply a GTK theme to an application. I'm to the point where I understand it has something to do with gtkrc files, but I'm not clear on exactly how to code it up. I want to control the theme on an

Re: When is g_object_ref needed ?

2005-10-03 Thread Frédéric Terraza
Thanks. But there are still some mysteries. For example, this sequence : my_pixmap = gdk_pixmap_new(...) ; my_gc = gdk_gc_new(my_pixmap) ; g_object_unref(my_pixmap) ; g_object_unref(my_gc) ; seems to lead to an error. I was told that g_object_unref(my_pixmap) ; would unref my_gc too. And effect

Pango-1.10.1 released

2005-10-03 Thread Owen Taylor
Pango-1.10.1 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ pango-1.10.1.tar.bz2 md5sum: 1ff4c96982f61ea6f390d09a4febdf18 pango-1.10.1.tar.gzmd5sum: 6b3b06b3263845706a2bfc769b83f7fc This is a stable release and is source and binary compatible with 1.10.1. Notable change

Re: When is g_object_ref needed ?

2005-10-03 Thread Tristan Van Berkom
Frédéric Terraza wrote: Hello, I must use g_object_unref to free a gdk or a gtk object. There are lots of deprecated functions that are now replaced by g_object_unref (such as g_pixmap_unref, gdk_gc_unref). But must I use g_object_ref after the creation of a pixmap or a gc, since there us