]> Pileus Git - ~andy/gtk/blob - gdk/gdkproperty.h
New function to avoid pointless strdups when creating atoms from static
[~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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GDK_PROPERTY_H__
28 #define __GDK_PROPERTY_H__
29
30 #include <gdk/gdktypes.h>
31
32 G_BEGIN_DECLS
33
34 typedef enum
35 {
36   GDK_PROP_MODE_REPLACE,
37   GDK_PROP_MODE_PREPEND,
38   GDK_PROP_MODE_APPEND
39 } GdkPropMode;
40
41 GdkAtom gdk_atom_intern (const gchar *atom_name,
42                          gboolean     only_if_exists);
43 GdkAtom gdk_atom_intern_static_string (const gchar *atom_name);
44 gchar*  gdk_atom_name   (GdkAtom      atom);
45
46 gboolean gdk_property_get    (GdkWindow     *window,
47                               GdkAtom        property,
48                               GdkAtom        type,
49                               gulong         offset,
50                               gulong         length,
51                               gint           pdelete,
52                               GdkAtom       *actual_property_type,
53                               gint          *actual_format,
54                               gint          *actual_length,
55                               guchar       **data);
56 void     gdk_property_change (GdkWindow     *window,
57                               GdkAtom        property,
58                               GdkAtom        type,
59                               gint           format,
60                               GdkPropMode    mode,
61                               const guchar  *data,
62                               gint           nelements);
63 void     gdk_property_delete (GdkWindow     *window,
64                               GdkAtom        property);
65 #ifndef GDK_MULTIHEAD_SAFE
66 gint gdk_text_property_to_text_list (GdkAtom        encoding,
67                                      gint           format,
68                                      const guchar  *text,
69                                      gint           length,
70                                      gchar       ***list);
71 gint gdk_text_property_to_utf8_list (GdkAtom        encoding,
72                                      gint           format,
73                                      const guchar  *text,
74                                      gint           length,
75                                      gchar       ***list);
76 gboolean gdk_utf8_to_compound_text (const gchar *str,
77                                     GdkAtom     *encoding,
78                                     gint        *format,
79                                     guchar     **ctext,
80                                     gint        *length);
81 gint gdk_string_to_compound_text    (const gchar   *str,
82                                      GdkAtom       *encoding,
83                                      gint          *format,
84                                      guchar       **ctext,
85                                      gint          *length);
86 #endif
87
88 gint gdk_text_property_to_text_list_for_display (GdkDisplay     *display,
89                                                  GdkAtom         encoding,
90                                                  gint            format,
91                                                  const guchar   *text,
92                                                  gint            length,
93                                                  gchar        ***list);
94 gint gdk_text_property_to_utf8_list_for_display (GdkDisplay     *display,
95                                                  GdkAtom         encoding,
96                                                  gint            format,
97                                                  const guchar   *text,
98                                                  gint            length,
99                                                  gchar        ***list);
100   
101 gchar   *gdk_utf8_to_string_target   (const gchar *str);
102 gint     gdk_string_to_compound_text_for_display (GdkDisplay   *display,
103                                                   const gchar  *str,
104                                                   GdkAtom      *encoding,
105                                                   gint         *format,
106                                                   guchar      **ctext,
107                                                   gint         *length);
108 gboolean gdk_utf8_to_compound_text_for_display   (GdkDisplay   *display,
109                                                   const gchar  *str,
110                                                   GdkAtom      *encoding,
111                                                   gint         *format,
112                                                   guchar      **ctext,
113                                                   gint         *length);
114
115 void gdk_free_text_list             (gchar        **list);
116 void gdk_free_compound_text         (guchar        *ctext);
117
118 G_END_DECLS
119
120 #endif /* __GDK_PROPERTY_H__ */