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
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
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
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
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
__
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
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
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
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