]> Pileus Git - ~andy/gtk/blob - gdk/gdkproperty.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gdk / gdkproperty.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #ifndef __GDK_PROPERTY_H__
26 #define __GDK_PROPERTY_H__
27
28 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
29 #error "Only <gdk/gdk.h> can be included directly."
30 #endif
31
32 #include <gdk/gdktypes.h>
33
34 G_BEGIN_DECLS
35
36
37 /**
38  * GdkPropMode:
39  * @GDK_PROP_MODE_REPLACE: the new data replaces the existing data.
40  * @GDK_PROP_MODE_PREPEND: the new data is prepended to the existing data.
41  * @GDK_PROP_MODE_APPEND: the new data is appended to the existing data.
42  *
43  * Describes how existing data is combined with new data when
44  * using gdk_property_change().
45  */
46 typedef enum
47 {
48   GDK_PROP_MODE_REPLACE,
49   GDK_PROP_MODE_PREPEND,
50   GDK_PROP_MODE_APPEND
51 } GdkPropMode;
52
53
54 GdkAtom gdk_atom_intern (const gchar *atom_name,
55                          gboolean     only_if_exists);
56 GdkAtom gdk_atom_intern_static_string (const gchar *atom_name);
57 gchar*  gdk_atom_name   (GdkAtom      atom);
58
59
60 gboolean gdk_property_get    (GdkWindow     *window,
61                               GdkAtom        property,
62                               GdkAtom        type,
63                               gulong         offset,
64                               gulong         length,
65                               gint           pdelete,
66                               GdkAtom       *actual_property_type,
67                               gint          *actual_format,
68                               gint          *actual_length,
69                               guchar       **data);
70 void     gdk_property_change (GdkWindow     *window,
71                               GdkAtom        property,
72                               GdkAtom        type,
73                               gint           format,
74                               GdkPropMode    mode,
75                               const guchar  *data,
76                               gint           nelements);
77 void     gdk_property_delete (GdkWindow     *window,
78                               GdkAtom        property);
79
80 gint   gdk_text_property_to_utf8_list_for_display (GdkDisplay     *display,
81                                                    GdkAtom         encoding,
82                                                    gint            format,
83                                                    const guchar   *text,
84                                                    gint            length,
85                                                    gchar        ***list);
86
87 gchar *gdk_utf8_to_string_target                  (const gchar    *str);
88
89 G_END_DECLS
90
91 #endif /* __GDK_PROPERTY_H__ */