2003-06-29 23:34:20 +00:00
|
|
|
/* gtktoggletoolbutton.h
|
|
|
|
*
|
2003-12-29 10:55:53 +00:00
|
|
|
* Copyright (C) 2002 Anders Carlsson <andersca@gnome.org>
|
2003-06-29 23:34:20 +00:00
|
|
|
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-06-29 23:34:20 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_SEPARATOR_TOOL_ITEM_H__
|
|
|
|
#define __GTK_SEPARATOR_TOOL_ITEM_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2008-06-13 14:26:44 +00:00
|
|
|
#include <gtk/gtktoolitem.h>
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2003-10-11 21:24:10 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2003-06-29 23:34:20 +00:00
|
|
|
#define GTK_TYPE_SEPARATOR_TOOL_ITEM (gtk_separator_tool_item_get_type ())
|
|
|
|
#define GTK_SEPARATOR_TOOL_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SEPARATOR_TOOL_ITEM, GtkSeparatorToolItem))
|
|
|
|
#define GTK_SEPARATOR_TOOL_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SEPARATOR_TOOL_ITEM, GtkSeparatorToolItemClass))
|
|
|
|
#define GTK_IS_SEPARATOR_TOOL_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SEPARATOR_TOOL_ITEM))
|
2004-08-22 03:38:42 +00:00
|
|
|
#define GTK_IS_SEPARATOR_TOOL_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SEPARATOR_TOOL_ITEM))
|
2003-06-29 23:34:20 +00:00
|
|
|
#define GTK_SEPARATOR_TOOL_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_SEPARATOR_TOOL_ITEM, GtkSeparatorToolItemClass))
|
|
|
|
|
2003-10-25 19:58:51 +00:00
|
|
|
typedef struct _GtkSeparatorToolItem GtkSeparatorToolItem;
|
|
|
|
typedef struct _GtkSeparatorToolItemClass GtkSeparatorToolItemClass;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
struct _GtkSeparatorToolItem
|
|
|
|
{
|
2018-07-07 16:30:29 +00:00
|
|
|
GtkToolItem parent_instance;
|
2003-06-29 23:34:20 +00:00
|
|
|
};
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/**
|
|
|
|
* GtkSeparatorToolItemClass:
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
*/
|
2003-06-29 23:34:20 +00:00
|
|
|
struct _GtkSeparatorToolItemClass
|
|
|
|
{
|
|
|
|
GtkToolItemClass parent_class;
|
2003-07-31 15:26:40 +00:00
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/*< private >*/
|
|
|
|
|
2003-07-31 15:26:40 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (* _gtk_reserved1) (void);
|
|
|
|
void (* _gtk_reserved2) (void);
|
|
|
|
void (* _gtk_reserved3) (void);
|
|
|
|
void (* _gtk_reserved4) (void);
|
2003-06-29 23:34:20 +00:00
|
|
|
};
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-06-29 23:34:20 +00:00
|
|
|
GType gtk_separator_tool_item_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkToolItem *gtk_separator_tool_item_new (void);
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-10-25 19:58:51 +00:00
|
|
|
gboolean gtk_separator_tool_item_get_draw (GtkSeparatorToolItem *item);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-01-22 23:47:42 +00:00
|
|
|
void gtk_separator_tool_item_set_draw (GtkSeparatorToolItem *item,
|
2003-10-25 19:58:51 +00:00
|
|
|
gboolean draw);
|
|
|
|
|
2003-10-11 21:24:10 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2003-06-29 23:34:20 +00:00
|
|
|
#endif /* __GTK_SEPARATOR_TOOL_ITEM_H__ */
|