fixed GTKHTML detection
[k8lowj.git] / src / throbber.h
blob52901cfac368e2eb8f1c1dda1d01fd5c1c9dd36b
1 /* logjam - a GTK client for LiveJournal.
2 * Copyright (C) 2000-2003 Evan Martin <evan@livejournal.com>
4 * vim: tabstop=4 shiftwidth=4 noexpandtab :
5 */
7 #ifndef __throbber_h__
8 #define __throbber_h__
10 #define THROBBER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), throbber_get_type(), Throbber))
11 typedef struct _Throbber Throbber;
13 GType throbber_get_type(void);
14 GtkWidget* throbber_new(void);
16 void throbber_start(Throbber *t);
17 void throbber_stop (Throbber *t);
18 void throbber_reset(Throbber *t);
20 #endif /* __throbber_h__ */