2010-03-12 17:55:54 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
*
|
|
|
|
* 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/>.
|
2010-03-12 17:55:54 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_WIDGET_PATH_H__
|
|
|
|
#define __GTK_WIDGET_PATH_H__
|
|
|
|
|
2010-12-02 22:45:14 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2010-03-12 17:55:54 +00:00
|
|
|
#include <glib-object.h>
|
2012-02-27 12:10:59 +00:00
|
|
|
#include <gdk/gdk.h>
|
2011-05-25 18:22:14 +00:00
|
|
|
#include <gtk/gtkenums.h>
|
2012-03-03 17:48:56 +00:00
|
|
|
#include <gtk/gtktypes.h>
|
2010-03-12 17:55:54 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-12-06 14:50:01 +00:00
|
|
|
#define GTK_TYPE_WIDGET_PATH (gtk_widget_path_get_type ())
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-06 15:01:55 +00:00
|
|
|
GType gtk_widget_path_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-06 14:50:01 +00:00
|
|
|
GtkWidgetPath * gtk_widget_path_new (void);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-04-20 23:27:46 +00:00
|
|
|
GtkWidgetPath * gtk_widget_path_copy (const GtkWidgetPath *path);
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-05-27 14:36:07 +00:00
|
|
|
GtkWidgetPath * gtk_widget_path_ref (GtkWidgetPath *path);
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-05-27 14:36:07 +00:00
|
|
|
void gtk_widget_path_unref (GtkWidgetPath *path);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-04-20 23:27:46 +00:00
|
|
|
void gtk_widget_path_free (GtkWidgetPath *path);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-03-26 13:29:32 +00:00
|
|
|
char * gtk_widget_path_to_string (const GtkWidgetPath *path);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-11-19 17:59:49 +00:00
|
|
|
gint gtk_widget_path_length (const GtkWidgetPath *path);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-11-19 17:59:49 +00:00
|
|
|
gint gtk_widget_path_append_type (GtkWidgetPath *path,
|
2010-10-10 22:23:40 +00:00
|
|
|
GType type);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-11-19 17:58:19 +00:00
|
|
|
void gtk_widget_path_prepend_type (GtkWidgetPath *path,
|
2010-04-20 23:27:46 +00:00
|
|
|
GType type);
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-05-27 16:22:09 +00:00
|
|
|
gint gtk_widget_path_append_with_siblings(GtkWidgetPath *path,
|
|
|
|
GtkWidgetPath *siblings,
|
|
|
|
guint sibling_index);
|
2011-05-25 18:42:27 +00:00
|
|
|
/* gtk_widget_path_append_for_widget() is declared in gtkwidget.c */
|
2012-02-27 12:10:59 +00:00
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-05-25 18:42:27 +00:00
|
|
|
gint gtk_widget_path_append_for_widget (GtkWidgetPath *path,
|
|
|
|
GtkWidget *widget);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-05-27 16:22:09 +00:00
|
|
|
GType gtk_widget_path_iter_get_object_type (const GtkWidgetPath *path,
|
|
|
|
gint pos);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-05-27 16:22:09 +00:00
|
|
|
void gtk_widget_path_iter_set_object_type (GtkWidgetPath *path,
|
|
|
|
gint pos,
|
|
|
|
GType type);
|
2015-10-27 00:26:20 +00:00
|
|
|
GDK_AVAILABLE_IN_3_20
|
|
|
|
const char * gtk_widget_path_iter_get_object_name (const GtkWidgetPath *path,
|
|
|
|
gint pos);
|
|
|
|
GDK_AVAILABLE_IN_3_20
|
|
|
|
void gtk_widget_path_iter_set_object_name (GtkWidgetPath *path,
|
|
|
|
gint pos,
|
|
|
|
const char *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-05-27 16:22:09 +00:00
|
|
|
const GtkWidgetPath *
|
|
|
|
gtk_widget_path_iter_get_siblings (const GtkWidgetPath *path,
|
|
|
|
gint pos);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-05-27 16:22:09 +00:00
|
|
|
guint gtk_widget_path_iter_get_sibling_index(const GtkWidgetPath *path,
|
|
|
|
gint pos);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-06-06 18:13:44 +00:00
|
|
|
const gchar * gtk_widget_path_iter_get_name (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-04 11:11:50 +00:00
|
|
|
void gtk_widget_path_iter_set_name (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-04 11:11:50 +00:00
|
|
|
const gchar *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-04 11:11:50 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_name (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-04 11:11:50 +00:00
|
|
|
const gchar *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-04 11:11:50 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_qname (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-04 11:11:50 +00:00
|
|
|
GQuark qname);
|
2014-07-18 18:07:27 +00:00
|
|
|
GDK_AVAILABLE_IN_3_14
|
|
|
|
GtkStateFlags gtk_widget_path_iter_get_state (const GtkWidgetPath *path,
|
|
|
|
gint pos);
|
|
|
|
GDK_AVAILABLE_IN_3_14
|
|
|
|
void gtk_widget_path_iter_set_state (GtkWidgetPath *path,
|
|
|
|
gint pos,
|
|
|
|
GtkStateFlags state);
|
2010-04-20 23:27:46 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
void gtk_widget_path_iter_add_class (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-06 09:59:35 +00:00
|
|
|
const gchar *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
void gtk_widget_path_iter_remove_class (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-06 09:59:35 +00:00
|
|
|
const gchar *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
void gtk_widget_path_iter_clear_classes (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
GSList * gtk_widget_path_iter_list_classes (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_class (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-06 09:59:35 +00:00
|
|
|
const gchar *name);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-06 09:59:35 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_qclass (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-06 09:59:35 +00:00
|
|
|
GQuark qname);
|
|
|
|
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-04-20 23:35:54 +00:00
|
|
|
void gtk_widget_path_iter_add_region (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-04-20 23:35:54 +00:00
|
|
|
const gchar *name,
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags flags);
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-04-20 23:35:54 +00:00
|
|
|
void gtk_widget_path_iter_remove_region (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-04-20 23:35:54 +00:00
|
|
|
const gchar *name);
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-04-20 23:35:54 +00:00
|
|
|
void gtk_widget_path_iter_clear_regions (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2010-04-20 23:35:54 +00:00
|
|
|
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-08-06 09:59:35 +00:00
|
|
|
GSList * gtk_widget_path_iter_list_regions (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2010-04-20 23:35:54 +00:00
|
|
|
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-08-05 14:21:12 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_region (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-05 14:21:12 +00:00
|
|
|
const gchar *name,
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags *flags);
|
2014-06-21 13:38:38 +00:00
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-08-04 10:19:23 +00:00
|
|
|
gboolean gtk_widget_path_iter_has_qregion (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-04 10:19:23 +00:00
|
|
|
GQuark qname,
|
2010-08-05 09:08:51 +00:00
|
|
|
GtkRegionFlags *flags);
|
2010-04-20 23:35:54 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-13 16:54:02 +00:00
|
|
|
GType gtk_widget_path_get_object_type (const GtkWidgetPath *path);
|
2010-06-18 14:59:14 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-06-18 14:59:14 +00:00
|
|
|
gboolean gtk_widget_path_is_type (const GtkWidgetPath *path,
|
|
|
|
GType type);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-06-18 14:59:14 +00:00
|
|
|
gboolean gtk_widget_path_has_parent (const GtkWidgetPath *path,
|
|
|
|
GType type);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2015-09-11 15:49:59 +00:00
|
|
|
/* private API goes here */
|
|
|
|
|
|
|
|
void gtk_widget_path_iter_add_qclass (GtkWidgetPath *path,
|
|
|
|
gint pos,
|
|
|
|
GQuark qname);
|
|
|
|
|
2010-03-12 17:55:54 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_WIDGET_PATH_H__ */
|