diff options
Diffstat (limited to 'shell/app-icon.h')
| -rw-r--r-- | shell/app-icon.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/shell/app-icon.h b/shell/app-icon.h index f3bc8f5..2209352 100644 --- a/shell/app-icon.h +++ b/shell/app-icon.h @@ -4,36 +4,36 @@ * Author: Jonny Lamb <jonny.lamb@collabora.co.uk> */ -#ifndef __WESTON_GTK_APP_ICON_H__ -#define __WESTON_GTK_APP_ICON_H__ +#ifndef __MAYNARD_APP_ICON_H__ +#define __MAYNARD_APP_ICON_H__ #include <gtk/gtk.h> -#define WESTON_GTK_APP_ICON_TYPE (weston_gtk_app_icon_get_type ()) -#define WESTON_GTK_APP_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), WESTON_GTK_APP_ICON_TYPE, WestonGtkAppIcon)) -#define WESTON_GTK_APP_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), WESTON_GTK_APP_ICON_TYPE, WestonGtkAppIconClass)) -#define WESTON_GTK_IS_APP_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WESTON_GTK_APP_ICON_TYPE)) -#define WESTON_GTK_IS_APP_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), WESTON_GTK_APP_ICON_TYPE)) -#define WESTON_GTK_APP_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), WESTON_GTK_APP_ICON_TYPE, WestonGtkAppIconClass)) +#define MAYNARD_APP_ICON_TYPE (maynard_app_icon_get_type ()) +#define MAYNARD_APP_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MAYNARD_APP_ICON_TYPE, MaynardAppIcon)) +#define MAYNARD_APP_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MAYNARD_APP_ICON_TYPE, MaynardAppIconClass)) +#define MAYNARD_IS_APP_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MAYNARD_APP_ICON_TYPE)) +#define MAYNARD_IS_APP_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MAYNARD_APP_ICON_TYPE)) +#define MAYNARD_APP_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MAYNARD_APP_ICON_TYPE, MaynardAppIconClass)) -typedef struct WestonGtkAppIcon WestonGtkAppIcon; -typedef struct WestonGtkAppIconClass WestonGtkAppIconClass; -typedef struct WestonGtkAppIconPrivate WestonGtkAppIconPrivate; +typedef struct MaynardAppIcon MaynardAppIcon; +typedef struct MaynardAppIconClass MaynardAppIconClass; +typedef struct MaynardAppIconPrivate MaynardAppIconPrivate; -struct WestonGtkAppIcon +struct MaynardAppIcon { GtkButton parent; - WestonGtkAppIconPrivate *priv; + MaynardAppIconPrivate *priv; }; -struct WestonGtkAppIconClass +struct MaynardAppIconClass { GtkButtonClass parent_class; }; -GType weston_gtk_app_icon_get_type (void) G_GNUC_CONST; -GtkWidget *weston_gtk_app_icon_new (const gchar *icon_name); -GtkWidget *weston_gtk_app_icon_new_from_gicon (GIcon *icon); +GType maynard_app_icon_get_type (void) G_GNUC_CONST; +GtkWidget *maynard_app_icon_new (const gchar *icon_name); +GtkWidget *maynard_app_icon_new_from_gicon (GIcon *icon); -#endif /* __WESTON_GTK_APP_ICON_H__ */ +#endif /* __MAYNARD_APP_ICON_H__ */ |
