summaryrefslogtreecommitdiff
path: root/docs/reference/gdk/tmpl/properties.sgml
blob: 64a1b2d3f739a3220aff4c7df43156303c6cfc00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!-- ##### SECTION Title ##### -->
Properties and Atoms

<!-- ##### SECTION Short_Description ##### -->
Functions to manipulate properties on windows

<!-- ##### SECTION Long_Description ##### -->
<para>
Each window under X can have any number of associated
<firstterm>properties</firstterm> attached to it.
Properties are arbitrary chunks of data identified by
<firstterm>atom</firstterm>s. (An <firstterm>atom</firstterm>
is a numeric index into a string table on the X server. They are used
to transfer strings efficiently between clients without
having to transfer the entire string.) A property
has an associated type, which is also identified
using an atom.
</para>
<para>
A property has an associated <firstterm>format</firstterm>,
an integer describing how many bits are in each unit
of data inside the property. It must be 8, 16, or 32.
When data is transferred between the server and client,
if they are of different endianesses it will be byteswapped
as necessary according to the format of the property.
Note that on the client side, properties of format 32
will be stored with one unit per <emphasis>long</emphasis>,
even if a long integer has more than 32 bits on the platform.
(This decision was apparently made for Xlib to maintain
compatibility with programs that assumed longs were 32
bits, at the expense of programs that knew better.)
</para>
<para>
The functions in this section are used to add, remove
and change properties on windows, to convert atoms
to and from strings and to manipulate some types of
data commonly stored in X window properties.
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### SECTION Image ##### -->


<!-- ##### STRUCT GdkAtom ##### -->
<para>
An opaque type representing a string as an index into a table
of strings on the X server.
</para>


<!-- ##### MACRO GDK_ATOM_TO_POINTER ##### -->
<para>
Converts a #GdkAtom into a pointer type. 
</para>

@atom: a #GdkAtom.


<!-- ##### MACRO GDK_POINTER_TO_ATOM ##### -->
<para>
Extracts a #GdkAtom from a pointer. The #GdkAtom must have been
stored in the pointer with GDK_ATOM_TO_POINTER().
</para>

@ptr: a pointer containing a #GdkAtom.


<!-- ##### MACRO GDK_NONE ##### -->
<para>
A null value for #GdkAtom, used in a similar way as <literal>None</literal>
in the Xlib API.
</para>



<!-- ##### FUNCTION gdk_text_property_to_text_list ##### -->
<para>
Converts a text string from the encoding as it is stored in
a property into an array of strings in the encoding of
the current local. (The elements of the array represent
the nul-separated elements of the original text string.)
</para>

@encoding: an atom representing the encoding. The most common
           values for this are <literal>STRING</literal>,
           or <literal>COMPOUND_TEXT</literal>. This is
           value used as the type for the property.
@format: the format of the property.
@text: the text data.
@length: the length of the property, in items.
@list: location to store a terminated array of strings
       in the encoding of the current locale. This
       array should be freed using gdk_free_text_list().
@Returns: the number of strings stored in @list, or 0,
          if the conversion failed.


<!-- ##### FUNCTION gdk_text_property_to_text_list_for_display ##### -->
<para>

</para>

@display: 
@encoding: 
@format: 
@text: 
@length: 
@list: 
@Returns: 


<!-- ##### FUNCTION gdk_free_text_list ##### -->
<para>
Frees the array of strings created by
gdk_text_property_to_text_list().
</para>

@list: the value stored in the @list parameter by
       a call to gdk_text_property_to_text_list().


<!-- ##### FUNCTION gdk_text_property_to_utf8_list ##### -->
<para>

</para>

@encoding: 
@format: 
@text: 
@length: 
@list: 
@Returns: 


<!-- ##### FUNCTION gdk_text_property_to_utf8_list_for_display ##### -->
<para>

</para>

@display: 
@encoding: 
@format: 
@text: 
@length: 
@list: 
@Returns: 


<!-- ##### FUNCTION gdk_string_to_compound_text ##### -->
<para>
Converts a string from the encoding of the current locale 
into a form suitable for storing in a window property.
</para>

@str: a nul-terminated string.
@encoding: location to store the encoding atom (to be used as the type for the property).
@format: location to store the format for the property.
@ctext: location to store newly allocated data for the property.
@length: location to store the length of @ctext in items.
@Returns: 0 upon sucess, non-zero upon failure.


<!-- ##### FUNCTION gdk_string_to_compound_text_for_display ##### -->
<para>

</para>

@display: 
@str: 
@encoding: 
@format: 
@ctext: 
@length: 
@Returns: 


<!-- ##### FUNCTION gdk_free_compound_text ##### -->
<para>
Frees the data returned from gdk_string_to_compound_text().
</para>

@ctext: The pointer stored in @ctext from a call to gdk_string_to_compound_text().


<!-- ##### FUNCTION gdk_utf8_to_string_target ##### -->
<para>

</para>

@str: 
@Returns: 


<!-- ##### FUNCTION gdk_utf8_to_compound_text ##### -->
<para>

</para>

@str: 
@encoding: 
@format: 
@ctext: 
@length: 
@Returns: 


<!-- ##### FUNCTION gdk_utf8_to_compound_text_for_display ##### -->
<para>

</para>

@display: 
@str: 
@encoding: 
@format: 
@ctext: 
@length: 
@Returns: 


<!-- ##### FUNCTION gdk_atom_intern ##### -->
<para>
Finds or creates an atom corresponding to a given string.
</para>

@atom_name: a string.
@only_if_exists: if %TRUE, GDK is allowed to not create a new atom, but
                 just return %GDK_NONE if the requested atom doesn't already
                 exists. Currently, the flag is ignored, since checking the 
                 existance of an atom is as expensive as creating it.
@Returns: the atom corresponding to @atom_name.


<!-- ##### FUNCTION gdk_atom_intern_static_string ##### -->
<para>

</para>

@atom_name: 
@Returns: 


<!-- ##### FUNCTION gdk_atom_name ##### -->
<para>
Determines the string corresponding to an atom.
</para>

@atom: a #GdkAtom.
@Returns: a newly-allocated string containing the string
          corresponding to @atom. When you are done
          with the return value, you should free it 
          using g_free().


<!-- ##### FUNCTION gdk_property_get ##### -->
<para>
Retrieves a portion of the contents of a property. If the
property does not exist, then the function returns %FALSE,
and %GDK_NONE will be stored in @actual_property_type.
</para>
<note>
<para>
The XGetWindowProperty() function that gdk_property_get()
uses has a very confusing and complicated set of semantics.  
Unfortunately, gdk_property_get() makes the situation
worse instead of better (the semantics should be considered
undefined), and also prints warnings to stderr in cases where it
should return a useful error to the program. You are advised to use 
XGetWindowProperty() directly until a replacement function for 
gdk_property_get()
is provided. 
</para>
</note>

@window: a #GdkWindow.
@property: the property to retrieve.
@type: the desired property type, or %GDK_NONE, if any type of data
       is acceptable. If this does not match the actual
       type, then @actual_format and @actual_length will
       be filled in, a warning will be printed to stderr
       and no data will be returned.
@offset: the offset into the property at which to begin
         retrieving data, in 4 byte units.
@length: the length of the data to retrieve in bytes.  Data is
         considered to be retrieved in 4 byte chunks, so @length 
         will be rounded up to the next highest 4 byte boundary 
         (so be careful not to pass a value that might overflow 
          when rounded up).
@pdelete: if %TRUE, delete the property after retrieving the
          data.
@actual_property_type: location to store the actual type of 
                       the property.
@actual_format: location to store the actual return format of the
                data; either 8, 16 or 32 bits.
@actual_length: location to store the length of the retrieved data, in
                bytes.  Data returned in the 32 bit format is stored
                in a long variable, so the actual number of 32 bit
                elements should be be calculated via
                @actual_length/sizeof(glong) to ensure portability to
                64 bit systems.
@data: location to store a pointer to the data. The retrieved
       data should be freed with g_free() when you are finished
       using it.
@Returns: %TRUE if data was successfully received and stored
          in @data, otherwise %FALSE.


<!-- ##### FUNCTION gdk_property_change ##### -->
<para>
Changes the contents of a property on a window.
</para>

@window: a #GdkWindow.
@property: the property to change.
@type: the new type for the property. If @mode is
       %GDK_PROP_MODE_PREPEND or %GDK_PROP_MODE_APPEND, then this 
       must match the existing type or an error will occur.
@format: the new format for the property. If @mode is
         %GDK_PROP_MODE_PREPEND or %GDK_PROP_MODE_APPEND, then this 
         must match the existing format or an error will occur.
@mode: a value describing how the new data is to be combined
       with the current data.
@data: the data
       (a <literal>guchar *</literal>
        <literal>gushort *</literal>, or 
        <literal>gulong *</literal>, depending on @format), cast to a 
        <literal>guchar *</literal>.
@nelements: the number of elements of size determined by the format,
            contained in @data.


<!-- ##### ENUM GdkPropMode ##### -->
<para>
Describes how existing data is combined with new data when
using gdk_property_change().
</para>

@GDK_PROP_MODE_REPLACE: the new data replaces the existing data.
@GDK_PROP_MODE_PREPEND: the new data is prepended to the existing data.
@GDK_PROP_MODE_APPEND: the new data is appended to the existing data.

<!-- ##### FUNCTION gdk_property_delete ##### -->
<para>
Deletes a property from a window.
</para>

@window: a #GdkWindow.
@property: the property to delete.