2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* 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/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2010-09-09 13:35:58 +00:00
|
|
|
|
2016-10-15 20:22:48 +00:00
|
|
|
#include "gtkcheckbuttonprivate.h"
|
2010-09-09 13:35:58 +00:00
|
|
|
|
2010-10-19 00:01:31 +00:00
|
|
|
#include "gtkbuttonprivate.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtklabel.h"
|
2010-09-09 13:35:58 +00:00
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkintl.h"
|
2013-05-07 11:46:15 +00:00
|
|
|
#include "gtkprivate.h"
|
2014-06-15 15:57:59 +00:00
|
|
|
#include "gtkrender.h"
|
2013-05-07 11:46:15 +00:00
|
|
|
#include "gtkwidgetprivate.h"
|
2015-12-16 17:44:58 +00:00
|
|
|
#include "gtkbuiltiniconprivate.h"
|
2015-10-30 04:27:13 +00:00
|
|
|
#include "gtkcssnodeprivate.h"
|
2016-01-18 02:16:33 +00:00
|
|
|
#include "gtkboxgadgetprivate.h"
|
2015-12-04 05:34:52 +00:00
|
|
|
#include "gtkcontainerprivate.h"
|
|
|
|
#include "gtkstylecontextprivate.h"
|
2015-12-16 18:11:24 +00:00
|
|
|
#include "gtkcssnumbervalueprivate.h"
|
2015-10-30 04:27:13 +00:00
|
|
|
#include "gtkradiobutton.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
2011-04-13 11:25:06 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkcheckbutton
|
|
|
|
* @Short_description: Create widgets with a discrete toggle button
|
|
|
|
* @Title: GtkCheckButton
|
|
|
|
* @See_also: #GtkCheckMenuItem, #GtkButton, #GtkToggleButton, #GtkRadioButton
|
|
|
|
*
|
|
|
|
* A #GtkCheckButton places a discrete #GtkToggleButton next to a widget,
|
|
|
|
* (usually a #GtkLabel). See the section on #GtkToggleButton widgets for
|
|
|
|
* more information about toggle/check buttons.
|
|
|
|
*
|
|
|
|
* The important signal ( #GtkToggleButton::toggled ) is also inherited from
|
|
|
|
* #GtkToggleButton.
|
2015-10-30 04:27:13 +00:00
|
|
|
*
|
|
|
|
* # CSS nodes
|
|
|
|
*
|
2015-11-03 15:17:41 +00:00
|
|
|
* |[<!-- language="plain" -->
|
|
|
|
* checkbutton
|
2015-12-16 15:55:52 +00:00
|
|
|
* ├── check
|
|
|
|
* ╰── <child>
|
2015-11-03 15:17:41 +00:00
|
|
|
* ]|
|
|
|
|
*
|
2015-10-30 04:27:13 +00:00
|
|
|
* A GtkCheckButton with indicator (see gtk_toggle_button_set_mode()) has a
|
|
|
|
* main CSS node with name checkbutton and a subnode with name check.
|
|
|
|
*
|
2015-11-03 15:17:41 +00:00
|
|
|
* |[<!-- language="plain" -->
|
|
|
|
* button.check
|
2015-12-16 15:55:52 +00:00
|
|
|
* ├── check
|
|
|
|
* ╰── <child>
|
2015-11-03 15:17:41 +00:00
|
|
|
* ]|
|
|
|
|
*
|
2015-10-30 04:27:13 +00:00
|
|
|
* A GtkCheckButton without indicator changes the name of its main node
|
|
|
|
* to button and adds a .check style class to it. The subnode is invisible
|
|
|
|
* in this case.
|
2011-04-13 11:25:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void gtk_check_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
2016-11-14 20:55:03 +00:00
|
|
|
static void gtk_check_button_snapshot (GtkWidget *widget,
|
|
|
|
GtkSnapshot *snapshot);
|
2015-12-04 05:34:52 +00:00
|
|
|
|
2015-10-30 04:27:13 +00:00
|
|
|
typedef struct {
|
2015-12-04 05:34:52 +00:00
|
|
|
GtkCssGadget *gadget;
|
|
|
|
GtkCssGadget *indicator_gadget;
|
2015-10-30 04:27:13 +00:00
|
|
|
} GtkCheckButtonPrivate;
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkCheckButton, gtk_check_button, GTK_TYPE_TOGGLE_BUTTON)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2014-08-17 04:24:41 +00:00
|
|
|
static void
|
2015-12-28 15:24:02 +00:00
|
|
|
gtk_check_button_update_node_state (GtkWidget *widget)
|
2014-08-17 04:24:41 +00:00
|
|
|
{
|
2015-10-30 04:27:13 +00:00
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (widget));
|
2015-12-16 17:44:58 +00:00
|
|
|
GtkCssImageBuiltinType image_type;
|
|
|
|
GtkStateFlags state;
|
2015-10-30 04:27:13 +00:00
|
|
|
|
2015-12-16 17:44:58 +00:00
|
|
|
state = gtk_widget_get_state_flags (widget);
|
|
|
|
|
2015-12-28 15:24:02 +00:00
|
|
|
/* XXX: This is somewhat awkward here, but there's no better
|
|
|
|
* way to update the icon
|
|
|
|
*/
|
2015-12-16 17:44:58 +00:00
|
|
|
if (state & GTK_STATE_FLAG_CHECKED)
|
2016-05-03 10:57:50 +00:00
|
|
|
image_type = GTK_IS_RADIO_BUTTON (widget) ? GTK_CSS_IMAGE_BUILTIN_OPTION : GTK_CSS_IMAGE_BUILTIN_CHECK;
|
2015-12-16 17:44:58 +00:00
|
|
|
else if (state & GTK_STATE_FLAG_INCONSISTENT)
|
|
|
|
image_type = GTK_IS_RADIO_BUTTON (widget) ? GTK_CSS_IMAGE_BUILTIN_OPTION_INCONSISTENT : GTK_CSS_IMAGE_BUILTIN_CHECK_INCONSISTENT;
|
|
|
|
else
|
2016-05-03 10:57:50 +00:00
|
|
|
image_type = GTK_CSS_IMAGE_BUILTIN_NONE;
|
2015-12-16 17:44:58 +00:00
|
|
|
gtk_builtin_icon_set_image (GTK_BUILTIN_ICON (priv->indicator_gadget), image_type);
|
2016-01-13 05:05:16 +00:00
|
|
|
|
|
|
|
gtk_css_gadget_set_state (priv->indicator_gadget, state);
|
2015-12-28 15:24:02 +00:00
|
|
|
}
|
|
|
|
|
2016-01-13 05:05:16 +00:00
|
|
|
|
2015-12-28 15:24:02 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_state_flags_changed (GtkWidget *widget,
|
|
|
|
GtkStateFlags previous_state_flags)
|
|
|
|
{
|
|
|
|
gtk_check_button_update_node_state (widget);
|
2014-08-17 04:24:41 +00:00
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_check_button_parent_class)->state_flags_changed (widget, previous_state_flags);
|
|
|
|
}
|
|
|
|
|
2015-12-04 05:34:52 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_direction_changed (GtkWidget *widget,
|
|
|
|
GtkTextDirection previous_direction)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (widget));
|
|
|
|
|
2016-01-18 05:04:23 +00:00
|
|
|
gtk_box_gadget_reverse_children (GTK_BOX_GADGET (priv->gadget));
|
2016-03-04 02:26:39 +00:00
|
|
|
gtk_box_gadget_set_allocate_reverse (GTK_BOX_GADGET (priv->gadget),
|
|
|
|
gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
|
2016-04-29 01:29:32 +00:00
|
|
|
gtk_box_gadget_set_align_reverse (GTK_BOX_GADGET (priv->gadget),
|
|
|
|
gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
|
2015-12-04 05:34:52 +00:00
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_check_button_parent_class)->direction_changed (widget, previous_direction);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_check_button_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (object));
|
|
|
|
|
|
|
|
g_clear_object (&priv->gadget);
|
|
|
|
g_clear_object (&priv->indicator_gadget);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_check_button_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2016-01-18 02:16:33 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_add (GtkContainer *container,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (container));
|
2016-01-18 05:04:23 +00:00
|
|
|
int pos;
|
2016-01-18 02:16:33 +00:00
|
|
|
|
|
|
|
GTK_CONTAINER_CLASS (gtk_check_button_parent_class)->add (container, widget);
|
|
|
|
|
2016-01-18 05:04:23 +00:00
|
|
|
pos = gtk_widget_get_direction (GTK_WIDGET (container)) == GTK_TEXT_DIR_RTL ? 0 : 1;
|
|
|
|
gtk_box_gadget_insert_widget (GTK_BOX_GADGET (priv->gadget), pos, widget);
|
2016-04-29 01:55:52 +00:00
|
|
|
gtk_box_gadget_set_gadget_expand (GTK_BOX_GADGET (priv->gadget), G_OBJECT (widget), TRUE);
|
2016-01-18 02:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_check_button_remove (GtkContainer *container,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (container));
|
|
|
|
|
|
|
|
gtk_box_gadget_remove_widget (GTK_BOX_GADGET (priv->gadget), widget);
|
|
|
|
|
|
|
|
GTK_CONTAINER_CLASS (gtk_check_button_parent_class)->remove (container, widget);
|
|
|
|
}
|
|
|
|
|
2016-10-22 14:06:14 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_measure (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
int for_size,
|
|
|
|
int *minimum,
|
|
|
|
int *natural,
|
|
|
|
int *minimum_baseline,
|
|
|
|
int *natural_baseline)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (widget));
|
|
|
|
GtkCssGadget *gadget;
|
|
|
|
|
|
|
|
if (gtk_toggle_button_get_mode (GTK_TOGGLE_BUTTON (widget)))
|
|
|
|
gadget = priv->gadget;
|
|
|
|
else
|
|
|
|
gadget = GTK_BUTTON (widget)->priv->gadget;
|
|
|
|
|
|
|
|
gtk_css_gadget_get_preferred_size (gadget,
|
|
|
|
orientation,
|
|
|
|
for_size,
|
|
|
|
minimum, natural,
|
|
|
|
minimum_baseline, natural_baseline);
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_class_init (GtkCheckButtonClass *class)
|
|
|
|
{
|
2015-12-04 05:34:52 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
2016-01-18 02:16:33 +00:00
|
|
|
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (class);
|
2010-10-27 01:29:58 +00:00
|
|
|
|
2015-12-04 05:34:52 +00:00
|
|
|
object_class->finalize = gtk_check_button_finalize;
|
2010-10-27 01:29:58 +00:00
|
|
|
|
2016-10-22 14:06:14 +00:00
|
|
|
widget_class->measure = gtk_check_button_measure;
|
1997-11-24 22:37:52 +00:00
|
|
|
widget_class->size_allocate = gtk_check_button_size_allocate;
|
2016-11-14 20:55:03 +00:00
|
|
|
widget_class->snapshot = gtk_check_button_snapshot;
|
2014-08-17 04:24:41 +00:00
|
|
|
widget_class->state_flags_changed = gtk_check_button_state_flags_changed;
|
2015-12-04 05:34:52 +00:00
|
|
|
widget_class->direction_changed = gtk_check_button_direction_changed;
|
Fix G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
Mon Apr 2 10:47:57 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_class_init): Fix
G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
stupidity.
Mon Apr 2 00:51:11 2001 Owen Taylor <otaylor@redhat.com>
[ First pass at adding style properties. Still needs some definite
fine-tuning. ]
* gtk/gtkbutton.c: Add ::default_spacing style property.
* gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
::indicator_spacing style properties.
* gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
style properties.
* gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
rather than a normal property.
* gtk/gtkwidget.c: Add an ::interior_focus style property to
draw focus inside buttons, in the Windows/Java Metal/etc. style.
* gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
Honor ::interior_focus.
* gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is
TRUE.
* gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
Add ::slider_width, ::trough_border, ::stepper_size,
::stepper_spacing style properties.
* gtk/gtkscale.[ch] Add ::slider-length style property.
2001-04-02 15:51:28 +00:00
|
|
|
|
2016-01-18 02:16:33 +00:00
|
|
|
container_class->add = gtk_check_button_add;
|
|
|
|
container_class->remove = gtk_check_button_remove;
|
|
|
|
|
2015-10-30 04:27:13 +00:00
|
|
|
gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_CHECK_BOX);
|
|
|
|
gtk_widget_class_set_css_name (widget_class, "checkbutton");
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2012-08-10 17:41:48 +00:00
|
|
|
static void
|
|
|
|
draw_indicator_changed (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (object);
|
2015-10-30 04:27:13 +00:00
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (button));
|
|
|
|
GtkCssNode *widget_node;
|
2015-12-04 05:34:52 +00:00
|
|
|
GtkCssNode *indicator_node;
|
2015-10-30 04:27:13 +00:00
|
|
|
|
|
|
|
widget_node = gtk_widget_get_css_node (GTK_WIDGET (button));
|
2015-12-04 05:34:52 +00:00
|
|
|
indicator_node = gtk_css_gadget_get_node (priv->indicator_gadget);
|
2012-08-10 17:41:48 +00:00
|
|
|
|
|
|
|
if (gtk_toggle_button_get_mode (GTK_TOGGLE_BUTTON (button)))
|
2015-10-30 04:27:13 +00:00
|
|
|
{
|
2015-12-04 05:34:52 +00:00
|
|
|
gtk_css_node_set_visible (indicator_node, TRUE);
|
2015-11-03 04:06:57 +00:00
|
|
|
if (GTK_IS_RADIO_BUTTON (button))
|
|
|
|
{
|
|
|
|
gtk_css_node_remove_class (widget_node, g_quark_from_static_string ("radio"));
|
|
|
|
gtk_css_node_set_name (widget_node, I_("radiobutton"));
|
|
|
|
}
|
|
|
|
else if (GTK_IS_CHECK_BUTTON (button))
|
|
|
|
{
|
|
|
|
gtk_css_node_remove_class (widget_node, g_quark_from_static_string ("check"));
|
|
|
|
gtk_css_node_set_name (widget_node, I_("checkbutton"));
|
|
|
|
}
|
2015-10-30 04:27:13 +00:00
|
|
|
}
|
2012-08-10 17:41:48 +00:00
|
|
|
else
|
2015-10-30 04:27:13 +00:00
|
|
|
{
|
2015-12-04 05:34:52 +00:00
|
|
|
gtk_css_node_set_visible (indicator_node, FALSE);
|
2015-11-03 04:06:57 +00:00
|
|
|
if (GTK_IS_RADIO_BUTTON (button))
|
|
|
|
{
|
|
|
|
gtk_css_node_add_class (widget_node, g_quark_from_static_string ("radio"));
|
|
|
|
gtk_css_node_set_name (widget_node, I_("button"));
|
|
|
|
}
|
|
|
|
else if (GTK_IS_CHECK_BUTTON (button))
|
|
|
|
{
|
|
|
|
gtk_css_node_add_class (widget_node, g_quark_from_static_string ("check"));
|
|
|
|
gtk_css_node_set_name (widget_node, I_("button"));
|
|
|
|
}
|
2015-10-30 04:27:13 +00:00
|
|
|
}
|
2012-08-10 17:41:48 +00:00
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_init (GtkCheckButton *check_button)
|
|
|
|
{
|
2015-10-30 04:27:13 +00:00
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (check_button);
|
|
|
|
GtkCssNode *widget_node;
|
|
|
|
|
2010-03-01 16:41:37 +00:00
|
|
|
gtk_widget_set_receives_default (GTK_WIDGET (check_button), FALSE);
|
2012-08-10 17:41:48 +00:00
|
|
|
g_signal_connect (check_button, "notify::draw-indicator", G_CALLBACK (draw_indicator_changed), NULL);
|
2010-10-19 02:15:37 +00:00
|
|
|
gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (check_button), TRUE);
|
2015-10-30 04:27:13 +00:00
|
|
|
|
|
|
|
gtk_style_context_remove_class (gtk_widget_get_style_context (GTK_WIDGET (check_button)), "toggle");
|
|
|
|
|
|
|
|
widget_node = gtk_widget_get_css_node (GTK_WIDGET (check_button));
|
2016-01-18 02:16:33 +00:00
|
|
|
priv->gadget = gtk_box_gadget_new_for_node (widget_node, GTK_WIDGET (check_button));
|
|
|
|
gtk_box_gadget_set_orientation (GTK_BOX_GADGET (priv->gadget), GTK_ORIENTATION_HORIZONTAL);
|
2016-02-20 15:45:07 +00:00
|
|
|
gtk_box_gadget_set_draw_focus (GTK_BOX_GADGET (priv->gadget), TRUE);
|
2015-12-16 17:44:58 +00:00
|
|
|
priv->indicator_gadget = gtk_builtin_icon_new ("check",
|
|
|
|
GTK_WIDGET (check_button),
|
|
|
|
priv->gadget,
|
|
|
|
NULL);
|
2016-04-29 01:55:52 +00:00
|
|
|
gtk_box_gadget_insert_gadget (GTK_BOX_GADGET (priv->gadget), 0, priv->indicator_gadget, FALSE, GTK_ALIGN_BASELINE);
|
2015-12-28 15:24:02 +00:00
|
|
|
|
|
|
|
gtk_check_button_update_node_state (GTK_WIDGET (check_button));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2011-04-13 11:25:06 +00:00
|
|
|
/**
|
|
|
|
* gtk_check_button_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GtkCheckButton.
|
|
|
|
*
|
|
|
|
* Returns: a #GtkWidget.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidget*
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_check_button_new (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2002-10-11 22:57:11 +00:00
|
|
|
return g_object_new (GTK_TYPE_CHECK_BUTTON, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-13 11:25:06 +00:00
|
|
|
/**
|
|
|
|
* gtk_check_button_new_with_label:
|
|
|
|
* @label: the text for the check button.
|
|
|
|
*
|
|
|
|
* Creates a new #GtkCheckButton with a #GtkLabel to the right of it.
|
|
|
|
*
|
|
|
|
* Returns: a #GtkWidget.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidget*
|
|
|
|
gtk_check_button_new_with_label (const gchar *label)
|
|
|
|
{
|
2001-08-27 01:05:07 +00:00
|
|
|
return g_object_new (GTK_TYPE_CHECK_BUTTON, "label", label, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2001-03-21 18:58:28 +00:00
|
|
|
/**
|
|
|
|
* gtk_check_button_new_with_mnemonic:
|
|
|
|
* @label: The text of the button, with an underscore in front of the
|
2011-04-13 11:25:06 +00:00
|
|
|
* mnemonic character
|
2001-03-21 18:58:28 +00:00
|
|
|
*
|
2001-06-05 18:22:30 +00:00
|
|
|
* Creates a new #GtkCheckButton containing a label. The label
|
|
|
|
* will be created using gtk_label_new_with_mnemonic(), so underscores
|
|
|
|
* in @label indicate the mnemonic for the check button.
|
2011-09-26 00:58:59 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GtkCheckButton
|
|
|
|
*/
|
2001-03-21 18:58:28 +00:00
|
|
|
GtkWidget*
|
|
|
|
gtk_check_button_new_with_mnemonic (const gchar *label)
|
|
|
|
{
|
2006-07-06 05:14:03 +00:00
|
|
|
return g_object_new (GTK_TYPE_CHECK_BUTTON,
|
|
|
|
"label", label,
|
|
|
|
"use-underline", TRUE,
|
|
|
|
NULL);
|
2001-03-21 18:58:28 +00:00
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
2015-12-04 05:34:52 +00:00
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (widget));
|
2016-01-18 02:16:33 +00:00
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
2015-12-04 05:34:52 +00:00
|
|
|
GtkCssGadget *gadget;
|
|
|
|
GdkRectangle clip;
|
2016-01-18 02:16:33 +00:00
|
|
|
PangoContext *pango_context;
|
|
|
|
PangoFontMetrics *metrics;
|
2015-12-04 05:34:52 +00:00
|
|
|
|
|
|
|
if (gtk_toggle_button_get_mode (GTK_TOGGLE_BUTTON (widget)))
|
|
|
|
gadget = priv->gadget;
|
|
|
|
else
|
2016-01-18 02:16:33 +00:00
|
|
|
gadget = button->priv->gadget;
|
2015-12-04 05:34:52 +00:00
|
|
|
|
|
|
|
gtk_widget_set_allocation (widget, allocation);
|
|
|
|
gtk_css_gadget_allocate (gadget,
|
|
|
|
allocation,
|
|
|
|
gtk_widget_get_allocated_baseline (widget),
|
|
|
|
&clip);
|
|
|
|
|
|
|
|
gtk_widget_set_clip (widget, &clip);
|
|
|
|
|
|
|
|
pango_context = gtk_widget_get_pango_context (widget);
|
|
|
|
metrics = pango_context_get_metrics (pango_context,
|
|
|
|
pango_context_get_font_description (pango_context),
|
|
|
|
pango_context_get_language (pango_context));
|
|
|
|
button->priv->baseline_align =
|
|
|
|
(double)pango_font_metrics_get_ascent (metrics) /
|
|
|
|
(pango_font_metrics_get_ascent (metrics) + pango_font_metrics_get_descent (metrics));
|
|
|
|
pango_font_metrics_unref (metrics);
|
|
|
|
|
2016-01-12 19:18:08 +00:00
|
|
|
if (gtk_widget_get_realized (widget))
|
|
|
|
{
|
|
|
|
GtkAllocation border_allocation;
|
|
|
|
gtk_css_gadget_get_border_allocation (gadget, &border_allocation, NULL);
|
|
|
|
gdk_window_move_resize (GTK_BUTTON (widget)->priv->event_window,
|
|
|
|
border_allocation.x,
|
|
|
|
border_allocation.y,
|
|
|
|
border_allocation.width,
|
|
|
|
border_allocation.height);
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:55:03 +00:00
|
|
|
static void
|
|
|
|
gtk_check_button_snapshot (GtkWidget *widget,
|
|
|
|
GtkSnapshot *snapshot)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2015-12-04 05:34:52 +00:00
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (GTK_CHECK_BUTTON (widget));
|
2010-10-19 02:15:37 +00:00
|
|
|
|
2016-08-06 23:35:03 +00:00
|
|
|
if (!gtk_toggle_button_get_mode (GTK_TOGGLE_BUTTON (widget)))
|
2016-11-14 20:55:03 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_check_button_parent_class)->snapshot (widget, snapshot);
|
2016-10-28 16:58:18 +00:00
|
|
|
else
|
2016-11-14 20:55:03 +00:00
|
|
|
gtk_css_gadget_snapshot (priv->gadget, snapshot);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 04:27:13 +00:00
|
|
|
GtkCssNode *
|
|
|
|
gtk_check_button_get_indicator_node (GtkCheckButton *check_button)
|
|
|
|
{
|
|
|
|
GtkCheckButtonPrivate *priv = gtk_check_button_get_instance_private (check_button);
|
|
|
|
|
2015-12-04 05:34:52 +00:00
|
|
|
return gtk_css_gadget_get_node (priv->indicator_gadget);
|
2015-10-30 04:27:13 +00:00
|
|
|
}
|