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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
#ifndef __GTK_WIDGET_PATH_H__
|
|
|
|
#define __GTK_WIDGET_PATH_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2010-04-20 23:27:46 +00:00
|
|
|
#include "gtkenums.h"
|
2010-03-12 17:55:54 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-10-19 08:59:46 +00:00
|
|
|
typedef struct _GtkWidgetPath GtkWidgetPath;
|
2010-03-12 17:55:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
GtkWidgetPath * gtk_widget_path_new (void);
|
|
|
|
|
2010-04-20 23:27:46 +00:00
|
|
|
GtkWidgetPath * gtk_widget_path_copy (const GtkWidgetPath *path);
|
|
|
|
void gtk_widget_path_free (GtkWidgetPath *path);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2010-11-19 17:59:49 +00:00
|
|
|
gint gtk_widget_path_length (const GtkWidgetPath *path);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
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);
|
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);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2010-08-04 10:50:37 +00:00
|
|
|
GType gtk_widget_path_iter_get_widget_type (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
2010-08-04 10:50:37 +00:00
|
|
|
void gtk_widget_path_iter_set_widget_type (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos,
|
2010-08-04 10:50:37 +00:00
|
|
|
GType type);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
2010-08-04 11:11:50 +00:00
|
|
|
G_CONST_RETURN gchar * gtk_widget_path_iter_get_name (const GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
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);
|
|
|
|
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);
|
|
|
|
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);
|
2010-04-20 23:27:46 +00:00
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
void gtk_widget_path_iter_clear_classes (GtkWidgetPath *path,
|
2010-11-19 17:59:49 +00:00
|
|
|
gint pos);
|
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);
|
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);
|
|
|
|
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);
|
|
|
|
|
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);
|
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);
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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);
|
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
|
|
|
|
2010-06-18 14:59:14 +00:00
|
|
|
GType gtk_widget_path_get_widget_type (const GtkWidgetPath *path);
|
|
|
|
|
|
|
|
gboolean gtk_widget_path_is_type (const GtkWidgetPath *path,
|
|
|
|
GType type);
|
|
|
|
gboolean gtk_widget_path_has_parent (const GtkWidgetPath *path,
|
|
|
|
GType type);
|
2010-03-12 17:55:54 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_WIDGET_PATH_H__ */
|