From a152b0ec9d2e58a303f94de7765b0febcc9e5f94 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sat, 22 Mar 2014 16:26:34 +0100 Subject: Revert "gtk3: remove always on top square at 0x0-200x200" This reverts commit 2425d611fccb0fa43cfd85a967d41d0777ecd353. --- src/ui/frames.c | 48 +++++++++++++++++++++++++++++------------------- src/ui/frames.h | 9 +-------- 2 files changed, 30 insertions(+), 27 deletions(-) (limited to 'src/ui') diff --git a/src/ui/frames.c b/src/ui/frames.c index 07696923..5c19bd4c 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -41,12 +41,19 @@ #if GTK_CHECK_VERSION(3, 0, 0) #include + #define GtkObject GtkWidget + #define GTK_OBJECT_CLASS GTK_WIDGET_CLASS #define GdkRegion cairo_region_t + #define GdkRegion cairo_region_t + #define gdk_region_new cairo_region_create + #define gdk_region_subtract cairo_region_subtract #define gdk_region_destroy cairo_region_destroy + #define gdk_region_union_with_rect cairo_region_union_rectangle #define gdk_region_rectangle cairo_region_create_rectangle #define gdk_region_offset cairo_region_translate #define gdk_region_intersect cairo_region_intersect - G_DEFINE_TYPE (MetaFrames, meta_frames, GTK_TYPE_INVISIBLE); + #define gdk_region_copy cairo_region_copy + G_DEFINE_TYPE (MetaFrames, meta_frames, GTK_TYPE_WINDOW); #define parent_class meta_frames_parent_class #define GTK_WIDGET_REALIZED gtk_widget_get_realized #endif @@ -55,11 +62,7 @@ static void meta_frames_class_init (MetaFramesClass *klass); static void meta_frames_init (MetaFrames *frames); -#if GTK_CHECK_VERSION(3, 0, 0) -static void meta_frames_destroy (GtkWidget *object); -#else static void meta_frames_destroy (GtkObject *object); -#endif static void meta_frames_finalize (GObject *object); static void meta_frames_style_set (GtkWidget *widget, GtkStyle *prev_style); @@ -131,7 +134,27 @@ static void invalidate_all_caches (MetaFrames *frames); static void invalidate_whole_window (MetaFrames *frames, MetaUIFrame *frame); -#if !GTK_CHECK_VERSION(3, 0, 0) +#if GTK_CHECK_VERSION(3, 0, 0) + +static GObject * +meta_frames_constructor (GType gtype, + guint n_properties, + GObjectConstructParam *properties) +{ + GObject *object; + GObjectClass *gobject_class; + + gobject_class = G_OBJECT_CLASS (meta_frames_parent_class); + object = gobject_class->constructor (gtype, n_properties, properties); + + g_object_set (object, + "type", GTK_WINDOW_POPUP, + NULL); + + return object; +} + +#else static GtkWidgetClass *parent_class = NULL; @@ -177,15 +200,11 @@ meta_frames_class_init (MetaFramesClass *class) #endif widget_class = (GtkWidgetClass*) class; -#if !GTK_CHECK_VERSION (3, 0, 0) parent_class = g_type_class_peek_parent (class); -#endif gobject_class->finalize = meta_frames_finalize; #if !GTK_CHECK_VERSION(3, 0, 0) object_class->destroy = meta_frames_destroy; - #else - widget_class->destroy = meta_frames_destroy; #endif widget_class->style_set = meta_frames_style_set; @@ -276,13 +295,8 @@ listify_func (gpointer key, gpointer value, gpointer data) *listp = g_slist_prepend (*listp, value); } -#if GTK_CHECK_VERSION(3, 0, 0) -static void -meta_frames_destroy (GtkWidget *object) -#else static void meta_frames_destroy (GtkObject *object) -#endif { GSList *winlist; GSList *tmp; @@ -306,11 +320,7 @@ meta_frames_destroy (GtkObject *object) } g_slist_free (winlist); -#if GTK_CHECK_VERSION(3, 0, 0) - GTK_WIDGET_CLASS (parent_class)->destroy (object); -#else GTK_OBJECT_CLASS (parent_class)->destroy (object); -#endif } static void diff --git a/src/ui/frames.h b/src/ui/frames.h index 54c7146a..b1d178ad 100644 --- a/src/ui/frames.h +++ b/src/ui/frames.h @@ -89,11 +89,7 @@ struct _MetaUIFrame struct _MetaFrames { -#if GTK_CHECK_VERSION (3, 0, 0) - GtkInvisible parent_instance; -#else GtkWindow parent_instance; -#endif GHashTable *text_heights; @@ -111,11 +107,8 @@ struct _MetaFrames struct _MetaFramesClass { -#if GTK_CHECK_VERSION (3, 0, 0) - GtkInvisibleClass parent_class; -#else GtkWindowClass parent_class; -#endif + }; GType meta_frames_get_type (void) G_GNUC_CONST; -- cgit v1.2.1