aboutsummaryrefslogtreecommitdiff
path: root/libX11/man/xkb/XkbResizeKeyType.man
blob: 1bd9f41ddc63a995c3f93e0854d9b52d06af71b7 (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
'\" t
.\" Copyright 1999 Oracle and/or its affiliates. All rights reserved.
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
.\" copy of this software and associated documentation files (the "Software"),
.\" to deal in the Software without restriction, including without limitation
.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software is furnished to do so, subject to the following conditions:
.\"
.\" The above copyright notice and this permission notice (including the next
.\" paragraph) shall be included in all copies or substantial portions of the
.\" Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
.\" THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
.\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
.\" DEALINGS IN THE SOFTWARE.
.\"
.TH XkbResizeKeyType __libmansuffix__ __xorgversion__ "XKB FUNCTIONS"
.SH NAME
XkbResizeKeyType \- Change the number of levels in a key type
.SH SYNOPSIS
.HP
.B Status XkbResizeKeyType
.BI "(\^XkbDescPtr " "xkb" "\^,"
.BI "int " "type_ndx" "\^,"
.BI "int " "map_count" "\^,"
.BI "Bool " "want_preserve" "\^,"
.BI "int " "new_num_lvls" "\^);"
.if n .ti +5n
.if t .ti +.5i
.SH ARGUMENTS
.TP
.I \- xkb
keyboard description containing client map to update
.TP
.I \- type_ndx
index in xkb->map->types of type to change
.TP
.I \- map_count
total # of map entries needed for the type
.TP
.I \- want_preserve
True => list of preserved modifiers is necessary
.TP
.I \- new_num_lvls
new max # of levels for type
.SH DESCRIPTION
.LP
.I XkbResizeKeyType 
changes the type specified by 
.I xkb->map->types[type_ndx], 
and reallocates the symbols and actions bound to all keys that use the type, if 
necessary. 
.I XkbResizeKeyType 
updates only the local copy of the types in 
.I xkb; 
to update the server's copy for the physical device, use 
.I XkbSetMap 
or 
.I XkbChangeMap 
after calling 
.I XkbResizeKeyType.

The 
.I map_count 
parameter specifies the total number of map entries needed for the type, and can 
be zero or greater. If 
.I map_count 
is zero, 
.I XkbResizeKeyType 
frees the existing 
.I map 
and 
.I preserve 
entries for the type if they exist and sets them to NULL.

The 
.I want_preserve 
parameter specifies whether a 
.I preserve 
list for the key should be created. If 
.I want_preserve 
is True, the 
.I preserve 
list with 
.I map_count 
entries is allocated or reallocated if it already exists. Otherwise, if
.I want_preserve 
is False, the 
.I preserve 
field is freed if necessary and set to NULL.

The 
.I new_num_lvls 
parameter specifies the new maximum number of shift levels for the type and is 
used to calculate and resize the symbols and actions bound to all keys that use 
the type.

If 
.I type_ndx 
does not specify a legal type, 
.I new_num_lvls 
is less than 1, or the 
.I map_count 
is less than zero, 
.I XkbResizeKeyType 
returns BadValue. If 
.I XkbResizeKeyType 
encounters any problems with allocation, it returns BadAlloc. Otherwise, it 
returns Success.
.SH "RETURN VALUES"
.TP 15
Success
The 
.I XkbResizeKeyType 
function returns Success if 
.I type_ndx 
specifies a legal type,   
.I new_num_lvls 
is greater than zero and 
.I map_count 
is positive.
.SH DIAGNOSTICS
.TP 15
.B BadAlloc
Unable to allocate storage
.TP 15
.B BadValue
An argument is out of range
.SH "SEE ALSO"
.BR XkbChangeMap (__libmansuffix__),
.BR XkbSetMap (__libmansuffix__)