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
|
/*
* Copyright (C) 2008 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
* 2009-2010 Marty Jack <martyj19@comcast.net>
* 2012-2013 Giuseppe Penone <giuspen@gmail.com>
* 2017 Max Kirillov <max@max630.net>
* 2025 Ingo Brückl
*
* This file is a part of LXPanel project.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/* Originally derived from xfce4-xkb-plugin, Copyright 2004 Alexander Iliev,
* which credits Michael Glickman. */
/* Modified by Giuseppe Penone <giuspen@gmail.com> starting from 2012-07 and lxpanel 0.5.10 */
#include "xkb.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/XKBlib.h>
#include <X11/Xatom.h>
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <glib.h>
/* The X Keyboard Extension: Library Specification
* http://www.xfree86.org/current/XKBlib.pdf */
typedef enum
{
NEW_KBD_STATE_NOTIFY_IGNORE_NO,
NEW_KBD_STATE_NOTIFY_IGNORE_YES_SET,
NEW_KBD_STATE_NOTIFY_IGNORE_YES_ALL,
} t_new_kbd_notify_ignore;
static void xkb_enter_locale_by_process(XkbPlugin * xkb);
static void refresh_group_xkb(XkbPlugin * xkb);
static int initialize_keyboard_description(XkbPlugin * xkb);
static GdkFilterReturn xkb_event_filter(GdkXEvent * xevent, GdkEvent * event, XkbPlugin * xkb);
static t_new_kbd_notify_ignore xkb_new_kbd_notify_ignore = NEW_KBD_STATE_NOTIFY_IGNORE_NO;
static gboolean xkb_new_kbd_notify_ignore_slot(gpointer p_data)
{
xkb_new_kbd_notify_ignore = NEW_KBD_STATE_NOTIFY_IGNORE_NO;
return FALSE; // remove source
}
/* Insert a process and its layout into the hash table. */
static void xkb_enter_locale_by_process(XkbPlugin * xkb)
{
if ((xkb->p_hash_table_group != NULL) && (fb_ev_active_window(fbev) != None))
{
Window * win = fb_ev_active_window(fbev);
if (*win != None)
g_hash_table_insert(xkb->p_hash_table_group, GINT_TO_POINTER(*win), GINT_TO_POINTER(xkb->current_group_xkb_no));
}
}
/* Return the current group Xkb ID. */
int xkb_get_current_group_xkb_no(XkbPlugin * xkb)
{
return xkb->current_group_xkb_no;
}
/* Return the count of members in the current group. */
int xkb_get_group_count(XkbPlugin * xkb)
{
return xkb->group_count;
}
/* Get the model name. */
const char * xkb_get_model_name(XkbPlugin * xkb)
{
return xkb->model_name;
}
/* Get the current group name. */
const char * xkb_get_current_group_name(XkbPlugin * xkb)
{
return xkb->group_names[xkb->current_group_xkb_no];
}
/* Convert a group number to a symbol name. */
const char * xkb_get_symbol_name_by_res_no(XkbPlugin * xkb, int n)
{
return xkb->symbol_names[n];
}
const char * xkb_get_variant_name_by_res_no(XkbPlugin * xkb, int n)
{
return xkb->variant_names[n];
}
static gchar *add_variant (XkbPlugin *xkb, const char *name)
{
int i, count = 0;
for (i = 0; i < XkbNumKbdGroups; i++)
if (strcmp(xkb->symbol_names[i], xkb->symbol_names[xkb->current_group_xkb_no]) == 0)
count++;
if (count > 1 && *xkb->variant_names[xkb->current_group_xkb_no])
return g_strdup_printf("%s(%s)", name, xkb->variant_names[xkb->current_group_xkb_no]);
else
return g_strdup(name);
}
/* Get the current symbol name. */
gchar * xkb_get_current_symbol_name(XkbPlugin * xkb, gboolean layout)
{
const char *name = xkb_get_symbol_name_by_res_no(xkb, xkb->current_group_xkb_no);
if (layout)
return g_strdup(name);
else
return add_variant(xkb, name);
}
/* Get the current symbol name converted to lowercase. */
gchar * xkb_get_current_symbol_name_lowercase(XkbPlugin * xkb, gboolean layout)
{
gchar *curr, *name;
curr = xkb_get_current_symbol_name(xkb, TRUE);
name = g_utf8_strdown(curr, -1);
g_free(curr);
if (layout)
return name;
else
{
gchar *name_v = add_variant(xkb, name);
g_free(name);
return name_v;
}
}
/* Get the current variant name. */
const char * xkb_get_current_variant_name(XkbPlugin * xkb)
{
return xkb->variant_names[xkb->current_group_xkb_no];
}
/* Get the option names. */
const char * xkb_get_option_names(XkbPlugin * xkb)
{
return xkb->option_names;
}
/* Refresh current group number from Xkb state. */
static void refresh_group_xkb(XkbPlugin * xkb)
{
/* Get the current group number.
* This shouldn't be necessary, but mask the group number down for safety. */
XkbStateRec xkb_state;
XkbGetState(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), XkbUseCoreKbd, &xkb_state);
xkb->current_group_xkb_no = xkb_state.group & (XkbNumKbdGroups - 1);
}
/* Initialize the keyboard description initially or after a NewKeyboard event. */
static int initialize_keyboard_description(XkbPlugin * xkb)
{
/* Allocate a keyboard description. */
XkbDescRec * xkb_desc = XkbAllocKeyboard();
if (xkb_desc == NULL)
g_warning("XkbAllocKeyboard failed\n");
else
{
/* Read necessary values into the keyboard description. */
Display *xdisplay = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
XkbGetControls(xdisplay, XkbAllControlsMask, xkb_desc);
XkbGetNames(xdisplay, XkbSymbolsNameMask | XkbGroupNamesMask, xkb_desc);
if ((xkb_desc->names == NULL) || (xkb_desc->ctrls == NULL) || (xkb_desc->names->groups == NULL))
g_warning("XkbGetControls/XkbGetNames failed\n");
else
{
/* Get the group name of each keyboard layout. Infer the group count from the highest available. */
Atom atom, *group_source = xkb_desc->names->groups;
int i;
for (i = 0; i < XkbNumKbdGroups; i += 1)
{
g_free(xkb->group_names[i]);
xkb->group_names[i] = NULL;
if (group_source[i] != None)
{
xkb->group_count = i + 1;
char * p = XGetAtomName(xdisplay, group_source[i]);
xkb->group_names[i] = g_strdup(p);
XFree(p);
}
}
/* Reinitialize the symbol and variant name storages. */
for (i = 0; i < XkbNumKbdGroups; i += 1)
{
g_free(xkb->symbol_names[i]);
xkb->symbol_names[i] = NULL;
g_free(xkb->variant_names[i]);
xkb->variant_names[i] = NULL;
}
/* Get the symbol names of all keyboard layouts. */
atom = XInternAtom(xdisplay, "_XKB_RULES_NAMES", True);
if (atom != None)
{
Atom actual_type;
int actual_format, substr = 1;
unsigned long nitems, bytes_after, pos = 0;
unsigned char *prop;
if (XGetWindowProperty(xdisplay, DefaultRootWindow(xdisplay),
atom, 0, (~0L), False, XA_STRING,
&actual_type, &actual_format, &nitems, &bytes_after,
&prop) == Success)
{
if (prop)
{
gboolean n_symbols, n_variants;
while (pos < nitems)
{
/* model name */
if (substr == 2)
{
g_free(xkb->model_name);
xkb->model_name = g_strdup(prop + pos);
}
/* symbol names aka layouts */
if (substr == 3)
{
gchar **symbols;
n_symbols = (strchr(prop + pos, ',') != NULL);
symbols = g_strsplit(prop + pos, ",", XkbNumKbdGroups + 1);
for (i = 0; i < XkbNumKbdGroups; i++)
{
if (symbols[i])
xkb->symbol_names[i] = g_ascii_strup(symbols[i], -1);
else
break;
}
g_strfreev(symbols);
}
/* variant names */
if (substr == 4)
{
gchar **variants;
n_variants = (strchr(prop + pos, ',') != NULL);
variants = g_strsplit(prop + pos, ",", XkbNumKbdGroups + 1);
for (i = 0; i < XkbNumKbdGroups; i++)
{
if (variants[i])
xkb->variant_names[i] = g_strdup(variants[i]);
else
break;
}
g_strfreev(variants);
}
/* option names */
if (substr == 5)
{
g_free(xkb->option_names);
xkb->option_names = g_strdup(prop + pos);
}
pos += strlen(prop + pos) + 1;
substr++;
}
/* check for a valid variant list */
if (n_symbols && !n_variants || !n_symbols && n_variants)
{
for (i = 0; i < XkbNumKbdGroups; i++)
{
g_free(xkb->variant_names[i]);
xkb->variant_names[i] = NULL;
}
}
XFree(prop);
}
}
}
}
XkbFreeKeyboard(xkb_desc, 0, True);
}
/* Ensure that all elements within the name vectors are initialized. */
int i;
for (i = 0; i < XkbNumKbdGroups; i += 1)
{
if (xkb->group_names[i] == NULL)
xkb->group_names[i] = g_strdup("Unknown");
if (xkb->symbol_names[i] == NULL)
xkb->symbol_names[i] = g_strdup("None");
if (xkb->variant_names[i] == NULL)
xkb->variant_names[i] = g_strdup("");
}
if (!xkb->model_name)
xkb->model_name = g_strdup("pc105");
if (!xkb->option_names)
xkb->option_names = g_strdup("grp:shift_caps_toggle");
/* Create or recreate hash table */
if (xkb->p_hash_table_group != NULL)
g_hash_table_destroy(xkb->p_hash_table_group);
xkb->p_hash_table_group = g_hash_table_new(g_direct_hash, NULL);
return TRUE;
}
/* GDK event filter that receives events from all windows and the Xkb extension. */
static GdkFilterReturn xkb_event_filter(GdkXEvent * xevent, GdkEvent * event, XkbPlugin * xkb)
{
XEvent * ev = (XEvent *) xevent;
if (ev->xany.type == xkb->base_event_code + XkbEventCode)
{
/* Xkb event. */
XkbEvent * xkbev = (XkbEvent *) ev;
if (xkbev->any.xkb_type == XkbNewKeyboardNotify)
{
if(xkb_new_kbd_notify_ignore == NEW_KBD_STATE_NOTIFY_IGNORE_NO)
{
//g_print("xkb_new_kbd_notify_ignore == NEW_KBD_STATE_NOTIFY_IGNORE_NO\n");
xkb_new_kbd_notify_ignore = NEW_KBD_STATE_NOTIFY_IGNORE_YES_SET;
(void)g_timeout_add(1000/*msec*/, xkb_new_kbd_notify_ignore_slot, NULL);
xkb_setxkbmap(xkb);
}
else if(xkb_new_kbd_notify_ignore == NEW_KBD_STATE_NOTIFY_IGNORE_YES_SET)
{
//g_print("xkb_new_kbd_notify_ignore == NEW_KBD_STATE_NOTIFY_IGNORE_YES_SET\n");
xkb_new_kbd_notify_ignore = NEW_KBD_STATE_NOTIFY_IGNORE_YES_ALL;
initialize_keyboard_description(xkb);
refresh_group_xkb(xkb);
xkb_redraw(xkb);
xkb_enter_locale_by_process(xkb);
}
}
else if (xkbev->any.xkb_type == XkbStateNotify)
{
if (xkbev->state.group != xkb->current_group_xkb_no)
{
/* Switch to the new group and redraw the display.
* This shouldn't be necessary, but mask the group number down for safety. */
xkb->current_group_xkb_no = xkbev->state.group & (XkbNumKbdGroups - 1);
refresh_group_xkb(xkb);
xkb_redraw(xkb);
xkb_enter_locale_by_process(xkb);
}
}
}
return GDK_FILTER_CONTINUE;
}
/* Initialize the Xkb interface. */
void xkb_mechanism_constructor(XkbPlugin * xkb)
{
/* Initialize Xkb extension. */
int opcode;
int maj = XkbMajorVersion;
int min = XkbMinorVersion;
if ((XkbLibraryVersion(&maj, &min))
&& (XkbQueryExtension(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()),
&opcode, &xkb->base_event_code, &xkb->base_error_code, &maj, &min)))
{
Display *xdisplay = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
/* Read the keyboard description. */
initialize_keyboard_description(xkb);
/* Establish GDK event filter. */
gdk_window_add_filter(NULL, (GdkFilterFunc) xkb_event_filter, (gpointer) xkb);
/* Specify events we will receive. */
XkbSelectEvents(xdisplay, XkbUseCoreKbd, XkbNewKeyboardNotifyMask, XkbNewKeyboardNotifyMask);
XkbSelectEventDetails(xdisplay, XkbUseCoreKbd, XkbStateNotify, XkbAllStateComponentsMask, XkbGroupStateMask);
/* Get current state. */
refresh_group_xkb(xkb);
}
}
/* Deallocate resources associated with Xkb interface. */
void xkb_mechanism_destructor(XkbPlugin * xkb)
{
/* Remove event filter. */
gdk_window_remove_filter(NULL, (GdkFilterFunc) xkb_event_filter, xkb);
/* Free group and symbol name memory. */
int i;
for (i = 0; i < XkbNumKbdGroups; i++)
{
g_free(xkb->group_names[i]);
xkb->group_names[i] = NULL;
g_free(xkb->symbol_names[i]);
xkb->symbol_names[i] = NULL;
g_free(xkb->variant_names[i]);
xkb->variant_names[i] = NULL;
}
g_free(xkb->model_name);
xkb->model_name = NULL;
g_free(xkb->option_names);
xkb->option_names = NULL;
/* Destroy the hash table. */
g_hash_table_destroy(xkb->p_hash_table_group);
xkb->p_hash_table_group = NULL;
}
/* Set the layout to the next layout. */
int xkb_change_group(XkbPlugin * xkb, int increment)
{
/* Apply the increment and wrap the result. */
int next_group = xkb->current_group_xkb_no + increment;
if (next_group < 0) next_group = xkb->group_count - 1;
if (next_group >= xkb->group_count) next_group = 0;
/* Execute the change. */
XkbLockGroup(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), XkbUseCoreKbd, next_group);
refresh_group_xkb(xkb);
xkb_redraw(xkb);
xkb_enter_locale_by_process(xkb);
return 1;
}
/* React to change of focus by switching to the application's layout or the default layout. */
void xkb_active_window_changed(XkbPlugin * xkb, Window window)
{
gint new_group_xkb_no = 0;
gpointer pKey = 0, pVal = 0;
if ((xkb->p_hash_table_group != NULL) && (g_hash_table_lookup_extended(xkb->p_hash_table_group, GINT_TO_POINTER(window), &pKey, &pVal)))
new_group_xkb_no = GPOINTER_TO_INT(pVal);
if (new_group_xkb_no < xkb->group_count)
{
XkbLockGroup(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()),
XkbUseCoreKbd, new_group_xkb_no);
refresh_group_xkb(xkb);
}
}
|