3327a198e1
* Rename ShellGtkWindowActor to ShellGtkEmbed, and make it require a ShellEmbeddedWindow rather than a general GtkWindow. * Add ShellEmbeddedWindow subclass of GtkWindow that bypasses most of the GtkWindow complexity for size negotiation, and calls out to a clutter actor instead; also automatically handle reparenting the GtkWindow into the stage window. * Use the reworked ShellGtkEmbed in ShellTrayManager, this simplifies the code a bit, and more importantly results in the tray icons having the correct size negotiation, rather than having a fixed 24x24 size. http://bugzilla.gnome.org/show_bug.cgi?id=580047
22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
#ifndef __SHELL_GTK_EMBED_H__
|
|
#define __SHELL_GTK_EMBED_H__
|
|
|
|
#include <clutter/glx/clutter-glx.h>
|
|
|
|
#include "shell-embedded-window.h"
|
|
|
|
#define SHELL_TYPE_GTK_EMBED (shell_gtk_embed_get_type ())
|
|
#define SHELL_GTK_EMBED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_TYPE_GTK_EMBED, ShellGtkEmbed))
|
|
#define SHELL_GTK_EMBED_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_GTK_EMBED, ShellGtkEmbedClass))
|
|
#define SHELL_IS_GTK_EMBED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_TYPE_GTK_EMBED))
|
|
#define SHELL_IS_GTK_EMBED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_GTK_EMBED))
|
|
#define SHELL_GTK_EMBED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_GTK_EMBED, ShellGtkEmbedClass))
|
|
|
|
typedef struct _ShellGtkEmbed ShellGtkEmbed;
|
|
typedef struct _ShellGtkEmbedClass ShellGtkEmbedClass;
|
|
|
|
GType shell_gtk_embed_get_type (void) G_GNUC_CONST;
|
|
ClutterActor *shell_gtk_embed_new (ShellEmbeddedWindow *window);
|
|
|
|
#endif /* __SHELL_GTK_EMBED_H__ */
|