~ubuntu-branches/ubuntu/natty/libxi/natty-201011191114

« back to all changes in this revision

Viewing changes to man/XListDeviceProperties.txt

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-11-21 18:39:28 UTC
  • mfrom: (1.1.10 upstream) (0.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20091121183928-ek2jwqx3rmhv3zjz
Tags: 2:1.3-1
* Bump Standards-Version to 3.8.3.
* Add build-deps on xmlto and asciidoc to build the manpages.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
XLISTDEVICEPROPERTIES(libmansuffix)
 
2
===================================
 
3
 
 
4
NAME
 
5
----
 
6
 
 
7
   XListDeviceProperties - List a device's properties.
 
8
 
 
9
SYNOPSIS
 
10
--------
 
11
 
 
12
   #include <X11/extensions/XInput.h>
 
13
 
 
14
   Atom* XListDeviceProperties( Display *display,
 
15
                                XDevice *device,
 
16
                                int *nprops_return);
 
17
 
 
18
   display
 
19
          Specifies the connection to the X server.
 
20
 
 
21
   device
 
22
          The device to list the properties for.
 
23
 
 
24
   nprops_return
 
25
          Specifies the number of Atoms returned.
 
26
 
 
27
DESCRIPTION
 
28
-----------
 
29
 
 
30
   The XListDeviceProperties function returns a list of the
 
31
   properties associated with the input device specified in
 
32
   device. Each device may have an arbitrary number of properties
 
33
   attached, some of which were created by the driver and/or
 
34
   server, others created by clients at runtime.
 
35
 
 
36
   The client is expected to free the list of properties using
 
37
   XFree.
 
38
 
 
39
   XListDeviceProperties can generate a BadDevice error.
 
40
 
 
41
DIAGNOSTICS
 
42
-----------
 
43
 
 
44
   BadDevice
 
45
          An invalid device was specified. The device does not
 
46
          exist.
 
47
 
 
48
SEE ALSO
 
49
--------
 
50
 
 
51
   XChangeDeviceProperty(libmansuffix),
 
52
   XGetDeviceProperty(libmansuffix),
 
53
   XDeleteDeviceProperty(libmansuffix)