2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
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
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#ifndef __GTK_BUTTON_H__
|
|
|
|
#define __GTK_BUTTON_H__
|
|
|
|
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
1998-07-07 01:25:27 +00:00
|
|
|
#include <gtk/gtkbin.h>
|
2004-11-15 20:56:28 +00:00
|
|
|
#include <gtk/gtkimage.h>
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-02-13 08:16:48 +00:00
|
|
|
#define GTK_TYPE_BUTTON (gtk_button_get_type ())
|
2002-10-11 22:57:11 +00:00
|
|
|
#define GTK_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_BUTTON, GtkButton))
|
|
|
|
#define GTK_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_BUTTON, GtkButtonClass))
|
|
|
|
#define GTK_IS_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_BUTTON))
|
|
|
|
#define GTK_IS_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_BUTTON))
|
|
|
|
#define GTK_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_BUTTON, GtkButtonClass))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-10-18 17:39:19 +00:00
|
|
|
typedef struct _GtkButton GtkButton;
|
|
|
|
typedef struct _GtkButtonPrivate GtkButtonPrivate;
|
|
|
|
typedef struct _GtkButtonClass GtkButtonClass;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
struct _GtkButton
|
|
|
|
{
|
2010-10-18 17:39:19 +00:00
|
|
|
/*< private >*/
|
1998-07-07 01:25:27 +00:00
|
|
|
GtkBin bin;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-10-18 17:39:19 +00:00
|
|
|
GtkButtonPrivate *priv;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/**
|
|
|
|
* GtkButtonClass:
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
* @clicked: Signal emitted when the button has been activated (pressed and released).
|
|
|
|
* @activate: Signal that causes the button to animate press then
|
|
|
|
* release. Applications should never connect to this signal, but use
|
|
|
|
* the @clicked signal.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
struct _GtkButtonClass
|
|
|
|
{
|
1998-07-07 01:25:27 +00:00
|
|
|
GtkBinClass parent_class;
|
2014-01-17 20:17:45 +00:00
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
|
1998-12-19 03:24:15 +00:00
|
|
|
void (* clicked) (GtkButton *button);
|
2001-03-06 15:51:10 +00:00
|
|
|
void (* activate) (GtkButton *button);
|
2014-01-17 20:17:45 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
|
2002-02-23 20:22:05 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
void (*_gtk_reserved4) (void);
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2002-10-11 22:57:11 +00:00
|
|
|
GType gtk_button_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-03-21 18:58:28 +00:00
|
|
|
GtkWidget* gtk_button_new (void);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-03-21 18:58:28 +00:00
|
|
|
GtkWidget* gtk_button_new_with_label (const gchar *label);
|
2013-08-14 07:41:42 +00:00
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
GtkWidget* gtk_button_new_from_icon_name (const gchar *icon_name,
|
|
|
|
GtkIconSize size);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-03-21 18:58:28 +00:00
|
|
|
GtkWidget* gtk_button_new_with_mnemonic (const gchar *label);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-10-11 19:03:46 +00:00
|
|
|
void gtk_button_clicked (GtkButton *button);
|
2003-04-02 21:50:45 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-04-02 21:50:45 +00:00
|
|
|
void gtk_button_set_relief (GtkButton *button,
|
2014-06-27 01:59:06 +00:00
|
|
|
GtkReliefStyle relief);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-04-02 21:50:45 +00:00
|
|
|
GtkReliefStyle gtk_button_get_relief (GtkButton *button);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-04-02 21:50:45 +00:00
|
|
|
void gtk_button_set_label (GtkButton *button,
|
|
|
|
const gchar *label);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-06-06 18:13:44 +00:00
|
|
|
const gchar * gtk_button_get_label (GtkButton *button);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-04-02 21:50:45 +00:00
|
|
|
void gtk_button_set_use_underline (GtkButton *button,
|
|
|
|
gboolean use_underline);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-04-02 21:50:45 +00:00
|
|
|
gboolean gtk_button_get_use_underline (GtkButton *button);
|
|
|
|
|
2016-10-20 15:58:03 +00:00
|
|
|
GDK_AVAILABLE_IN_3_90
|
2016-10-14 14:01:56 +00:00
|
|
|
void gtk_button_set_icon_name (GtkButton *button,
|
|
|
|
const char *icon_name);
|
2016-10-20 15:58:03 +00:00
|
|
|
GDK_AVAILABLE_IN_3_90
|
2016-10-14 14:01:56 +00:00
|
|
|
const char * gtk_button_get_icon_name (GtkButton *button);
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_END_DECLS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_BUTTON_H__ */
|