comparison plugins/ticker/gtkticker.h @ 7631:ea2d07ad05a9

[gaim-migrate @ 8255] long car rides and a power inverter can generate some interesting code tweaks committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 25 Nov 2003 07:16:11 +0000
parents 13ffa9ae4282
children
comparison
equal deleted inserted replaced
7630:2df4d470c12a 7631:ea2d07ad05a9
49 49
50 struct _GtkTicker 50 struct _GtkTicker
51 { 51 {
52 GtkContainer container; 52 GtkContainer container;
53 guint interval; /* how often to scootch */ 53 guint interval; /* how often to scootch */
54 guint spacing; /* inter-child horizontal spacing */ 54 gint spacing; /* inter-child horizontal spacing */
55 guint scootch; /* how many pixels to move each scootch */ 55 guint scootch; /* how many pixels to move each scootch */
56 gint timer; /* timer object */ 56 gint timer; /* timer object */
57 guint total; /* total width of widgets */ 57 gint total; /* total width of widgets */
58 guint width; /* width of containing window */ 58 gint width; /* width of containing window */
59 gboolean dirty; 59 gboolean dirty;
60 GList *children; 60 GList *children;
61 }; 61 };
62 62
63 struct _GtkTickerClass 63 struct _GtkTickerClass