-
Notifications
You must be signed in to change notification settings - Fork 984
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'keysym' of github.com:CendioOssman/tigervnc
- Loading branch information
Showing
14 changed files
with
7,259 additions
and
2,442 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
|
||
/* | ||
Copyright 1990, 1998 The Open Group | ||
Permission to use, copy, modify, distribute, and sell this software and its | ||
documentation for any purpose is hereby granted without fee, provided that | ||
the above copyright notice appear in all copies and that both that | ||
copyright notice and this permission notice appear in supporting | ||
documentation. | ||
The above copyright notice and this permission notice 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 | ||
OPEN GROUP 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. | ||
Except as contained in this notice, the name of The Open Group shall not be | ||
used in advertising or otherwise to promote the sale, use or other dealings | ||
in this Software without prior written authorization from The Open Group. | ||
*/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include <config.h> | ||
#endif | ||
|
||
#include <stdlib.h> | ||
|
||
#include "keysymdef.h" | ||
#include "KeysymStr.h" | ||
|
||
#define NEEDKTABLE | ||
#define NEEDVTABLE | ||
#include "ks_tables.h" | ||
|
||
static const char *_XKeysymToString(unsigned ks) | ||
{ | ||
if (!ks || (ks & ((unsigned long) ~0x1fffffff)) != 0) | ||
return ((char *)NULL); | ||
if (ks == XK_VoidSymbol) | ||
ks = 0; | ||
if (ks <= 0x1fffffff) | ||
{ | ||
unsigned char val1 = ks >> 24; | ||
unsigned char val2 = (ks >> 16) & 0xff; | ||
unsigned char val3 = (ks >> 8) & 0xff; | ||
unsigned char val4 = ks & 0xff; | ||
int i = ks % VTABLESIZE; | ||
int h = i + 1; | ||
int n = VMAXHASH; | ||
int idx; | ||
while ((idx = hashKeysym[i])) | ||
{ | ||
const unsigned char *entry = &_XkeyTable[idx]; | ||
if ((entry[0] == val1) && (entry[1] == val2) && | ||
(entry[2] == val3) && (entry[3] == val4)) | ||
return ((char *)entry + 4); | ||
if (!--n) | ||
break; | ||
i += h; | ||
if (i >= VTABLESIZE) | ||
i -= VTABLESIZE; | ||
} | ||
} | ||
|
||
if (ks >= 0x01000100 && ks <= 0x0110ffff) { | ||
unsigned val = ks & 0xffffff; | ||
char *s; | ||
int i; | ||
if (val & 0xff0000) | ||
i = 10; | ||
else | ||
i = 6; | ||
s = malloc(i); | ||
if (s == NULL) | ||
return s; | ||
i--; | ||
s[i--] = '\0'; | ||
for (; i; i--){ | ||
unsigned char val1 = val & 0xf; | ||
val >>= 4; | ||
if (val1 < 10) | ||
s[i] = '0'+ val1; | ||
else | ||
s[i] = 'A'+ val1 - 10; | ||
} | ||
s[i] = 'U'; | ||
return s; | ||
} | ||
return ((char *) NULL); | ||
} | ||
|
||
const char* KeySymName(unsigned keysym) | ||
{ | ||
const char* name; | ||
|
||
name = _XKeysymToString(keysym); | ||
if (name == NULL) | ||
return "[unknown keysym]"; | ||
|
||
return name; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* Copyright 2021 Pierre Ossman for Cendio AB | ||
* | ||
* This 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 software 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 software; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | ||
* USA. | ||
*/ | ||
|
||
#ifndef __RFB_KEYSYMSTR_H__ | ||
#define __RFB_KEYSYMSTR_H__ | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
const char* KeySymName(unsigned keysym); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.