progress.*: cosmetix
[k8lowj.git] / src / throbber.h
blobe32b71aa2fb872238b50338e1714c66538f37ac4
1 /* logjam - a GTK client for LiveJournal.
2 * Copyright (C) 2000-2003 Evan Martin <evan@livejournal.com>
3 */
4 #ifndef __LOGJAM_THROBBER_H__
5 #define __LOGJAM_THROBBER_H__
7 #define THROBBER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), throbber_get_type(), Throbber))
8 typedef struct _Throbber Throbber;
10 GType throbber_get_type(void);
11 GtkWidget *throbber_new(void);
13 void throbber_start(Throbber * t);
14 void throbber_stop(Throbber * t);
15 void throbber_reset(Throbber * t);
17 #endif /* __throbber_h__ */