2010-10-19 17:14:46 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* 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
|
2011-01-24 05:24:12 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2010-10-19 17:14:46 +00:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-10-19 17:14:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_WIDGET_PRIVATE_H__
|
|
|
|
#define __GTK_WIDGET_PRIVATE_H__
|
|
|
|
|
2012-03-20 14:40:53 +00:00
|
|
|
#include "gtkwidget.h"
|
2018-02-08 13:39:45 +00:00
|
|
|
|
|
|
|
#include "gtkactionmuxerprivate.h"
|
2015-09-06 23:58:03 +00:00
|
|
|
#include "gtkcontainer.h"
|
2018-02-08 13:39:45 +00:00
|
|
|
#include "gtkcsstypesprivate.h"
|
2020-02-20 22:22:03 +00:00
|
|
|
#include "gtkeventcontrollerprivate.h"
|
2018-08-27 17:50:01 +00:00
|
|
|
#include "gtklistlistmodelprivate.h"
|
2018-07-29 02:11:14 +00:00
|
|
|
#include "gtkrootprivate.h"
|
2015-09-06 23:58:03 +00:00
|
|
|
#include "gtksizerequestcacheprivate.h"
|
2018-04-21 15:03:31 +00:00
|
|
|
#include "gtkwindowprivate.h"
|
2018-05-14 17:03:17 +00:00
|
|
|
#include "gtkgesture.h"
|
2012-03-20 14:40:53 +00:00
|
|
|
|
2019-02-19 07:24:59 +00:00
|
|
|
#include "gsk/gskrendernodeprivate.h"
|
|
|
|
|
2010-10-19 17:14:46 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2019-04-18 16:55:13 +00:00
|
|
|
typedef gboolean (*GtkSurfaceTransformChangedCallback) (GtkWidget *widget,
|
|
|
|
const graphene_matrix_t *surface_transform,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2020-04-16 05:36:13 +00:00
|
|
|
#define GTK_STATE_FLAGS_BITS 15
|
2015-09-06 23:58:03 +00:00
|
|
|
|
2019-04-25 13:39:06 +00:00
|
|
|
typedef struct _GtkWidgetSurfaceTransformData
|
|
|
|
{
|
|
|
|
GtkWidget *tracked_parent;
|
|
|
|
guint parent_surface_transform_changed_id;
|
|
|
|
|
|
|
|
GList *callbacks;
|
|
|
|
|
|
|
|
gboolean cached_surface_transform_valid;
|
|
|
|
graphene_matrix_t cached_surface_transform;
|
|
|
|
} GtkWidgetSurfaceTransformData;
|
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
struct _GtkWidgetPrivate
|
|
|
|
{
|
|
|
|
/* The state of the widget. Needs to be able to hold all GtkStateFlags bits
|
|
|
|
* (defined in "gtkenums.h").
|
|
|
|
*/
|
|
|
|
guint state_flags : GTK_STATE_FLAGS_BITS;
|
|
|
|
|
|
|
|
guint direction : 2;
|
|
|
|
|
2015-12-17 11:34:30 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
guint highlight_resize : 1;
|
|
|
|
#endif
|
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
guint in_destruction : 1;
|
|
|
|
guint realized : 1;
|
|
|
|
guint mapped : 1;
|
|
|
|
guint visible : 1;
|
|
|
|
guint sensitive : 1;
|
|
|
|
guint can_focus : 1;
|
|
|
|
guint has_focus : 1;
|
2015-10-23 16:07:41 +00:00
|
|
|
guint focus_on_click : 1;
|
2015-09-06 23:58:03 +00:00
|
|
|
guint has_default : 1;
|
|
|
|
guint receives_default : 1;
|
|
|
|
guint has_grab : 1;
|
|
|
|
guint shadowed : 1;
|
|
|
|
guint child_visible : 1;
|
|
|
|
guint multidevice : 1;
|
2019-04-07 21:36:40 +00:00
|
|
|
guint can_target : 1;
|
2015-09-06 23:58:03 +00:00
|
|
|
|
|
|
|
/* Queue-resize related flags */
|
2015-09-27 10:29:05 +00:00
|
|
|
guint resize_needed : 1; /* queue_resize() has been called but no get_preferred_size() yet */
|
2015-09-29 19:04:07 +00:00
|
|
|
guint alloc_needed : 1; /* this widget needs a size_allocate() call */
|
|
|
|
guint alloc_needed_on_child : 1; /* 0 or more children - or this widget - need a size_allocate() call */
|
2015-09-06 23:58:03 +00:00
|
|
|
|
2018-03-20 17:55:33 +00:00
|
|
|
/* Queue-draw related flags */
|
|
|
|
guint draw_needed : 1;
|
2015-09-06 23:58:03 +00:00
|
|
|
/* Expand-related flags */
|
|
|
|
guint need_compute_expand : 1; /* Need to recompute computed_[hv]_expand */
|
|
|
|
guint computed_hexpand : 1; /* computed results (composite of child flags) */
|
|
|
|
guint computed_vexpand : 1;
|
|
|
|
guint hexpand : 1; /* application-forced expand */
|
|
|
|
guint vexpand : 1;
|
|
|
|
guint hexpand_set : 1; /* whether to use application-forced */
|
|
|
|
guint vexpand_set : 1; /* instead of computing from children */
|
2016-05-06 13:38:18 +00:00
|
|
|
guint has_tooltip : 1;
|
2015-09-06 23:58:03 +00:00
|
|
|
|
|
|
|
/* SizeGroup related flags */
|
|
|
|
guint have_size_groups : 1;
|
|
|
|
|
2015-09-13 03:56:39 +00:00
|
|
|
/* Alignment */
|
|
|
|
guint halign : 4;
|
|
|
|
guint valign : 4;
|
|
|
|
|
2019-02-08 17:02:40 +00:00
|
|
|
GtkOverflow overflow;
|
2015-09-06 23:58:03 +00:00
|
|
|
guint8 alpha;
|
|
|
|
guint8 user_alpha;
|
|
|
|
|
2015-09-13 03:56:39 +00:00
|
|
|
#ifdef G_ENABLE_CONSISTENCY_CHECKS
|
|
|
|
/* Number of gtk_widget_push_verify_invariants () */
|
|
|
|
guint8 verifying_invariants_count;
|
|
|
|
#endif
|
|
|
|
|
2018-07-21 10:28:14 +00:00
|
|
|
int width_request;
|
|
|
|
int height_request;
|
2015-09-13 03:56:39 +00:00
|
|
|
GtkBorder margin;
|
|
|
|
|
|
|
|
/* Animations and other things to update on clock ticks */
|
|
|
|
guint clock_tick_id;
|
|
|
|
GList *tick_callbacks;
|
|
|
|
|
2019-04-18 16:55:13 +00:00
|
|
|
/* Surface relative transform updates callbacks */
|
2019-04-25 13:39:06 +00:00
|
|
|
GtkWidgetSurfaceTransformData *surface_transform_data;
|
2019-04-18 16:55:13 +00:00
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
/* The widget's name. If the widget does not have a name
|
|
|
|
* (the name is NULL), then its name (as returned by
|
|
|
|
* "gtk_widget_get_name") is its class's name.
|
|
|
|
* Among other things, the widget name is used to determine
|
|
|
|
* the style to use for a widget.
|
|
|
|
*/
|
|
|
|
gchar *name;
|
|
|
|
|
2018-07-29 01:31:36 +00:00
|
|
|
/* The root this widget belongs to or %NULL if widget is not
|
|
|
|
* rooted or is a #GtkRoot itself.
|
|
|
|
*/
|
|
|
|
GtkRoot *root;
|
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
/* The style for the widget. The style contains the
|
|
|
|
* colors the widget should be drawn in for each state
|
|
|
|
* along with graphics contexts used to draw with and
|
|
|
|
* the font to use for text.
|
|
|
|
*/
|
|
|
|
GtkCssNode *cssnode;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
|
|
|
|
/* The widget's allocated size */
|
2019-02-28 08:52:49 +00:00
|
|
|
GskTransform *allocated_transform;
|
2019-02-16 13:40:49 +00:00
|
|
|
int allocated_width;
|
|
|
|
int allocated_height;
|
2015-09-14 04:11:36 +00:00
|
|
|
gint allocated_size_baseline;
|
2019-02-16 13:40:49 +00:00
|
|
|
|
2019-03-02 04:15:47 +00:00
|
|
|
GskTransform *transform;
|
2019-02-09 02:03:59 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int baseline;
|
2015-09-12 22:54:38 +00:00
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
/* The widget's requested sizes */
|
|
|
|
SizeRequestCache requests;
|
|
|
|
|
2018-03-31 15:52:47 +00:00
|
|
|
/* The render node we draw or %NULL if not yet created.*/
|
2018-03-20 17:55:33 +00:00
|
|
|
GskRenderNode *render_node;
|
|
|
|
|
2018-12-12 17:20:28 +00:00
|
|
|
/* The layout manager, or %NULL */
|
|
|
|
GtkLayoutManager *layout_manager;
|
|
|
|
|
2018-03-22 19:47:28 +00:00
|
|
|
GSList *paintables;
|
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
GList *event_controllers;
|
2016-05-06 10:42:43 +00:00
|
|
|
|
|
|
|
AtkObject *accessible;
|
2016-11-18 08:29:52 +00:00
|
|
|
|
|
|
|
/* Widget tree */
|
|
|
|
GtkWidget *parent;
|
|
|
|
GtkWidget *prev_sibling;
|
|
|
|
GtkWidget *next_sibling;
|
|
|
|
GtkWidget *first_child;
|
|
|
|
GtkWidget *last_child;
|
2017-02-08 08:00:29 +00:00
|
|
|
|
2018-08-27 17:50:01 +00:00
|
|
|
/* only created on-demand */
|
|
|
|
GtkListListModel *children_observer;
|
|
|
|
GtkListListModel *controller_observer;
|
|
|
|
|
2017-02-08 08:00:29 +00:00
|
|
|
GtkWidget *focus_child;
|
2017-03-31 15:19:37 +00:00
|
|
|
|
|
|
|
/* Pointer cursor */
|
|
|
|
GdkCursor *cursor;
|
2015-09-06 23:58:03 +00:00
|
|
|
};
|
|
|
|
|
2020-03-20 16:16:30 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GBytes *data;
|
|
|
|
GSList *children;
|
|
|
|
GtkBuilderScope *scope;
|
|
|
|
} GtkWidgetTemplate;
|
|
|
|
|
|
|
|
struct _GtkWidgetClassPrivate
|
|
|
|
{
|
|
|
|
GtkWidgetTemplate *template;
|
2018-08-20 02:18:28 +00:00
|
|
|
GListStore *shortcuts;
|
2020-03-20 16:16:30 +00:00
|
|
|
GType accessible_type;
|
|
|
|
AtkRole accessible_role;
|
|
|
|
GQuark css_name;
|
|
|
|
GType layout_manager_type;
|
|
|
|
GtkWidgetAction *actions;
|
|
|
|
};
|
|
|
|
|
2019-05-01 22:41:20 +00:00
|
|
|
void gtk_widget_root (GtkWidget *widget);
|
|
|
|
void gtk_widget_unroot (GtkWidget *widget);
|
2015-02-09 21:27:44 +00:00
|
|
|
GtkCssNode * gtk_widget_get_css_node (GtkWidget *widget);
|
2010-10-19 17:14:46 +00:00
|
|
|
void _gtk_widget_set_visible_flag (GtkWidget *widget,
|
|
|
|
gboolean visible);
|
|
|
|
gboolean _gtk_widget_get_shadowed (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_shadowed (GtkWidget *widget,
|
|
|
|
gboolean shadowed);
|
|
|
|
gboolean _gtk_widget_get_alloc_needed (GtkWidget *widget);
|
2015-10-08 11:41:50 +00:00
|
|
|
gboolean gtk_widget_needs_allocate (GtkWidget *widget);
|
2015-09-28 00:19:25 +00:00
|
|
|
void gtk_widget_ensure_resize (GtkWidget *widget);
|
2015-09-29 21:19:07 +00:00
|
|
|
void gtk_widget_ensure_allocate (GtkWidget *widget);
|
2013-06-28 08:39:52 +00:00
|
|
|
void _gtk_widget_scale_changed (GtkWidget *widget);
|
|
|
|
|
2019-05-19 03:41:08 +00:00
|
|
|
void gtk_widget_render (GtkWidget *widget,
|
|
|
|
GdkSurface *surface,
|
|
|
|
const cairo_region_t *region);
|
2010-10-19 17:14:46 +00:00
|
|
|
|
2011-02-07 07:55:25 +00:00
|
|
|
void _gtk_widget_add_sizegroup (GtkWidget *widget,
|
|
|
|
gpointer group);
|
|
|
|
void _gtk_widget_remove_sizegroup (GtkWidget *widget,
|
|
|
|
gpointer group);
|
|
|
|
GSList *_gtk_widget_get_sizegroups (GtkWidget *widget);
|
|
|
|
|
2011-11-12 02:38:40 +00:00
|
|
|
AtkObject * _gtk_widget_peek_accessible (GtkWidget *widget);
|
|
|
|
|
2011-06-02 13:25:12 +00:00
|
|
|
void _gtk_widget_set_has_default (GtkWidget *widget,
|
|
|
|
gboolean has_default);
|
|
|
|
void _gtk_widget_set_has_grab (GtkWidget *widget,
|
|
|
|
gboolean has_grab);
|
|
|
|
|
2020-04-23 17:23:24 +00:00
|
|
|
gboolean gtk_widget_has_grab (GtkWidget *widget);
|
2011-06-02 13:25:12 +00:00
|
|
|
void _gtk_widget_grab_notify (GtkWidget *widget,
|
|
|
|
gboolean was_grabbed);
|
|
|
|
|
2017-10-30 21:19:02 +00:00
|
|
|
void _gtk_widget_propagate_display_changed (GtkWidget *widget,
|
|
|
|
GdkDisplay *previous_display);
|
2011-06-02 13:25:12 +00:00
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
void _gtk_widget_set_device_surface (GtkWidget *widget,
|
2011-06-02 13:25:12 +00:00
|
|
|
GdkDevice *device,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *pointer_window);
|
2018-03-21 10:49:14 +00:00
|
|
|
GdkSurface * _gtk_widget_get_device_surface (GtkWidget *widget,
|
2011-06-02 13:25:12 +00:00
|
|
|
GdkDevice *device);
|
2020-04-10 07:55:18 +00:00
|
|
|
GdkDevice ** _gtk_widget_list_devices (GtkWidget *widget,
|
|
|
|
guint *out_n_devices);
|
2011-06-02 13:25:12 +00:00
|
|
|
|
|
|
|
void _gtk_widget_synthesize_crossing (GtkWidget *from,
|
|
|
|
GtkWidget *to,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkCrossingMode mode);
|
|
|
|
|
2015-03-05 05:23:35 +00:00
|
|
|
GtkStyleContext * _gtk_widget_peek_style_context (GtkWidget *widget);
|
2011-11-02 10:45:10 +00:00
|
|
|
|
2019-08-13 10:29:00 +00:00
|
|
|
gboolean _gtk_widget_captured_event (GtkWidget *widget,
|
2020-02-16 07:20:34 +00:00
|
|
|
GdkEvent *event,
|
|
|
|
GtkWidget *target);
|
2011-06-02 13:25:12 +00:00
|
|
|
|
2020-02-05 01:46:13 +00:00
|
|
|
void gtk_widget_css_changed (GtkWidget *widget,
|
|
|
|
GtkCssStyleChange *change);
|
2020-04-21 16:05:45 +00:00
|
|
|
void gtk_widget_system_setting_changed (GtkWidget *widget,
|
|
|
|
GtkSystemSetting setting);
|
|
|
|
void gtk_system_setting_changed (GdkDisplay *display,
|
|
|
|
GtkSystemSetting setting);
|
2012-03-18 23:25:31 +00:00
|
|
|
|
2012-08-17 22:09:35 +00:00
|
|
|
void _gtk_widget_update_parent_muxer (GtkWidget *widget);
|
2014-12-03 14:53:59 +00:00
|
|
|
GtkActionMuxer * _gtk_widget_get_action_muxer (GtkWidget *widget,
|
|
|
|
gboolean create);
|
2012-08-17 22:09:35 +00:00
|
|
|
|
2015-03-03 21:17:58 +00:00
|
|
|
gboolean _gtk_widget_consumes_motion (GtkWidget *widget,
|
|
|
|
GdkEventSequence *sequence);
|
2015-02-25 19:34:12 +00:00
|
|
|
|
2014-10-24 12:00:41 +00:00
|
|
|
gboolean gtk_widget_has_tick_callback (GtkWidget *widget);
|
2014-05-06 13:50:01 +00:00
|
|
|
|
2015-06-29 11:46:36 +00:00
|
|
|
gboolean gtk_widget_has_size_request (GtkWidget *widget);
|
|
|
|
|
2016-01-13 19:53:54 +00:00
|
|
|
void gtk_widget_reset_controllers (GtkWidget *widget);
|
|
|
|
|
2020-03-28 19:37:29 +00:00
|
|
|
GtkEventController **gtk_widget_list_controllers (GtkWidget *widget,
|
|
|
|
GtkPropagationPhase phase,
|
|
|
|
guint *out_n_controllers);
|
2020-02-06 14:21:10 +00:00
|
|
|
|
2016-05-06 13:54:24 +00:00
|
|
|
gboolean gtk_widget_query_tooltip (GtkWidget *widget,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gboolean keyboard_mode,
|
|
|
|
GtkTooltip *tooltip);
|
|
|
|
|
2016-11-11 23:37:54 +00:00
|
|
|
void gtk_widget_snapshot (GtkWidget *widget,
|
|
|
|
GtkSnapshot *snapshot);
|
2016-11-23 16:46:44 +00:00
|
|
|
void gtk_widget_adjust_size_request (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
void gtk_widget_adjust_baseline_request (GtkWidget *widget,
|
|
|
|
gint *minimum_baseline,
|
|
|
|
gint *natural_baseline);
|
2016-06-23 16:35:42 +00:00
|
|
|
|
2016-11-18 08:29:52 +00:00
|
|
|
void gtk_widget_forall (GtkWidget *widget,
|
|
|
|
GtkCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2017-02-10 20:21:38 +00:00
|
|
|
void gtk_widget_focus_sort (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction,
|
|
|
|
GPtrArray *focus_order);
|
|
|
|
gboolean gtk_widget_focus_move (GtkWidget *widget,
|
2019-03-02 17:52:56 +00:00
|
|
|
GtkDirectionType direction);
|
2019-03-07 03:26:27 +00:00
|
|
|
void gtk_widget_set_has_focus (GtkWidget *widget,
|
|
|
|
gboolean has_focus);
|
2018-03-20 14:21:12 +00:00
|
|
|
void gtk_widget_get_surface_allocation (GtkWidget *widget,
|
2018-03-21 10:49:14 +00:00
|
|
|
GtkAllocation *allocation);
|
2017-06-21 10:15:47 +00:00
|
|
|
|
|
|
|
|
2017-03-31 15:16:47 +00:00
|
|
|
GtkWidget * gtk_widget_common_ancestor (GtkWidget *widget_a,
|
|
|
|
GtkWidget *widget_b);
|
|
|
|
|
2018-05-14 17:03:17 +00:00
|
|
|
void gtk_widget_cancel_event_sequence (GtkWidget *widget,
|
|
|
|
GtkGesture *gesture,
|
|
|
|
GdkEventSequence *sequence,
|
|
|
|
GtkEventSequenceState state);
|
2020-02-17 12:40:31 +00:00
|
|
|
gboolean gtk_widget_event (GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
GtkWidget *target);
|
2019-02-20 11:41:00 +00:00
|
|
|
gboolean gtk_widget_run_controllers (GtkWidget *widget,
|
2020-02-16 16:09:02 +00:00
|
|
|
GdkEvent *event,
|
2020-02-16 07:20:34 +00:00
|
|
|
GtkWidget *target,
|
2020-02-13 05:08:49 +00:00
|
|
|
double x,
|
|
|
|
double y,
|
2019-02-20 11:41:00 +00:00
|
|
|
GtkPropagationPhase phase);
|
2020-02-13 01:26:29 +00:00
|
|
|
void gtk_widget_handle_crossing (GtkWidget *widget,
|
|
|
|
const GtkCrossingData *crossing,
|
|
|
|
double x,
|
|
|
|
double y);
|
2017-05-26 16:55:30 +00:00
|
|
|
|
2019-03-03 02:03:38 +00:00
|
|
|
|
2019-04-18 16:55:13 +00:00
|
|
|
guint gtk_widget_add_surface_transform_changed_callback (GtkWidget *widget,
|
|
|
|
GtkSurfaceTransformChangedCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
|
|
|
void gtk_widget_remove_surface_transform_changed_callback (GtkWidget *widget,
|
|
|
|
guint id);
|
|
|
|
|
2020-04-08 11:42:27 +00:00
|
|
|
/* focus vfuncs for non-focusable non-containers */
|
|
|
|
gboolean gtk_widget_grab_focus_none (GtkWidget *widget);
|
|
|
|
gboolean gtk_widget_focus_none (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
|
|
|
/* focus vfuncs for non-focusable containers with focusable children */
|
|
|
|
gboolean gtk_widget_grab_focus_child (GtkWidget *widget);
|
|
|
|
gboolean gtk_widget_focus_child (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
|
|
|
/* focus vfuncs for focusable widgets with children that don't receive focus */
|
|
|
|
gboolean gtk_widget_grab_focus_self (GtkWidget *widget);
|
|
|
|
gboolean gtk_widget_focus_self (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
|
|
|
/* focus vfuncs for focusable widgets with children that receive focus */
|
|
|
|
gboolean gtk_widget_focus_all (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
2019-04-18 16:55:13 +00:00
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
/* inline getters */
|
|
|
|
|
|
|
|
static inline GtkWidget *
|
|
|
|
_gtk_widget_get_parent (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
_gtk_widget_get_visible (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
_gtk_widget_get_child_visible (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->child_visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
_gtk_widget_get_mapped (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->mapped;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
_gtk_widget_get_realized (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->realized;
|
|
|
|
}
|
|
|
|
|
2015-09-07 16:23:09 +00:00
|
|
|
static inline GtkStateFlags
|
|
|
|
_gtk_widget_get_state_flags (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->state_flags;
|
|
|
|
}
|
|
|
|
|
2015-09-09 00:30:22 +00:00
|
|
|
extern GtkTextDirection gtk_default_direction;
|
|
|
|
|
|
|
|
static inline GtkTextDirection
|
|
|
|
_gtk_widget_get_direction (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
if (widget->priv->direction == GTK_TEXT_DIR_NONE)
|
|
|
|
return gtk_default_direction;
|
|
|
|
else
|
|
|
|
return widget->priv->direction;
|
|
|
|
}
|
|
|
|
|
2018-07-29 01:40:52 +00:00
|
|
|
static inline GtkRoot *
|
|
|
|
_gtk_widget_get_root (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->root;
|
|
|
|
}
|
|
|
|
|
2018-04-21 15:03:31 +00:00
|
|
|
static inline GdkDisplay *
|
|
|
|
_gtk_widget_get_display (GtkWidget *widget)
|
|
|
|
{
|
2018-07-29 02:11:14 +00:00
|
|
|
GtkRoot *root = _gtk_widget_get_root (widget);
|
2018-04-21 15:03:31 +00:00
|
|
|
|
2018-07-29 02:11:14 +00:00
|
|
|
if (root == NULL)
|
|
|
|
return gdk_display_get_default ();
|
2018-04-21 15:03:31 +00:00
|
|
|
|
2018-07-29 02:11:14 +00:00
|
|
|
return gtk_root_get_display (root);
|
2018-04-21 15:03:31 +00:00
|
|
|
}
|
|
|
|
|
2015-09-06 23:58:03 +00:00
|
|
|
static inline GtkStyleContext *
|
|
|
|
_gtk_widget_get_style_context (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
if (G_LIKELY (widget->priv->context))
|
|
|
|
return widget->priv->context;
|
|
|
|
|
|
|
|
return gtk_widget_get_style_context (widget);
|
|
|
|
}
|
|
|
|
|
2015-09-11 13:07:37 +00:00
|
|
|
static inline gpointer
|
|
|
|
_gtk_widget_peek_request_cache (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return &widget->priv->requests;
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:29:52 +00:00
|
|
|
static inline GtkWidget *
|
|
|
|
_gtk_widget_get_prev_sibling (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->prev_sibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline GtkWidget *
|
|
|
|
_gtk_widget_get_next_sibling (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->next_sibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline GtkWidget *
|
|
|
|
_gtk_widget_get_first_child (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->first_child;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline GtkWidget *
|
|
|
|
_gtk_widget_get_last_child (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return widget->priv->last_child;
|
|
|
|
}
|
|
|
|
|
2019-02-19 07:24:43 +00:00
|
|
|
static inline gboolean
|
|
|
|
_gtk_widget_is_sensitive (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
return !(widget->priv->state_flags & GTK_STATE_FLAG_INSENSITIVE);
|
|
|
|
}
|
|
|
|
|
2010-10-19 17:14:46 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_WIDGET_PRIVATE_H__ */
|