Re: how to make an animation ;)

2007-02-08 Thread Olivier Ramare
Enrico Sardi wrote: > Hi all! > > I want to make a simple animation in gtk with a pixbuf that rotates, how > can I make it? > For every change of state of my application, the image changes. I have 10 files with the rotated images (I've created them with a repeated use of gimp) and I use the fol

Saving treeview state

2007-02-08 Thread Dave Moore
If this is a stupid question, please feel free to flame me. I have an app that has a treeview. I would like to save some state information about this treeview to restore the next session. Namely I would like to remember the column sizes and positions so the user doesnt have to keep resetting the

how to make an animation ;)

2007-02-08 Thread Enrico Sardi
Hi all! I want to make a simple animation in gtk with a pixbuf that rotates, how can I make it? Many thanks Enrico ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GObject docs improvements

2007-02-08 Thread Yeti
On Thu, Feb 08, 2007 at 08:44:50AM +0100, Stefan Kost wrote: > > What I like to ask you is to reply to > this mail and tell us what you don't understand yet, point out parts > that can be improved, let us know if there are some nagging concerns > about the way GObject works. Deriving from c

Re: Reparenting an out of process window

2007-02-08 Thread Ed Catmur
On Thu, 2007-02-08 at 13:46 +0300, Al Boldi wrote: > Greetings! > > I have a small problem. On windows I can use SetParent to reparent an out of > process window, by passing it the globally unique window-Handle. > > Is this possible on GTK1/GTK2 respectively? Look at GtkSocket/GtkPlug. Ed __

tooltip on gdk_pixbuf in gtk_icon_view

2007-02-08 Thread Giuseppe Torelli
Hi, I have an icon_view with gdk_pixbuf only. To avoid alignment problems with the text under the icon in the iconview I thought to use a tooltip showing what the icon is for: prefs_data->prefs_liststore = gtk_list_store_new ( 2, GDK_TYPE_PIXBUF, G_TYPE_UINT); prefs_iconview = gtk_icon

Reparenting an out of process window

2007-02-08 Thread Al Boldi
Greetings! I have a small problem. On windows I can use SetParent to reparent an out of process window, by passing it the globally unique window-Handle. Is this possible on GTK1/GTK2 respectively? Thanks! -- Al ___ gtk-app-devel-list mailing list

tooltip on gdk_pixbuf in gtk_icon_view

2007-02-08 Thread Colossus
Hi, I have an icon_view with gdk_pixbuf only. To avoid alignment problems with the text under the icon in the iconview I thought to use a tooltip showing what the icon is for: prefs_data->prefs_liststore = gtk_list_store_new ( 2, GDK_TYPE_PIXBUF, G_TYPE_UINT); prefs_iconview = gtk_icon_vi

Re: GObject docs improvements

2007-02-08 Thread Dominique Würtz
Great work so far! A point I miss in the tutorial is to mention the G_DEFINE_TYPE()-like macros which should be prefered over manually defining a _get_type() function whenever possible. As I see it this affects the following sections: Boilerplate code How To define Interfaces? How To define imple