Remove deprecated actions We didn't do anything with ISO_Lock, ActionMessage, RedirectKey, and the device-specifying variants of the pointer actions, so remove those. Signed-off-by: Daniel Stone <daniel@fooishbar.org>
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 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
diff --git a/src/keymap-dump.c b/src/keymap-dump.c
index 4926762..73dced7 100644
--- a/src/keymap-dump.c
+++ b/src/keymap-dump.c
@@ -491,11 +491,6 @@ write_action(struct xkb_keymap *keymap, struct buf *buf,
get_control_mask_text(action->ctrls.ctrls), suffix);
break;
- case XkbSA_ISOLock:
- case XkbSA_ActionMessage:
- case XkbSA_RedirectKey:
- case XkbSA_DeviceBtn:
- case XkbSA_LockDeviceBtn:
case XkbSA_NoAction:
/* XXX TODO */
write_buf(buf, "%sNoAction()%s", prefix, suffix);
diff --git a/src/text.c b/src/text.c
index c31b2ff..3c10794 100644
--- a/src/text.c
+++ b/src/text.c
@@ -173,30 +173,31 @@ const LookupEntry actionTypeNames[] = {
{ "LockPointerBtn", XkbSA_LockPtrBtn },
{ "SetPtrDflt", XkbSA_SetPtrDflt },
{ "SetPointerDefault", XkbSA_SetPtrDflt },
- { "ISOLock", XkbSA_ISOLock },
{ "Terminate", XkbSA_Terminate },
{ "TerminateServer", XkbSA_Terminate },
{ "SwitchScreen", XkbSA_SwitchScreen },
{ "SetControls", XkbSA_SetControls },
{ "LockControls", XkbSA_LockControls },
- { "ActionMessage", XkbSA_ActionMessage },
- { "MessageAction", XkbSA_ActionMessage },
- { "Message", XkbSA_ActionMessage },
{ "RedirectKey", XkbSA_RedirectKey },
{ "Redirect", XkbSA_RedirectKey },
- { "DeviceBtn", XkbSA_DeviceBtn },
- { "DevBtn", XkbSA_DeviceBtn },
- { "DevButton", XkbSA_DeviceBtn },
- { "DeviceButton", XkbSA_DeviceBtn },
- { "LockDeviceBtn", XkbSA_LockDeviceBtn },
- { "LockDevBtn", XkbSA_LockDeviceBtn },
- { "LockDevButton", XkbSA_LockDeviceBtn },
- { "LockDeviceButton", XkbSA_LockDeviceBtn },
- { "DeviceValuator", XkbSA_DeviceValuator },
- { "DevVal", XkbSA_DeviceValuator },
- { "DeviceVal", XkbSA_DeviceValuator },
- { "DevValuator", XkbSA_DeviceValuator },
{ "Private", PrivateAction },
+ /* deprecated actions below here - unused */
+ { "ISOLock", XkbSA_NoAction },
+ { "ActionMessage", XkbSA_NoAction },
+ { "MessageAction", XkbSA_NoAction },
+ { "Message", XkbSA_NoAction },
+ { "DeviceBtn", XkbSA_NoAction },
+ { "DevBtn", XkbSA_NoAction },
+ { "DevButton", XkbSA_NoAction },
+ { "DeviceButton", XkbSA_NoAction },
+ { "LockDeviceBtn", XkbSA_NoAction },
+ { "LockDevBtn", XkbSA_NoAction },
+ { "LockDevButton", XkbSA_NoAction },
+ { "LockDeviceButton", XkbSA_NoAction },
+ { "DeviceValuator", XkbSA_NoAction },
+ { "DevVal", XkbSA_NoAction },
+ { "DeviceVal", XkbSA_NoAction },
+ { "DevValuator", XkbSA_NoAction },
{ NULL, 0 },
};
diff --git a/src/xkb-priv.h b/src/xkb-priv.h
index b9ff714..36554bb 100644
--- a/src/xkb-priv.h
+++ b/src/xkb-priv.h
@@ -149,39 +149,12 @@ struct xkb_group_action {
int32_t group;
};
-struct xkb_iso_action {
- uint8_t type;
- uint8_t flags;
- struct xkb_mods mods;
- int32_t group;
- uint8_t affect;
-};
-
struct xkb_controls_action {
uint8_t type;
uint8_t flags;
uint32_t ctrls;
};
-struct xkb_device_button_action {
- uint8_t type;
- uint8_t flags;
- uint8_t count;
- uint8_t button;
- uint8_t device;
-};
-
-struct xkb_device_valuator_action {
- uint8_t type;
- uint8_t device;
- uint8_t v1_what;
- uint8_t v1_index;
- int8_t v1_value;
- uint8_t v2_what;
- uint8_t v2_index;
- int8_t v2_value;
-};
-
struct xkb_pointer_default_action {
uint8_t type;
uint8_t flags;
@@ -211,12 +184,6 @@ struct xkb_pointer_action {
int16_t y;
};
-struct xkb_message_action {
- uint8_t type;
- uint8_t flags;
- uint8_t message[6];
-};
-
struct xkb_pointer_button_action {
uint8_t type;
uint8_t flags;
@@ -235,16 +202,12 @@ struct xkb_private_action {
union xkb_action {
struct xkb_mod_action mods;
struct xkb_group_action group;
- struct xkb_iso_action iso;
struct xkb_controls_action ctrls;
- struct xkb_device_button_action devbtn;
- struct xkb_device_valuator_action devval;
struct xkb_pointer_default_action dflt;
struct xkb_switch_screen_action screen;
struct xkb_redirect_key_action redirect; /* XXX wholly unnecessary? */
- struct xkb_pointer_action ptr; /* XXX delete for DeviceValuator */
- struct xkb_pointer_button_action btn; /* XXX delete for DeviceBtn */
- struct xkb_message_action msg; /* XXX just delete */
+ struct xkb_pointer_action ptr;
+ struct xkb_pointer_button_action btn;
struct xkb_private_action priv;
unsigned char type;
};
diff --git a/src/xkbcomp/action.c b/src/xkbcomp/action.c
index 24ae68f..617ad3b 100644
--- a/src/xkbcomp/action.c
+++ b/src/xkbcomp/action.c
@@ -91,9 +91,6 @@ NewActionsInfo(void)
info->actions[XkbSA_SetPtrDflt].dflt.flags = 0;
info->actions[XkbSA_SetPtrDflt].dflt.value = 1;
- info->actions[XkbSA_ISOLock].iso.mods.mods =
- (1 << ModNameToIndex(XKB_MOD_NAME_CAPS));
-
return info;
}
@@ -210,7 +207,7 @@ HandleNoAction(struct xkb_keymap *keymap, union xkb_action *action,
const ExprDef *value)
{
- return ReportIllegal(keymap, action->type, field);
+ return true;
}
static bool
@@ -628,73 +625,6 @@ HandleSetPtrDflt(struct xkb_keymap *keymap, union xkb_action *action,
return ReportIllegal(keymap, action->type, field);
}
-static const LookupEntry isoNames[] = {
- { "mods", XkbSA_ISONoAffectMods },
- { "modifiers", XkbSA_ISONoAffectMods },
- { "group", XkbSA_ISONoAffectGroup },
- { "groups", XkbSA_ISONoAffectGroup },
- { "ptr", XkbSA_ISONoAffectPtr },
- { "pointer", XkbSA_ISONoAffectPtr },
- { "ctrls", XkbSA_ISONoAffectCtrls },
- { "controls", XkbSA_ISONoAffectCtrls },
- { "all", ~((unsigned) 0) },
- { "none", 0 },
- { NULL, 0 },
-};
-
-static bool
-HandleISOLock(struct xkb_keymap *keymap, union xkb_action *action,
- enum action_field field, const ExprDef *array_ndx,
- const ExprDef *value)
-{
- struct xkb_iso_action *act = &action->iso;
-
- if (field == ACTION_FIELD_MODIFIERS) {
- unsigned flags;
- xkb_mod_mask_t mods;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- flags = act->flags;
- if (!CheckModifierField(keymap, action->type, value, &flags, &mods))
- return false;
-
- act->flags = flags & (~XkbSA_ISODfltIsGroup);
- act->mods.mods = mods;
- return true;
- }
- else if (field == ACTION_FIELD_GROUP) {
- xkb_group_index_t group;
- unsigned flags;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- flags = act->flags;
- if (!CheckGroupField(keymap, action->type, value, &flags, &group))
- return false;
-
- act->flags = flags | XkbSA_ISODfltIsGroup;
- act->group = group;
- return true;
- } else if (ACTION_FIELD_AFFECT) {
- xkb_mod_mask_t mask;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveMask(keymap->ctx, value, &mask, isoNames))
- return ReportMismatch(keymap, action->type, field,
- "keyboard component");
-
- act->affect = (~mask) & XkbSA_ISOAffectMask;
- return true;
- }
-
- return ReportIllegal(keymap, action->type, field);
-}
-
static bool
HandleSwitchScreen(struct xkb_keymap *keymap, union xkb_action *action,
enum action_field field, const ExprDef *array_ndx,
@@ -776,260 +706,6 @@ HandleSetLockControls(struct xkb_keymap *keymap, union xkb_action *action,
return ReportIllegal(keymap, action->type, field);
}
-static const LookupEntry evNames[] = {
- { "press", XkbSA_MessageOnPress },
- { "keypress", XkbSA_MessageOnPress },
- { "release", XkbSA_MessageOnRelease },
- { "keyrelease", XkbSA_MessageOnRelease },
- { "all", XkbSA_MessageOnPress | XkbSA_MessageOnRelease },
- { "none", 0 },
- { NULL, 0 }
-};
-
-static bool
-HandleActionMessage(struct xkb_keymap *keymap, union xkb_action *action,
- enum action_field field, const ExprDef *array_ndx,
- const ExprDef *value)
-{
- struct xkb_message_action *act = &action->msg;
-
- if (field == ACTION_FIELD_REPORT) {
- unsigned int mask;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveMask(keymap->ctx, value, &mask, evNames))
- return ReportMismatch(keymap, action->type, field,
- "key event mask");
-
- /* FIXME: Something seems wrong here... */
- act->flags &= ~(XkbSA_MessageOnPress | XkbSA_MessageOnRelease);
- act->flags = mask & (XkbSA_MessageOnPress | XkbSA_MessageOnRelease);
- return true;
- }
- else if (field == ACTION_FIELD_GEN_KEY_EVENT) {
- bool set;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveBoolean(keymap->ctx, value, &set))
- return ReportMismatch(keymap, action->type, field, "boolean");
-
- if (set)
- act->flags |= XkbSA_MessageGenKeyEvent;
- else
- act->flags &= ~XkbSA_MessageGenKeyEvent;
-
- return true;
- }
- else if (field == ACTION_FIELD_DATA && !array_ndx) {
- xkb_atom_t val;
- const char *str;
- int len;
-
- if (!ExprResolveString(keymap->ctx, value, &val))
- return ReportMismatch(keymap, action->type, field, "string");
-
- str = xkb_atom_text(keymap->ctx, val);
- len = strlen(str);
- if (len < 1 || len > 6) {
- log_warn(keymap->ctx,
- "An action message can hold only 6 bytes; "
- "Extra %d bytes ignored\n", len - 6);
- }
-
- strncpy((char *) act->message, str, 6);
- return true;
- }
- else if (field == ACTION_FIELD_DATA && array_ndx) {
- int ndx, datum;
-
- if (!ExprResolveInteger(keymap->ctx, array_ndx, &ndx)) {
- log_err(keymap->ctx,
- "Array subscript must be integer; "
- "Illegal subscript ignored\n");
- return false;
- }
-
- if (ndx < 0 || ndx > 5) {
- log_err(keymap->ctx,
- "An action message is at most 6 bytes long; "
- "Attempt to use data[%d] ignored\n", ndx);
- return false;
- }
-
- if (!ExprResolveInteger(keymap->ctx, value, &datum))
- return ReportMismatch(keymap, action->type, field, "integer");
-
- if (datum < 0 || datum > 255) {
- log_err(keymap->ctx,
- "Message data must be in the range 0..255; "
- "Illegal datum %d ignored\n", datum);
- return false;
- }
-
- act->message[ndx] = (uint8_t) datum;
- return true;
- }
-
- return ReportIllegal(keymap, action->type, field);
-}
-
-static bool
-HandleRedirectKey(struct xkb_keymap *keymap, union xkb_action *action,
- enum action_field field, const ExprDef *array_ndx,
- const ExprDef *value)
-{
- struct xkb_key *key;
- struct xkb_redirect_key_action *act = &action->redirect;
- unsigned t1;
- xkb_mod_mask_t t2;
- unsigned long tmp;
- char key_name[XKB_KEY_NAME_LENGTH];
-
- if (array_ndx != NULL)
- return ReportActionNotArray(keymap, action->type, field);
-
- switch (field) {
- case ACTION_FIELD_KEYCODE:
- if (!ExprResolveKeyName(keymap->ctx, value, key_name))
- return ReportMismatch(keymap, action->type, field, "key name");
-
- tmp = KeyNameToLong(key_name);
- key = FindNamedKey(keymap, tmp, true, 0);
- if (!key)
- return ReportNotFound(keymap, action->type, field, "Key",
- KeyNameText(key_name));
- act->new_kc = XkbKeyGetKeycode(keymap, key);
- return true;
-
- case ACTION_FIELD_MODS_TO_CLEAR:
- case ACTION_FIELD_MODIFIERS:
- t1 = 0;
- if (CheckModifierField(keymap, action->type, value, &t1, &t2)) {
- act->mods_mask |= (t2 & 0xff);
- if (field == ACTION_FIELD_MODIFIERS)
- act->mods |= (t2 & 0xff);
- else
- act->mods &= ~(t2 & 0xff);
-
- t2 = (t2 >> XKB_NUM_CORE_MODS) & 0xffff;
- act->vmods_mask |= t2;
- if (field == ACTION_FIELD_MODIFIERS)
- act->vmods |= t2;
- else
- act->vmods &= ~t2;
- return true;
- }
- return true;
-
- default:
- break;
- }
-
- return ReportIllegal(keymap, action->type, field);
-}
-
-static bool
-HandleDeviceBtn(struct xkb_keymap *keymap, union xkb_action *action,
- enum action_field field, const ExprDef *array_ndx,
- const ExprDef *value)
-{
- struct xkb_device_button_action *act = &action->devbtn;
-
- if (field == ACTION_FIELD_BUTTON) {
- int val;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveInteger(keymap->ctx, value, &val))
- return ReportMismatch(keymap, action->type, field,
- "integer (range 1..255)");
-
- if (val < 0 || val > 255) {
- log_err(keymap->ctx,
- "Button must specify default or be in the range 1..255; "
- "Illegal button value %d ignored\n", val);
- return false;
- }
-
- act->button = val;
- return true;
- }
- else if (action->type == XkbSA_LockDeviceBtn &&
- field == ACTION_FIELD_AFFECT) {
- unsigned int val;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveEnum(keymap->ctx, value, &val, lockWhich))
- return ReportMismatch(keymap, action->type, field,
- "lock or unlock");
-
- act->flags &= ~(XkbSA_LockNoLock | XkbSA_LockNoUnlock);
- act->flags |= val;
- return true;
- }
- else if (field == ACTION_FIELD_COUNT) {
- int btn;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- /* XXX: Should this actually be ResolveButton? */
- if (!ExprResolveButton(keymap->ctx, value, &btn))
- return ReportMismatch(keymap, action->type, field, "integer");
-
- if (btn < 0 || btn > 255) {
- log_err(keymap->ctx,
- "The count field must have a value in the range 0..255; "
- "Illegal count %d ignored\n", btn);
- return false;
- }
-
- act->count = btn;
- return true;
- }
- else if (field == ACTION_FIELD_DEVICE) {
- int val;
-
- if (array_ndx)
- return ReportActionNotArray(keymap, action->type, field);
-
- if (!ExprResolveInteger(keymap->ctx, value, &val))
- return ReportMismatch(keymap, action->type, field,
- "integer (range 1..255)");
-
- if (val < 0 || val > 255) {
- log_err(keymap->ctx,
- "Device must specify default or be in the range 1..255; "
- "Illegal device value %d ignored\n", val);
- return false;
- }
-
- act->device = val;
- return true;
- }
-
- return ReportIllegal(keymap, action->type, field);
-}
-
-static bool
-HandleDeviceValuator(struct xkb_keymap *keymap, union xkb_action *action,
- enum action_field field, const ExprDef *array_ndx,
- const ExprDef *value)
-{
- struct xkb_device_valuator_action *act = &action->devval;
- (void) act;
-
- /* XXX - Not yet implemented */
- return false;
-}
-
static bool
HandlePrivate(struct xkb_keymap *keymap, union xkb_action *action,
enum action_field field, const ExprDef *array_ndx,
@@ -1128,16 +804,10 @@ static const actionHandler handleAction[XkbSA_NumActions + 1] = {
[XkbSA_PtrBtn] = HandlePtrBtn,
[XkbSA_LockPtrBtn] = HandlePtrBtn,
[XkbSA_SetPtrDflt] = HandleSetPtrDflt,
- [XkbSA_ISOLock] = HandleISOLock,
[XkbSA_Terminate] = HandleNoAction,
[XkbSA_SwitchScreen] = HandleSwitchScreen,
[XkbSA_SetControls] = HandleSetLockControls,
[XkbSA_LockControls] = HandleSetLockControls,
- [XkbSA_ActionMessage] = HandleActionMessage,
- [XkbSA_RedirectKey] = HandleRedirectKey,
- [XkbSA_DeviceBtn] = HandleDeviceBtn,
- [XkbSA_LockDeviceBtn] = HandleDeviceBtn,
- [XkbSA_DeviceValuator] = HandleDeviceValuator,
[PrivateAction] = HandlePrivate,
};
diff --git a/src/xkbcomp/keymap.c b/src/xkbcomp/keymap.c
index b1cd369..5875ca7 100644
--- a/src/xkbcomp/keymap.c
+++ b/src/xkbcomp/keymap.c
@@ -57,11 +57,6 @@ UpdateActionMods(struct xkb_keymap *keymap, union xkb_action *act,
mods = &act->mods.mods;
break;
- case XkbSA_ISOLock:
- flags = act->iso.flags;
- mods = &act->iso.mods;
- break;
-
default:
return;
}