2013-01-11 16:32:08 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2019-04-29 03:25:37 +00:00
|
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* - Matthias Clasen <mclasen@redhat.com>
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkpopover
|
|
|
|
* @Short_description: Context dependent bubbles
|
|
|
|
* @Title: GtkPopover
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* GtkPopover is a bubble-like context window, primarily meant to
|
|
|
|
* provide context-dependent information or options. Popovers are
|
|
|
|
* attached to a widget, passed at construction time on gtk_popover_new(),
|
|
|
|
* or updated afterwards through gtk_popover_set_relative_to(), by
|
|
|
|
* default they will point to the whole widget area, although this
|
|
|
|
* behavior can be changed through gtk_popover_set_pointing_to().
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* The position of a popover relative to the widget it is attached to
|
|
|
|
* can also be changed through gtk_popover_set_position().
|
|
|
|
*
|
2014-01-22 15:26:13 +00:00
|
|
|
* By default, #GtkPopover performs a GTK+ grab, in order to ensure
|
|
|
|
* input events get redirected to it while it is shown, and also so
|
2014-01-23 22:41:37 +00:00
|
|
|
* the popover is dismissed in the expected situations (clicks outside
|
2014-01-22 15:26:13 +00:00
|
|
|
* the popover, or the Esc key being pressed). If no such modal behavior
|
2019-05-19 23:46:56 +00:00
|
|
|
* is desired on a popover, gtk_popover_set_autohide() may be called
|
|
|
|
* on it to tweak its behavior.
|
2014-01-22 15:26:13 +00:00
|
|
|
*
|
2014-04-26 18:38:07 +00:00
|
|
|
* ## GtkPopover as menu replacement
|
|
|
|
*
|
|
|
|
* GtkPopover is often used to replace menus. To facilitate this, it
|
|
|
|
* supports being populated from a #GMenuModel, using
|
2019-06-07 17:05:48 +00:00
|
|
|
* gtk_popover_menu_new_from_model(). In addition to all the regular
|
|
|
|
* menu model features, this function supports rendering sections in
|
|
|
|
* the model in a more compact form, as a row of icon buttons instead
|
|
|
|
* of menu items.
|
2014-04-26 18:38:07 +00:00
|
|
|
*
|
|
|
|
* To use this rendering, set the ”display-hint” attribute of the
|
|
|
|
* section to ”horizontal-buttons” and set the icons of your items
|
|
|
|
* with the ”verb-icon” attribute.
|
|
|
|
*
|
|
|
|
* |[
|
|
|
|
* <section>
|
|
|
|
* <attribute name="display-hint">horizontal-buttons</attribute>
|
|
|
|
* <item>
|
|
|
|
* <attribute name="label">Cut</attribute>
|
|
|
|
* <attribute name="action">app.cut</attribute>
|
|
|
|
* <attribute name="verb-icon">edit-cut-symbolic</attribute>
|
|
|
|
* </item>
|
|
|
|
* <item>
|
|
|
|
* <attribute name="label">Copy</attribute>
|
|
|
|
* <attribute name="action">app.copy</attribute>
|
|
|
|
* <attribute name="verb-icon">edit-copy-symbolic</attribute>
|
|
|
|
* </item>
|
|
|
|
* <item>
|
|
|
|
* <attribute name="label">Paste</attribute>
|
|
|
|
* <attribute name="action">app.paste</attribute>
|
|
|
|
* <attribute name="verb-icon">edit-paste-symbolic</attribute>
|
|
|
|
* </item>
|
|
|
|
* </section>
|
|
|
|
* ]|
|
|
|
|
*
|
2015-11-02 17:53:57 +00:00
|
|
|
* # CSS nodes
|
|
|
|
*
|
2017-07-08 10:04:44 +00:00
|
|
|
* |[<!-- language="plain" -->
|
2019-06-07 17:05:48 +00:00
|
|
|
* popover[.menu]
|
2017-07-08 10:04:44 +00:00
|
|
|
* ├── arrow
|
2019-06-07 17:05:48 +00:00
|
|
|
* ╰── contents.background
|
2017-07-08 10:04:44 +00:00
|
|
|
* ╰── <child>
|
|
|
|
* ]|
|
|
|
|
*
|
2019-06-07 17:05:48 +00:00
|
|
|
* The contents child node always gets the .background style class and
|
|
|
|
* the popover itself gets the .menu style class if the popover is
|
|
|
|
* menu-like (ie #GtkPopoverMenu).
|
2015-11-02 17:53:57 +00:00
|
|
|
*
|
|
|
|
* Particular uses of GtkPopover, such as touch selection popups
|
|
|
|
* or magnifiers in #GtkEntry or #GtkTextView get style classes
|
|
|
|
* like .touch-selection or .magnifier to differentiate from
|
|
|
|
* plain popovers.
|
2015-10-30 14:08:18 +00:00
|
|
|
*
|
2019-06-07 17:05:48 +00:00
|
|
|
* When styling a popover directly, the popover node should usually
|
|
|
|
* not have any background.
|
2017-07-08 10:04:44 +00:00
|
|
|
*
|
|
|
|
* Note that, in order to accomplish appropriate arrow visuals, #GtkPopover uses
|
|
|
|
* custom drawing for the arrow node. This makes it possible for the arrow to change
|
|
|
|
* its shape dynamically, but it also limits the possibilities of styling it using CSS.
|
|
|
|
* In particular, the arrow gets drawn over the content node's border so they look
|
|
|
|
* like one shape, which means that the border-width of the content node and the arrow
|
|
|
|
* node should be the same. The arrow also does not support any border shape other than
|
|
|
|
* solid, no border-radius, only one border width (border-bottom-width is used) and no box-shadow.
|
2013-01-11 16:32:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2018-02-08 23:42:38 +00:00
|
|
|
|
2014-08-01 15:38:42 +00:00
|
|
|
#include "gtkpopoverprivate.h"
|
2019-08-27 08:28:29 +00:00
|
|
|
#include "gtkpopovermenuprivate.h"
|
2019-04-29 03:25:37 +00:00
|
|
|
#include "gtknative.h"
|
|
|
|
#include "gtkwidgetprivate.h"
|
|
|
|
#include "gtkeventcontrollerkey.h"
|
2018-02-08 23:42:38 +00:00
|
|
|
#include "gtkcssnodeprivate.h"
|
2019-04-29 03:25:37 +00:00
|
|
|
#include "gtkbindings.h"
|
|
|
|
#include "gtkenums.h"
|
|
|
|
#include "gtktypebuiltins.h"
|
|
|
|
#include "gtkmnemonichash.h"
|
2018-02-08 23:42:38 +00:00
|
|
|
#include "gtkgizmoprivate.h"
|
|
|
|
#include "gtkintl.h"
|
|
|
|
#include "gtkprivate.h"
|
2019-04-29 03:25:37 +00:00
|
|
|
#include "gtkmain.h"
|
2018-02-08 23:42:38 +00:00
|
|
|
#include "gtkstack.h"
|
2019-06-10 03:10:13 +00:00
|
|
|
#include "gtkmenusectionboxprivate.h"
|
2019-04-29 03:25:37 +00:00
|
|
|
#include "gdk/gdkeventsprivate.h"
|
|
|
|
#include "gtkpointerfocusprivate.h"
|
|
|
|
#include "gtkcssnodeprivate.h"
|
2019-05-05 23:53:02 +00:00
|
|
|
#include "gtksnapshot.h"
|
|
|
|
|
|
|
|
#include "gtkrender.h"
|
|
|
|
#include "gtkstylecontextprivate.h"
|
|
|
|
#include "gtkroundedboxprivate.h"
|
|
|
|
#include "gsk/gskroundedrectprivate.h"
|
|
|
|
|
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
|
|
#include "wayland/gdkwayland.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TAIL_GAP_WIDTH 24
|
|
|
|
#define TAIL_HEIGHT 12
|
|
|
|
|
|
|
|
#define POS_IS_VERTICAL(p) ((p) == GTK_POS_TOP || (p) == GTK_POS_BOTTOM)
|
2019-04-29 03:25:37 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GdkSurface *surface;
|
|
|
|
GskRenderer *renderer;
|
|
|
|
GtkWidget *default_widget;
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
GdkSurfaceState state;
|
|
|
|
GtkWidget *relative_to;
|
|
|
|
GdkRectangle pointing_to;
|
|
|
|
gboolean has_pointing_to;
|
|
|
|
guint surface_transform_changed_cb;
|
|
|
|
GtkPositionType position;
|
2019-05-19 23:46:56 +00:00
|
|
|
gboolean autohide;
|
2019-05-22 00:42:07 +00:00
|
|
|
gboolean has_arrow;
|
2016-12-13 20:00:28 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *contents_widget;
|
2019-05-05 23:53:02 +00:00
|
|
|
GtkCssNode *arrow_node;
|
2019-05-25 23:11:30 +00:00
|
|
|
GskRenderNode *arrow_render_node;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
GdkRectangle final_rect;
|
|
|
|
GtkPositionType final_position;
|
2019-04-29 03:25:37 +00:00
|
|
|
} GtkPopoverPrivate;
|
2014-10-20 17:10:52 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
enum {
|
|
|
|
CLOSED,
|
2019-06-12 16:54:57 +00:00
|
|
|
ACTIVATE_DEFAULT,
|
2019-04-29 03:25:37 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
2013-01-11 16:32:08 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_RELATIVE_TO = 1,
|
|
|
|
PROP_POINTING_TO,
|
2014-01-10 11:04:17 +00:00
|
|
|
PROP_POSITION,
|
2019-05-19 23:46:56 +00:00
|
|
|
PROP_AUTOHIDE,
|
2019-04-28 16:54:02 +00:00
|
|
|
PROP_DEFAULT_WIDGET,
|
2019-05-22 00:42:07 +00:00
|
|
|
PROP_HAS_ARROW,
|
2015-12-02 06:03:35 +00:00
|
|
|
NUM_PROPERTIES
|
2013-01-11 16:32:08 +00:00
|
|
|
};
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static GParamSpec *properties[NUM_PROPERTIES] = { NULL };
|
2014-02-06 14:30:55 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void gtk_popover_native_interface_init (GtkNativeInterface *iface);
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkPopover, gtk_popover, GTK_TYPE_BIN,
|
|
|
|
G_ADD_PRIVATE (GtkPopover)
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_NATIVE,
|
|
|
|
gtk_popover_native_interface_init))
|
2013-01-11 16:32:08 +00:00
|
|
|
|
popover: Fix memory management of popovers
Popovers are strange in the sense that they aren't attached to a
parent directly, they rely on the relative_to widget so the toplevel
is shared, and when they have a parent, it is the toplevel itself,
not relative_to. This also means that there are conditions where the
popover loses it's parent, so they must survive unparenting.
The previous code would be floating the last reference as soon as the
parent is gone, but it was non-obvious who'd own that reference. So
fix this situation by granting the ownership of popovers to their
relative_to widget, an extra reference may be held by the toplevel
when the popover has a parent, but the popover object will be
guaranteed to be alive as long as the parent lives.
This way, memory management of popovers is as hidden from the user
as regular widgets within containers are, users are free to call
gtk_widget_destroy() on a popover, but it'd eventually become
destructed when relative_to is.
2014-01-09 16:21:43 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static GdkSurface *
|
|
|
|
gtk_popover_native_get_surface (GtkNative *native)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (native);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2013-11-12 15:55:23 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return priv->surface;
|
|
|
|
}
|
2016-09-28 17:53:10 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static GskRenderer *
|
|
|
|
gtk_popover_native_get_renderer (GtkNative *native)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (native);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return priv->renderer;
|
|
|
|
}
|
2017-07-08 10:04:44 +00:00
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_native_get_surface_transform (GtkNative *native,
|
|
|
|
int *x,
|
|
|
|
int *y)
|
2017-07-08 10:04:44 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkBorder margin, border, padding;
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (native));
|
|
|
|
gtk_style_context_get_margin (context, &margin);
|
|
|
|
gtk_style_context_get_border (context, &border);
|
|
|
|
gtk_style_context_get_padding (context, &padding);
|
|
|
|
|
|
|
|
*x = margin.left + border.left + padding.left;
|
|
|
|
*y = margin.top + border.top + padding.top;
|
2017-07-08 10:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
move_to_rect (GtkPopover *popover)
|
2017-07-08 10:04:44 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GdkRectangle rect;
|
|
|
|
GdkGravity parent_anchor;
|
|
|
|
GdkGravity surface_anchor;
|
|
|
|
GdkAnchorHints anchor_hints;
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_widget_get_surface_allocation (priv->relative_to, &rect);
|
|
|
|
if (priv->has_pointing_to)
|
|
|
|
{
|
|
|
|
rect.x += priv->pointing_to.x;
|
|
|
|
rect.y += priv->pointing_to.y;
|
|
|
|
rect.width = priv->pointing_to.width;
|
|
|
|
rect.height = priv->pointing_to.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (priv->position)
|
|
|
|
{
|
|
|
|
case GTK_POS_LEFT:
|
2019-09-05 19:29:19 +00:00
|
|
|
switch (gtk_widget_get_valign (GTK_WIDGET (popover)))
|
|
|
|
{
|
|
|
|
case GTK_ALIGN_START:
|
|
|
|
parent_anchor = GDK_GRAVITY_NORTH_WEST;
|
|
|
|
surface_anchor = GDK_GRAVITY_NORTH_EAST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_END:
|
|
|
|
parent_anchor = GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
surface_anchor = GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_FILL:
|
|
|
|
case GTK_ALIGN_CENTER:
|
|
|
|
case GTK_ALIGN_BASELINE:
|
|
|
|
default:
|
|
|
|
parent_anchor = GDK_GRAVITY_WEST;
|
|
|
|
surface_anchor = GDK_GRAVITY_EAST;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
anchor_hints = GDK_ANCHOR_FLIP_X | GDK_ANCHOR_SLIDE_Y;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_POS_RIGHT:
|
2019-09-05 19:29:19 +00:00
|
|
|
switch (gtk_widget_get_valign (GTK_WIDGET (popover)))
|
|
|
|
{
|
|
|
|
case GTK_ALIGN_START:
|
|
|
|
parent_anchor = GDK_GRAVITY_NORTH_EAST;
|
|
|
|
surface_anchor = GDK_GRAVITY_NORTH_WEST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_END:
|
|
|
|
parent_anchor = GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
surface_anchor = GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_FILL:
|
|
|
|
case GTK_ALIGN_CENTER:
|
|
|
|
case GTK_ALIGN_BASELINE:
|
|
|
|
default:
|
|
|
|
parent_anchor = GDK_GRAVITY_EAST;
|
|
|
|
surface_anchor = GDK_GRAVITY_WEST;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
anchor_hints = GDK_ANCHOR_FLIP_X | GDK_ANCHOR_SLIDE_Y;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_POS_TOP:
|
2019-06-08 03:14:02 +00:00
|
|
|
switch (gtk_widget_get_halign (GTK_WIDGET (popover)))
|
|
|
|
{
|
|
|
|
case GTK_ALIGN_START:
|
|
|
|
parent_anchor = GDK_GRAVITY_NORTH_WEST;
|
|
|
|
surface_anchor = GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_END:
|
|
|
|
parent_anchor = GDK_GRAVITY_NORTH_EAST;
|
|
|
|
surface_anchor = GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_FILL:
|
|
|
|
case GTK_ALIGN_CENTER:
|
|
|
|
case GTK_ALIGN_BASELINE:
|
|
|
|
default:
|
|
|
|
parent_anchor = GDK_GRAVITY_NORTH;
|
|
|
|
surface_anchor = GDK_GRAVITY_SOUTH;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
anchor_hints = GDK_ANCHOR_FLIP_Y | GDK_ANCHOR_SLIDE_X;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_POS_BOTTOM:
|
2019-06-08 03:14:02 +00:00
|
|
|
switch (gtk_widget_get_halign (GTK_WIDGET (popover)))
|
|
|
|
{
|
|
|
|
case GTK_ALIGN_START:
|
|
|
|
parent_anchor = GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
surface_anchor = GDK_GRAVITY_NORTH_WEST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_END:
|
|
|
|
parent_anchor = GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
surface_anchor = GDK_GRAVITY_NORTH_EAST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_ALIGN_FILL:
|
|
|
|
case GTK_ALIGN_CENTER:
|
|
|
|
case GTK_ALIGN_BASELINE:
|
|
|
|
default:
|
|
|
|
parent_anchor = GDK_GRAVITY_SOUTH;
|
|
|
|
surface_anchor = GDK_GRAVITY_NORTH;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
anchor_hints = GDK_ANCHOR_FLIP_Y | GDK_ANCHOR_SLIDE_X;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_surface_move_to_rect (priv->surface,
|
|
|
|
&rect,
|
|
|
|
parent_anchor,
|
|
|
|
surface_anchor,
|
|
|
|
anchor_hints,
|
|
|
|
0, 0);
|
2017-07-08 10:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_move_resize (GtkPopover *popover)
|
2017-07-08 10:04:44 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GtkRequisition req;
|
|
|
|
|
|
|
|
if (priv->surface)
|
|
|
|
{
|
|
|
|
gtk_widget_get_preferred_size (GTK_WIDGET (popover), NULL, &req);
|
|
|
|
gdk_surface_resize (priv->surface, req.width, req.height);
|
|
|
|
move_to_rect (popover);
|
|
|
|
}
|
2017-07-08 10:04:44 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_native_check_resize (GtkNative *native)
|
2018-06-07 11:32:31 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (native);
|
2018-06-07 11:32:31 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
2018-06-07 11:32:31 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (!_gtk_widget_get_alloc_needed (widget))
|
|
|
|
gtk_widget_ensure_allocate (widget);
|
|
|
|
else if (gtk_widget_get_visible (widget))
|
2018-06-07 11:32:31 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_move_resize (popover);
|
|
|
|
if (priv->surface)
|
|
|
|
gtk_widget_allocate (GTK_WIDGET (popover),
|
|
|
|
gdk_surface_get_width (priv->surface),
|
|
|
|
gdk_surface_get_height (priv->surface),
|
|
|
|
-1, NULL);
|
2018-06-07 11:32:31 +00:00
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
}
|
2018-06-07 11:32:31 +00:00
|
|
|
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_focus_in (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
}
|
2018-06-07 11:32:31 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_focus_out (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
}
|
2018-06-07 12:09:01 +00:00
|
|
|
|
2019-08-27 08:28:29 +00:00
|
|
|
static void
|
|
|
|
close_menu (GtkPopover *popover)
|
|
|
|
{
|
|
|
|
while (popover)
|
|
|
|
{
|
|
|
|
gtk_popover_popdown (popover);
|
|
|
|
if (GTK_IS_POPOVER_MENU (popover))
|
|
|
|
popover = (GtkPopover *)gtk_popover_menu_get_parent_menu (GTK_POPOVER_MENU (popover));
|
|
|
|
else
|
|
|
|
popover = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_popover_key_pressed (GtkWidget *widget,
|
|
|
|
guint keyval,
|
|
|
|
guint keycode,
|
|
|
|
GdkModifierType state)
|
|
|
|
{
|
|
|
|
if (keyval == GDK_KEY_Escape)
|
|
|
|
{
|
2019-08-27 08:28:29 +00:00
|
|
|
close_menu (GTK_POPOVER (widget));
|
2019-04-29 03:25:37 +00:00
|
|
|
return TRUE;
|
2018-06-07 11:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
surface_state_changed (GtkWidget *widget)
|
2018-06-07 11:32:31 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
2018-06-07 11:32:31 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
GdkSurfaceState new_surface_state;
|
|
|
|
GdkSurfaceState changed_mask;
|
2018-06-07 11:32:31 +00:00
|
|
|
|
2019-05-20 00:38:08 +00:00
|
|
|
new_surface_state = gdk_surface_get_state (priv->surface);
|
2019-04-29 03:25:37 +00:00
|
|
|
changed_mask = new_surface_state ^ priv->state;
|
|
|
|
priv->state = new_surface_state;
|
|
|
|
|
|
|
|
if (changed_mask & GDK_SURFACE_STATE_WITHDRAWN)
|
|
|
|
{
|
|
|
|
if (priv->state & GDK_SURFACE_STATE_WITHDRAWN)
|
|
|
|
gtk_widget_hide (widget);
|
|
|
|
}
|
2018-06-07 11:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-19 20:14:44 +00:00
|
|
|
surface_size_changed (GtkWidget *widget,
|
2019-04-29 03:25:37 +00:00
|
|
|
guint width,
|
|
|
|
guint height)
|
2018-06-07 11:32:31 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
}
|
2018-06-07 11:32:31 +00:00
|
|
|
|
2019-04-19 20:14:44 +00:00
|
|
|
static gboolean
|
|
|
|
surface_render (GdkSurface *surface,
|
|
|
|
cairo_region_t *region,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
gtk_widget_render (widget, surface, region);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
surface_event (GdkSurface *surface,
|
|
|
|
GdkEvent *event,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
gtk_main_do_event (event);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
static void
|
|
|
|
surface_moved_to_rect (GdkSurface *surface,
|
|
|
|
GdkRectangle *flipped_rect,
|
|
|
|
GdkRectangle *final_rect,
|
|
|
|
gboolean flipped_x,
|
|
|
|
gboolean flipped_y,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
priv->final_rect = *final_rect;
|
|
|
|
|
|
|
|
switch (priv->position)
|
|
|
|
{
|
|
|
|
case GTK_POS_LEFT:
|
|
|
|
priv->final_position = flipped_x ? GTK_POS_RIGHT : GTK_POS_LEFT;
|
|
|
|
break;
|
|
|
|
case GTK_POS_RIGHT:
|
|
|
|
priv->final_position = flipped_x ? GTK_POS_LEFT : GTK_POS_RIGHT;
|
|
|
|
break;
|
|
|
|
case GTK_POS_TOP:
|
|
|
|
priv->final_position = flipped_y ? GTK_POS_BOTTOM : GTK_POS_TOP;
|
|
|
|
break;
|
|
|
|
case GTK_POS_BOTTOM:
|
|
|
|
priv->final_position = flipped_y ? GTK_POS_TOP : GTK_POS_BOTTOM;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
measure_contents (GtkGizmo *gizmo,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
int for_size,
|
|
|
|
int *minimum,
|
|
|
|
int *natural,
|
|
|
|
int *minimum_baseline,
|
|
|
|
int *natural_baseline)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (gtk_widget_get_parent (GTK_WIDGET (gizmo)));
|
|
|
|
GtkWidget *child = gtk_bin_get_child (GTK_BIN (popover));
|
2018-06-07 11:32:31 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (child)
|
|
|
|
gtk_widget_measure (child, orientation, for_size,
|
|
|
|
minimum, natural,
|
|
|
|
minimum_baseline, natural_baseline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
allocate_contents (GtkGizmo *gizmo,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int baseline)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (gtk_widget_get_parent (GTK_WIDGET (gizmo)));
|
|
|
|
GtkWidget *child = gtk_bin_get_child (GTK_BIN (popover));
|
|
|
|
|
|
|
|
if (child)
|
|
|
|
gtk_widget_size_allocate (child,
|
|
|
|
&(GtkAllocation) { 0, 0, width, height
|
|
|
|
}, -1);
|
2018-06-07 11:32:31 +00:00
|
|
|
}
|
|
|
|
|
2019-04-28 17:07:05 +00:00
|
|
|
static void
|
2019-06-12 16:54:57 +00:00
|
|
|
gtk_popover_activate_default (GtkPopover *popover)
|
2019-04-28 17:07:05 +00:00
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GtkWidget *focus_widget;
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
focus_widget = gtk_window_get_focus (GTK_WINDOW (gtk_widget_get_root (priv->relative_to)));
|
|
|
|
if (!gtk_widget_is_ancestor (focus_widget, GTK_WIDGET (popover)))
|
|
|
|
focus_widget = NULL;
|
|
|
|
|
2019-04-28 17:07:05 +00:00
|
|
|
if (priv->default_widget && gtk_widget_is_sensitive (priv->default_widget) &&
|
2019-04-29 03:25:37 +00:00
|
|
|
(!focus_widget || !gtk_widget_get_receives_default (focus_widget)
|
|
|
|
))
|
2019-04-28 17:07:05 +00:00
|
|
|
gtk_widget_activate (priv->default_widget);
|
|
|
|
else if (focus_widget && gtk_widget_is_sensitive (focus_widget))
|
|
|
|
gtk_widget_activate (focus_widget);
|
|
|
|
}
|
|
|
|
|
2019-06-12 16:54:57 +00:00
|
|
|
static void
|
|
|
|
activate_default_cb (GSimpleAction *action,
|
|
|
|
GVariant *parameter,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gtk_popover_activate_default (GTK_POPOVER (data));
|
|
|
|
}
|
|
|
|
|
2019-04-28 17:07:05 +00:00
|
|
|
static void
|
|
|
|
add_actions (GtkPopover *popover)
|
|
|
|
{
|
|
|
|
GActionEntry entries[] = {
|
|
|
|
{ "activate", activate_default_cb, NULL, NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
GActionGroup *actions;
|
|
|
|
|
|
|
|
actions = G_ACTION_GROUP (g_simple_action_group_new ());
|
|
|
|
g_action_map_add_action_entries (G_ACTION_MAP (actions),
|
|
|
|
entries, G_N_ELEMENTS (entries),
|
|
|
|
popover);
|
|
|
|
gtk_widget_insert_action_group (GTK_WIDGET (popover), "default", actions);
|
|
|
|
g_object_unref (actions);
|
|
|
|
}
|
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
static void
|
|
|
|
node_style_changed_cb (GtkCssNode *node,
|
|
|
|
GtkCssStyleChange *change,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
2019-05-25 23:11:30 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (GTK_POPOVER (widget));
|
|
|
|
g_clear_pointer (&priv->arrow_render_node, gsk_render_node_unref);
|
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
if (gtk_css_style_change_affects (change, GTK_CSS_AFFECTS_SIZE))
|
|
|
|
gtk_widget_queue_resize (widget);
|
|
|
|
else
|
|
|
|
gtk_widget_queue_draw (widget);
|
|
|
|
}
|
|
|
|
|
2013-01-11 16:32:08 +00:00
|
|
|
static void
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_init (GtkPopover *popover)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-05 23:53:02 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
2018-06-07 11:32:31 +00:00
|
|
|
GtkEventController *controller;
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkStyleContext *context;
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-08-01 14:03:57 +00:00
|
|
|
priv->position = GTK_POS_BOTTOM;
|
|
|
|
priv->final_position = GTK_POS_BOTTOM;
|
2019-05-19 23:46:56 +00:00
|
|
|
priv->autohide = TRUE;
|
2019-05-22 00:42:07 +00:00
|
|
|
priv->has_arrow = TRUE;
|
2018-06-07 11:32:31 +00:00
|
|
|
|
|
|
|
controller = gtk_event_controller_key_new ();
|
2019-04-29 03:25:37 +00:00
|
|
|
g_signal_connect_swapped (controller, "focus-in", G_CALLBACK (gtk_popover_focus_in), popover);
|
|
|
|
g_signal_connect_swapped (controller, "focus-out", G_CALLBACK (gtk_popover_focus_out), popover);
|
|
|
|
g_signal_connect_swapped (controller, "key-pressed", G_CALLBACK (gtk_popover_key_pressed), popover);
|
|
|
|
gtk_widget_add_controller (GTK_WIDGET (popover), controller);
|
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
priv->arrow_node = gtk_css_node_new ();
|
|
|
|
gtk_css_node_set_name (priv->arrow_node, I_("arrow"));
|
|
|
|
gtk_css_node_set_parent (priv->arrow_node, gtk_widget_get_css_node (widget));
|
|
|
|
gtk_css_node_set_state (priv->arrow_node,
|
|
|
|
gtk_css_node_get_state (gtk_widget_get_css_node (widget)));
|
|
|
|
g_signal_connect_object (priv->arrow_node, "style-changed",
|
|
|
|
G_CALLBACK (node_style_changed_cb), popover, 0);
|
|
|
|
g_object_unref (priv->arrow_node);
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
priv->contents_widget = gtk_gizmo_new ("contents",
|
|
|
|
measure_contents,
|
|
|
|
allocate_contents,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
gtk_widget_set_parent (priv->contents_widget, GTK_WIDGET (popover));
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (popover));
|
|
|
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_BACKGROUND);
|
2019-04-28 17:07:05 +00:00
|
|
|
|
|
|
|
add_actions (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_realize (GtkWidget *widget)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GdkRectangle parent_rect;
|
|
|
|
GdkDisplay *display;
|
2019-05-20 00:38:08 +00:00
|
|
|
GdkSurface *parent;
|
2019-04-29 03:25:37 +00:00
|
|
|
|
|
|
|
gtk_widget_get_surface_allocation (priv->relative_to, &parent_rect);
|
|
|
|
|
|
|
|
display = gtk_widget_get_display (priv->relative_to);
|
|
|
|
|
2019-05-20 00:38:08 +00:00
|
|
|
parent = gtk_native_get_surface (gtk_widget_get_native (priv->relative_to));
|
|
|
|
priv->surface = gdk_surface_new_popup (display, parent, priv->autohide);
|
2019-04-29 03:25:37 +00:00
|
|
|
|
2019-04-19 20:14:44 +00:00
|
|
|
gdk_surface_set_widget (priv->surface, widget);
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_signal_connect_swapped (priv->surface, "notify::state", G_CALLBACK (surface_state_changed), widget);
|
|
|
|
g_signal_connect_swapped (priv->surface, "size-changed", G_CALLBACK (surface_size_changed), widget);
|
2019-04-19 20:14:44 +00:00
|
|
|
g_signal_connect (priv->surface, "render", G_CALLBACK (surface_render), widget);
|
|
|
|
g_signal_connect (priv->surface, "event", G_CALLBACK (surface_event), widget);
|
2019-05-05 23:53:02 +00:00
|
|
|
g_signal_connect (priv->surface, "moved-to-rect", G_CALLBACK (surface_moved_to_rect), widget);
|
2019-04-29 03:25:37 +00:00
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_popover_parent_class)->realize (widget);
|
|
|
|
|
|
|
|
priv->renderer = gsk_renderer_new_for_surface (priv->surface);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_unrealize (GtkWidget *widget)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_popover_parent_class)->unrealize (widget);
|
|
|
|
|
|
|
|
gsk_renderer_unrealize (priv->renderer);
|
|
|
|
g_clear_object (&priv->renderer);
|
|
|
|
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->surface, surface_state_changed, widget);
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->surface, surface_size_changed, widget);
|
2019-04-19 20:14:44 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (priv->surface, surface_render, widget);
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->surface, surface_event, widget);
|
2019-05-05 23:53:02 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (priv->surface, surface_moved_to_rect, widget);
|
2019-04-19 20:14:44 +00:00
|
|
|
gdk_surface_set_widget (priv->surface, NULL);
|
2019-05-17 21:25:36 +00:00
|
|
|
gdk_surface_destroy (priv->surface);
|
2019-04-29 03:25:37 +00:00
|
|
|
g_clear_object (&priv->surface);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_move_focus (GtkWidget *widget,
|
2019-06-13 00:11:32 +00:00
|
|
|
GtkDirectionType direction)
|
2015-01-09 15:10:29 +00:00
|
|
|
{
|
2019-06-13 00:11:32 +00:00
|
|
|
g_signal_emit_by_name (gtk_widget_get_root (widget), "move-focus", direction);
|
2015-01-09 15:10:29 +00:00
|
|
|
}
|
|
|
|
|
2016-08-10 16:28:14 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_show (GtkWidget *widget)
|
2016-08-10 16:28:14 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
2016-08-10 16:28:14 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
_gtk_widget_set_visible_flag (widget, TRUE);
|
|
|
|
gtk_css_node_validate (gtk_widget_get_css_node (widget));
|
|
|
|
gtk_widget_realize (widget);
|
|
|
|
gtk_popover_native_check_resize (GTK_NATIVE (widget));
|
|
|
|
gtk_widget_map (widget);
|
2016-08-10 16:28:14 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
if (priv->autohide)
|
2016-08-10 16:28:14 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
if (!gtk_widget_get_focus_child (widget))
|
|
|
|
gtk_widget_child_focus (widget, GTK_DIR_TAB_FORWARD);
|
2016-08-10 16:28:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-11 16:32:08 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_hide (GtkWidget *widget)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
_gtk_widget_set_visible_flag (widget, FALSE);
|
|
|
|
gtk_widget_unmap (widget);
|
|
|
|
g_signal_emit (widget, signals[CLOSED], 0);
|
|
|
|
}
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2014-12-02 14:44:04 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
unset_surface_transform_changed_cb (gpointer data)
|
2014-12-02 14:44:04 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = data;
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2014-12-02 14:44:04 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
priv->surface_transform_changed_cb = 0;
|
|
|
|
}
|
2014-12-02 14:44:04 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static gboolean
|
|
|
|
surface_transform_changed_cb (GtkWidget *widget,
|
|
|
|
const graphene_matrix_t *transform,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2019-07-13 15:06:22 +00:00
|
|
|
GtkPopover *popover = user_data;
|
2019-05-25 23:11:30 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
move_to_rect (popover);
|
|
|
|
g_clear_pointer (&priv->arrow_render_node, gsk_render_node_unref);
|
2014-12-02 14:44:04 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return G_SOURCE_CONTINUE;
|
2014-12-02 14:44:04 +00:00
|
|
|
}
|
|
|
|
|
2013-11-11 09:36:51 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_map (GtkWidget *widget)
|
2013-11-11 09:36:51 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *child;
|
|
|
|
GdkRectangle parent_rect;
|
2013-11-11 09:36:51 +00:00
|
|
|
|
2019-04-22 21:33:26 +00:00
|
|
|
gdk_surface_show (priv->surface);
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_widget_get_surface_allocation (priv->relative_to, &parent_rect);
|
|
|
|
move_to_rect (popover);
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
priv->surface_transform_changed_cb =
|
|
|
|
gtk_widget_add_surface_transform_changed_callback (priv->relative_to,
|
|
|
|
surface_transform_changed_cb,
|
|
|
|
popover,
|
|
|
|
unset_surface_transform_changed_cb);
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_popover_parent_class)->map (widget);
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
child = gtk_bin_get_child (GTK_BIN (widget));
|
|
|
|
if (child != NULL && gtk_widget_get_visible (child))
|
|
|
|
gtk_widget_map (child);
|
2013-11-11 09:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_unmap (GtkWidget *widget)
|
2015-01-09 15:10:29 +00:00
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *child;
|
2014-01-10 14:23:12 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_widget_remove_surface_transform_changed_callback (priv->relative_to,
|
|
|
|
priv->surface_transform_changed_cb);
|
|
|
|
priv->surface_transform_changed_cb = 0;
|
2014-01-10 14:23:12 +00:00
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_popover_parent_class)->unmap (widget);
|
2019-04-29 03:25:37 +00:00
|
|
|
gdk_surface_hide (priv->surface);
|
2014-01-22 15:45:01 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
child = gtk_bin_get_child (GTK_BIN (widget));
|
|
|
|
if (child != NULL)
|
|
|
|
gtk_widget_unmap (child);
|
2017-07-08 10:04:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 16:28:34 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_dispose (GObject *object)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (object);
|
2017-07-08 10:04:44 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *child;
|
2013-01-15 16:32:42 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
child = gtk_bin_get_child (GTK_BIN (popover));
|
2013-03-05 16:13:54 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (child)
|
|
|
|
{
|
|
|
|
gtk_widget_unparent (child);
|
|
|
|
_gtk_bin_set_child (GTK_BIN (popover), NULL);
|
2013-03-05 16:13:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_clear_pointer (&priv->contents_widget, gtk_widget_unparent);
|
2019-05-25 23:11:30 +00:00
|
|
|
g_clear_pointer (&priv->arrow_render_node, gsk_render_node_unref);
|
2013-01-15 16:32:42 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
G_OBJECT_CLASS (gtk_popover_parent_class)->dispose (object);
|
2013-03-05 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_finalize (GObject *object)
|
2014-01-28 15:02:47 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
G_OBJECT_CLASS (gtk_popover_parent_class)->finalize (object);
|
2014-01-28 15:02:47 +00:00
|
|
|
}
|
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_get_gap_coords (GtkPopover *popover,
|
|
|
|
gint *initial_x_out,
|
|
|
|
gint *initial_y_out,
|
|
|
|
gint *tip_x_out,
|
|
|
|
gint *tip_y_out,
|
|
|
|
gint *final_x_out,
|
|
|
|
gint *final_y_out)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GdkRectangle rect = { 0 };
|
|
|
|
gint base, tip, tip_pos;
|
|
|
|
gint initial_x, initial_y;
|
|
|
|
gint tip_x, tip_y;
|
|
|
|
gint final_x, final_y;
|
|
|
|
GtkPositionType pos;
|
|
|
|
gint border_radius;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkBorder border;
|
|
|
|
int popover_width, popover_height;
|
|
|
|
|
|
|
|
popover_width = gtk_widget_get_allocated_width (widget);
|
|
|
|
popover_height = gtk_widget_get_allocated_height (widget);
|
|
|
|
|
|
|
|
gtk_widget_get_surface_allocation (priv->relative_to, &rect);
|
|
|
|
if (priv->has_pointing_to)
|
|
|
|
{
|
|
|
|
rect.x += priv->pointing_to.x;
|
|
|
|
rect.y += priv->pointing_to.y;
|
|
|
|
rect.width = priv->pointing_to.width;
|
|
|
|
rect.height = priv->pointing_to.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
rect.x -= priv->final_rect.x;
|
|
|
|
rect.y -= priv->final_rect.y;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (priv->contents_widget);
|
|
|
|
|
|
|
|
pos = priv->final_position;
|
|
|
|
|
|
|
|
gtk_style_context_get_border (context, &border);
|
|
|
|
gtk_style_context_get (context,
|
|
|
|
GTK_STYLE_PROPERTY_BORDER_RADIUS, &border_radius,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (pos == GTK_POS_BOTTOM || pos == GTK_POS_RIGHT)
|
|
|
|
{
|
|
|
|
tip = 0;
|
|
|
|
base = TAIL_HEIGHT + border.top;
|
|
|
|
}
|
|
|
|
else if (pos == GTK_POS_TOP)
|
|
|
|
{
|
|
|
|
base = popover_height - border.bottom - TAIL_HEIGHT;
|
|
|
|
tip = popover_height;
|
|
|
|
}
|
|
|
|
else if (pos == GTK_POS_LEFT)
|
|
|
|
{
|
|
|
|
base = popover_width - border.right - TAIL_HEIGHT;
|
|
|
|
tip = popover_width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
|
|
|
if (POS_IS_VERTICAL (pos))
|
|
|
|
{
|
|
|
|
tip_pos = rect.x + (rect.width / 2);
|
|
|
|
initial_x = CLAMP (tip_pos - TAIL_GAP_WIDTH / 2,
|
|
|
|
border_radius,
|
|
|
|
popover_width - TAIL_GAP_WIDTH - border_radius);
|
|
|
|
initial_y = base;
|
|
|
|
|
|
|
|
tip_x = CLAMP (tip_pos, 0, popover_width);
|
|
|
|
tip_y = tip;
|
|
|
|
|
|
|
|
final_x = CLAMP (tip_pos + TAIL_GAP_WIDTH / 2,
|
|
|
|
border_radius + TAIL_GAP_WIDTH,
|
|
|
|
popover_width - border_radius);
|
|
|
|
final_y = base;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tip_pos = rect.y + (rect.height / 2);
|
|
|
|
|
|
|
|
initial_x = base;
|
|
|
|
initial_y = CLAMP (tip_pos - TAIL_GAP_WIDTH / 2,
|
|
|
|
border_radius,
|
|
|
|
popover_height - TAIL_GAP_WIDTH - border_radius);
|
|
|
|
|
|
|
|
tip_x = tip;
|
|
|
|
tip_y = CLAMP (tip_pos, 0, popover_height);
|
|
|
|
|
|
|
|
final_x = base;
|
|
|
|
final_y = CLAMP (tip_pos + TAIL_GAP_WIDTH / 2,
|
|
|
|
border_radius + TAIL_GAP_WIDTH,
|
|
|
|
popover_height - border_radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
*initial_x_out = initial_x;
|
|
|
|
*initial_y_out = initial_y;
|
|
|
|
|
|
|
|
*tip_x_out = tip_x;
|
|
|
|
*tip_y_out = tip_y;
|
|
|
|
|
|
|
|
*final_x_out = final_x;
|
|
|
|
*final_y_out = final_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_margin (GtkWidget *widget,
|
|
|
|
GtkBorder *border)
|
|
|
|
{
|
|
|
|
GtkStyleContext *context;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
gtk_style_context_get_margin (context, border);
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
gtk_popover_get_rect_for_size (GtkPopover *popover,
|
|
|
|
int popover_width,
|
|
|
|
int popover_height,
|
|
|
|
GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
int x, y, w, h;
|
|
|
|
GtkBorder margin;
|
|
|
|
|
|
|
|
get_margin (widget, &margin);
|
|
|
|
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
w = popover_width;
|
|
|
|
h = popover_height;
|
|
|
|
|
|
|
|
x += MAX (TAIL_HEIGHT, margin.left);
|
|
|
|
y += MAX (TAIL_HEIGHT, margin.top);
|
|
|
|
w -= x + MAX (TAIL_HEIGHT, margin.right);
|
|
|
|
h -= y + MAX (TAIL_HEIGHT, margin.bottom);
|
|
|
|
|
|
|
|
rect->x = x;
|
|
|
|
rect->y = y;
|
|
|
|
rect->width = w;
|
|
|
|
rect->height = h;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_popover_get_rect_coords (GtkPopover *popover,
|
|
|
|
int *x_out,
|
|
|
|
int *y_out,
|
|
|
|
int *w_out,
|
|
|
|
int *h_out)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
GdkRectangle rect;
|
|
|
|
GtkAllocation allocation;
|
|
|
|
|
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
|
|
|
gtk_popover_get_rect_for_size (popover, allocation.width, allocation.height, &rect);
|
|
|
|
|
|
|
|
*x_out = rect.x;
|
|
|
|
*y_out = rect.y;
|
|
|
|
*w_out = rect.width;
|
|
|
|
*h_out = rect.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_popover_apply_tail_path (GtkPopover *popover,
|
|
|
|
cairo_t *cr)
|
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
gint initial_x, initial_y;
|
|
|
|
gint tip_x, tip_y;
|
|
|
|
gint final_x, final_y;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkBorder border;
|
|
|
|
|
|
|
|
if (!priv->relative_to)
|
|
|
|
return;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (priv->contents_widget);
|
|
|
|
gtk_style_context_get_border (context, &border);
|
|
|
|
|
|
|
|
cairo_set_line_width (cr, 1);
|
|
|
|
gtk_popover_get_gap_coords (popover,
|
|
|
|
&initial_x, &initial_y,
|
|
|
|
&tip_x, &tip_y,
|
|
|
|
&final_x, &final_y);
|
|
|
|
|
|
|
|
cairo_move_to (cr, initial_x, initial_y);
|
|
|
|
cairo_line_to (cr, tip_x, tip_y);
|
|
|
|
cairo_line_to (cr, final_x, final_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_popover_fill_border_path (GtkPopover *popover,
|
|
|
|
cairo_t *cr)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
GtkAllocation allocation;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
int x, y, w, h;
|
|
|
|
GskRoundedRect box;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
|
|
|
|
|
|
|
cairo_set_source_rgba (cr, 0, 0, 0, 1);
|
|
|
|
|
|
|
|
gtk_popover_apply_tail_path (popover, cr);
|
|
|
|
cairo_close_path (cr);
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
|
|
gtk_popover_get_rect_coords (popover, &x, &y, &w, &h);
|
|
|
|
|
|
|
|
gtk_rounded_boxes_init_for_style (&box,
|
|
|
|
NULL, NULL,
|
|
|
|
gtk_style_context_lookup_style (context),
|
|
|
|
x, y, w, h);
|
|
|
|
gsk_rounded_rect_path (&box, cr);
|
|
|
|
cairo_fill (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_popover_update_shape (GtkPopover *popover)
|
|
|
|
{
|
2019-05-20 00:38:08 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-05 23:53:02 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
if (priv->has_arrow)
|
|
|
|
{
|
|
|
|
|
|
|
|
cairo_surface_t *cairo_surface;
|
|
|
|
cairo_region_t *region;
|
|
|
|
cairo_t *cr;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
cairo_surface =
|
|
|
|
gdk_surface_create_similar_surface (priv->surface,
|
|
|
|
CAIRO_CONTENT_COLOR_ALPHA,
|
|
|
|
gdk_surface_get_width (priv->surface),
|
|
|
|
gdk_surface_get_height (priv->surface));
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
cr = cairo_create (cairo_surface);
|
|
|
|
gtk_popover_fill_border_path (popover, cr);
|
|
|
|
cairo_destroy (cr);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
region = gdk_cairo_region_create_from_surface (cairo_surface);
|
|
|
|
cairo_surface_destroy (cairo_surface);
|
|
|
|
|
|
|
|
gtk_widget_input_shape_combine_region (widget, region);
|
|
|
|
cairo_region_destroy (region);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gtk_widget_input_shape_combine_region (widget, NULL);
|
2019-05-05 23:53:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
get_border_radius (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkStyleContext *context;
|
|
|
|
gint border_radius;
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
gtk_style_context_get (context,
|
|
|
|
GTK_STYLE_PROPERTY_BORDER_RADIUS, &border_radius,
|
|
|
|
NULL);
|
|
|
|
return border_radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
get_minimal_size (GtkPopover *popover,
|
|
|
|
GtkOrientation orientation)
|
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
GtkPositionType pos;
|
|
|
|
gint minimal_size;
|
2019-05-22 00:42:07 +00:00
|
|
|
int tail_gap_width = priv->has_arrow ? TAIL_GAP_WIDTH : 0;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
minimal_size = 2 * get_border_radius (GTK_WIDGET (popover));
|
|
|
|
pos = priv->position;
|
|
|
|
|
|
|
|
if ((orientation == GTK_ORIENTATION_HORIZONTAL && POS_IS_VERTICAL (pos)) ||
|
|
|
|
(orientation == GTK_ORIENTATION_VERTICAL && !POS_IS_VERTICAL (pos)))
|
2019-05-22 00:42:07 +00:00
|
|
|
minimal_size += tail_gap_width;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
return minimal_size;
|
|
|
|
}
|
|
|
|
|
2013-01-11 16:32:08 +00:00
|
|
|
static void
|
2016-10-22 14:06:14 +00:00
|
|
|
gtk_popover_measure (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
int for_size,
|
|
|
|
int *minimum,
|
|
|
|
int *natural,
|
|
|
|
int *minimum_baseline,
|
|
|
|
int *natural_baseline)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2014-02-09 06:22:07 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
2017-07-08 10:04:44 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-05 23:53:02 +00:00
|
|
|
int minimal_size;
|
2019-05-22 00:42:07 +00:00
|
|
|
int tail_height = priv->has_arrow ? TAIL_HEIGHT : 0;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
if (for_size >= 0)
|
2019-05-22 00:42:07 +00:00
|
|
|
for_size -= tail_height;
|
2014-01-10 22:43:42 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_widget_measure (priv->contents_widget,
|
|
|
|
orientation, for_size,
|
|
|
|
minimum, natural,
|
|
|
|
minimum_baseline, natural_baseline);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
minimal_size = get_minimal_size (popover, orientation);
|
|
|
|
*minimum = MAX (*minimum, minimal_size);
|
|
|
|
*natural = MAX (*natural, minimal_size);
|
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
*minimum += tail_height;
|
|
|
|
*natural += tail_height;
|
2015-10-12 22:21:43 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 16:32:08 +00:00
|
|
|
static void
|
2018-08-16 04:53:03 +00:00
|
|
|
gtk_popover_size_allocate (GtkWidget *widget,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int baseline)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2014-02-09 06:22:07 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
2017-07-08 10:04:44 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-05 23:53:02 +00:00
|
|
|
GtkAllocation child_alloc;
|
2019-05-22 00:42:07 +00:00
|
|
|
int tail_height = priv->has_arrow ? TAIL_HEIGHT : 0;
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-07-21 13:38:13 +00:00
|
|
|
gtk_popover_move_resize (popover);
|
2017-07-08 10:04:44 +00:00
|
|
|
|
2019-05-05 23:53:02 +00:00
|
|
|
switch (priv->final_position)
|
|
|
|
{
|
|
|
|
case GTK_POS_TOP:
|
2019-05-22 00:42:07 +00:00
|
|
|
child_alloc.x = tail_height / 2;
|
2019-05-05 23:53:02 +00:00
|
|
|
child_alloc.y = 0;
|
|
|
|
break;
|
|
|
|
case GTK_POS_BOTTOM:
|
2019-05-22 00:42:07 +00:00
|
|
|
child_alloc.x = tail_height / 2;
|
|
|
|
child_alloc.y = tail_height;
|
2019-05-05 23:53:02 +00:00
|
|
|
break;
|
|
|
|
case GTK_POS_LEFT:
|
|
|
|
child_alloc.x = 0;
|
2019-05-22 00:42:07 +00:00
|
|
|
child_alloc.y = tail_height / 2;
|
2019-05-05 23:53:02 +00:00
|
|
|
break;
|
|
|
|
case GTK_POS_RIGHT:
|
2019-05-22 00:42:07 +00:00
|
|
|
child_alloc.x = tail_height;
|
|
|
|
child_alloc.y = tail_height / 2;
|
2019-05-05 23:53:02 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
child_alloc.width = width - tail_height;
|
|
|
|
child_alloc.height = height - tail_height;
|
2019-05-05 23:53:02 +00:00
|
|
|
|
|
|
|
gtk_widget_size_allocate (priv->contents_widget, &child_alloc, baseline);
|
|
|
|
|
|
|
|
if (priv->surface)
|
2019-05-25 23:11:30 +00:00
|
|
|
{
|
|
|
|
gtk_popover_update_shape (popover);
|
|
|
|
g_clear_pointer (&priv->arrow_render_node, gsk_render_node_unref);
|
|
|
|
}
|
2016-10-29 17:43:49 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 11:53:29 +00:00
|
|
|
static void
|
2019-05-25 23:11:30 +00:00
|
|
|
create_arrow_render_node (GtkPopover *popover)
|
2014-01-09 11:53:29 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-25 23:11:30 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (popover);
|
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkBorder border;
|
|
|
|
cairo_t *cr;
|
|
|
|
GtkSnapshot *snapshot;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
snapshot = gtk_snapshot_new ();
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
cr = gtk_snapshot_append_cairo (snapshot,
|
|
|
|
&GRAPHENE_RECT_INIT (
|
|
|
|
0, 0,
|
|
|
|
gtk_widget_get_width (widget),
|
|
|
|
gtk_widget_get_height (widget)
|
|
|
|
));
|
|
|
|
|
|
|
|
/* Clip to the arrow shape */
|
|
|
|
cairo_save (cr);
|
|
|
|
gtk_popover_apply_tail_path (popover, cr);
|
|
|
|
cairo_clip (cr);
|
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
gtk_style_context_save_to_node (context, priv->arrow_node);
|
|
|
|
gtk_style_context_get_border (context, &border);
|
2019-05-22 00:42:07 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
/* Render the arrow background */
|
|
|
|
gtk_render_background (context, cr,
|
|
|
|
0, 0,
|
|
|
|
gtk_widget_get_width (widget),
|
|
|
|
gtk_widget_get_height (widget));
|
2019-05-22 00:42:07 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
/* Render the border of the arrow tip */
|
|
|
|
if (border.bottom > 0)
|
|
|
|
{
|
|
|
|
GdkRGBA *border_color;
|
|
|
|
|
|
|
|
gtk_style_context_get (context, "border-color", &border_color, NULL);
|
2019-05-22 00:42:07 +00:00
|
|
|
gtk_popover_apply_tail_path (popover, cr);
|
2019-05-25 23:11:30 +00:00
|
|
|
gdk_cairo_set_source_rgba (cr, border_color);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
cairo_set_line_width (cr, border.bottom + 1);
|
|
|
|
cairo_stroke (cr);
|
|
|
|
gdk_rgba_free (border_color);
|
|
|
|
}
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
cairo_restore (cr);
|
|
|
|
cairo_destroy (cr);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
gtk_style_context_restore (context);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
priv->arrow_render_node = gtk_snapshot_free_to_node (snapshot);
|
|
|
|
}
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_snapshot (GtkWidget *widget,
|
|
|
|
GtkSnapshot *snapshot)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (widget);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2019-05-05 23:53:02 +00:00
|
|
|
|
2019-05-25 23:11:30 +00:00
|
|
|
gtk_widget_snapshot_child (widget, priv->contents_widget, snapshot);
|
|
|
|
|
|
|
|
if (priv->has_arrow)
|
|
|
|
{
|
|
|
|
if (!priv->arrow_render_node)
|
|
|
|
create_arrow_render_node (popover);
|
|
|
|
|
|
|
|
gtk_snapshot_append_node (snapshot, priv->arrow_render_node);
|
2019-05-05 23:53:02 +00:00
|
|
|
}
|
2014-01-09 11:53:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 15:10:29 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2015-01-09 15:10:29 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (object);
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_RELATIVE_TO:
|
|
|
|
gtk_popover_set_relative_to (popover, g_value_get_object (value));
|
|
|
|
break;
|
2015-10-22 16:13:19 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
case PROP_POINTING_TO:
|
|
|
|
gtk_popover_set_pointing_to (popover, g_value_get_boxed (value));
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
case PROP_POSITION:
|
|
|
|
gtk_popover_set_position (popover, g_value_get_enum (value));
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
case PROP_AUTOHIDE:
|
|
|
|
gtk_popover_set_autohide (popover, g_value_get_boolean (value));
|
2019-04-29 03:25:37 +00:00
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
case PROP_DEFAULT_WIDGET:
|
|
|
|
gtk_popover_set_default_widget (popover, g_value_get_object (value));
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
case PROP_HAS_ARROW:
|
|
|
|
gtk_popover_set_has_arrow (popover, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2015-01-09 15:10:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2015-01-09 15:10:29 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopover *popover = GTK_POPOVER (object);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_RELATIVE_TO:
|
|
|
|
g_value_set_object (value, priv->relative_to);
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
case PROP_POINTING_TO:
|
|
|
|
g_value_set_boxed (value, &priv->pointing_to);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_POSITION:
|
|
|
|
g_value_set_enum (value, priv->position);
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
case PROP_AUTOHIDE:
|
|
|
|
g_value_set_boolean (value, priv->autohide);
|
2019-04-29 03:25:37 +00:00
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
case PROP_DEFAULT_WIDGET:
|
|
|
|
g_value_set_object (value, priv->default_widget);
|
|
|
|
break;
|
2015-01-09 15:10:29 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
case PROP_HAS_ARROW:
|
|
|
|
g_value_set_boolean (value, priv->has_arrow);
|
|
|
|
break;
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2015-01-09 15:10:29 +00:00
|
|
|
}
|
2014-01-09 11:53:29 +00:00
|
|
|
|
2017-07-08 10:04:44 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_add (GtkContainer *container,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (container);
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
_gtk_bin_set_child (GTK_BIN (popover), child);
|
|
|
|
gtk_widget_set_parent (child, priv->contents_widget);
|
|
|
|
}
|
2019-04-29 03:25:37 +00:00
|
|
|
|
2017-07-08 10:04:44 +00:00
|
|
|
static void
|
|
|
|
gtk_popover_remove (GtkContainer *container,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
GtkPopover *popover = GTK_POPOVER (container);
|
|
|
|
|
|
|
|
_gtk_bin_set_child (GTK_BIN (popover), NULL);
|
|
|
|
gtk_widget_unparent (child);
|
|
|
|
}
|
|
|
|
|
2013-01-11 16:32:08 +00:00
|
|
|
static void
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_class_init (GtkPopoverClass *klass)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2017-07-08 10:04:44 +00:00
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
object_class->dispose = gtk_popover_dispose;
|
|
|
|
object_class->finalize = gtk_popover_finalize;
|
2013-11-12 15:55:23 +00:00
|
|
|
object_class->set_property = gtk_popover_set_property;
|
|
|
|
object_class->get_property = gtk_popover_get_property;
|
|
|
|
|
|
|
|
widget_class->realize = gtk_popover_realize;
|
2019-04-29 03:25:37 +00:00
|
|
|
widget_class->unrealize = gtk_popover_unrealize;
|
2013-11-12 15:55:23 +00:00
|
|
|
widget_class->map = gtk_popover_map;
|
|
|
|
widget_class->unmap = gtk_popover_unmap;
|
2019-04-29 03:25:37 +00:00
|
|
|
widget_class->show = gtk_popover_show;
|
|
|
|
widget_class->hide = gtk_popover_hide;
|
2016-10-22 14:06:14 +00:00
|
|
|
widget_class->measure = gtk_popover_measure;
|
2013-11-12 15:55:23 +00:00
|
|
|
widget_class->size_allocate = gtk_popover_size_allocate;
|
2016-11-15 16:28:34 +00:00
|
|
|
widget_class->snapshot = gtk_popover_snapshot;
|
2019-04-29 03:25:37 +00:00
|
|
|
widget_class->move_focus = gtk_popover_move_focus;
|
2017-07-08 10:04:44 +00:00
|
|
|
|
|
|
|
container_class->add = gtk_popover_add;
|
|
|
|
container_class->remove = gtk_popover_remove;
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-06-12 16:54:57 +00:00
|
|
|
klass->activate_default = gtk_popover_activate_default;
|
|
|
|
|
2015-12-02 06:03:35 +00:00
|
|
|
properties[PROP_RELATIVE_TO] =
|
|
|
|
g_param_spec_object ("relative-to",
|
|
|
|
P_("Relative to"),
|
|
|
|
P_("Widget the bubble window points to"),
|
|
|
|
GTK_TYPE_WIDGET,
|
|
|
|
GTK_PARAM_READWRITE);
|
|
|
|
|
|
|
|
properties[PROP_POINTING_TO] =
|
|
|
|
g_param_spec_boxed ("pointing-to",
|
|
|
|
P_("Pointing to"),
|
|
|
|
P_("Rectangle the bubble window points to"),
|
|
|
|
GDK_TYPE_RECTANGLE,
|
|
|
|
GTK_PARAM_READWRITE);
|
|
|
|
|
|
|
|
properties[PROP_POSITION] =
|
|
|
|
g_param_spec_enum ("position",
|
2019-04-29 03:25:37 +00:00
|
|
|
P_("Position"),
|
|
|
|
P_("Position to place the bubble window"),
|
2019-08-01 14:03:57 +00:00
|
|
|
GTK_TYPE_POSITION_TYPE, GTK_POS_BOTTOM,
|
2019-04-29 03:25:37 +00:00
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2015-02-05 13:17:51 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
properties[PROP_AUTOHIDE] =
|
|
|
|
g_param_spec_boolean ("autohide",
|
|
|
|
P_("Autohide"),
|
2019-08-29 12:50:20 +00:00
|
|
|
P_("Whether to dismiss the popover on outside clicks"),
|
2019-04-29 03:25:37 +00:00
|
|
|
TRUE,
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2014-01-22 15:43:37 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
properties[PROP_DEFAULT_WIDGET] =
|
|
|
|
g_param_spec_object ("default-widget",
|
|
|
|
P_("Default widget"),
|
|
|
|
P_("The default widget"),
|
|
|
|
GTK_TYPE_WIDGET,
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_STATIC_STRINGS|G_PARAM_EXPLICIT_NOTIFY);
|
2014-01-22 15:43:37 +00:00
|
|
|
|
2019-05-22 00:42:07 +00:00
|
|
|
properties[PROP_HAS_ARROW] =
|
|
|
|
g_param_spec_boolean ("has-arrow",
|
|
|
|
P_("Has Arrow"),
|
|
|
|
P_("Whether to draw an arrow"),
|
|
|
|
TRUE,
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_object_class_install_properties (object_class, NUM_PROPERTIES, properties);
|
2014-01-22 15:43:37 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
signals[CLOSED] =
|
|
|
|
g_signal_new (I_("closed"),
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkPopoverClass, closed),
|
|
|
|
NULL, NULL,
|
|
|
|
NULL,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
0);
|
2019-06-12 16:54:57 +00:00
|
|
|
|
|
|
|
signals[ACTIVATE_DEFAULT] =
|
|
|
|
g_signal_new (I_("activate-default"),
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
|
|
|
G_STRUCT_OFFSET (GtkPopoverClass, activate_default),
|
|
|
|
NULL, NULL,
|
|
|
|
NULL,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
0);
|
2014-01-22 15:43:37 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_widget_class_set_css_name (widget_class, "popover");
|
2014-01-22 15:43:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkWidget *
|
|
|
|
gtk_popover_new (GtkWidget *relative_to)
|
2014-01-22 15:43:37 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
return GTK_WIDGET (g_object_new (GTK_TYPE_POPOVER,
|
|
|
|
"relative-to", relative_to,
|
|
|
|
NULL));
|
2014-01-22 15:43:37 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 17:53:10 +00:00
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
size_changed (GtkWidget *widget,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int baseline,
|
|
|
|
GtkPopover *popover)
|
2016-09-28 17:53:10 +00:00
|
|
|
{
|
2019-07-21 13:38:13 +00:00
|
|
|
gtk_popover_move_resize (popover);
|
2019-04-29 03:25:37 +00:00
|
|
|
}
|
2016-09-28 17:53:10 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
void
|
|
|
|
gtk_popover_set_default_widget (GtkPopover *popover,
|
|
|
|
GtkWidget *widget)
|
2013-11-12 15:55:23 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
2014-01-22 15:43:37 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (priv->default_widget == widget)
|
|
|
|
return;
|
2013-11-11 09:36:51 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (priv->default_widget)
|
2013-11-13 09:47:13 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
_gtk_widget_set_has_default (priv->default_widget, FALSE);
|
|
|
|
gtk_widget_queue_draw (priv->default_widget);
|
|
|
|
g_object_notify (G_OBJECT (priv->default_widget), "has-default");
|
2013-11-13 09:47:13 +00:00
|
|
|
}
|
2013-11-11 09:36:51 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_set_object (&priv->default_widget, widget);
|
2013-11-12 11:56:40 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (priv->default_widget)
|
2013-11-12 11:56:40 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
_gtk_widget_set_has_default (priv->default_widget, TRUE);
|
|
|
|
gtk_widget_queue_draw (priv->default_widget);
|
|
|
|
g_object_notify (G_OBJECT (priv->default_widget), "has-default");
|
2013-11-12 11:56:40 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_DEFAULT_WIDGET]);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_native_interface_init (GtkNativeInterface *iface)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
iface->get_surface = gtk_popover_native_get_surface;
|
|
|
|
iface->get_renderer = gtk_popover_native_get_renderer;
|
|
|
|
iface->get_surface_transform = gtk_popover_native_get_surface_transform;
|
|
|
|
iface->check_resize = gtk_popover_native_check_resize;
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_set_relative_to:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
2014-03-17 23:13:53 +00:00
|
|
|
* @relative_to: (allow-none): a #GtkWidget
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* Sets a new widget to be attached to @popover. If @popover is
|
|
|
|
* visible, the position will be updated.
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2014-02-18 13:38:30 +00:00
|
|
|
* Note: the ownership of popovers is always given to their @relative_to
|
|
|
|
* widget, so if @relative_to is set to %NULL on an attached @popover, it
|
|
|
|
* will be detached from its previous widget, and consequently destroyed
|
|
|
|
* unless extra references are kept.
|
2013-11-13 14:11:21 +00:00
|
|
|
**/
|
2013-01-11 16:32:08 +00:00
|
|
|
void
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_set_relative_to (GtkPopover *popover,
|
|
|
|
GtkWidget *relative_to)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_object_ref (popover);
|
|
|
|
|
|
|
|
if (priv->relative_to)
|
|
|
|
{
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->relative_to, size_changed, popover);
|
|
|
|
gtk_widget_unparent (GTK_WIDGET (popover));
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->relative_to = relative_to;
|
|
|
|
|
|
|
|
if (priv->relative_to)
|
|
|
|
{
|
|
|
|
g_signal_connect (priv->relative_to, "size-allocate", G_CALLBACK (size_changed), popover);
|
|
|
|
gtk_css_node_set_parent (gtk_widget_get_css_node (GTK_WIDGET (popover)),
|
|
|
|
gtk_widget_get_css_node (relative_to));
|
|
|
|
gtk_widget_set_parent (GTK_WIDGET (popover), relative_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_RELATIVE_TO]);
|
2014-02-18 13:38:30 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
g_object_unref (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_get_relative_to:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2014-02-18 03:30:58 +00:00
|
|
|
* Returns the widget @popover is currently attached to
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2014-01-22 15:27:44 +00:00
|
|
|
* Returns: (transfer none): a #GtkWidget
|
2013-11-13 14:11:21 +00:00
|
|
|
**/
|
2013-11-11 13:27:19 +00:00
|
|
|
GtkWidget *
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_get_relative_to (GtkPopover *popover)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_POPOVER (popover), NULL);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return priv->relative_to;
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_set_pointing_to:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
2013-01-11 16:32:08 +00:00
|
|
|
* @rect: rectangle to point to
|
|
|
|
*
|
2014-02-18 03:37:55 +00:00
|
|
|
* Sets the rectangle that @popover will point to, in the
|
|
|
|
* coordinate space of the widget @popover is attached to,
|
|
|
|
* see gtk_popover_set_relative_to().
|
2013-11-13 14:11:21 +00:00
|
|
|
**/
|
2013-01-11 16:32:08 +00:00
|
|
|
void
|
2014-02-09 03:18:15 +00:00
|
|
|
gtk_popover_set_pointing_to (GtkPopover *popover,
|
2014-02-04 21:33:25 +00:00
|
|
|
const GdkRectangle *rect)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (rect)
|
|
|
|
{
|
|
|
|
priv->pointing_to = *rect;
|
|
|
|
priv->has_pointing_to = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
priv->has_pointing_to = FALSE;
|
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_POINTING_TO]);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_get_pointing_to:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
2013-01-11 16:32:08 +00:00
|
|
|
* @rect: (out): location to store the rectangle
|
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* If a rectangle to point to has been set, this function will
|
|
|
|
* return %TRUE and fill in @rect with such rectangle, otherwise
|
|
|
|
* it will return %FALSE and fill in @rect with the attached
|
|
|
|
* widget coordinates.
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* Returns: %TRUE if a rectangle to point to was set.
|
|
|
|
**/
|
2013-01-11 16:32:08 +00:00
|
|
|
gboolean
|
2014-02-04 21:33:25 +00:00
|
|
|
gtk_popover_get_pointing_to (GtkPopover *popover,
|
|
|
|
GdkRectangle *rect)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2016-08-09 17:29:41 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_POPOVER (popover), FALSE);
|
2017-06-03 12:38:56 +00:00
|
|
|
g_return_val_if_fail (rect != NULL, FALSE);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2017-06-03 12:38:56 +00:00
|
|
|
if (priv->has_pointing_to)
|
|
|
|
*rect = priv->pointing_to;
|
2019-05-05 23:53:02 +00:00
|
|
|
else if (priv->relative_to)
|
|
|
|
{
|
|
|
|
graphene_rect_t r;
|
|
|
|
|
|
|
|
if (!gtk_widget_compute_bounds (priv->relative_to, priv->relative_to, &r))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
rect->x = floorf (r.origin.x);
|
|
|
|
rect->y = floorf (r.origin.y);
|
|
|
|
rect->width = ceilf (r.size.width);
|
|
|
|
rect->height = ceilf (r.size.height);
|
|
|
|
}
|
2013-01-11 16:32:08 +00:00
|
|
|
|
|
|
|
return priv->has_pointing_to;
|
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_set_position:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
|
|
|
* @position: preferred popover position
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* Sets the preferred position for @popover to appear. If the @popover
|
|
|
|
* is currently visible, it will be immediately updated.
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2014-02-02 06:22:14 +00:00
|
|
|
* This preference will be respected where possible, although
|
|
|
|
* on lack of space (eg. if close to the window edges), the
|
|
|
|
* #GtkPopover may choose to appear on the opposite side
|
2013-11-13 14:11:21 +00:00
|
|
|
**/
|
2013-01-11 16:32:08 +00:00
|
|
|
void
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_set_position (GtkPopover *popover,
|
|
|
|
GtkPositionType position)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2019-04-29 03:25:37 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
if (priv->position == position)
|
|
|
|
return;
|
|
|
|
|
|
|
|
priv->position = position;
|
2019-05-05 23:53:02 +00:00
|
|
|
priv->final_position = position;
|
2019-04-29 03:25:37 +00:00
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_POSITION]);
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-13 14:11:21 +00:00
|
|
|
/**
|
2013-11-12 15:55:23 +00:00
|
|
|
* gtk_popover_get_position:
|
2013-11-13 14:11:21 +00:00
|
|
|
* @popover: a #GtkPopover
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* Returns the preferred position of @popover.
|
2013-01-11 16:32:08 +00:00
|
|
|
*
|
2013-11-13 14:11:21 +00:00
|
|
|
* Returns: The preferred position.
|
|
|
|
**/
|
2013-01-11 16:32:08 +00:00
|
|
|
GtkPositionType
|
2013-11-12 15:55:23 +00:00
|
|
|
gtk_popover_get_position (GtkPopover *popover)
|
2013-01-11 16:32:08 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2013-11-12 15:55:23 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_POPOVER (popover), GTK_POS_TOP);
|
2013-01-11 16:32:08 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return priv->position;
|
2013-01-11 16:32:08 +00:00
|
|
|
}
|
2014-01-10 11:04:17 +00:00
|
|
|
|
|
|
|
/**
|
2019-05-19 23:46:56 +00:00
|
|
|
* gtk_popover_set_autohide:
|
2014-01-10 11:04:17 +00:00
|
|
|
* @popover: a #GtkPopover
|
2019-05-19 23:46:56 +00:00
|
|
|
* @autohide: #TRUE to dismiss the popover on outside clicks
|
2014-01-10 11:04:17 +00:00
|
|
|
*
|
2019-05-19 23:46:56 +00:00
|
|
|
* Sets whether @popover is modal.
|
|
|
|
*
|
|
|
|
* A modal popover will grab the keyboard focus on it when being
|
2014-01-10 11:04:17 +00:00
|
|
|
* displayed. Clicking outside the popover area or pressing Esc will
|
2019-05-19 23:46:56 +00:00
|
|
|
* dismiss the popover.
|
2014-01-10 11:04:17 +00:00
|
|
|
**/
|
|
|
|
void
|
2019-05-19 23:46:56 +00:00
|
|
|
gtk_popover_set_autohide (GtkPopover *popover,
|
|
|
|
gboolean autohide)
|
2014-01-10 11:04:17 +00:00
|
|
|
{
|
2016-08-09 17:29:41 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
2014-01-10 11:04:17 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
autohide = autohide != FALSE;
|
2014-02-09 05:48:38 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
if (priv->autohide == autohide)
|
2014-01-10 11:04:17 +00:00
|
|
|
return;
|
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
priv->autohide = autohide;
|
2014-01-10 11:04:17 +00:00
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_AUTOHIDE]);
|
2014-01-10 11:04:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-05-19 23:46:56 +00:00
|
|
|
* gtk_popover_get_autohide:
|
2014-01-10 11:04:17 +00:00
|
|
|
* @popover: a #GtkPopover
|
|
|
|
*
|
2019-05-19 23:46:56 +00:00
|
|
|
* Returns whether the popover is modal.
|
|
|
|
*
|
|
|
|
* See gtk_popover_set_autohide() for the
|
|
|
|
* implications of this.
|
2014-01-10 11:04:17 +00:00
|
|
|
*
|
|
|
|
* Returns: #TRUE if @popover is modal
|
|
|
|
**/
|
|
|
|
gboolean
|
2019-05-19 23:46:56 +00:00
|
|
|
gtk_popover_get_autohide (GtkPopover *popover)
|
2014-01-10 11:04:17 +00:00
|
|
|
{
|
2018-03-29 18:15:39 +00:00
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2014-01-10 11:04:17 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_POPOVER (popover), FALSE);
|
|
|
|
|
2019-05-19 23:46:56 +00:00
|
|
|
return priv->autohide;
|
2014-01-10 11:04:17 +00:00
|
|
|
}
|
2014-02-04 19:45:53 +00:00
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
/**
|
|
|
|
* gtk_popover_popup:
|
|
|
|
* @popover: a #GtkPopover
|
|
|
|
*
|
|
|
|
* Pops @popover up. This is different than a gtk_widget_show() call
|
|
|
|
* in that it shows the popover with a transition. If you want to show
|
|
|
|
* the popover without a transition, use gtk_widget_show().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_popover_popup (GtkPopover *popover)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
|
|
|
|
|
|
|
gtk_widget_show (GTK_WIDGET (popover));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_popover_popdown:
|
|
|
|
* @popover: a #GtkPopover
|
|
|
|
*
|
|
|
|
* Pops @popover down.This is different than a gtk_widget_hide() call
|
|
|
|
* in that it shows the popover with a transition. If you want to hide
|
|
|
|
* the popover without a transition, use gtk_widget_hide().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_popover_popdown (GtkPopover *popover)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
|
|
|
|
|
|
|
gtk_widget_hide (GTK_WIDGET (popover));
|
|
|
|
}
|
|
|
|
|
2015-04-17 04:10:06 +00:00
|
|
|
GtkWidget *
|
2019-04-29 03:25:37 +00:00
|
|
|
gtk_popover_get_contents_widget (GtkPopover *popover)
|
2016-08-10 16:28:14 +00:00
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
2019-04-29 03:25:37 +00:00
|
|
|
return priv->contents_widget;
|
2016-08-10 16:28:14 +00:00
|
|
|
}
|
2019-05-22 00:42:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_popover_set_has_arrow:
|
|
|
|
* @popover: a #GtkPopover
|
|
|
|
* @has_arrow: %TRUE to draw an arrow
|
|
|
|
*
|
|
|
|
* Sets whether this popover should draw an arrow
|
|
|
|
* pointing at the widget it is relative to.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_popover_set_has_arrow (GtkPopover *popover,
|
|
|
|
gboolean has_arrow)
|
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_POPOVER (popover));
|
|
|
|
|
|
|
|
if (priv->has_arrow == has_arrow)
|
|
|
|
return;
|
|
|
|
|
|
|
|
priv->has_arrow = has_arrow;
|
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_HAS_ARROW]);
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (popover));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_popover_get_has_arrow:
|
|
|
|
* @popover: a #GtkPopover
|
|
|
|
*
|
|
|
|
* Gets whether this popover is showing an arrow
|
|
|
|
* pointing at the widget that it is relative to.
|
|
|
|
*
|
|
|
|
* Returns: whether the popover has an arrow
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_popover_get_has_arrow (GtkPopover *popover)
|
|
|
|
{
|
|
|
|
GtkPopoverPrivate *priv = gtk_popover_get_instance_private (popover);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_POPOVER (popover), TRUE);
|
|
|
|
|
|
|
|
return priv->has_arrow;
|
|
|
|
}
|