diff options
author | Christian Persch <chpe@src.gnome.org> | 2004-07-03 06:05:59 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-03 06:05:59 +0800 |
commit | 099873bb3ced9f2189b87d12641a6e61de9ae5d8 (patch) | |
tree | 044ad0c8fbb7af4183b4afe320057218dab2a988 /lib/widgets/ephy-spinner.h | |
parent | b597caf899ec8778d8302f6ccce3a01651bb1b25 (diff) | |
download | gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar.gz gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar.bz2 gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar.lz gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar.xz gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.tar.zst gsoc2013-epiphany-099873bb3ced9f2189b87d12641a6e61de9ae5d8.zip |
Codestyle and whitespace cleanup
Diffstat (limited to 'lib/widgets/ephy-spinner.h')
-rw-r--r-- | lib/widgets/ephy-spinner.h | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/lib/widgets/ephy-spinner.h b/lib/widgets/ephy-spinner.h index 98e55dafd..faa0520f0 100644 --- a/lib/widgets/ephy-spinner.h +++ b/lib/widgets/ephy-spinner.h @@ -1,5 +1,4 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ - /* * Nautilus * @@ -34,38 +33,40 @@ G_BEGIN_DECLS -#define EPHY_TYPE_SPINNER (ephy_spinner_get_type ()) -#define EPHY_SPINNER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_SPINNER, EphySpinner)) -#define EPHY_SPINNER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_SPINNER, EphySpinnerClass)) -#define EPHY_IS_SPINNER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SPINNER)) -#define EPHY_IS_SPINNER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SPINNER)) -#define EPHY_SPINNER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SPINNER, EphySpinnerClass)) +#define EPHY_TYPE_SPINNER (ephy_spinner_get_type ()) +#define EPHY_SPINNER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_SPINNER, EphySpinner)) +#define EPHY_SPINNER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_SPINNER, EphySpinnerClass)) +#define EPHY_IS_SPINNER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SPINNER)) +#define EPHY_IS_SPINNER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SPINNER)) +#define EPHY_SPINNER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SPINNER, EphySpinnerClass)) -typedef struct EphySpinner EphySpinner; -typedef struct EphySpinnerClass EphySpinnerClass; -typedef struct EphySpinnerDetails EphySpinnerDetails; +typedef struct EphySpinner EphySpinner; +typedef struct EphySpinnerClass EphySpinnerClass; +typedef struct EphySpinnerDetails EphySpinnerDetails; -struct EphySpinner { +struct EphySpinner +{ GtkEventBox parent; /*< private >*/ EphySpinnerDetails *details; }; -struct EphySpinnerClass { +struct EphySpinnerClass +{ GtkEventBoxClass parent_class; }; -GType ephy_spinner_get_type (void); +GType ephy_spinner_get_type (void); -GtkWidget *ephy_spinner_new (void); +GtkWidget *ephy_spinner_new (void); -void ephy_spinner_start (EphySpinner *throbber); +void ephy_spinner_start (EphySpinner *throbber); -void ephy_spinner_stop (EphySpinner *throbber); +void ephy_spinner_stop (EphySpinner *throbber); -void ephy_spinner_set_size (EphySpinner *spinner, - GtkIconSize size); +void ephy_spinner_set_size (EphySpinner *spinner, + GtkIconSize size); G_END_DECLS |