294702d3f1
Cut down on boilerplate by using the (no longer that) new helper macros. We don't care about breaking ABI in private libraries, so use G_DECLARE_FINAL_TYPE even where the class struct used to be exposed in the header, except for types we inherit from ourselves (obviously) or where the class exposes any vfuncs (where changes could affect inheritance in extensions).
21 lines
540 B
C
21 lines
540 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#ifndef __SHELL_GTK_EMBED_H__
|
|
#define __SHELL_GTK_EMBED_H__
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include "shell-embedded-window.h"
|
|
|
|
#define SHELL_TYPE_GTK_EMBED (shell_gtk_embed_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (ShellGtkEmbed, shell_gtk_embed,
|
|
SHELL, GTK_EMBED, ClutterClone)
|
|
|
|
struct _ShellGtkEmbedClass
|
|
{
|
|
ClutterCloneClass parent_class;
|
|
};
|
|
|
|
ClutterActor *shell_gtk_embed_new (ShellEmbeddedWindow *window);
|
|
|
|
#endif /* __SHELL_GTK_EMBED_H__ */
|