1997-11-24 22:37:52 +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
|
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
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2001-03-23 23:39:24 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2001. 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/.
|
|
|
|
*/
|
|
|
|
|
2004-03-06 03:38:59 +00:00
|
|
|
#include <config.h>
|
1998-01-03 05:46:58 +00:00
|
|
|
#include <string.h>
|
2001-09-08 19:33:06 +00:00
|
|
|
#include "gtkalignment.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkbutton.h"
|
|
|
|
#include "gtklabel.h"
|
|
|
|
#include "gtkmain.h"
|
2001-11-17 23:28:51 +00:00
|
|
|
#include "gtkmarshalers.h"
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
#include "gtkimage.h"
|
|
|
|
#include "gtkhbox.h"
|
2006-05-31 00:22:19 +00:00
|
|
|
#include "gtkvbox.h"
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
#include "gtkstock.h"
|
|
|
|
#include "gtkiconfactory.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2001-03-23 23:39:24 +00:00
|
|
|
#include "gtkintl.h"
|
2005-03-20 07:01:23 +00:00
|
|
|
#include "gtkalias.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2002-12-10 21:39:53 +00:00
|
|
|
static const GtkBorder default_default_border = { 1, 1, 1, 1 };
|
|
|
|
static const GtkBorder default_default_outside_border = { 0, 0, 0, 0 };
|
2006-01-17 15:49:18 +00:00
|
|
|
static const GtkBorder default_inner_border = { 1, 1, 1, 1 };
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
/* Time out before giving up on getting a key release when animating
|
2001-03-06 15:51:10 +00:00
|
|
|
* the close button.
|
|
|
|
*/
|
|
|
|
#define ACTIVATE_TIMEOUT 250
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PRESSED,
|
|
|
|
RELEASED,
|
|
|
|
CLICKED,
|
|
|
|
ENTER,
|
|
|
|
LEAVE,
|
2001-03-06 15:51:10 +00:00
|
|
|
ACTIVATE,
|
1997-11-24 22:37:52 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
1998-01-16 00:49:51 +00:00
|
|
|
enum {
|
2001-03-23 23:39:24 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_LABEL,
|
2004-11-15 20:56:28 +00:00
|
|
|
PROP_IMAGE,
|
2001-08-27 01:05:07 +00:00
|
|
|
PROP_RELIEF,
|
|
|
|
PROP_USE_UNDERLINE,
|
2003-04-02 21:50:45 +00:00
|
|
|
PROP_USE_STOCK,
|
2003-12-15 00:00:19 +00:00
|
|
|
PROP_FOCUS_ON_CLICK,
|
|
|
|
PROP_XALIGN,
|
2004-11-15 20:56:28 +00:00
|
|
|
PROP_YALIGN,
|
2006-05-31 00:22:19 +00:00
|
|
|
PROP_IMAGE_POSITION
|
2003-12-15 00:00:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GTK_BUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_BUTTON, GtkButtonPrivate))
|
|
|
|
typedef struct _GtkButtonPrivate GtkButtonPrivate;
|
|
|
|
|
|
|
|
struct _GtkButtonPrivate
|
|
|
|
{
|
2006-05-31 00:22:19 +00:00
|
|
|
gfloat xalign;
|
|
|
|
gfloat yalign;
|
|
|
|
GtkWidget *image;
|
|
|
|
guint align_set : 1;
|
|
|
|
guint image_is_stock : 1;
|
|
|
|
guint has_grab : 1;
|
|
|
|
guint32 grab_time;
|
|
|
|
GtkPositionType image_position;
|
1998-01-16 00:49:51 +00:00
|
|
|
};
|
1998-05-03 22:41:32 +00:00
|
|
|
|
2005-06-30 21:18:34 +00:00
|
|
|
static void gtk_button_destroy (GtkObject *object);
|
|
|
|
static void gtk_button_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_button_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_button_screen_changed (GtkWidget *widget,
|
|
|
|
GdkScreen *previous_screen);
|
|
|
|
static void gtk_button_realize (GtkWidget *widget);
|
|
|
|
static void gtk_button_unrealize (GtkWidget *widget);
|
|
|
|
static void gtk_button_map (GtkWidget *widget);
|
|
|
|
static void gtk_button_unmap (GtkWidget *widget);
|
2006-06-01 13:42:14 +00:00
|
|
|
static void gtk_button_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *prev_style);
|
2005-06-30 21:18:34 +00:00
|
|
|
static void gtk_button_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static gint gtk_button_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event);
|
|
|
|
static gint gtk_button_button_press (GtkWidget *widget,
|
|
|
|
GdkEventButton *event);
|
|
|
|
static gint gtk_button_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *event);
|
|
|
|
static gint gtk_button_grab_broken (GtkWidget *widget,
|
|
|
|
GdkEventGrabBroken *event);
|
|
|
|
static gint gtk_button_key_release (GtkWidget *widget,
|
|
|
|
GdkEventKey *event);
|
|
|
|
static gint gtk_button_enter_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event);
|
|
|
|
static gint gtk_button_leave_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event);
|
|
|
|
static void gtk_real_button_pressed (GtkButton *button);
|
|
|
|
static void gtk_real_button_released (GtkButton *button);
|
|
|
|
static void gtk_real_button_activate (GtkButton *button);
|
|
|
|
static void gtk_button_update_state (GtkButton *button);
|
|
|
|
static void gtk_button_add (GtkContainer *container,
|
|
|
|
GtkWidget *widget);
|
|
|
|
static GType gtk_button_child_type (GtkContainer *container);
|
|
|
|
static void gtk_button_finish_activate (GtkButton *button,
|
|
|
|
gboolean do_it);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2004-09-26 05:47:11 +00:00
|
|
|
static GObject* gtk_button_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_params);
|
2004-02-19 22:39:58 +00:00
|
|
|
static void gtk_button_construct_child (GtkButton *button);
|
2004-09-26 05:47:11 +00:00
|
|
|
static void gtk_button_state_changed (GtkWidget *widget,
|
|
|
|
GtkStateType previous_state);
|
|
|
|
static void gtk_button_grab_notify (GtkWidget *widget,
|
|
|
|
gboolean was_grabbed);
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
|
1998-03-09 15:16:28 +00:00
|
|
|
static guint button_signals[LAST_SIGNAL] = { 0 };
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkButton, gtk_button, GTK_TYPE_BIN)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_class_init (GtkButtonClass *klass)
|
|
|
|
{
|
2002-10-11 22:57:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
GtkContainerClass *container_class;
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
1997-11-24 22:37:52 +00:00
|
|
|
object_class = (GtkObjectClass*) klass;
|
|
|
|
widget_class = (GtkWidgetClass*) klass;
|
|
|
|
container_class = (GtkContainerClass*) klass;
|
2001-03-09 13:28:26 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
gobject_class->constructor = gtk_button_constructor;
|
|
|
|
gobject_class->set_property = gtk_button_set_property;
|
|
|
|
gobject_class->get_property = gtk_button_get_property;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
|
2001-11-25 22:19:22 +00:00
|
|
|
object_class->destroy = gtk_button_destroy;
|
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
widget_class->screen_changed = gtk_button_screen_changed;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
widget_class->realize = gtk_button_realize;
|
2001-03-06 15:51:10 +00:00
|
|
|
widget_class->unrealize = gtk_button_unrealize;
|
2001-11-15 21:04:51 +00:00
|
|
|
widget_class->map = gtk_button_map;
|
|
|
|
widget_class->unmap = gtk_button_unmap;
|
2006-06-01 13:42:14 +00:00
|
|
|
widget_class->style_set = gtk_button_style_set;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
widget_class->size_request = gtk_button_size_request;
|
|
|
|
widget_class->size_allocate = gtk_button_size_allocate;
|
|
|
|
widget_class->expose_event = gtk_button_expose;
|
|
|
|
widget_class->button_press_event = gtk_button_button_press;
|
|
|
|
widget_class->button_release_event = gtk_button_button_release;
|
2005-06-30 03:35:30 +00:00
|
|
|
widget_class->grab_broken_event = gtk_button_grab_broken;
|
2001-03-06 15:51:10 +00:00
|
|
|
widget_class->key_release_event = gtk_button_key_release;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
widget_class->enter_notify_event = gtk_button_enter_notify;
|
|
|
|
widget_class->leave_notify_event = gtk_button_leave_notify;
|
2004-09-26 05:47:11 +00:00
|
|
|
widget_class->state_changed = gtk_button_state_changed;
|
|
|
|
widget_class->grab_notify = gtk_button_grab_notify;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
|
|
|
|
container_class->child_type = gtk_button_child_type;
|
2004-03-07 22:49:44 +00:00
|
|
|
container_class->add = gtk_button_add;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
|
|
|
|
klass->pressed = gtk_real_button_pressed;
|
|
|
|
klass->released = gtk_real_button_released;
|
|
|
|
klass->clicked = NULL;
|
2001-08-25 23:11:46 +00:00
|
|
|
klass->enter = gtk_button_update_state;
|
|
|
|
klass->leave = gtk_button_update_state;
|
2001-03-06 15:51:10 +00:00
|
|
|
klass->activate = gtk_real_button_activate;
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2001-03-23 23:39:24 +00:00
|
|
|
PROP_LABEL,
|
|
|
|
g_param_spec_string ("label",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Label"),
|
|
|
|
P_("Text of the label widget inside the button, if the button contains a label widget"),
|
2001-03-23 23:39:24 +00:00
|
|
|
NULL,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
2001-08-27 01:05:07 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2001-08-27 01:05:07 +00:00
|
|
|
PROP_USE_UNDERLINE,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_boolean ("use-underline",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Use underline"),
|
|
|
|
P_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"),
|
2001-08-27 01:05:07 +00:00
|
|
|
FALSE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
2001-08-27 01:05:07 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2001-08-27 01:05:07 +00:00
|
|
|
PROP_USE_STOCK,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_boolean ("use-stock",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Use stock"),
|
|
|
|
P_("If set, the label is used to pick a stock item instead of being displayed"),
|
2001-08-27 01:05:07 +00:00
|
|
|
FALSE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
2001-03-23 23:39:24 +00:00
|
|
|
|
2003-04-02 21:50:45 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_FOCUS_ON_CLICK,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_boolean ("focus-on-click",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Focus on click"),
|
|
|
|
P_("Whether the button grabs focus when it is clicked with the mouse"),
|
2003-04-02 21:50:45 +00:00
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-04-02 21:50:45 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2001-03-23 23:39:24 +00:00
|
|
|
PROP_RELIEF,
|
|
|
|
g_param_spec_enum ("relief",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Border relief"),
|
|
|
|
P_("The border relief style"),
|
2001-03-23 23:39:24 +00:00
|
|
|
GTK_TYPE_RELIEF_STYLE,
|
|
|
|
GTK_RELIEF_NORMAL,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-12-15 00:00:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton:xalign:
|
|
|
|
*
|
|
|
|
* If the child of the button is a #GtkMisc or #GtkAlignment, this property
|
|
|
|
* can be used to control it's horizontal alignment. 0.0 is left aligned,
|
|
|
|
* 1.0 is right aligned.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_XALIGN,
|
|
|
|
g_param_spec_float("xalign",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Horizontal alignment for child"),
|
|
|
|
P_("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
|
2003-12-15 00:00:19 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
0.5,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-12-15 00:00:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton:yalign:
|
|
|
|
*
|
|
|
|
* If the child of the button is a #GtkMisc or #GtkAlignment, this property
|
|
|
|
* can be used to control it's vertical alignment. 0.0 is top aligned,
|
|
|
|
* 1.0 is bottom aligned.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_YALIGN,
|
|
|
|
g_param_spec_float("yalign",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Vertical alignment for child"),
|
|
|
|
P_("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
|
2003-12-15 00:00:19 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
0.5,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2004-11-15 20:56:28 +00:00
|
|
|
/**
|
|
|
|
* GtkButton::image:
|
|
|
|
*
|
|
|
|
* The child widget to appear next to the button text.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_IMAGE,
|
|
|
|
g_param_spec_object ("image",
|
|
|
|
P_("Image widget"),
|
|
|
|
P_("Child widget to appear next to the button text"),
|
|
|
|
GTK_TYPE_WIDGET,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-11-15 20:56:28 +00:00
|
|
|
|
2006-05-31 00:22:19 +00:00
|
|
|
/**
|
|
|
|
* GtkButton:image-position:
|
|
|
|
*
|
2006-06-01 13:42:14 +00:00
|
|
|
* The position of the image relative to the text inside the button.
|
2006-05-31 00:22:19 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_IMAGE_POSITION,
|
|
|
|
g_param_spec_enum ("image-position",
|
2006-06-01 13:42:14 +00:00
|
|
|
P_("Image position"),
|
2006-05-31 00:22:19 +00:00
|
|
|
P_("The position of the image relative to the text"),
|
|
|
|
GTK_TYPE_POSITION_TYPE,
|
|
|
|
GTK_POS_LEFT,
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
2005-06-17 18:42:49 +00:00
|
|
|
/**
|
|
|
|
* GtkButton::pressed:
|
|
|
|
* @button: the object that received the signal
|
|
|
|
*
|
|
|
|
* Emitted when the button is pressed.
|
|
|
|
*
|
|
|
|
* @Deprecated: Use the GtkWidget::button-press-event signal.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
button_signals[PRESSED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("pressed"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, pressed),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-17 18:42:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton::released:
|
|
|
|
* @button: the object that received the signal
|
|
|
|
*
|
|
|
|
* Emitted when the button is released.
|
|
|
|
*
|
|
|
|
* @Deprecated: Use the GtkWidget::button-release-event signal.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
button_signals[RELEASED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("released"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, released),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-17 18:42:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton::clicked:
|
|
|
|
* @button: the object that received the signal
|
|
|
|
*
|
|
|
|
* Emitted when the button has been activated (pressed and released).
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
button_signals[CLICKED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("clicked"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, clicked),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-17 18:42:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton::enter:
|
|
|
|
* @button: the object that received the signal
|
|
|
|
*
|
|
|
|
* Emitted when the pointer enters the button.
|
|
|
|
*
|
|
|
|
* @Deprecated: Use the GtkWidget::enter-notify-event signal.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
button_signals[ENTER] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("enter"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, enter),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-17 18:42:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton::leave:
|
|
|
|
* @button: the object that received the signal
|
|
|
|
*
|
|
|
|
* Emitted when the pointer leaves the button.
|
|
|
|
*
|
|
|
|
* @Deprecated: Use the GtkWidget::leave-notify-event signal.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
button_signals[LEAVE] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("leave"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, leave),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2003-12-18 00:39:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkButton::activate:
|
2004-04-15 14:31:02 +00:00
|
|
|
* @widget: the object which received the signal.
|
2003-12-18 00:39:17 +00:00
|
|
|
*
|
|
|
|
* The "activate" signal on GtkButton is an action signal and
|
|
|
|
* emitting it causes the button to animate press then release.
|
|
|
|
* Applications should never connect to this signal, but use the
|
|
|
|
* "clicked" signal.
|
|
|
|
*/
|
2001-03-06 15:51:10 +00:00
|
|
|
button_signals[ACTIVATE] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("activate"),
|
2002-10-11 22:57:11 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
|
|
|
|
G_STRUCT_OFFSET (GtkButtonClass, activate),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2001-03-06 15:51:10 +00:00
|
|
|
widget_class->activate_signal = button_signals[ACTIVATE];
|
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
|
|
|
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_boxed ("default-border",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Default Spacing"),
|
|
|
|
P_("Extra space to add for CAN_DEFAULT buttons"),
|
2001-04-30 23:23:54 +00:00
|
|
|
GTK_TYPE_BORDER,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READABLE));
|
2001-04-30 23:23:54 +00:00
|
|
|
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_boxed ("default-outside-border",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Default Outside Spacing"),
|
|
|
|
P_("Extra space to add for CAN_DEFAULT buttons that is always drawn outside the border"),
|
2001-04-30 23:23:54 +00:00
|
|
|
GTK_TYPE_BORDER,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READABLE));
|
2001-08-25 23:11:46 +00:00
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_int ("child-displacement-x",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Child X Displacement"),
|
|
|
|
P_("How far in the x direction to move the child when the button is depressed"),
|
2001-08-25 23:11:46 +00:00
|
|
|
G_MININT,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READABLE));
|
2001-08-25 23:11:46 +00:00
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_int ("child-displacement-y",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Child Y Displacement"),
|
|
|
|
P_("How far in the y direction to move the child when the button is depressed"),
|
2001-08-25 23:11:46 +00:00
|
|
|
G_MININT,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READABLE));
|
2003-12-15 00:00:19 +00:00
|
|
|
|
2004-09-20 14:43:18 +00:00
|
|
|
/**
|
|
|
|
* GtkButton:displace-focus:
|
|
|
|
*
|
|
|
|
* Whether the child_displacement_x/child_displacement_y properties should also
|
|
|
|
* affect the focus rectangle.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
*/
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
|
|
|
g_param_spec_boolean ("displace-focus",
|
|
|
|
P_("Displace focus"),
|
|
|
|
P_("Whether the child_displacement_x/_y properties should also affect the focus rectangle"),
|
|
|
|
FALSE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READABLE));
|
2004-09-20 14:43:18 +00:00
|
|
|
|
2006-01-16 14:49:36 +00:00
|
|
|
/**
|
2006-01-17 15:49:18 +00:00
|
|
|
* GtkButton:inner-border:
|
2006-01-16 14:49:36 +00:00
|
|
|
*
|
2006-01-17 15:49:18 +00:00
|
|
|
* Sets the border between the button edges and child.
|
2006-01-16 14:49:36 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
2006-01-17 15:49:18 +00:00
|
|
|
g_param_spec_boxed ("inner-border",
|
|
|
|
P_("Inner Border"),
|
|
|
|
P_("Border between button edges and child."),
|
|
|
|
GTK_TYPE_BORDER,
|
|
|
|
GTK_PARAM_READABLE));
|
2006-01-16 14:49:36 +00:00
|
|
|
|
2006-06-01 13:42:14 +00:00
|
|
|
/**
|
|
|
|
* GtkButton::image-spacing:
|
|
|
|
*
|
|
|
|
* Spacing in pixels between the image and label.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
|
|
|
g_param_spec_int ("image-spacing",
|
|
|
|
P_("Image spacing"),
|
|
|
|
P_("Spacing in pixels between the image and label"),
|
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
2,
|
|
|
|
GTK_PARAM_READABLE));
|
|
|
|
|
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
gtk_settings_install_property (g_param_spec_boolean ("gtk-button-images",
|
|
|
|
P_("Show button images"),
|
|
|
|
P_("Whether stock icons should be shown in buttons"),
|
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2006-01-16 14:49:36 +00:00
|
|
|
|
|
|
|
g_type_class_add_private (gobject_class, sizeof (GtkButtonPrivate));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_init (GtkButton *button)
|
|
|
|
{
|
2003-12-15 00:00:19 +00:00
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
1999-01-25 19:05:58 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_FOCUS | GTK_RECEIVES_DEFAULT);
|
2001-11-15 21:04:51 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (button, GTK_NO_WINDOW);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
button->label_text = NULL;
|
|
|
|
|
|
|
|
button->constructed = FALSE;
|
1997-11-24 22:37:52 +00:00
|
|
|
button->in_button = FALSE;
|
|
|
|
button->button_down = FALSE;
|
1998-05-12 21:30:52 +00:00
|
|
|
button->relief = GTK_RELIEF_NORMAL;
|
2001-08-27 01:05:07 +00:00
|
|
|
button->use_stock = FALSE;
|
|
|
|
button->use_underline = FALSE;
|
2001-08-25 23:11:46 +00:00
|
|
|
button->depressed = FALSE;
|
2002-02-22 13:34:28 +00:00
|
|
|
button->depress_on_activate = TRUE;
|
2003-04-02 21:50:45 +00:00
|
|
|
button->focus_on_click = TRUE;
|
2003-12-15 00:00:19 +00:00
|
|
|
|
|
|
|
priv->xalign = 0.5;
|
|
|
|
priv->yalign = 0.5;
|
2004-03-10 00:46:51 +00:00
|
|
|
priv->align_set = 0;
|
2005-01-02 03:14:34 +00:00
|
|
|
priv->image_is_stock = TRUE;
|
2006-05-31 00:22:19 +00:00
|
|
|
priv->image_position = GTK_POS_LEFT;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2001-11-25 22:19:22 +00:00
|
|
|
static void
|
|
|
|
gtk_button_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (object);
|
|
|
|
|
|
|
|
if (button->label_text)
|
|
|
|
{
|
|
|
|
g_free (button->label_text);
|
|
|
|
button->label_text = NULL;
|
|
|
|
}
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
(* GTK_OBJECT_CLASS (gtk_button_parent_class)->destroy) (object);
|
2001-11-25 22:19:22 +00:00
|
|
|
}
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
static GObject*
|
|
|
|
gtk_button_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_params)
|
|
|
|
{
|
|
|
|
GObject *object;
|
|
|
|
GtkButton *button;
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
object = (* G_OBJECT_CLASS (gtk_button_parent_class)->constructor) (type,
|
|
|
|
n_construct_properties,
|
|
|
|
construct_params);
|
2001-08-27 01:05:07 +00:00
|
|
|
|
|
|
|
button = GTK_BUTTON (object);
|
|
|
|
button->constructed = TRUE;
|
|
|
|
|
|
|
|
if (button->label_text != NULL)
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
static GType
|
1998-06-16 05:20:05 +00:00
|
|
|
gtk_button_child_type (GtkContainer *container)
|
|
|
|
{
|
1998-07-07 01:25:27 +00:00
|
|
|
if (!GTK_BIN (container)->child)
|
1998-06-16 05:20:05 +00:00
|
|
|
return GTK_TYPE_WIDGET;
|
|
|
|
else
|
2002-10-11 22:57:11 +00:00
|
|
|
return G_TYPE_NONE;
|
1998-06-16 05:20:05 +00:00
|
|
|
}
|
|
|
|
|
2003-12-15 00:00:19 +00:00
|
|
|
static void
|
2004-03-10 00:46:51 +00:00
|
|
|
maybe_set_alignment (GtkButton *button,
|
|
|
|
GtkWidget *widget)
|
2003-12-15 00:00:19 +00:00
|
|
|
{
|
2004-03-10 00:46:51 +00:00
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
2003-12-15 00:00:19 +00:00
|
|
|
if (GTK_IS_MISC (widget))
|
|
|
|
{
|
|
|
|
GtkMisc *misc = GTK_MISC (widget);
|
2004-03-10 00:46:51 +00:00
|
|
|
|
|
|
|
if (priv->align_set)
|
|
|
|
gtk_misc_set_alignment (misc, priv->xalign, priv->yalign);
|
2003-12-15 00:00:19 +00:00
|
|
|
}
|
|
|
|
else if (GTK_IS_ALIGNMENT (widget))
|
|
|
|
{
|
|
|
|
GtkAlignment *alignment = GTK_ALIGNMENT (widget);
|
2004-03-10 00:46:51 +00:00
|
|
|
|
|
|
|
if (priv->align_set)
|
|
|
|
gtk_alignment_set (alignment, priv->xalign, priv->yalign,
|
|
|
|
alignment->xscale, alignment->yscale);
|
2003-12-15 00:00:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_add (GtkContainer *container,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
2004-03-10 00:46:51 +00:00
|
|
|
maybe_set_alignment (GTK_BUTTON (container), widget);
|
2003-12-15 00:00:19 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_CONTAINER_CLASS (gtk_button_parent_class)->add (container, widget);
|
2003-12-15 00:00:19 +00:00
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
2001-03-23 23:39:24 +00:00
|
|
|
gtk_button_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2003-12-15 00:00:19 +00:00
|
|
|
GtkButton *button = GTK_BUTTON (object);
|
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-03-23 23:39:24 +00:00
|
|
|
switch (prop_id)
|
1998-01-16 00:49:51 +00:00
|
|
|
{
|
2001-03-23 23:39:24 +00:00
|
|
|
case PROP_LABEL:
|
2001-08-27 01:05:07 +00:00
|
|
|
gtk_button_set_label (button, g_value_get_string (value));
|
1998-01-16 00:49:51 +00:00
|
|
|
break;
|
2004-11-15 20:56:28 +00:00
|
|
|
case PROP_IMAGE:
|
|
|
|
gtk_button_set_image (button, (GtkWidget *) g_value_get_object (value));
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
case PROP_RELIEF:
|
|
|
|
gtk_button_set_relief (button, g_value_get_enum (value));
|
1998-07-08 14:12:27 +00:00
|
|
|
break;
|
2001-08-27 01:05:07 +00:00
|
|
|
case PROP_USE_UNDERLINE:
|
|
|
|
gtk_button_set_use_underline (button, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
case PROP_USE_STOCK:
|
|
|
|
gtk_button_set_use_stock (button, g_value_get_boolean (value));
|
|
|
|
break;
|
2003-04-02 21:50:45 +00:00
|
|
|
case PROP_FOCUS_ON_CLICK:
|
|
|
|
gtk_button_set_focus_on_click (button, g_value_get_boolean (value));
|
|
|
|
break;
|
2003-12-15 00:00:19 +00:00
|
|
|
case PROP_XALIGN:
|
|
|
|
gtk_button_set_alignment (button, g_value_get_float (value), priv->yalign);
|
|
|
|
break;
|
|
|
|
case PROP_YALIGN:
|
|
|
|
gtk_button_set_alignment (button, priv->xalign, g_value_get_float (value));
|
|
|
|
break;
|
2006-05-31 00:22:19 +00:00
|
|
|
case PROP_IMAGE_POSITION:
|
|
|
|
gtk_button_set_image_position (button, g_value_get_enum (value));
|
|
|
|
break;
|
1998-06-16 05:20:05 +00:00
|
|
|
default:
|
2001-03-23 23:39:24 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-06-16 05:20:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-23 23:39:24 +00:00
|
|
|
gtk_button_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
1998-06-16 05:20:05 +00:00
|
|
|
{
|
2003-12-15 00:00:19 +00:00
|
|
|
GtkButton *button = GTK_BUTTON (object);
|
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
1998-06-28 07:46:10 +00:00
|
|
|
|
2001-03-23 23:39:24 +00:00
|
|
|
switch (prop_id)
|
1998-06-16 05:20:05 +00:00
|
|
|
{
|
2001-03-23 23:39:24 +00:00
|
|
|
case PROP_LABEL:
|
2001-08-27 01:05:07 +00:00
|
|
|
g_value_set_string (value, button->label_text);
|
1998-06-16 05:20:05 +00:00
|
|
|
break;
|
2004-11-15 20:56:28 +00:00
|
|
|
case PROP_IMAGE:
|
|
|
|
g_value_set_object (value, (GObject *)priv->image);
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
case PROP_RELIEF:
|
2001-03-30 15:46:17 +00:00
|
|
|
g_value_set_enum (value, gtk_button_get_relief (button));
|
1998-07-08 14:12:27 +00:00
|
|
|
break;
|
2001-08-27 01:05:07 +00:00
|
|
|
case PROP_USE_UNDERLINE:
|
|
|
|
g_value_set_boolean (value, button->use_underline);
|
|
|
|
break;
|
|
|
|
case PROP_USE_STOCK:
|
|
|
|
g_value_set_boolean (value, button->use_stock);
|
|
|
|
break;
|
2003-04-02 21:50:45 +00:00
|
|
|
case PROP_FOCUS_ON_CLICK:
|
|
|
|
g_value_set_boolean (value, button->focus_on_click);
|
|
|
|
break;
|
2003-12-15 00:00:19 +00:00
|
|
|
case PROP_XALIGN:
|
|
|
|
g_value_set_float (value, priv->xalign);
|
|
|
|
break;
|
|
|
|
case PROP_YALIGN:
|
|
|
|
g_value_set_float (value, priv->yalign);
|
|
|
|
break;
|
2006-05-31 00:22:19 +00:00
|
|
|
case PROP_IMAGE_POSITION:
|
|
|
|
g_value_set_enum (value, priv->image_position);
|
|
|
|
break;
|
1998-01-21 23:03:11 +00:00
|
|
|
default:
|
2001-03-23 23:39:24 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-01-21 23:03:11 +00:00
|
|
|
break;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_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_BUTTON, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
static gboolean
|
|
|
|
show_image (GtkButton *button)
|
|
|
|
{
|
|
|
|
gboolean show;
|
2006-03-06 03:47:06 +00:00
|
|
|
|
|
|
|
if (button->label_text)
|
|
|
|
{
|
|
|
|
GtkSettings *settings;
|
2004-02-19 22:39:58 +00:00
|
|
|
|
2006-03-06 03:47:06 +00:00
|
|
|
settings = gtk_widget_get_settings (GTK_WIDGET (button));
|
|
|
|
g_object_get (settings, "gtk-button-images", &show, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
show = TRUE;
|
2004-02-19 22:39:58 +00:00
|
|
|
|
|
|
|
return show;
|
|
|
|
}
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
static void
|
|
|
|
gtk_button_construct_child (GtkButton *button)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2004-02-19 22:39:58 +00:00
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
2001-08-27 01:05:07 +00:00
|
|
|
GtkStockItem item;
|
|
|
|
GtkWidget *label;
|
2006-05-31 00:22:19 +00:00
|
|
|
GtkWidget *box;
|
2001-09-08 19:33:06 +00:00
|
|
|
GtkWidget *align;
|
2004-11-15 20:56:28 +00:00
|
|
|
GtkWidget *image = NULL;
|
|
|
|
gchar *label_text = NULL;
|
2006-06-01 13:42:14 +00:00
|
|
|
gint image_spacing;
|
2003-12-15 00:00:19 +00:00
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
if (!button->constructed)
|
|
|
|
return;
|
2006-03-06 03:47:06 +00:00
|
|
|
|
|
|
|
if (!button->label_text && !priv->image)
|
2001-08-27 01:05:07 +00:00
|
|
|
return;
|
2004-11-15 20:56:28 +00:00
|
|
|
|
2006-06-01 13:42:14 +00:00
|
|
|
gtk_widget_style_get (GTK_WIDGET (button),
|
|
|
|
"image-spacing", &image_spacing,
|
|
|
|
NULL);
|
|
|
|
|
2006-03-06 03:47:06 +00:00
|
|
|
if (priv->image && !priv->image_is_stock)
|
|
|
|
{
|
|
|
|
image = g_object_ref (priv->image);
|
|
|
|
if (image->parent)
|
|
|
|
gtk_container_remove (GTK_CONTAINER (image->parent), image);
|
|
|
|
|
2004-03-05 21:36:03 +00:00
|
|
|
priv->image = NULL;
|
|
|
|
}
|
2001-08-27 01:05:07 +00:00
|
|
|
|
2006-03-06 03:47:06 +00:00
|
|
|
if (GTK_BIN (button)->child)
|
|
|
|
gtk_container_remove (GTK_CONTAINER (button),
|
|
|
|
GTK_BIN (button)->child);
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
if (button->use_stock &&
|
2006-03-06 03:47:06 +00:00
|
|
|
button->label_text &&
|
2001-08-27 01:05:07 +00:00
|
|
|
gtk_stock_lookup (button->label_text, &item))
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
{
|
2004-11-15 20:56:28 +00:00
|
|
|
if (!image)
|
|
|
|
image = g_object_ref (gtk_image_new_from_stock (button->label_text, GTK_ICON_SIZE_BUTTON));
|
|
|
|
|
|
|
|
label_text = item.label;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
label_text = button->label_text;
|
2001-03-21 18:58:28 +00:00
|
|
|
|
2004-11-15 20:56:28 +00:00
|
|
|
if (image)
|
|
|
|
{
|
|
|
|
priv->image = image;
|
2004-02-19 22:39:58 +00:00
|
|
|
g_object_set (priv->image,
|
|
|
|
"visible", show_image (button),
|
2005-03-26 05:49:15 +00:00
|
|
|
"no-show-all", TRUE,
|
2004-02-19 22:39:58 +00:00
|
|
|
NULL);
|
2006-05-31 00:22:19 +00:00
|
|
|
|
|
|
|
if (priv->image_position == GTK_POS_LEFT ||
|
|
|
|
priv->image_position == GTK_POS_RIGHT)
|
2006-06-01 13:42:14 +00:00
|
|
|
box = gtk_hbox_new (FALSE, image_spacing);
|
2006-05-31 00:22:19 +00:00
|
|
|
else
|
2006-06-01 13:42:14 +00:00
|
|
|
box = gtk_vbox_new (FALSE, image_spacing);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
2004-03-10 00:46:51 +00:00
|
|
|
if (priv->align_set)
|
|
|
|
align = gtk_alignment_new (priv->xalign, priv->yalign, 0.0, 0.0);
|
|
|
|
else
|
|
|
|
align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
|
2006-05-31 00:22:19 +00:00
|
|
|
|
|
|
|
if (priv->image_position == GTK_POS_LEFT ||
|
|
|
|
priv->image_position == GTK_POS_TOP)
|
|
|
|
gtk_box_pack_start (GTK_BOX (box), priv->image, FALSE, FALSE, 0);
|
|
|
|
else
|
|
|
|
gtk_box_pack_end (GTK_BOX (box), priv->image, FALSE, FALSE, 0);
|
2006-03-06 03:47:06 +00:00
|
|
|
|
|
|
|
if (label_text)
|
|
|
|
{
|
|
|
|
label = gtk_label_new_with_mnemonic (label_text);
|
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label),
|
|
|
|
GTK_WIDGET (button));
|
|
|
|
|
2006-05-31 00:22:19 +00:00
|
|
|
if (priv->image_position == GTK_POS_RIGHT ||
|
|
|
|
priv->image_position == GTK_POS_BOTTOM)
|
|
|
|
gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
|
|
|
|
else
|
|
|
|
gtk_box_pack_end (GTK_BOX (box), label, FALSE, FALSE, 0);
|
2006-03-06 03:47:06 +00:00
|
|
|
}
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
2001-09-08 19:33:06 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (button), align);
|
2006-05-31 00:22:19 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (align), box);
|
2001-09-08 19:33:06 +00:00
|
|
|
gtk_widget_show_all (align);
|
2001-08-27 01:05:07 +00:00
|
|
|
|
2004-11-15 20:56:28 +00:00
|
|
|
g_object_unref (image);
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
return;
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
}
|
2004-11-15 20:56:28 +00:00
|
|
|
|
2006-03-06 03:47:06 +00:00
|
|
|
if (button->use_underline)
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
{
|
2001-08-27 01:05:07 +00:00
|
|
|
label = gtk_label_new_with_mnemonic (button->label_text);
|
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), GTK_WIDGET (button));
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
}
|
2001-08-27 01:05:07 +00:00
|
|
|
else
|
|
|
|
label = gtk_label_new (button->label_text);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
2004-03-10 00:46:51 +00:00
|
|
|
if (priv->align_set)
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), priv->xalign, priv->yalign);
|
2006-03-06 03:47:06 +00:00
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_container_add (GTK_CONTAINER (button), label);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_button_new_with_label (const gchar *label)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_BUTTON, "label", label, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_new_from_stock:
|
|
|
|
* @stock_id: the name of the stock item
|
|
|
|
*
|
|
|
|
* Creates a new #GtkButton containing the image and text from a stock item.
|
|
|
|
* Some stock ids have preprocessor macros like #GTK_STOCK_OK and
|
|
|
|
* #GTK_STOCK_APPLY.
|
2001-09-27 00:11:23 +00:00
|
|
|
*
|
|
|
|
* If @stock_id is unknown, then it will be treated as a mnemonic
|
|
|
|
* label (as for gtk_button_new_with_mnemonic()).
|
|
|
|
*
|
|
|
|
* Returns: a new #GtkButton
|
2001-08-27 01:05:07 +00:00
|
|
|
**/
|
|
|
|
GtkWidget*
|
2001-09-27 00:11:23 +00:00
|
|
|
gtk_button_new_from_stock (const gchar *stock_id)
|
2001-08-27 01:05:07 +00:00
|
|
|
{
|
2001-09-27 00:11:23 +00:00
|
|
|
return g_object_new (GTK_TYPE_BUTTON,
|
|
|
|
"label", stock_id,
|
2005-03-26 05:49:15 +00:00
|
|
|
"use-stock", TRUE,
|
|
|
|
"use-underline", TRUE,
|
2001-09-27 00:11:23 +00:00
|
|
|
NULL);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
}
|
|
|
|
|
2001-03-21 18:58:28 +00:00
|
|
|
/**
|
|
|
|
* gtk_button_new_with_mnemonic:
|
|
|
|
* @label: The text of the button, with an underscore in front of the
|
|
|
|
* mnemonic character
|
|
|
|
* @returns: a new #GtkButton
|
|
|
|
*
|
|
|
|
* Creates a new #GtkButton containing a label.
|
More precise documentation about underscores and mnemonics. (#66380)
* gtk/gtklabel.c (gtk_label_new_with_mnemonic),
gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
documentation about underscores and mnemonics. (#66380)
* gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
cyclic reference in docs.
* gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
of default value. (#65402)
* gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale):
Markup fixes.
* gdk-pixbuf-io.c, gdk-pixbuf-animation.c, gdk-pixbuf-data.c,
gdk-pixbuf-loader.c, gdk-pixbuf-scale.c, gdk-pixbuf-util.c,
gdk-pixdata.c: Markup fixes.
* gtk/text_widget.sgml: More precise wording. (#63388)
* gtk/tmpl/gtksignal.sgml (GTK_SIGNAL_OFFSET): Add docs.
* gtk/resources.sgml: Fix markup of mail URLs.
* gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkobject.sgml: Markup fixes.
* gtk/tmpl/gtktoolbar.sgml (gtk_toolbar_{prepend,append}_element):
Expand documentation. (#60471)
* gtk/tmpl/gtkmain.sgml: Remove misleading information about
gtk_set_locale(). (#65758)
2001-12-20 23:09:29 +00:00
|
|
|
* If characters in @label are preceded by an underscore, they are underlined.
|
|
|
|
* If you need a literal underscore character in a label, use '__' (two
|
|
|
|
* underscores). The first underlined character represents a keyboard
|
|
|
|
* accelerator called a mnemonic.
|
2001-03-21 18:58:28 +00:00
|
|
|
* Pressing Alt and that key activates the button.
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
GtkWidget*
|
2001-03-21 18:58:28 +00:00
|
|
|
gtk_button_new_with_mnemonic (const gchar *label)
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
{
|
2005-03-26 05:49:15 +00:00
|
|
|
return g_object_new (GTK_TYPE_BUTTON, "label", label, "use-underline", TRUE, NULL);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
|
|
|
gtk_button_pressed (GtkButton *button)
|
|
|
|
{
|
1998-12-13 00:13:39 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_signal_emit (button, button_signals[PRESSED], 0);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_button_released (GtkButton *button)
|
|
|
|
{
|
1998-12-13 00:13:39 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_signal_emit (button, button_signals[RELEASED], 0);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_button_clicked (GtkButton *button)
|
|
|
|
{
|
1998-12-13 00:13:39 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_signal_emit (button, button_signals[CLICKED], 0);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_button_enter (GtkButton *button)
|
|
|
|
{
|
1998-12-13 00:13:39 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_signal_emit (button, button_signals[ENTER], 0);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_button_leave (GtkButton *button)
|
|
|
|
{
|
1998-12-13 00:13:39 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2002-10-11 22:57:11 +00:00
|
|
|
g_signal_emit (button, button_signals[LEAVE], 0);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-05-12 21:30:52 +00:00
|
|
|
void
|
|
|
|
gtk_button_set_relief (GtkButton *button,
|
|
|
|
GtkReliefStyle newrelief)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
2002-01-28 18:52:49 +00:00
|
|
|
if (newrelief != button->relief)
|
|
|
|
{
|
|
|
|
button->relief = newrelief;
|
|
|
|
g_object_notify (G_OBJECT (button), "relief");
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (button));
|
|
|
|
}
|
1998-05-12 21:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkReliefStyle
|
1998-07-08 14:12:27 +00:00
|
|
|
gtk_button_get_relief (GtkButton *button)
|
1998-05-12 21:30:52 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), GTK_RELIEF_NORMAL);
|
|
|
|
|
|
|
|
return button->relief;
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
|
|
|
gtk_button_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkButton *button;
|
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask;
|
1998-03-24 01:43:21 +00:00
|
|
|
gint border_width;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
button = GTK_BUTTON (widget);
|
|
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
|
|
|
|
|
1998-03-24 01:43:21 +00:00
|
|
|
border_width = GTK_CONTAINER (widget)->border_width;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
1998-03-24 01:43:21 +00:00
|
|
|
attributes.x = widget->allocation.x + border_width;
|
|
|
|
attributes.y = widget->allocation.y + border_width;
|
|
|
|
attributes.width = widget->allocation.width - border_width * 2;
|
|
|
|
attributes.height = widget->allocation.height - border_width * 2;
|
2001-11-15 21:04:51 +00:00
|
|
|
attributes.wclass = GDK_INPUT_ONLY;
|
1997-11-24 22:37:52 +00:00
|
|
|
attributes.event_mask = gtk_widget_get_events (widget);
|
2003-07-08 18:59:16 +00:00
|
|
|
attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
|
1997-11-24 22:37:52 +00:00
|
|
|
GDK_BUTTON_RELEASE_MASK |
|
|
|
|
GDK_ENTER_NOTIFY_MASK |
|
|
|
|
GDK_LEAVE_NOTIFY_MASK);
|
|
|
|
|
2001-11-15 21:04:51 +00:00
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-11-15 21:04:51 +00:00
|
|
|
widget->window = gtk_widget_get_parent_window (widget);
|
2002-10-11 22:57:11 +00:00
|
|
|
g_object_ref (widget->window);
|
2001-11-15 21:04:51 +00:00
|
|
|
|
|
|
|
button->event_window = gdk_window_new (gtk_widget_get_parent_window (widget),
|
|
|
|
&attributes, attributes_mask);
|
|
|
|
gdk_window_set_user_data (button->event_window, button);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
widget->style = gtk_style_attach (widget->style, widget->window);
|
|
|
|
}
|
|
|
|
|
2001-03-06 15:51:10 +00:00
|
|
|
static void
|
|
|
|
gtk_button_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
|
|
|
|
if (button->activate_timeout)
|
|
|
|
gtk_button_finish_activate (button, FALSE);
|
2001-11-15 21:04:51 +00:00
|
|
|
|
|
|
|
if (button->event_window)
|
|
|
|
{
|
|
|
|
gdk_window_set_user_data (button->event_window, NULL);
|
|
|
|
gdk_window_destroy (button->event_window);
|
|
|
|
button->event_window = NULL;
|
|
|
|
}
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_button_parent_class)->unrealize (widget);
|
2001-03-06 15:51:10 +00:00
|
|
|
}
|
|
|
|
|
2001-11-15 21:04:51 +00:00
|
|
|
static void
|
|
|
|
gtk_button_map (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_button_parent_class)->map (widget);
|
2001-11-21 23:49:17 +00:00
|
|
|
|
2001-11-15 21:04:51 +00:00
|
|
|
if (button->event_window)
|
|
|
|
gdk_window_show (button->event_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_unmap (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
|
|
|
|
if (button->event_window)
|
|
|
|
gdk_window_hide (button->event_window);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_button_parent_class)->unmap (widget);
|
2001-11-15 21:04:51 +00:00
|
|
|
}
|
|
|
|
|
2006-06-08 12:47:05 +00:00
|
|
|
static void
|
|
|
|
gtk_button_update_image_spacing (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
GtkWidget *child;
|
|
|
|
gint spacing;
|
|
|
|
|
|
|
|
/* Keep in sync with gtk_button_construct_child,
|
|
|
|
* we only want to update the spacing if the box
|
|
|
|
* was constructed there.
|
|
|
|
*/
|
|
|
|
if (!button->constructed || !priv->image)
|
|
|
|
return;
|
|
|
|
|
|
|
|
child = GTK_BIN (button)->child;
|
|
|
|
if (GTK_IS_ALIGNMENT (child))
|
|
|
|
{
|
|
|
|
child = GTK_BIN (child)->child;
|
|
|
|
if (GTK_IS_BOX (child))
|
|
|
|
{
|
|
|
|
gtk_widget_style_get (GTK_WIDGET (button),
|
|
|
|
"image-spacing", &spacing,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gtk_box_set_spacing (GTK_BOX (child), spacing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-01 13:42:14 +00:00
|
|
|
static void
|
|
|
|
gtk_button_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *prev_style)
|
|
|
|
{
|
2006-06-08 12:47:05 +00:00
|
|
|
gtk_button_update_image_spacing (GTK_BUTTON (widget));
|
2006-06-01 13:42:14 +00:00
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void
|
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
|
|
|
gtk_button_get_props (GtkButton *button,
|
2001-04-30 23:23:54 +00:00
|
|
|
GtkBorder *default_border,
|
|
|
|
GtkBorder *default_outside_border,
|
2006-01-17 15:49:18 +00:00
|
|
|
GtkBorder *inner_border,
|
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
|
|
|
gboolean *interior_focus)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
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
|
|
|
GtkWidget *widget = GTK_WIDGET (button);
|
2001-04-30 23:23:54 +00:00
|
|
|
GtkBorder *tmp_border;
|
|
|
|
|
|
|
|
if (default_border)
|
|
|
|
{
|
2005-03-26 05:49:15 +00:00
|
|
|
gtk_widget_style_get (widget, "default-border", &tmp_border, NULL);
|
2001-04-30 23:23:54 +00:00
|
|
|
|
|
|
|
if (tmp_border)
|
|
|
|
{
|
|
|
|
*default_border = *tmp_border;
|
2006-12-24 06:32:07 +00:00
|
|
|
gtk_border_free (tmp_border);
|
2001-04-30 23:23:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*default_border = default_default_border;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-04-30 23:23:54 +00:00
|
|
|
if (default_outside_border)
|
|
|
|
{
|
2005-03-26 05:49:15 +00:00
|
|
|
gtk_widget_style_get (widget, "default-outside-border", &tmp_border, NULL);
|
2001-04-30 23:23:54 +00:00
|
|
|
|
|
|
|
if (tmp_border)
|
|
|
|
{
|
|
|
|
*default_outside_border = *tmp_border;
|
2006-12-24 06:32:07 +00:00
|
|
|
gtk_border_free (tmp_border);
|
2001-04-30 23:23:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*default_outside_border = default_default_outside_border;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
if (inner_border)
|
|
|
|
{
|
|
|
|
gtk_widget_style_get (widget, "inner-border", &tmp_border, NULL);
|
|
|
|
|
|
|
|
if (tmp_border)
|
|
|
|
{
|
|
|
|
*inner_border = *tmp_border;
|
2006-12-24 06:32:07 +00:00
|
|
|
gtk_border_free (tmp_border);
|
2006-01-17 15:49:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*inner_border = default_inner_border;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
if (interior_focus)
|
2005-03-26 05:49:15 +00:00
|
|
|
gtk_widget_style_get (widget, "interior-focus", interior_focus, NULL);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
2001-04-30 23:23:54 +00:00
|
|
|
GtkBorder default_border;
|
2006-01-17 15:49:18 +00:00
|
|
|
GtkBorder inner_border;
|
2001-12-04 03:27:30 +00:00
|
|
|
gint focus_width;
|
|
|
|
gint focus_pad;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
gtk_button_get_props (button, &default_border, NULL, &inner_border, NULL);
|
2001-12-04 03:27:30 +00:00
|
|
|
gtk_widget_style_get (GTK_WIDGET (widget),
|
|
|
|
"focus-line-width", &focus_width,
|
|
|
|
"focus-padding", &focus_pad,
|
|
|
|
NULL);
|
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
requisition->width = ((GTK_CONTAINER (widget)->border_width +
|
|
|
|
GTK_WIDGET (widget)->style->xthickness) * 2 +
|
|
|
|
inner_border.left + inner_border.right);
|
|
|
|
requisition->height = ((GTK_CONTAINER (widget)->border_width +
|
|
|
|
GTK_WIDGET (widget)->style->ythickness) * 2 +
|
|
|
|
inner_border.top + inner_border.bottom);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
if (GTK_WIDGET_CAN_DEFAULT (widget))
|
|
|
|
{
|
2001-04-30 23:23:54 +00:00
|
|
|
requisition->width += default_border.left + default_border.right;
|
|
|
|
requisition->height += default_border.top + default_border.bottom;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-07-07 01:25:27 +00:00
|
|
|
if (GTK_BIN (button)->child && GTK_WIDGET_VISIBLE (GTK_BIN (button)->child))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1999-02-10 02:35:09 +00:00
|
|
|
GtkRequisition child_requisition;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-02-10 02:35:09 +00:00
|
|
|
gtk_widget_size_request (GTK_BIN (button)->child, &child_requisition);
|
|
|
|
|
|
|
|
requisition->width += child_requisition.width;
|
|
|
|
requisition->height += child_requisition.height;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2001-12-04 03:27:30 +00:00
|
|
|
|
2004-05-18 17:50:04 +00:00
|
|
|
requisition->width += 2 * (focus_width + focus_pad);
|
|
|
|
requisition->height += 2 * (focus_width + focus_pad);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
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
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
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
|
|
|
gint border_width = GTK_CONTAINER (widget)->border_width;
|
|
|
|
gint xthickness = GTK_WIDGET (widget)->style->xthickness;
|
|
|
|
gint ythickness = GTK_WIDGET (widget)->style->ythickness;
|
2001-04-30 23:23:54 +00:00
|
|
|
GtkBorder default_border;
|
2006-01-17 15:49:18 +00:00
|
|
|
GtkBorder inner_border;
|
2004-05-07 15:26:35 +00:00
|
|
|
gint focus_width;
|
|
|
|
gint focus_pad;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
gtk_button_get_props (button, &default_border, NULL, &inner_border, NULL);
|
2004-05-07 15:26:35 +00:00
|
|
|
gtk_widget_style_get (GTK_WIDGET (widget),
|
|
|
|
"focus-line-width", &focus_width,
|
|
|
|
"focus-padding", &focus_pad,
|
|
|
|
NULL);
|
|
|
|
|
2001-12-04 03:27:30 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
widget->allocation = *allocation;
|
|
|
|
|
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
2001-11-15 21:04:51 +00:00
|
|
|
gdk_window_move_resize (button->event_window,
|
1997-11-24 22:37:52 +00:00
|
|
|
widget->allocation.x + border_width,
|
|
|
|
widget->allocation.y + border_width,
|
|
|
|
widget->allocation.width - border_width * 2,
|
|
|
|
widget->allocation.height - border_width * 2);
|
|
|
|
|
1998-07-07 01:25:27 +00:00
|
|
|
if (GTK_BIN (button)->child && GTK_WIDGET_VISIBLE (GTK_BIN (button)->child))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2006-01-17 15:49:18 +00:00
|
|
|
child_allocation.x = widget->allocation.x + border_width + inner_border.left + xthickness;
|
|
|
|
child_allocation.y = widget->allocation.y + border_width + inner_border.top + ythickness;
|
2001-12-04 03:27:30 +00:00
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
child_allocation.width = MAX (1, widget->allocation.width -
|
|
|
|
xthickness * 2 -
|
|
|
|
inner_border.left -
|
|
|
|
inner_border.right -
|
2001-12-04 03:27:30 +00:00
|
|
|
border_width * 2);
|
2006-01-17 15:49:18 +00:00
|
|
|
child_allocation.height = MAX (1, widget->allocation.height -
|
|
|
|
ythickness * 2 -
|
|
|
|
inner_border.top -
|
|
|
|
inner_border.bottom -
|
2001-12-04 03:27:30 +00:00
|
|
|
border_width * 2);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
if (GTK_WIDGET_CAN_DEFAULT (button))
|
|
|
|
{
|
2001-04-30 23:23:54 +00:00
|
|
|
child_allocation.x += default_border.left;
|
|
|
|
child_allocation.y += default_border.top;
|
|
|
|
child_allocation.width = MAX (1, child_allocation.width - default_border.left - default_border.right);
|
|
|
|
child_allocation.height = MAX (1, child_allocation.height - default_border.top - default_border.bottom);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2004-05-18 17:50:04 +00:00
|
|
|
|
2004-06-05 03:58:50 +00:00
|
|
|
if (GTK_WIDGET_CAN_FOCUS (button))
|
|
|
|
{
|
|
|
|
child_allocation.x += focus_width + focus_pad;
|
|
|
|
child_allocation.y += focus_width + focus_pad;
|
|
|
|
child_allocation.width = MAX (1, child_allocation.width - (focus_width + focus_pad) * 2);
|
|
|
|
child_allocation.height = MAX (1, child_allocation.height - (focus_width + focus_pad) * 2);
|
|
|
|
}
|
2004-05-07 15:26:35 +00:00
|
|
|
|
2001-08-25 23:11:46 +00:00
|
|
|
if (button->depressed)
|
|
|
|
{
|
|
|
|
gint child_displacement_x;
|
|
|
|
gint child_displacement_y;
|
|
|
|
|
|
|
|
gtk_widget_style_get (widget,
|
2005-03-26 05:49:15 +00:00
|
|
|
"child-displacement-x", &child_displacement_x,
|
|
|
|
"child-displacement-y", &child_displacement_y,
|
2001-08-25 23:11:46 +00:00
|
|
|
NULL);
|
|
|
|
child_allocation.x += child_displacement_x;
|
|
|
|
child_allocation.y += child_displacement_y;
|
|
|
|
}
|
|
|
|
|
1998-07-07 01:25:27 +00:00
|
|
|
gtk_widget_size_allocate (GTK_BIN (button)->child, &child_allocation);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-04 03:27:30 +00:00
|
|
|
void
|
|
|
|
_gtk_button_paint (GtkButton *button,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow_type,
|
|
|
|
const gchar *main_detail,
|
|
|
|
const gchar *default_detail)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
GtkWidget *widget;
|
1997-11-24 22:37:52 +00:00
|
|
|
gint width, height;
|
|
|
|
gint x, y;
|
2001-11-15 21:04:51 +00:00
|
|
|
gint border_width;
|
2001-04-30 23:23:54 +00:00
|
|
|
GtkBorder default_border;
|
|
|
|
GtkBorder default_outside_border;
|
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
|
|
|
gboolean interior_focus;
|
2001-12-04 03:27:30 +00:00
|
|
|
gint focus_width;
|
|
|
|
gint focus_pad;
|
1998-11-06 22:05:02 +00:00
|
|
|
|
2001-12-04 03:27:30 +00:00
|
|
|
if (GTK_WIDGET_DRAWABLE (button))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
widget = GTK_WIDGET (button);
|
2001-11-15 21:04:51 +00:00
|
|
|
border_width = GTK_CONTAINER (widget)->border_width;
|
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
|
|
|
|
2006-01-17 15:49:18 +00:00
|
|
|
gtk_button_get_props (button, &default_border, &default_outside_border, NULL, &interior_focus);
|
2001-12-04 03:27:30 +00:00
|
|
|
gtk_widget_style_get (GTK_WIDGET (widget),
|
|
|
|
"focus-line-width", &focus_width,
|
|
|
|
"focus-padding", &focus_pad,
|
|
|
|
NULL);
|
1998-11-06 22:05:02 +00:00
|
|
|
|
2001-11-15 21:04:51 +00:00
|
|
|
x = widget->allocation.x + border_width;
|
|
|
|
y = widget->allocation.y + border_width;
|
|
|
|
width = widget->allocation.width - border_width * 2;
|
|
|
|
height = widget->allocation.height - border_width * 2;
|
1998-11-06 22:05:02 +00:00
|
|
|
|
|
|
|
if (GTK_WIDGET_HAS_DEFAULT (widget) &&
|
|
|
|
GTK_BUTTON (widget)->relief == GTK_RELIEF_NORMAL)
|
|
|
|
{
|
|
|
|
gtk_paint_box (widget->style, widget->window,
|
|
|
|
GTK_STATE_NORMAL, GTK_SHADOW_IN,
|
|
|
|
area, widget, "buttondefault",
|
|
|
|
x, y, width, height);
|
|
|
|
|
2001-04-30 23:23:54 +00:00
|
|
|
x += default_border.left;
|
|
|
|
y += default_border.top;
|
|
|
|
width -= default_border.left + default_border.right;
|
|
|
|
height -= default_border.top + default_border.bottom;
|
|
|
|
}
|
|
|
|
else if (GTK_WIDGET_CAN_DEFAULT (widget))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2001-04-30 23:23:54 +00:00
|
|
|
x += default_outside_border.left;
|
|
|
|
y += default_outside_border.top;
|
|
|
|
width -= default_outside_border.left + default_outside_border.right;
|
|
|
|
height -= default_outside_border.top + default_outside_border.bottom;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
1998-11-06 22:05:02 +00:00
|
|
|
|
2004-05-18 17:50:04 +00:00
|
|
|
if (!interior_focus && GTK_WIDGET_HAS_FOCUS (widget))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
x += focus_width + focus_pad;
|
|
|
|
y += focus_width + focus_pad;
|
|
|
|
width -= 2 * (focus_width + focus_pad);
|
|
|
|
height -= 2 * (focus_width + focus_pad);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2001-08-25 23:11:46 +00:00
|
|
|
|
2004-02-13 00:31:19 +00:00
|
|
|
if (button->relief != GTK_RELIEF_NONE || button->depressed ||
|
|
|
|
GTK_WIDGET_STATE(widget) == GTK_STATE_PRELIGHT)
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_paint_box (widget->style, widget->window,
|
2001-12-04 03:27:30 +00:00
|
|
|
state_type,
|
1998-11-06 22:05:02 +00:00
|
|
|
shadow_type, area, widget, "button",
|
|
|
|
x, y, width, height);
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
if (GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
{
|
2004-09-20 14:43:18 +00:00
|
|
|
gint child_displacement_x;
|
|
|
|
gint child_displacement_y;
|
|
|
|
gboolean displace_focus;
|
|
|
|
|
|
|
|
gtk_widget_style_get (GTK_WIDGET (widget),
|
2005-03-26 05:49:15 +00:00
|
|
|
"child-displacement-y", &child_displacement_y,
|
|
|
|
"child-displacement-x", &child_displacement_x,
|
|
|
|
"displace-focus", &displace_focus,
|
2004-09-20 14:43:18 +00:00
|
|
|
NULL);
|
|
|
|
|
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
|
|
|
if (interior_focus)
|
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
x += widget->style->xthickness + focus_pad;
|
|
|
|
y += widget->style->ythickness + focus_pad;
|
|
|
|
width -= 2 * (widget->style->xthickness + focus_pad);
|
2004-03-07 21:20:50 +00:00
|
|
|
height -= 2 * (widget->style->ythickness + focus_pad);
|
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
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
x -= focus_width + focus_pad;
|
|
|
|
y -= focus_width + focus_pad;
|
|
|
|
width += 2 * (focus_width + focus_pad);
|
|
|
|
height += 2 * (focus_width + focus_pad);
|
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
|
|
|
}
|
2000-06-20 20:22:05 +00:00
|
|
|
|
2004-09-20 14:43:18 +00:00
|
|
|
if (button->depressed && displace_focus)
|
|
|
|
{
|
|
|
|
x += child_displacement_x;
|
|
|
|
y += child_displacement_y;
|
|
|
|
}
|
|
|
|
|
2001-12-04 03:27:30 +00:00
|
|
|
gtk_paint_focus (widget->style, widget->window, GTK_WIDGET_STATE (widget),
|
1998-11-06 22:05:02 +00:00
|
|
|
area, widget, "button",
|
2001-12-04 03:27:30 +00:00
|
|
|
x, y, width, height);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-16 20:12:40 +00:00
|
|
|
static gboolean
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_button_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
{
|
2001-12-04 03:27:30 +00:00
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
1998-11-06 22:05:02 +00:00
|
|
|
|
2001-12-04 03:27:30 +00:00
|
|
|
_gtk_button_paint (button, &event->area,
|
|
|
|
GTK_WIDGET_STATE (widget),
|
|
|
|
button->depressed ? GTK_SHADOW_IN : GTK_SHADOW_OUT,
|
|
|
|
"button", "buttondefault");
|
2001-03-09 13:28:26 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
(* GTK_WIDGET_CLASS (gtk_button_parent_class)->expose_event) (widget, event);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2001-03-09 13:28:26 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-03-16 20:12:40 +00:00
|
|
|
static gboolean
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_button_button_press (GtkWidget *widget,
|
|
|
|
GdkEventButton *event)
|
|
|
|
{
|
|
|
|
GtkButton *button;
|
|
|
|
|
|
|
|
if (event->type == GDK_BUTTON_PRESS)
|
|
|
|
{
|
|
|
|
button = GTK_BUTTON (widget);
|
|
|
|
|
2003-04-02 21:50:45 +00:00
|
|
|
if (button->focus_on_click && !GTK_WIDGET_HAS_FOCUS (widget))
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_widget_grab_focus (widget);
|
|
|
|
|
|
|
|
if (event->button == 1)
|
2001-02-06 03:08:34 +00:00
|
|
|
gtk_button_pressed (button);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-03-16 20:12:40 +00:00
|
|
|
static gboolean
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_button_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *event)
|
|
|
|
{
|
|
|
|
GtkButton *button;
|
|
|
|
|
|
|
|
if (event->button == 1)
|
|
|
|
{
|
|
|
|
button = GTK_BUTTON (widget);
|
|
|
|
gtk_button_released (button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-06-30 03:35:30 +00:00
|
|
|
static gboolean
|
2005-06-30 21:18:34 +00:00
|
|
|
gtk_button_grab_broken (GtkWidget *widget,
|
|
|
|
GdkEventGrabBroken *event)
|
2005-06-30 03:35:30 +00:00
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
gboolean save_in;
|
|
|
|
|
|
|
|
/* Simulate a button release without the pointer in the button */
|
|
|
|
if (button->button_down)
|
|
|
|
{
|
|
|
|
save_in = button->in_button;
|
|
|
|
button->in_button = FALSE;
|
|
|
|
gtk_button_released (button);
|
|
|
|
if (save_in != button->in_button)
|
|
|
|
{
|
|
|
|
button->in_button = save_in;
|
|
|
|
gtk_button_update_state (button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-03-06 15:51:10 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_button_key_release (GtkWidget *widget,
|
|
|
|
GdkEventKey *event)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
|
|
|
|
if (button->activate_timeout)
|
|
|
|
{
|
|
|
|
gtk_button_finish_activate (button, TRUE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2006-05-02 23:56:43 +00:00
|
|
|
else if (GTK_WIDGET_CLASS (gtk_button_parent_class)->key_release_event)
|
|
|
|
return GTK_WIDGET_CLASS (gtk_button_parent_class)->key_release_event (widget, event);
|
2001-03-06 15:51:10 +00:00
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-03-16 20:12:40 +00:00
|
|
|
static gboolean
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_button_enter_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GtkButton *button;
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
|
|
|
button = GTK_BUTTON (widget);
|
|
|
|
event_widget = gtk_get_event_widget ((GdkEvent*) event);
|
|
|
|
|
|
|
|
if ((event_widget == widget) &&
|
|
|
|
(event->detail != GDK_NOTIFY_INFERIOR))
|
|
|
|
{
|
|
|
|
button->in_button = TRUE;
|
|
|
|
gtk_button_enter (button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-03-16 20:12:40 +00:00
|
|
|
static gboolean
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_button_leave_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GtkButton *button;
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
|
|
|
button = GTK_BUTTON (widget);
|
|
|
|
event_widget = gtk_get_event_widget ((GdkEvent*) event);
|
|
|
|
|
|
|
|
if ((event_widget == widget) &&
|
|
|
|
(event->detail != GDK_NOTIFY_INFERIOR))
|
|
|
|
{
|
|
|
|
button->in_button = FALSE;
|
|
|
|
gtk_button_leave (button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_real_button_pressed (GtkButton *button)
|
|
|
|
{
|
2001-03-06 15:51:10 +00:00
|
|
|
if (button->activate_timeout)
|
|
|
|
return;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
button->button_down = TRUE;
|
2001-08-25 23:11:46 +00:00
|
|
|
gtk_button_update_state (button);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_real_button_released (GtkButton *button)
|
|
|
|
{
|
|
|
|
if (button->button_down)
|
|
|
|
{
|
|
|
|
button->button_down = FALSE;
|
|
|
|
|
2001-03-06 15:51:10 +00:00
|
|
|
if (button->activate_timeout)
|
|
|
|
return;
|
2001-08-25 23:11:46 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
if (button->in_button)
|
|
|
|
gtk_button_clicked (button);
|
|
|
|
|
2001-08-25 23:11:46 +00:00
|
|
|
gtk_button_update_state (button);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
2001-03-06 15:51:10 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
button_activate_timeout (gpointer data)
|
|
|
|
{
|
|
|
|
gtk_button_finish_activate (data, TRUE);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_real_button_activate (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (button);
|
2005-06-27 20:04:33 +00:00
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
guint32 time;
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
2001-03-06 15:51:10 +00:00
|
|
|
if (GTK_WIDGET_REALIZED (button) && !button->activate_timeout)
|
|
|
|
{
|
2005-06-27 20:04:33 +00:00
|
|
|
time = gtk_get_current_event_time ();
|
|
|
|
if (gdk_keyboard_grab (button->event_window, TRUE, time) ==
|
|
|
|
GDK_GRAB_SUCCESS)
|
2001-03-06 15:51:10 +00:00
|
|
|
{
|
2005-06-27 20:04:33 +00:00
|
|
|
priv->has_grab = TRUE;
|
|
|
|
priv->grab_time = time;
|
2001-03-06 15:51:10 +00:00
|
|
|
}
|
2005-06-27 20:04:33 +00:00
|
|
|
|
|
|
|
gtk_grab_add (widget);
|
|
|
|
|
2006-12-22 19:10:43 +00:00
|
|
|
button->activate_timeout = gdk_threads_add_timeout (ACTIVATE_TIMEOUT,
|
2005-06-27 20:04:33 +00:00
|
|
|
button_activate_timeout,
|
|
|
|
button);
|
|
|
|
button->button_down = TRUE;
|
|
|
|
gtk_button_update_state (button);
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (button));
|
2001-03-06 15:51:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_finish_activate (GtkButton *button,
|
|
|
|
gboolean do_it)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (button);
|
2005-06-27 20:04:33 +00:00
|
|
|
GtkButtonPrivate *priv;
|
2001-03-06 15:51:10 +00:00
|
|
|
|
2005-06-27 20:04:33 +00:00
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
2001-03-06 15:51:10 +00:00
|
|
|
g_source_remove (button->activate_timeout);
|
|
|
|
button->activate_timeout = 0;
|
|
|
|
|
2005-06-27 20:04:33 +00:00
|
|
|
if (priv->has_grab)
|
|
|
|
{
|
|
|
|
gdk_display_keyboard_ungrab (gtk_widget_get_display (widget),
|
|
|
|
priv->grab_time);
|
|
|
|
}
|
2001-03-06 15:51:10 +00:00
|
|
|
gtk_grab_remove (widget);
|
|
|
|
|
|
|
|
button->button_down = FALSE;
|
2001-09-03 06:45:17 +00:00
|
|
|
|
2001-08-25 23:11:46 +00:00
|
|
|
gtk_button_update_state (button);
|
2002-02-22 13:34:28 +00:00
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (button));
|
2001-03-06 15:51:10 +00:00
|
|
|
|
|
|
|
if (do_it)
|
|
|
|
gtk_button_clicked (button);
|
|
|
|
}
|
|
|
|
|
2001-08-27 01:05:07 +00:00
|
|
|
/**
|
|
|
|
* gtk_button_set_label:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @label: a string
|
|
|
|
*
|
|
|
|
* Sets the text of the label of the button to @str. This text is
|
|
|
|
* also used to select the stock item if gtk_button_set_use_stock()
|
|
|
|
* is used.
|
|
|
|
*
|
|
|
|
* This will also clear any previously set labels.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_button_set_label (GtkButton *button,
|
|
|
|
const gchar *label)
|
|
|
|
{
|
2003-11-07 21:57:20 +00:00
|
|
|
gchar *new_label;
|
2001-08-27 01:05:07 +00:00
|
|
|
|
2003-11-07 21:57:20 +00:00
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
new_label = g_strdup (label);
|
2001-08-27 01:05:07 +00:00
|
|
|
g_free (button->label_text);
|
2003-11-07 21:57:20 +00:00
|
|
|
button->label_text = new_label;
|
2001-08-27 01:05:07 +00:00
|
|
|
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (button), "label");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_label:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
*
|
|
|
|
* Fetches the text from the label of the button, as set by
|
Minor documentation fixes
2002-08-10 Soren Sandmann <sandmann@daimi.au.dk>
* docs/reference/gtk/tree_widget.sgml,
docs/reference/gtk/tmpl/gtkdialog.sgml,
docs/reference/gtk/tmpl/gtkentry.sgml,
docs/reference/gtk/tmpl/gtkfilesel.sgml,
docs/reference/gtk/tmpl/gtkfontsel.sgml,
docs/reference/gtk/tmpl/gtkfontseldlg.sgml,
docs/reference/gtk/tmpl/gtktreemodel.sgml,
docs/reference/gtk/tmpl/gtkwidget.sgml, gdk/x11/gdkdisplay-x11.c,
gtk/gtkbbox.c, gtk/gtkbox.c, gtk/gtkbutton.c, gtk/gtkcellrenderer.c,
gtk/gtkcellrendererpixbuf.c, gtk/gtkcellrenderertext.c,
gtk/gtkcheckmenuitem.c, gtk/gtkcontainer.c, gtk/gtkcurve.c,
gtk/gtkdialog.h, gtk/gtkentry.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c,
gtk/gtkframe.c, gtk/gtkhandlebox.c, gtk/gtkiconfactory.c,
gtk/gtkimage.c, gtk/gtkinvisible.c, gtk/gtkitemfactory.c,
gtk/gtklabel.c, gtk/gtklayout.c, gtk/gtkmenu.c, gtk/gtkprogress.c,
gtk/gtkprogressbar.c, gtk/gtkscrolledwindow.c, gtk/gtksizegroup.c,
gtk/gtktable.c, gtk/gtktextiter.c, gtk/gtktexttag.c,
gtk/gtktexttag.h, gtk/gtktextview.c, gtk/gtktogglebutton.c,
gtk/gtktoolbar.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c,
gtk/gtktreestore.c, gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c,
gtk/gtkviewport.c, gtk/gtkwidget.c, gtk/gtkwidget.h,
gtk/gtkwindow.c:
Minor documentation fixes
(#89254, patch from Brett Nash;
#85809, patch from daten@dnetc.org;
#76391, patch from Ross Burton;
#74559, Manuel Clos;
#73569, #72005, Alexey A. Malyshev;
#70061, patch from Dennis Bj"orklund;
#64566, #63388, #58328, #57499, #81007, #77349, Vitaly Tishkov;
#78932, Vitaly Tishkov, patch from Ross Burton;
#73306)
2002-08-10 09:55:41 +00:00
|
|
|
* gtk_button_set_label(). If the label text has not
|
|
|
|
* been set the return value will be %NULL. This will be the
|
2001-11-14 22:36:23 +00:00
|
|
|
* case if you create an empty button with gtk_button_new() to
|
|
|
|
* use as a container.
|
2001-08-27 01:05:07 +00:00
|
|
|
*
|
Minor documentation fixes
2002-08-10 Soren Sandmann <sandmann@daimi.au.dk>
* docs/reference/gtk/tree_widget.sgml,
docs/reference/gtk/tmpl/gtkdialog.sgml,
docs/reference/gtk/tmpl/gtkentry.sgml,
docs/reference/gtk/tmpl/gtkfilesel.sgml,
docs/reference/gtk/tmpl/gtkfontsel.sgml,
docs/reference/gtk/tmpl/gtkfontseldlg.sgml,
docs/reference/gtk/tmpl/gtktreemodel.sgml,
docs/reference/gtk/tmpl/gtkwidget.sgml, gdk/x11/gdkdisplay-x11.c,
gtk/gtkbbox.c, gtk/gtkbox.c, gtk/gtkbutton.c, gtk/gtkcellrenderer.c,
gtk/gtkcellrendererpixbuf.c, gtk/gtkcellrenderertext.c,
gtk/gtkcheckmenuitem.c, gtk/gtkcontainer.c, gtk/gtkcurve.c,
gtk/gtkdialog.h, gtk/gtkentry.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c,
gtk/gtkframe.c, gtk/gtkhandlebox.c, gtk/gtkiconfactory.c,
gtk/gtkimage.c, gtk/gtkinvisible.c, gtk/gtkitemfactory.c,
gtk/gtklabel.c, gtk/gtklayout.c, gtk/gtkmenu.c, gtk/gtkprogress.c,
gtk/gtkprogressbar.c, gtk/gtkscrolledwindow.c, gtk/gtksizegroup.c,
gtk/gtktable.c, gtk/gtktextiter.c, gtk/gtktexttag.c,
gtk/gtktexttag.h, gtk/gtktextview.c, gtk/gtktogglebutton.c,
gtk/gtktoolbar.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c,
gtk/gtktreestore.c, gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c,
gtk/gtkviewport.c, gtk/gtkwidget.c, gtk/gtkwidget.h,
gtk/gtkwindow.c:
Minor documentation fixes
(#89254, patch from Brett Nash;
#85809, patch from daten@dnetc.org;
#76391, patch from Ross Burton;
#74559, Manuel Clos;
#73569, #72005, Alexey A. Malyshev;
#70061, patch from Dennis Bj"orklund;
#64566, #63388, #58328, #57499, #81007, #77349, Vitaly Tishkov;
#78932, Vitaly Tishkov, patch from Ross Burton;
#73306)
2002-08-10 09:55:41 +00:00
|
|
|
* Return value: The text of the label widget. This string is owned
|
|
|
|
* by the widget and must not be modified or freed.
|
2001-08-27 01:05:07 +00:00
|
|
|
**/
|
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gtk_button_get_label (GtkButton *button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), NULL);
|
|
|
|
|
|
|
|
return button->label_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_set_use_underline:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @use_underline: %TRUE if underlines in the text indicate mnemonics
|
|
|
|
*
|
|
|
|
* If true, an underline in the text of the button label indicates
|
|
|
|
* the next character should be used for the mnemonic accelerator key.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_set_use_underline (GtkButton *button,
|
|
|
|
gboolean use_underline)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
use_underline = use_underline != FALSE;
|
|
|
|
|
|
|
|
if (use_underline != button->use_underline)
|
|
|
|
{
|
|
|
|
button->use_underline = use_underline;
|
|
|
|
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (button), "use-underline");
|
2001-08-27 01:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_use_underline:
|
2001-10-26 15:44:20 +00:00
|
|
|
* @button: a #GtkButton
|
2001-08-27 01:05:07 +00:00
|
|
|
*
|
|
|
|
* Returns whether an embedded underline in the button label indicates a
|
|
|
|
* mnemonic. See gtk_button_set_use_underline ().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if an embedded underline in the button label
|
|
|
|
* indicates the mnemonic accelerator keys.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gtk_button_get_use_underline (GtkButton *button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
|
|
|
|
|
|
|
|
return button->use_underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_set_use_stock:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @use_stock: %TRUE if the button should use a stock item
|
|
|
|
*
|
|
|
|
* If true, the label set on the button is used as a
|
|
|
|
* stock id to select the stock item for the button.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_set_use_stock (GtkButton *button,
|
|
|
|
gboolean use_stock)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
use_stock = use_stock != FALSE;
|
|
|
|
|
|
|
|
if (use_stock != button->use_stock)
|
|
|
|
{
|
|
|
|
button->use_stock = use_stock;
|
|
|
|
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (button), "use-stock");
|
2001-08-27 01:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_use_stock:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
*
|
|
|
|
* Returns whether the button label is a stock item.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the button label is used to
|
|
|
|
* select a stock item instead of being
|
|
|
|
* used directly as the label text.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_button_get_use_stock (GtkButton *button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
|
|
|
|
|
|
|
|
return button->use_stock;
|
|
|
|
}
|
|
|
|
|
2003-04-02 21:50:45 +00:00
|
|
|
/**
|
|
|
|
* gtk_button_set_focus_on_click:
|
|
|
|
* @button: a #GtkButton
|
2004-08-16 05:43:50 +00:00
|
|
|
* @focus_on_click: whether the button grabs focus when clicked with the mouse
|
2003-04-02 21:50:45 +00:00
|
|
|
*
|
|
|
|
* Sets whether the button will grab focus when it is clicked with the mouse.
|
|
|
|
* Making mouse clicks not grab focus is useful in places like toolbars where
|
|
|
|
* you don't want the keyboard focus removed from the main area of the
|
|
|
|
* application.
|
2003-04-12 22:25:21 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2003-04-02 21:50:45 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_button_set_focus_on_click (GtkButton *button,
|
|
|
|
gboolean focus_on_click)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
focus_on_click = focus_on_click != FALSE;
|
|
|
|
|
|
|
|
if (button->focus_on_click != focus_on_click)
|
|
|
|
{
|
|
|
|
button->focus_on_click = focus_on_click;
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (button), "focus-on-click");
|
2003-04-02 21:50:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_focus_on_click:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
*
|
|
|
|
* Returns whether the button grabs focus when it is clicked with the mouse.
|
|
|
|
* See gtk_button_set_focus_on_click().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the button grabs focus when it is clicked with
|
|
|
|
* the mouse.
|
2003-04-12 22:25:21 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2003-04-02 21:50:45 +00:00
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gtk_button_get_focus_on_click (GtkButton *button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
|
|
|
|
|
|
|
|
return button->focus_on_click;
|
|
|
|
}
|
|
|
|
|
2003-12-15 00:00:19 +00:00
|
|
|
/**
|
|
|
|
* gtk_button_set_alignment:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @xalign: the horizontal position of the child, 0.0 is left aligned,
|
|
|
|
* 1.0 is right aligned
|
|
|
|
* @yalign: the vertical position of the child, 0.0 is top aligned,
|
|
|
|
* 1.0 is bottom aligned
|
|
|
|
*
|
|
|
|
* Sets the alignment of the child. This property has no effect unless
|
|
|
|
* the child is a #GtkMisc or a #GtkAligment.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_set_alignment (GtkButton *button,
|
|
|
|
gfloat xalign,
|
|
|
|
gfloat yalign)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
|
|
|
priv->xalign = xalign;
|
|
|
|
priv->yalign = yalign;
|
2004-03-10 00:46:51 +00:00
|
|
|
priv->align_set = 1;
|
2003-12-15 00:00:19 +00:00
|
|
|
|
2004-03-10 00:46:51 +00:00
|
|
|
maybe_set_alignment (button, GTK_BIN (button)->child);
|
2003-12-15 00:00:19 +00:00
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (button));
|
|
|
|
g_object_notify (G_OBJECT (button), "xalign");
|
|
|
|
g_object_notify (G_OBJECT (button), "yalign");
|
|
|
|
g_object_thaw_notify (G_OBJECT (button));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_alignment:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @xalign: return location for horizontal alignment
|
|
|
|
* @yalign: return location for vertical alignment
|
|
|
|
*
|
|
|
|
* Gets the alignment of the child in the button.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_get_alignment (GtkButton *button,
|
|
|
|
gfloat *xalign,
|
|
|
|
gfloat *yalign)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
|
|
|
if (xalign)
|
|
|
|
*xalign = priv->xalign;
|
|
|
|
|
|
|
|
if (yalign)
|
|
|
|
*yalign = priv->yalign;
|
|
|
|
}
|
|
|
|
|
2001-08-25 23:11:46 +00:00
|
|
|
/**
|
|
|
|
* _gtk_button_set_depressed:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @depressed: %TRUE if the button should be drawn with a recessed shadow.
|
|
|
|
*
|
|
|
|
* Sets whether the button is currently drawn as down or not. This is
|
|
|
|
* purely a visual setting, and is meant only for use by derived widgets
|
|
|
|
* such as #GtkToggleButton.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gtk_button_set_depressed (GtkButton *button,
|
|
|
|
gboolean depressed)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (button);
|
|
|
|
|
|
|
|
depressed = depressed != FALSE;
|
|
|
|
|
|
|
|
if (depressed != button->depressed)
|
|
|
|
{
|
|
|
|
button->depressed = depressed;
|
|
|
|
gtk_widget_queue_resize (widget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_update_state (GtkButton *button)
|
|
|
|
{
|
|
|
|
gboolean depressed;
|
|
|
|
GtkStateType new_state;
|
|
|
|
|
2002-02-22 13:34:28 +00:00
|
|
|
if (button->activate_timeout)
|
|
|
|
depressed = button->depress_on_activate;
|
|
|
|
else
|
|
|
|
depressed = button->in_button && button->button_down;
|
2001-09-03 06:45:17 +00:00
|
|
|
|
2002-02-22 13:34:28 +00:00
|
|
|
if (button->in_button && (!button->button_down || !depressed))
|
2001-08-25 23:11:46 +00:00
|
|
|
new_state = GTK_STATE_PRELIGHT;
|
|
|
|
else
|
2002-02-22 13:34:28 +00:00
|
|
|
new_state = depressed ? GTK_STATE_ACTIVE : GTK_STATE_NORMAL;
|
2001-08-25 23:11:46 +00:00
|
|
|
|
|
|
|
_gtk_button_set_depressed (button, depressed);
|
|
|
|
gtk_widget_set_state (GTK_WIDGET (button), new_state);
|
|
|
|
}
|
2004-02-19 22:39:58 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
show_image_change_notify (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
|
|
|
if (priv->image)
|
2004-11-15 18:07:22 +00:00
|
|
|
{
|
|
|
|
if (show_image (button))
|
|
|
|
gtk_widget_show (priv->image);
|
|
|
|
else
|
|
|
|
gtk_widget_hide (priv->image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
traverse_container (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
if (GTK_IS_BUTTON (widget))
|
|
|
|
show_image_change_notify (GTK_BUTTON (widget));
|
|
|
|
else if (GTK_IS_CONTAINER (widget))
|
|
|
|
gtk_container_forall (GTK_CONTAINER (widget), traverse_container, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_setting_changed (GtkSettings *settings)
|
|
|
|
{
|
2004-11-16 02:06:20 +00:00
|
|
|
GList *list, *l;
|
2004-11-15 18:07:22 +00:00
|
|
|
|
|
|
|
list = gtk_window_list_toplevels ();
|
|
|
|
|
2004-11-16 02:06:20 +00:00
|
|
|
for (l = list; l; l = l->next)
|
|
|
|
gtk_container_forall (GTK_CONTAINER (l->data),
|
|
|
|
traverse_container, NULL);
|
2004-11-15 18:07:22 +00:00
|
|
|
|
|
|
|
g_list_free (list);
|
2004-02-19 22:39:58 +00:00
|
|
|
}
|
|
|
|
|
2004-11-15 18:07:22 +00:00
|
|
|
|
2004-02-19 22:39:58 +00:00
|
|
|
static void
|
|
|
|
gtk_button_screen_changed (GtkWidget *widget,
|
|
|
|
GdkScreen *previous_screen)
|
|
|
|
{
|
|
|
|
GtkSettings *settings;
|
2004-11-15 18:07:22 +00:00
|
|
|
guint show_image_connection;
|
2004-02-19 22:39:58 +00:00
|
|
|
|
2004-11-15 18:07:22 +00:00
|
|
|
if (!gtk_widget_has_screen (widget))
|
2004-02-19 22:39:58 +00:00
|
|
|
return;
|
|
|
|
|
2004-11-15 18:07:22 +00:00
|
|
|
settings = gtk_widget_get_settings (widget);
|
2004-02-19 22:39:58 +00:00
|
|
|
|
2004-11-15 18:07:22 +00:00
|
|
|
show_image_connection =
|
2004-11-16 02:01:41 +00:00
|
|
|
GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (settings),
|
|
|
|
"gtk-button-connection"));
|
2004-11-15 18:07:22 +00:00
|
|
|
|
|
|
|
if (show_image_connection)
|
|
|
|
return;
|
|
|
|
|
|
|
|
show_image_connection =
|
|
|
|
g_signal_connect (settings, "notify::gtk-button-images",
|
2006-10-08 05:07:55 +00:00
|
|
|
G_CALLBACK (gtk_button_setting_changed), NULL);
|
2004-11-15 18:07:22 +00:00
|
|
|
g_object_set_data (G_OBJECT (settings),
|
2005-09-01 05:11:46 +00:00
|
|
|
I_("gtk-button-connection"),
|
2004-11-16 02:01:41 +00:00
|
|
|
GUINT_TO_POINTER (show_image_connection));
|
2004-02-19 22:39:58 +00:00
|
|
|
|
|
|
|
show_image_change_notify (GTK_BUTTON (widget));
|
|
|
|
}
|
2004-09-26 05:47:11 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_state_changed (GtkWidget *widget,
|
|
|
|
GtkStateType previous_state)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_IS_SENSITIVE (widget))
|
|
|
|
{
|
|
|
|
button->in_button = FALSE;
|
|
|
|
gtk_real_button_released (button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_button_grab_notify (GtkWidget *widget,
|
|
|
|
gboolean was_grabbed)
|
|
|
|
{
|
|
|
|
GtkButton *button = GTK_BUTTON (widget);
|
2006-12-24 06:06:37 +00:00
|
|
|
gboolean save_in;
|
2004-09-26 05:47:11 +00:00
|
|
|
|
|
|
|
if (!was_grabbed)
|
|
|
|
{
|
2006-12-24 06:06:37 +00:00
|
|
|
save_in = button->in_button;
|
|
|
|
button->in_button = FALSE;
|
2004-09-26 05:47:11 +00:00
|
|
|
gtk_real_button_released (button);
|
2006-12-24 06:06:37 +00:00
|
|
|
if (save_in != button->in_button)
|
|
|
|
{
|
|
|
|
button->in_button = save_in;
|
|
|
|
gtk_button_update_state (button);
|
|
|
|
}
|
2004-09-26 05:47:11 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-15 20:56:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_set_image:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @image: a widget to set as the image for the button
|
|
|
|
*
|
|
|
|
* Set the image of @button to the given widget. Note that
|
2005-01-25 20:54:00 +00:00
|
|
|
* it depends on the gtk-button-images setting whether the
|
2005-06-16 12:51:00 +00:00
|
|
|
* image will be displayed or not, you don't have to call
|
|
|
|
* gtk_widget_show() on @image yourself.
|
2004-11-15 20:56:28 +00:00
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_set_image (GtkButton *button,
|
|
|
|
GtkWidget *image)
|
|
|
|
{
|
2005-09-29 13:42:21 +00:00
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
g_return_if_fail (image == NULL || GTK_IS_WIDGET (image));
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
2004-11-15 20:56:28 +00:00
|
|
|
|
|
|
|
priv->image = image;
|
2005-01-02 03:14:34 +00:00
|
|
|
priv->image_is_stock = (image == NULL);
|
2004-11-15 20:56:28 +00:00
|
|
|
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (button), "image");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_image:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
*
|
|
|
|
* Gets the widget that is currenty set as the image of @button.
|
|
|
|
* This may have been explicitly set by gtk_button_set_image()
|
|
|
|
* or constructed by gtk_button_new_from_stock().
|
|
|
|
*
|
2005-03-31 17:04:25 +00:00
|
|
|
* Return value: a #GtkWidget or %NULL in case there is no image
|
|
|
|
*
|
2004-11-15 20:56:28 +00:00
|
|
|
* Since: 2.6
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gtk_button_get_image (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
2004-11-17 01:21:16 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), NULL);
|
2004-11-15 20:56:28 +00:00
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
|
|
|
return priv->image;
|
|
|
|
}
|
2006-05-31 00:22:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_set_image_position:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
* @position: the position
|
|
|
|
*
|
2006-06-01 13:42:14 +00:00
|
|
|
* Sets the position of the image relative to the text
|
|
|
|
* inside the button.
|
2006-05-31 00:22:19 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_button_set_image_position (GtkButton *button,
|
|
|
|
GtkPositionType position)
|
|
|
|
{
|
|
|
|
|
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BUTTON (button));
|
|
|
|
g_return_if_fail (position >= GTK_POS_LEFT && position <= GTK_POS_BOTTOM);
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
|
|
|
|
|
|
|
if (priv->image_position != position)
|
|
|
|
{
|
|
|
|
priv->image_position = position;
|
|
|
|
|
|
|
|
gtk_button_construct_child (button);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (button), "image-position");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_button_get_image_position:
|
|
|
|
* @button: a #GtkButton
|
|
|
|
*
|
2006-06-01 13:42:14 +00:00
|
|
|
* Gets the position of the image relative to the text
|
|
|
|
* inside the button.
|
2006-05-31 00:22:19 +00:00
|
|
|
*
|
|
|
|
* Return value: the position
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
GtkPositionType
|
|
|
|
gtk_button_get_image_position (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkButtonPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_BUTTON (button), GTK_POS_LEFT);
|
|
|
|
|
|
|
|
priv = GTK_BUTTON_GET_PRIVATE (button);
|
2004-11-15 20:56:28 +00:00
|
|
|
|
2006-05-31 00:22:19 +00:00
|
|
|
return priv->image_position;
|
|
|
|
}
|
|
|
|
|
2006-06-01 13:42:14 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#define __GTK_BUTTON_C__
|
|
|
|
#include "gtkaliasdef.c"
|