changing the way checkbutton looks

2010-09-23 Thread Sergei Steshenko
Hello, by default checkbutton has kind of 'v' on it when active and no special sign when not active. Is there a simple way to change what's shown on it inside the application ? I.e. I do not want to change this in theme. Thanks, Sergei. ___

GTK+ 2.22.0 released

2010-09-23 Thread Matthias Clasen
GTK+ 2.22.0 is now available for download at: http://download.gnome.org/sources/gtk+/2.22/ ftp://ftp.gtk.org/pub/gtk/2.22/ sha256 sums: d9522c80d4b8a954f7474e32bd5a99ba3051996f1c4681426db5f79a1c1b4602 gtk +-2.22.0.tar.bz2 d0247ca6619a0ec2fa3f2f042a7d3a72fbacec4f5ad72f67aafb0f5f03be3c0b gtk +-

cairo functions too use instead of gdk ones

2010-09-23 Thread Christopher Roy Bratusek
Hi all, I'm wondering which cairo functions replace gdk_gc_new gdk_gc_set_foreground gdk_pixmap_create_from_xpm Any hint is appreciated. Chris ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Re: cairo functions too use instead of gdk ones

2010-09-23 Thread Tadej Borovšak
Hi. Replacements would probably look like this: > gdk_gc_new cairo_create() or gdk_cairo_create() if you're using GTK+ > gdk_gc_set_foreground cairo_set_source_rgb() or gdk_cairo_set_source_color() > gdk_pixmap_create_from_xpm This last one is a bit tricky, since you should not use GdkPixmap

Re: cairo functions too use instead of gdk ones

2010-09-23 Thread Christopher Roy Bratusek
Am Thu, 23 Sep 2010 21:11:57 +0200 schrieb Tadej Borovšak : > Hi. > > Replacements would probably look like this: > > > gdk_gc_new > > cairo_create() or gdk_cairo_create() if you're using GTK+ > > > gdk_gc_set_foreground > > cairo_set_source_rgb() or gdk_cairo_set_source_color() > > > gdk_pi