]>
diplodocus.org Git - xorg-xinput/blob - src/hierarchy.c
2 * Copyright 2007 Peter Hutterer <peter@cs.unisa.edu.au>
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
10 * The above copyright notice and this permission notice shall be included
11 * in all copies or substantial portions of the Software.
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
14 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
17 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
18 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
19 * OTHER DEALINGS IN THE SOFTWARE.
21 * Except as contained in this notice, the name of the author shall
22 * not be used in advertising or otherwise to promote the sale, use or
23 * other dealings in this Software without prior written authorization
31 #define Error(error, ...) \
33 fprintf(stderr, __VA_ARGS__); \
37 * Create a new master device. Name must be supplied, other values are
41 create_master(Display
* dpy
, int argc
, char** argv
, char* name
, char *desc
)
47 fprintf(stderr
, "Usage: xinput %s %s\n", name
, desc
);
51 c
.type
= CH_CreateMasterDevice
;
53 c
.sendCore
= (argc
>= 2) ? atoi(argv
[1]) : 1;
54 c
.enable
= (argc
>= 3) ? atoi(argv
[2]) : 1;
56 return XChangeDeviceHierarchy(dpy
, (XAnyHierarchyChangeInfo
*)&c
, 1);
60 * Remove a master device.
61 * By default, all attached devices are set to Floating, unless parameters are
65 remove_master(Display
* dpy
, int argc
, char** argv
, char *name
, char *desc
)
69 XDevice
* master
= NULL
, *ptr
= NULL
, *keybd
= NULL
;
74 fprintf(stderr
, "usage: xinput %s %s\n", name
, desc
);
78 info
= find_device_info(dpy
, argv
[0], False
);
81 fprintf(stderr
, "unable to find device %s\n", argv
[0]);
85 master
= XOpenDevice(dpy
, info
->id
);
87 Error(BadValue
, "Unable to open device %s.\n", argv
[0]);
89 r
.type
= CH_RemoveMasterDevice
;
93 if (!strcmp(argv
[1], "Floating"))
94 r
.returnMode
= Floating
;
95 else if (!strcmp(argv
[1], "AttachToMaster"))
96 r
.returnMode
= AttachToMaster
;
98 Error(BadValue
, "Invalid returnMode.\n");
100 r
.returnMode
= Floating
;
102 if (r
.returnMode
== AttachToMaster
)
104 ptr
= XOpenDevice(dpy
, atoi(argv
[2]));
105 keybd
= XOpenDevice(dpy
, atoi(argv
[3]));
107 Error(BadValue
, "Invalid fallback master.\n");
108 r
.returnPointer
= ptr
;
109 r
.returnKeyboard
= keybd
;
112 ret
= XChangeDeviceHierarchy(dpy
, (XAnyHierarchyChangeInfo
*)&r
, 1);
114 XCloseDevice(dpy
, ptr
);
116 XCloseDevice(dpy
, keybd
);
121 * Swap a device from one master to another.
124 change_attachment(Display
* dpy
, int argc
, char** argv
, char *name
, char* desc
)
126 XDeviceInfo
*info_sd
, *info_md
;
127 XChangeAttachmentInfo c
;
128 XDevice
*slave
, *master
;
133 fprintf(stderr
, "usage: xinput %s %s\n", name
, desc
);
137 info_sd
= find_device_info(dpy
, argv
[0], True
);
138 info_md
= find_device_info(dpy
, argv
[1], False
);
141 fprintf(stderr
, "unable to find device %s\n", argv
[0]);
146 fprintf(stderr
, "unable to find device %s\n", argv
[1]);
150 slave
= XOpenDevice(dpy
, info_sd
->id
);
151 master
= XOpenDevice(dpy
, info_md
->id
);
154 Error(BadValue
, "Invalid slave device given %d\n", atoi(argv
[0]));
157 Error(BadValue
, "Invalid master device given %d\n", atoi(argv
[1]));
159 c
.type
= CH_ChangeAttachment
;
160 c
.changeMode
= AttachToMaster
;
162 c
.newMaster
= master
;
164 ret
= XChangeDeviceHierarchy(dpy
, (XAnyHierarchyChangeInfo
*)&c
, 1);
165 XCloseDevice(dpy
, slave
);
166 XCloseDevice(dpy
, master
);
171 * Set a device floating.
174 float_device(Display
* dpy
, int argc
, char** argv
, char* name
, char* desc
)
177 XChangeAttachmentInfo c
;
183 fprintf(stderr
, "usage: xinput %s %s\n", name
, desc
);
187 info
= find_device_info(dpy
, argv
[0], True
);
190 fprintf(stderr
, "unable to find device %s\n", argv
[0]);
194 slave
= XOpenDevice(dpy
, info
->id
);
199 c
.type
= CH_ChangeAttachment
;
200 c
.changeMode
= Floating
;
203 ret
= XChangeDeviceHierarchy(dpy
, (XAnyHierarchyChangeInfo
*)&c
, 1);
204 XCloseDevice(dpy
, slave
);