[gtk+] popover: Add private _gtk_popover_set_apply_shape() call
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] popover: Add private _gtk_popover_set_apply_shape() call
- Date: Tue, 4 Feb 2014 20:29:42 +0000 (UTC)
commit 2d9c09d6c0621a0b9bd24e1054af4a8b31912935
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Feb 4 20:45:53 2014 +0100
popover: Add private _gtk_popover_set_apply_shape() call
Popovers no longer sets a shape, unless this function is called. This
function exists so widgets that are potentially placed on top of other
native windows can get a popover that's nicely shaped, even if it has
no border shadow around.
https://bugzilla.gnome.org/show_bug.cgi?id=723556
gtk/Makefile.am | 1 +
gtk/gtkpopover.c | 79 ++++++++++++++++++++++++-----------------------
gtk/gtkpopoverprivate.h | 26 +++++++++++++++
3 files changed, 67 insertions(+), 39 deletions(-)
---
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 67fc47e..5fd185c 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -505,6 +505,7 @@ gtk_private_h_sources = \
gtkorientableprivate.h \
gtkpango.h \
gtkpathbar.h \
+ gtkpopoverprivate.h \
gtkpressandholdprivate.h \
gtkprintoperation-private.h \
gtkprintutils.h \
diff --git a/gtk/gtkpopover.c b/gtk/gtkpopover.c
index 3d82446..ac5170f 100644
--- a/gtk/gtkpopover.c
+++ b/gtk/gtkpopover.c
@@ -85,6 +85,7 @@ struct _GtkPopoverPrivate
guint current_position : 2;
guint modal : 1;
guint button_pressed : 1;
+ guint apply_shape : 1;
};
static GQuark quark_widget_popovers = 0;
@@ -524,6 +525,7 @@ gtk_popover_apply_tail_path (GtkPopover *popover,
gint tip_x, tip_y;
gint final_x, final_y;
+ cairo_set_line_width (cr, 1);
gtk_popover_get_gap_coords (popover,
&initial_x, &initial_y,
&tip_x, &tip_y,
@@ -536,49 +538,23 @@ gtk_popover_apply_tail_path (GtkPopover *popover,
}
static void
-gtk_popover_apply_border_path (GtkPopover *popover,
- cairo_t *cr)
+gtk_popover_fill_border_path (GtkPopover *popover,
+ cairo_t *cr)
{
- GtkPopoverPrivate *priv;
GtkAllocation allocation;
+ GtkStyleContext *context;
gint x1, y1, x2, y2;
- priv = popover->priv;
+ context = gtk_widget_get_style_context (GTK_WIDGET (popover));
gtk_widget_get_allocation (GTK_WIDGET (popover), &allocation);
gtk_popover_apply_tail_path (popover, cr);
- gtk_popover_get_rect_coords (popover, &x1, &y1, &x2, &y2);
-
- if (priv->final_position == GTK_POS_TOP)
- {
- cairo_line_to (cr, x2, y2);
- cairo_line_to (cr, x2, y1);
- cairo_line_to (cr, x1, y1);
- cairo_line_to (cr, x1, y2);
- }
- else if (priv->final_position == GTK_POS_BOTTOM)
- {
- cairo_line_to (cr, x2, y1);
- cairo_line_to (cr, x2, y2);
- cairo_line_to (cr, x1, y2);
- cairo_line_to (cr, x1, y1);
- }
- else if (priv->final_position == GTK_POS_LEFT)
- {
- cairo_line_to (cr, x2, y2);
- cairo_line_to (cr, x1, y2);
- cairo_line_to (cr, x1, y1);
- cairo_line_to (cr, x2, y1);
- }
- else if (priv->final_position == GTK_POS_RIGHT)
- {
- cairo_line_to (cr, x1, y1);
- cairo_line_to (cr, x2, y1);
- cairo_line_to (cr, x2, y2);
- cairo_line_to (cr, x1, y2);
- }
-
cairo_close_path (cr);
+ cairo_fill (cr);
+
+ gtk_popover_get_rect_coords (popover, &x1, &y1, &x2, &y2);
+ gtk_render_frame (context, cr, x1, y1, x2 - x1, y2 - y1);
+ gtk_render_background (context, cr, x1, y1, x2 - x1, y2 - y1);
}
static void
@@ -597,8 +573,7 @@ gtk_popover_update_shape (GtkPopover *popover)
gdk_window_get_height (win));
cr = cairo_create (surface);
- gtk_popover_apply_border_path (popover, cr);
- cairo_fill (cr);
+ gtk_popover_fill_border_path (popover, cr);
cairo_destroy (cr);
region = gdk_cairo_region_create_from_surface (surface);
@@ -679,7 +654,8 @@ gtk_popover_update_position (GtkPopover *popover)
if (priv->final_position != priv->current_position)
{
- if (gtk_widget_is_drawable (GTK_WIDGET (popover)))
+ if (priv->apply_shape &&
+ gtk_widget_is_drawable (GTK_WIDGET (popover)))
gtk_popover_update_shape (popover);
priv->current_position = priv->final_position;
@@ -704,6 +680,8 @@ gtk_popover_draw (GtkWidget *widget,
GtkStateFlags state;
context = gtk_widget_get_style_context (widget);
+ gtk_style_context_save (context);
+
state = gtk_widget_get_state_flags (widget);
gtk_widget_get_allocation (widget, &allocation);
@@ -772,6 +750,8 @@ gtk_popover_draw (GtkWidget *widget,
if (child)
gtk_container_propagate_draw (GTK_CONTAINER (widget), child, cr);
+ gtk_style_context_restore (context);
+
return TRUE;
}
@@ -1030,8 +1010,10 @@ static void
gtk_popover_size_allocate (GtkWidget *widget,
GtkAllocation *allocation)
{
+ GtkPopoverPrivate *priv;
GtkWidget *child;
+ priv = gtk_popover_get_instance_private (GTK_POPOVER (widget));
gtk_widget_set_allocation (widget, allocation);
child = gtk_bin_get_child (GTK_BIN (widget));
if (child)
@@ -1055,7 +1037,8 @@ gtk_popover_size_allocate (GtkWidget *widget,
{
gdk_window_move_resize (gtk_widget_get_window (widget),
0, 0, allocation->width, allocation->height);
- gtk_popover_update_shape (GTK_POPOVER (widget));
+ if (priv->apply_shape)
+ gtk_popover_update_shape (GTK_POPOVER (widget));
}
}
@@ -1744,3 +1727,21 @@ gtk_popover_get_modal (GtkPopover *popover)
return priv->modal;
}
+
+void
+_gtk_popover_set_apply_shape (GtkPopover *popover,
+ gboolean apply_shape)
+{
+ GtkPopoverPrivate *priv;
+
+ g_return_if_fail (GTK_IS_POPOVER (popover));
+
+ priv = gtk_popover_get_instance_private (popover);
+
+ if ((priv->apply_shape == TRUE) == (apply_shape == TRUE))
+ return;
+
+ priv->apply_shape = apply_shape;
+ gtk_popover_update_position (popover);
+ gtk_widget_queue_draw (GTK_WIDGET (popover));
+}
diff --git a/gtk/gtkpopoverprivate.h b/gtk/gtkpopoverprivate.h
new file mode 100644
index 0000000..3b57837
--- /dev/null
+++ b/gtk/gtkpopoverprivate.h
@@ -0,0 +1,26 @@
+/* GTK - The GIMP Toolkit
+ * Copyright © 2014 Carlos Garnacho <carlosg gnome org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __GTK_POPOVER_PRIVATE_H__
+#define __GTK_POPOVER_PRIVATE_H__
+
+#include "gtkpopover.h"
+
+void _gtk_popover_set_apply_shape (GtkPopover *popover,
+ gboolean modal);
+
+#endif /* __GTK_POPOVER_PRIVATE_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]