comparison plugins/ticker/gtkticker.h @ 5170:13ffa9ae4282

[gaim-migrate @ 5534] This makes the buddy ticker plugin work again, and may cause some slight breakage in some plugins, since it slightly changes the behavior of: event_buddy_signon event_buddy_signoff event_buddy_away event_buddy_back Then again, it's nothing compared to the massive breakage being thought up for the very near future ;-) committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 18 Apr 2003 21:49:45 +0000
parents 412d1035d666
children ea2d07ad05a9
comparison
equal deleted inserted replaced
5169:71927464a1db 5170:13ffa9ae4282
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 guint total; /* total width of widgets */
58 guint width; /* width of containing window */ 58 guint 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
64 { 64 {
65 GtkContainerClass parent_class; 65 GtkContainerClass parent_class;
67 67
68 struct _GtkTickerChild 68 struct _GtkTickerChild
69 { 69 {
70 GtkWidget *widget; 70 GtkWidget *widget;
71 gint x; /* current position */ 71 gint x; /* current position */
72 gint offset; /* offset in list */ 72 gint offset; /* offset in list */
73 }; 73 };
74 74
75 75
76 GtkType gtk_ticker_get_type (void); 76 GtkType gtk_ticker_get_type (void);
77 GtkWidget* gtk_ticker_new (void); 77 GtkWidget* gtk_ticker_new (void);