Compare commits
4 Commits
layouts
...
eekboard-0
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a0540627 | |||
| 878a1c73fd | |||
| b465cbc5de | |||
| 2622e4eb59 |
83
.gitignore
vendored
@ -1,9 +1,76 @@
|
||||
.zanata-cache/
|
||||
_build
|
||||
TAGS
|
||||
tags
|
||||
vgdump
|
||||
*.swp
|
||||
*.la
|
||||
*.lo
|
||||
*.loT
|
||||
*.o
|
||||
*.so
|
||||
*~
|
||||
\#*#
|
||||
.\#*
|
||||
Makefile
|
||||
Makefile.in
|
||||
.deps
|
||||
.libs
|
||||
INSTALL
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
compile
|
||||
config.guess
|
||||
config.h
|
||||
config.h.in
|
||||
config.log
|
||||
config.rpath
|
||||
config.status
|
||||
config.sub
|
||||
configure
|
||||
depcomp
|
||||
install-sh
|
||||
libtool
|
||||
ltmain.sh
|
||||
missing
|
||||
stamp-h1
|
||||
libkeyactor*.tar.*
|
||||
mkinstalldirs
|
||||
m4/*.m4
|
||||
gtk-doc.make
|
||||
eek/eek-special-keysym-entries.h
|
||||
eek/eek-unicode-keysym-entries.h
|
||||
eek/eek-xkeysym-keysym-entries.h
|
||||
eek/eek-marshalers.[ch]
|
||||
eek/*.pc
|
||||
eek/*.gir
|
||||
eek/*.typelib
|
||||
eekboard/*.pc
|
||||
eekboard/*.gir
|
||||
eekboard/*.typelib
|
||||
tests/eek-simple-test
|
||||
tests/eek-xkb-test
|
||||
tests/eek-xml-test
|
||||
src/eekboard-server
|
||||
src/eekboard-client
|
||||
src/eekboard-system-client
|
||||
src/eekboard-xml
|
||||
docs/reference/eek/*.stamp
|
||||
docs/reference/eek/*.txt
|
||||
!/docs/reference/eek/eek-sections.txt
|
||||
docs/reference/eek/xml
|
||||
docs/reference/eek/html
|
||||
docs/reference/eek/eek.signals
|
||||
docs/reference/eek/eek.args
|
||||
docs/reference/eek/eek.hierarchy
|
||||
docs/reference/eek/eek.interfaces
|
||||
docs/reference/eek/eek.prerequisites
|
||||
docs/reference/eekboard/*.stamp
|
||||
docs/reference/eekboard/*.txt
|
||||
!/docs/reference/eekboard/eekboard-sections.txt
|
||||
docs/reference/eekboard/xml
|
||||
docs/reference/eekboard/html
|
||||
docs/reference/eekboard/eekboard.signals
|
||||
docs/reference/eekboard/eekboard.args
|
||||
docs/reference/eekboard/eekboard.hierarchy
|
||||
docs/reference/eekboard/eekboard.interfaces
|
||||
docs/reference/eekboard/eekboard.prerequisites
|
||||
po/*.gmo
|
||||
po/Makefile.in.in
|
||||
po/POTFILES
|
||||
po/stamp-it
|
||||
bindings/vala/*.vapi
|
||||
py-compile
|
||||
|
||||
|
||||
@ -1,31 +0,0 @@
|
||||
image: debian:buster
|
||||
|
||||
stages:
|
||||
- build
|
||||
- test
|
||||
|
||||
.tags: &tags
|
||||
tags:
|
||||
- librem5
|
||||
|
||||
before_script:
|
||||
- apt-get -y update
|
||||
- apt-get -y build-dep .
|
||||
|
||||
build_meson:
|
||||
<<: *tags
|
||||
stage: build
|
||||
artifacts:
|
||||
paths:
|
||||
- _build
|
||||
script:
|
||||
- meson . _build/ -Ddepdatadir=/usr/share
|
||||
- ninja -C _build install
|
||||
|
||||
test:
|
||||
<<: *tags
|
||||
stage: test
|
||||
dependencies:
|
||||
- build_meson
|
||||
script:
|
||||
- ninja -C _build test
|
||||
21
Makefile.am
Normal file
@ -0,0 +1,21 @@
|
||||
# Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2010-2011 Red Hat, Inc.
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public License
|
||||
# as published by the Free Software Foundation; either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
# 02110-1301 USA
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
SUBDIRS = eek eekboard src tests bindings docs po data examples
|
||||
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
|
||||
65
README
Normal file
@ -0,0 +1,65 @@
|
||||
eekboard - an easy to use virtual keyboard toolkit -*- outline -*-
|
||||
|
||||
eekboard is a virtual keyboard software package, including a set of
|
||||
tools to implement desktop virtual keyboards.
|
||||
|
||||
* How to build
|
||||
|
||||
** Dependencies
|
||||
|
||||
REQUIRED: GLib2, GTK, GConf2, PangoCairo, libxklavier, libcroco
|
||||
OPTIONAL: fakekey, CSPI, Clutter, Clutter-Gtk, Vala, gobject-introspection
|
||||
|
||||
** Build from git repo
|
||||
|
||||
$ git clone git://github.com/ueno/eekboard.git
|
||||
$ cd eekboard
|
||||
$ ./autogen.sh --prefix=/usr --enable-gtk-doc
|
||||
$ make
|
||||
$ sudo make install
|
||||
|
||||
** Build from tarball
|
||||
|
||||
$ ./configure --prefix=/usr
|
||||
$ make
|
||||
$ sudo make install
|
||||
|
||||
* How to test
|
||||
|
||||
eekboard currently includes 3 tools to implement your own virtual
|
||||
keyboard.
|
||||
|
||||
** eekboard-server
|
||||
|
||||
eekboard-server is a D-Bus server which is responsible for drawing
|
||||
interactive on-screen keyboards. Since it has a D-Bus service
|
||||
activation entry, you will not need to start it manually, but you can
|
||||
do that with:
|
||||
|
||||
$ eekboard-server &
|
||||
|
||||
** eekboard
|
||||
|
||||
eekboard is a client of eekboard-server. It listens desktop events
|
||||
(keyboard change, focus in/out, and keystroke) and generates key
|
||||
events when some keys are pressed on the on-screen keyboard. It can
|
||||
be started with:
|
||||
|
||||
$ eekboard
|
||||
|
||||
** eekboard-xml
|
||||
|
||||
eekboard-xml is a tool to manipulate XML keyboard description used by
|
||||
eekboard-client tool and in the eekboard library.
|
||||
|
||||
To dump the current system keyboard layout into an XML file:
|
||||
|
||||
$ eekboard-xml --dump > keyboard.xml
|
||||
|
||||
You can display the dumped layout with:
|
||||
|
||||
$ eekboard-xml --load keyboard.xml
|
||||
|
||||
* Documentation
|
||||
|
||||
See file:docs/reference/eek/html/index.html
|
||||
68
README.md
@ -1,68 +0,0 @@
|
||||
*squeekboard* - a Wayland virtual keyboard
|
||||
========================================
|
||||
|
||||
*Squeekboard* is a virtual keyboard supporting Wayland, built primarily for the *Librem 5* phone.
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
### Present
|
||||
|
||||
- GTK3
|
||||
- Custom xml-defined keyboards
|
||||
- DBus interface to show and hide
|
||||
|
||||
### Temporarily dropped
|
||||
|
||||
- A settings interface
|
||||
|
||||
### TODO
|
||||
|
||||
- Use Wayland virtual keyboard protocol
|
||||
- Use Wayland text input protocol
|
||||
- Use Wayland input method protocol
|
||||
- Pick up DBus interface files from /usr/share
|
||||
|
||||
Building
|
||||
--------
|
||||
|
||||
### Dependencies
|
||||
|
||||
See `.gitlab-ci.yml`.
|
||||
|
||||
### Build from git repo
|
||||
|
||||
```
|
||||
$ git clone https://source.puri.sm/Librem5/squeekboard.git
|
||||
$ cd squeekboard
|
||||
$ mkdir ../build
|
||||
$ meson ../build/
|
||||
$ cd ../build
|
||||
$ ninja install
|
||||
```
|
||||
|
||||
For development, alter the `meson` call:
|
||||
|
||||
```
|
||||
$ meson ../build/ --prefix=../install
|
||||
```
|
||||
|
||||
and don't skip `ninja install` before running. The last step is necessary in order to find the keyboard definition files.
|
||||
|
||||
Running
|
||||
-------
|
||||
|
||||
```
|
||||
$ rootston
|
||||
$ cd ../build/
|
||||
$ src/squeekboard
|
||||
```
|
||||
|
||||
### Testing
|
||||
|
||||
```
|
||||
$ busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
|
||||
$ busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b false
|
||||
$ gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'us'), ('xkb', 'ua')]"
|
||||
$ gsettings set org.gnome.desktop.input-sources current 1
|
||||
```
|
||||
25
autogen.sh
Executable file
@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
# Run this to generate all the initial makefiles, etc.
|
||||
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
PKG_NAME="eekboard"
|
||||
|
||||
(test -f $srcdir/configure.ac \
|
||||
&& test -f $srcdir/README ) || {
|
||||
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
||||
echo " top-level $PKG_NAME directory"
|
||||
exit 1
|
||||
}
|
||||
|
||||
which gnome-autogen.sh || {
|
||||
echo "You need to install gnome-common from the GNOME CVS"
|
||||
exit 1
|
||||
}
|
||||
|
||||
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4"
|
||||
REQUIRED_AUTOMAKE_VERSION=1.10
|
||||
REQUIRED_AUTOCONF_VERSION=2.60
|
||||
|
||||
. gnome-autogen.sh
|
||||
27
bindings/Makefile.am
Normal file
@ -0,0 +1,27 @@
|
||||
# Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2010-2011 Red Hat, Inc.
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public License
|
||||
# as published by the Free Software Foundation; either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
# 02110-1301 USA
|
||||
|
||||
SUBDIRS =
|
||||
|
||||
if ENABLE_PYTHON
|
||||
SUBDIRS += python
|
||||
endif
|
||||
|
||||
if ENABLE_VALA
|
||||
SUBDIRS += vala
|
||||
endif
|
||||
18
bindings/python/Makefile.am
Normal file
@ -0,0 +1,18 @@
|
||||
# Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2011 Red Hat, Inc.
|
||||
|
||||
# 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 3 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, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
SUBDIRS = eekboard
|
||||
21
bindings/python/eekboard/Makefile.am
Normal file
@ -0,0 +1,21 @@
|
||||
# Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2011 Red Hat, Inc.
|
||||
|
||||
# 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 3 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, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
__init__.py \
|
||||
eekboard.py \
|
||||
context.py
|
||||
67
bindings/python/eekboard/__init__.py
Normal file
@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2011 Red Hat, Inc.
|
||||
|
||||
# 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 3 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, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
from gi.repository import Eek, EekXkl, Gio
|
||||
|
||||
from eekboard import Eekboard
|
||||
from context import Context
|
||||
|
||||
Keyboard = Eek.Keyboard
|
||||
Section = Eek.Section
|
||||
Key = Eek.Key
|
||||
Symbol = Eek.Symbol
|
||||
Keysym = Eek.Keysym
|
||||
SymbolMatrix = Eek.SymbolMatrix
|
||||
|
||||
MODIFIER_BEHAVIOR_NONE, \
|
||||
MODIFIER_BEHAVIOR_LOCK, \
|
||||
MODIFIER_BEHAVIOR_LATCH = \
|
||||
(Eek.ModifierBehavior.NONE,
|
||||
Eek.ModifierBehavior.LOCK,
|
||||
Eek.ModifierBehavior.LATCH)
|
||||
|
||||
SymbolCategory = Eek.SymbolCategory
|
||||
|
||||
CSW = 640
|
||||
CSH = 480
|
||||
|
||||
def XmlKeyboard(path, modifier_behavior=MODIFIER_BEHAVIOR_NONE):
|
||||
_file = Gio.file_new_for_path(path)
|
||||
layout = Eek.XmlLayout.new(_file.read())
|
||||
keyboard = Eek.Keyboard.new(layout, CSW, CSH)
|
||||
keyboard.set_modifier_behavior(modifier_behavior)
|
||||
keyboard.set_alt_gr_mask(Eek.ModifierType.MOD5_MASK)
|
||||
return keyboard
|
||||
|
||||
def XklKeyboard(modifier_behavior=MODIFIER_BEHAVIOR_NONE):
|
||||
layout = EekXkl.Layout.new()
|
||||
keyboard = Eek.Keyboard.new(layout, CSW, CSH)
|
||||
keyboard.set_modifier_behavior(modifier_behavior)
|
||||
return keyboard
|
||||
|
||||
__all__ = ['Eekboard',
|
||||
'Context',
|
||||
'Keyboard',
|
||||
'Section',
|
||||
'Key',
|
||||
'Symbol',
|
||||
'Keysym',
|
||||
'MODIFIER_BEHAVIOR_NONE',
|
||||
'MODIFIER_BEHAVIOR_LOCK',
|
||||
'MODIFIER_BEHAVIOR_LATCH',
|
||||
'XmlKeyboard',
|
||||
'XklKeyboard']
|
||||
100
bindings/python/eekboard/context.py
Normal file
@ -0,0 +1,100 @@
|
||||
# Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2011 Red Hat, Inc.
|
||||
|
||||
# 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 3 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, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
from gi.repository import Eekboard
|
||||
import gobject
|
||||
|
||||
class Context(gobject.GObject):
|
||||
__gtype_name__ = "PYEekboardContext"
|
||||
__gsignals__ = {
|
||||
'enabled': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
()),
|
||||
'disabled': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
()),
|
||||
'key-pressed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
(gobject.TYPE_UINT,)),
|
||||
'key-released': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
(gobject.TYPE_UINT,)),
|
||||
'destroyed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
()),
|
||||
}
|
||||
|
||||
__gproperties__ = {
|
||||
'keyboard-visible': (bool, None, None, False, gobject.PARAM_READWRITE),
|
||||
}
|
||||
|
||||
def __init__(self, giobject):
|
||||
super(Context, self).__init__()
|
||||
self.__properties = dict()
|
||||
self.__giobject = giobject
|
||||
self.__giobject.connect('enabled', lambda *args: self.emit('enabled'))
|
||||
self.__giobject.connect('disabled', lambda *args: self.emit('disabled'))
|
||||
self.__giobject.connect('key-pressed', lambda *args: self.emit('key-pressed', args[1]))
|
||||
self.__giobject.connect('key-released', lambda *args: self.emit('key-released', args[1]))
|
||||
self.__giobject.connect('destroyed', lambda *args: self.emit('destroyed'))
|
||||
self.__giobject.connect('notify::keyboard-visible', self.__notify_keyboard_visible_cb)
|
||||
|
||||
def do_set_property(self, pspec, value):
|
||||
self.__properties[pspec.name] = value
|
||||
|
||||
def do_get_property(self, pspec):
|
||||
return self.__properties[pspec.name]
|
||||
|
||||
def __notify_keyboard_visible_cb(self, *args):
|
||||
self.set_property('keyboard-visible',
|
||||
self.__giobject.get_property(args[1].name))
|
||||
self.notify('keyboard-visible')
|
||||
|
||||
def get_giobject(self):
|
||||
return self.__giobject
|
||||
|
||||
def add_keyboard(self, keyboard):
|
||||
return self.__giobject.add_keyboard(keyboard, None)
|
||||
|
||||
def remove_keyboard(self, keyboard_id):
|
||||
return self.__giobject.remove_keyboard(keyboard_id, None)
|
||||
|
||||
def set_keyboard(self, keyboard_id):
|
||||
self.__giobject.set_keyboard(keyboard_id, None)
|
||||
|
||||
def show_keyboard(self):
|
||||
self.__giobject.show_keyboard(None)
|
||||
|
||||
def hide_keyboard(self):
|
||||
self.__giobject.hide_keyboard(None)
|
||||
|
||||
def set_group(self, group):
|
||||
self.__giobject.set_group(group, None)
|
||||
|
||||
def press_key(self, keycode):
|
||||
self.__giobject.press_key(keycode, None)
|
||||
|
||||
def release_key(self, keycode):
|
||||
self.__giobject.release_key(keycode, None)
|
||||
|
||||
def is_enabled(self):
|
||||
return self.__giobject.is_enabled()
|
||||
49
bindings/python/eekboard/eekboard.py
Normal file
@ -0,0 +1,49 @@
|
||||
# Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2011 Red Hat, Inc.
|
||||
|
||||
# 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 3 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, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
from gi.repository import Gio
|
||||
import gi.repository
|
||||
import gobject
|
||||
from context import Context
|
||||
|
||||
class Eekboard(gobject.GObject):
|
||||
__gtype_name__ = "PYEekboardEekboard"
|
||||
__gsignals__ = {
|
||||
'destroyed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
())
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(Eekboard, self).__init__()
|
||||
self.__connection = Gio.bus_get_sync(Gio.BusType.SESSION, None)
|
||||
self.__eekboard = gi.repository.Eekboard.Eekboard.new(self.__connection, None);
|
||||
self.__eekboard.connect('destroyed', lambda *args: self.emit('destroyed'))
|
||||
|
||||
def create_context(self, client_name):
|
||||
context = self.__eekboard.create_context(client_name, None)
|
||||
return Context(context)
|
||||
|
||||
def push_context(self, context):
|
||||
self.__eekboard.push_context(context.get_giobject(), None)
|
||||
|
||||
def pop_context(self):
|
||||
self.__eekboard.pop_context(None)
|
||||
|
||||
def destroy_context(self, context):
|
||||
self.__eekboard.destroy_context(context.get_giobject(), None)
|
||||
50
bindings/vala/Makefile.am
Normal file
@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2010-2011 Red Hat, Inc.
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public License
|
||||
# as published by the Free Software Foundation; either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
# 02110-1301 USA
|
||||
|
||||
vapidir = $(datadir)/vala/vapi
|
||||
dist_vapi_DATA = \
|
||||
eek-$(EEK_API_VERSION).vapi \
|
||||
eek-clutter-$(EEK_API_VERSION).vapi \
|
||||
eek-gtk-$(EEK_API_VERSION).vapi \
|
||||
eek-xkb-$(EEK_API_VERSION).vapi \
|
||||
eek-xkl-$(EEK_API_VERSION).vapi
|
||||
MAINTAINERCLEANFILES = $(dist_vapi_DATA)
|
||||
|
||||
eek-$(EEK_API_VERSION).vapi:
|
||||
vapigen --library eek-$(EEK_API_VERSION) \
|
||||
eek-$(EEK_API_VERSION)/eek-$(EEK_API_VERSION).gi
|
||||
|
||||
eek-clutter-$(EEK_API_VERSION).vapi: eek-$(EEK_API_VERSION).vapi
|
||||
vapigen --vapidir=$(builddir) --library eek-clutter-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) --pkg clutter-1.0 \
|
||||
eek-clutter-$(EEK_API_VERSION)/eek-clutter-$(EEK_API_VERSION).gi
|
||||
|
||||
eek-gtk-$(EEK_API_VERSION).vapi: eek-$(EEK_API_VERSION).vapi
|
||||
vapigen --vapidir=$(builddir) --library eek-gtk-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) --pkg gtk+-2.0 \
|
||||
eek-gtk-$(EEK_API_VERSION)/eek-gtk-$(EEK_API_VERSION).gi
|
||||
|
||||
eek-xkb-$(EEK_API_VERSION).vapi: eek-$(EEK_API_VERSION).vapi
|
||||
vapigen --vapidir=$(builddir) --library eek-xkb-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
eek-xkb-$(EEK_API_VERSION)/eek-xkb-$(EEK_API_VERSION).gi
|
||||
|
||||
eek-xkl-$(EEK_API_VERSION).vapi: eek-xkb-$(EEK_API_VERSION).vapi
|
||||
vapigen --vapidir=$(builddir) --library eek-xkl-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) --pkg eek-xkb-$(EEK_API_VERSION) \
|
||||
eek-xkl-$(EEK_API_VERSION)/eek-xkl-$(EEK_API_VERSION).gi
|
||||
@ -1 +0,0 @@
|
||||
gio-2.0
|
||||
9
bindings/vala/eek-0.90/eek-0.90.files
Normal file
@ -0,0 +1,9 @@
|
||||
include/eek-0.1/eek/eek-layout.h
|
||||
include/eek-0.1/eek/eek-element.h
|
||||
include/eek-0.1/eek/eek-container.h
|
||||
include/eek-0.1/eek/eek-keyboard.h
|
||||
include/eek-0.1/eek/eek-section.h
|
||||
include/eek-0.1/eek/eek-key.h
|
||||
include/eek-0.1/eek/eek-types.h
|
||||
include/eek-0.1/eek/eek-keysym.h
|
||||
lib/libeek.so
|
||||
680
bindings/vala/eek-0.90/eek-0.90.gi
Normal file
@ -0,0 +1,680 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="Eek">
|
||||
<function name="keysym_get_category" symbol="eek_keysym_get_category">
|
||||
<return-type type="EekKeysymCategory"/>
|
||||
<parameters>
|
||||
<parameter name="keysym" type="guint"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="keysym_to_string" symbol="eek_keysym_to_string">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="keysym" type="guint"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<callback name="EekCallback">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</callback>
|
||||
<callback name="EekCompareFunc">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</callback>
|
||||
<boxed name="EekBounds" type-name="EekBounds" get-type="eek_bounds_get_type">
|
||||
<field name="x" type="gdouble"/>
|
||||
<field name="y" type="gdouble"/>
|
||||
<field name="width" type="gdouble"/>
|
||||
<field name="height" type="gdouble"/>
|
||||
</boxed>
|
||||
<boxed name="EekKeysymMatrix" type-name="EekKeysymMatrix" get-type="eek_keysym_matrix_get_type">
|
||||
<field name="data" type="guint*"/>
|
||||
<field name="num_groups" type="gint"/>
|
||||
<field name="num_levels" type="gint"/>
|
||||
</boxed>
|
||||
<boxed name="EekOutline" type-name="EekOutline" get-type="eek_outline_get_type">
|
||||
<field name="corner_radius" type="gdouble"/>
|
||||
<field name="points" type="EekPoint*"/>
|
||||
<field name="num_points" type="gint"/>
|
||||
</boxed>
|
||||
<boxed name="EekPoint" type-name="EekPoint" get-type="eek_point_get_type">
|
||||
<field name="x" type="gdouble"/>
|
||||
<field name="y" type="gdouble"/>
|
||||
</boxed>
|
||||
<enum name="EekKeysymCategory">
|
||||
<member name="EEK_KEYSYM_CATEGORY_LETTER" value="0"/>
|
||||
<member name="EEK_KEYSYM_CATEGORY_FUNCTION" value="1"/>
|
||||
<member name="EEK_KEYSYM_CATEGORY_KEYNAME" value="2"/>
|
||||
<member name="EEK_KEYSYM_CATEGORY_UNKNOWN" value="3"/>
|
||||
<member name="EEK_KEYSYM_CATEGORY_LAST" value="3"/>
|
||||
</enum>
|
||||
<enum name="EekOrientation">
|
||||
<member name="EEK_ORIENTATION_VERTICAL" value="0"/>
|
||||
<member name="EEK_ORIENTATION_HORIZONTAL" value="1"/>
|
||||
<member name="EEK_ORIENTATION_INVALID" value="-1"/>
|
||||
</enum>
|
||||
<object name="EekContainer" parent="EekElement" type-name="EekContainer" get-type="eek_container_get_type">
|
||||
<method name="find" symbol="eek_container_find">
|
||||
<return-type type="EekElement*"/>
|
||||
<parameters>
|
||||
<parameter name="container" type="EekContainer*"/>
|
||||
<parameter name="func" type="EekCompareFunc"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="find_by_position" symbol="eek_container_find_by_position">
|
||||
<return-type type="EekElement*"/>
|
||||
<parameters>
|
||||
<parameter name="container" type="EekContainer*"/>
|
||||
<parameter name="x" type="gdouble"/>
|
||||
<parameter name="y" type="gdouble"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="foreach_child" symbol="eek_container_foreach_child">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="container" type="EekContainer*"/>
|
||||
<parameter name="callback" type="EekCallback"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<signal name="child-added" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="child-removed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="add_child">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="find">
|
||||
<return-type type="EekElement*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="func" type="EekCompareFunc"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="foreach_child">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="callback" type="EekCallback"/>
|
||||
<parameter name="user_data" type="gpointer"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="remove_child">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekContainer*"/>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<object name="EekElement" parent="GInitiallyUnowned" type-name="EekElement" get-type="eek_element_get_type">
|
||||
<method name="get_absolute_position" symbol="eek_element_get_absolute_position">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="x" type="gdouble*"/>
|
||||
<parameter name="y" type="gdouble*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_bounds" symbol="eek_element_get_bounds">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="bounds" type="EekBounds*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_name" symbol="eek_element_get_name">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_parent" symbol="eek_element_get_parent">
|
||||
<return-type type="EekElement*"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_bounds" symbol="eek_element_set_bounds">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="bounds" type="EekBounds*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_name" symbol="eek_element_set_name">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="name" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_parent" symbol="eek_element_set_parent">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="element" type="EekElement*"/>
|
||||
<parameter name="parent" type="EekElement*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="bounds" type="EekBounds*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="name" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<vfunc name="get_bounds">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
<parameter name="bounds" type="EekBounds*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_name">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_parent">
|
||||
<return-type type="EekElement*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_bounds">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
<parameter name="bounds" type="EekBounds*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_name">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
<parameter name="name" type="gchar*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_parent">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekElement*"/>
|
||||
<parameter name="parent" type="EekElement*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<object name="EekKey" parent="EekElement" type-name="EekKey" get-type="eek_key_get_type">
|
||||
<method name="get_index" symbol="eek_key_get_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="column" type="gint*"/>
|
||||
<parameter name="row" type="gint*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keycode" symbol="eek_key_get_keycode">
|
||||
<return-type type="guint"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keysym" symbol="eek_key_get_keysym">
|
||||
<return-type type="guint"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keysym_index" symbol="eek_key_get_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="group" type="gint*"/>
|
||||
<parameter name="level" type="gint*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keysyms" symbol="eek_key_get_keysyms">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="keysyms" type="guint**"/>
|
||||
<parameter name="num_groups" type="gint*"/>
|
||||
<parameter name="num_levels" type="gint*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_outline" symbol="eek_key_get_outline">
|
||||
<return-type type="EekOutline*"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_index" symbol="eek_key_set_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="column" type="gint"/>
|
||||
<parameter name="row" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keycode" symbol="eek_key_set_keycode">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keysym_index" symbol="eek_key_set_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
<parameter name="level" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keysyms" symbol="eek_key_set_keysyms">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="keysyms" type="guint*"/>
|
||||
<parameter name="num_groups" type="gint"/>
|
||||
<parameter name="num_levels" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_outline" symbol="eek_key_set_outline">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
<parameter name="outline" type="EekOutline*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="column" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="group" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="keycode" type="guint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="keysyms" type="EekKeysymMatrix*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="level" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="outline" type="gpointer" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="row" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<signal name="pressed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="released" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="get_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="column" type="gint*"/>
|
||||
<parameter name="row" type="gint*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_keycode">
|
||||
<return-type type="guint"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_keysym">
|
||||
<return-type type="guint"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="group" type="gint*"/>
|
||||
<parameter name="level" type="gint*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_keysyms">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="keysyms" type="guint**"/>
|
||||
<parameter name="num_groups" type="gint*"/>
|
||||
<parameter name="num_levels" type="gint*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_outline">
|
||||
<return-type type="EekOutline*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="column" type="gint"/>
|
||||
<parameter name="row" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_keycode">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
<parameter name="level" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_keysyms">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="keysyms" type="guint*"/>
|
||||
<parameter name="num_groups" type="gint"/>
|
||||
<parameter name="num_levels" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_outline">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKey*"/>
|
||||
<parameter name="outline" type="EekOutline*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<object name="EekKeyboard" parent="EekContainer" type-name="EekKeyboard" get-type="eek_keyboard_get_type">
|
||||
<method name="create_section" symbol="eek_keyboard_create_section">
|
||||
<return-type type="EekSection*"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="find_key_by_keycode" symbol="eek_keyboard_find_key_by_keycode">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keysym_index" symbol="eek_keyboard_get_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
<parameter name="group" type="gint*"/>
|
||||
<parameter name="level" type="gint*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="realize" symbol="eek_keyboard_realize">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keysym_index" symbol="eek_keyboard_set_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
<parameter name="level" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_layout" symbol="eek_keyboard_set_layout">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
<parameter name="layout" type="EekLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="group" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="level" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<signal name="key-pressed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="object" type="EekKeyboard*"/>
|
||||
<parameter name="p0" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="key-released" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="object" type="EekKeyboard*"/>
|
||||
<parameter name="p0" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="create_section">
|
||||
<return-type type="EekSection*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="find_key_by_keycode">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
<parameter name="group" type="gint*"/>
|
||||
<parameter name="level" type="gint*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="realize">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_keysym_index">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
<parameter name="level" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_layout">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekKeyboard*"/>
|
||||
<parameter name="layout" type="EekLayout*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<object name="EekSection" parent="EekContainer" type-name="EekSection" get-type="eek_section_get_type">
|
||||
<method name="add_row" symbol="eek_section_add_row">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
<parameter name="num_columns" type="gint"/>
|
||||
<parameter name="orientation" type="EekOrientation"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="create_key" symbol="eek_section_create_key">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
<parameter name="column" type="gint"/>
|
||||
<parameter name="row" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="find_key_by_keycode" symbol="eek_section_find_key_by_keycode">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_angle" symbol="eek_section_get_angle">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_n_rows" symbol="eek_section_get_n_rows">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_row" symbol="eek_section_get_row">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
<parameter name="index" type="gint"/>
|
||||
<parameter name="num_columns" type="gint*"/>
|
||||
<parameter name="orientation" type="EekOrientation*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_angle" symbol="eek_section_set_angle">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekSection*"/>
|
||||
<parameter name="angle" type="gint"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="angle" type="gint" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<signal name="key-pressed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="object" type="EekSection*"/>
|
||||
<parameter name="p0" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="key-released" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="object" type="EekSection*"/>
|
||||
<parameter name="p0" type="EekKey*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="add_row">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
<parameter name="num_columns" type="gint"/>
|
||||
<parameter name="orientation" type="EekOrientation"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="create_key">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
<parameter name="row" type="gint"/>
|
||||
<parameter name="column" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="find_key_by_keycode">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_angle">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_n_rows">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_row">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
<parameter name="index" type="gint"/>
|
||||
<parameter name="num_columns" type="gint*"/>
|
||||
<parameter name="orientation" type="EekOrientation*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="set_angle">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekSection*"/>
|
||||
<parameter name="angle" type="gint"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<interface name="EekLayout" type-name="EekLayout" get-type="eek_layout_get_type">
|
||||
<method name="apply" symbol="eek_layout_apply">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekLayout*"/>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_group" symbol="eek_layout_get_group">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<signal name="changed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekLayout*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="group-changed" when="FIRST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekLayout*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="apply">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekLayout*"/>
|
||||
<parameter name="keyboard" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="get_group">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekLayout*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</interface>
|
||||
<constant name="EEK_CONTAINER_H" type="int" value="1"/>
|
||||
<constant name="EEK_ELEMENT_H" type="int" value="1"/>
|
||||
<constant name="EEK_KEYBOARD_H" type="int" value="1"/>
|
||||
<constant name="EEK_KEYSYM_H" type="int" value="1"/>
|
||||
<constant name="EEK_KEY_H" type="int" value="1"/>
|
||||
<constant name="EEK_LAYOUT_H" type="int" value="1"/>
|
||||
<constant name="EEK_SECTION_H" type="int" value="1"/>
|
||||
<constant name="EEK_TYPES_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
1
bindings/vala/eek-0.90/eek-0.90.namespace
Normal file
@ -0,0 +1 @@
|
||||
Eek
|
||||
6
bindings/vala/eek-clutter-0.90/eek-clutter-0.90.files
Normal file
@ -0,0 +1,6 @@
|
||||
include/eek-0.1/eek/eek-clutter-keyboard.h
|
||||
include/eek-0.1/eek/eek-clutter-section.h
|
||||
include/eek-0.1/eek/eek-clutter-key.h
|
||||
include/eek-0.1/eek/eek-clutter-drawing-context.h
|
||||
lib/libeek-clutter.so
|
||||
|
||||
85
bindings/vala/eek-clutter-0.90/eek-clutter-0.90.gi
Normal file
@ -0,0 +1,85 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekClutter">
|
||||
<object name="EekClutterDrawingContext" parent="GInitiallyUnowned" type-name="EekClutterDrawingContext" get-type="eek_clutter_drawing_context_get_type">
|
||||
<method name="get_category_font" symbol="eek_clutter_drawing_context_get_category_font">
|
||||
<return-type type="PangoFontDescription*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
<parameter name="category" type="EekKeysymCategory"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_outline_texture" symbol="eek_clutter_drawing_context_get_outline_texture">
|
||||
<return-type type="ClutterActor*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
<parameter name="outline" type="EekOutline*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_clutter_drawing_context_new">
|
||||
<return-type type="EekClutterDrawingContext*"/>
|
||||
</constructor>
|
||||
<method name="set_category_font" symbol="eek_clutter_drawing_context_set_category_font">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
<parameter name="category" type="EekKeysymCategory"/>
|
||||
<parameter name="fonts" type="PangoFontDescription*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_outline_texture" symbol="eek_clutter_drawing_context_set_outline_texture">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
<parameter name="outline" type="EekOutline*"/>
|
||||
<parameter name="texture" type="ClutterActor*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
</object>
|
||||
<object name="EekClutterKey" parent="EekKey" type-name="EekClutterKey" get-type="eek_clutter_key_get_type">
|
||||
<method name="get_actor" symbol="eek_clutter_key_get_actor">
|
||||
<return-type type="ClutterActor*"/>
|
||||
<parameters>
|
||||
<parameter name="key" type="EekClutterKey*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_clutter_key_new">
|
||||
<return-type type="EekKey*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
<parameter name="column" type="gint"/>
|
||||
<parameter name="row" type="gint"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
</object>
|
||||
<object name="EekClutterKeyboard" parent="EekKeyboard" type-name="EekClutterKeyboard" get-type="eek_clutter_keyboard_get_type">
|
||||
<method name="get_actor" symbol="eek_clutter_keyboard_get_actor">
|
||||
<return-type type="ClutterActor*"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekClutterKeyboard*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_clutter_keyboard_new">
|
||||
<return-type type="EekKeyboard*"/>
|
||||
</constructor>
|
||||
</object>
|
||||
<object name="EekClutterSection" parent="EekSection" type-name="EekClutterSection" get-type="eek_clutter_section_get_type">
|
||||
<method name="get_actor" symbol="eek_clutter_section_get_actor">
|
||||
<return-type type="ClutterActor*"/>
|
||||
<parameters>
|
||||
<parameter name="section" type="EekClutterSection*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_clutter_section_new">
|
||||
<return-type type="EekSection*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekClutterDrawingContext*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
</object>
|
||||
<constant name="EEK_CLUTTER_DRAWING_CONTEXT_H" type="int" value="1"/>
|
||||
<constant name="EEK_CLUTTER_KEYBOARD_H" type="int" value="1"/>
|
||||
<constant name="EEK_CLUTTER_KEY_H" type="int" value="1"/>
|
||||
<constant name="EEK_CLUTTER_SECTION_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
1
bindings/vala/eek-clutter-0.90/eek-clutter-0.90.metadata
Normal file
@ -0,0 +1 @@
|
||||
EekClutter cheader_filename="eek/eek-clutter.h"
|
||||
@ -0,0 +1 @@
|
||||
EekClutter
|
||||
@ -1 +0,0 @@
|
||||
eek-0.90
|
||||
3
bindings/vala/eek-gtk-0.90/eek-gtk-0.90.files
Normal file
@ -0,0 +1,3 @@
|
||||
include/eek-0.1/eek/eek-gtk-keyboard.h
|
||||
include/eek-0.1/eek/eek-gtk.h
|
||||
lib/libeek-gtk.so
|
||||
18
bindings/vala/eek-gtk-0.90/eek-gtk-0.90.gi
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekGtk">
|
||||
<object name="EekGtkKeyboard" parent="EekKeyboard" type-name="EekGtkKeyboard" get-type="eek_gtk_keyboard_get_type">
|
||||
<method name="get_widget" symbol="eek_gtk_keyboard_get_widget">
|
||||
<return-type type="GtkWidget*"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekGtkKeyboard*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_gtk_keyboard_new">
|
||||
<return-type type="EekKeyboard*"/>
|
||||
</constructor>
|
||||
</object>
|
||||
<constant name="EEK_GTK_H" type="int" value="1"/>
|
||||
<constant name="EEK_GTK_KEYBOARD_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
1
bindings/vala/eek-gtk-0.90/eek-gtk-0.90.namespace
Normal file
@ -0,0 +1 @@
|
||||
EekGtk
|
||||
2
bindings/vala/eek-xkb-0.90/eek-xkb-0.90.files
Normal file
@ -0,0 +1,2 @@
|
||||
include/eek-0.1/eek/eek-xkb-layout.h
|
||||
lib/libeek-xkb.so
|
||||
65
bindings/vala/eek-xkb-0.90/eek-xkb-0.90.gi
Normal file
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekXkb">
|
||||
<object name="EekXkbLayout" parent="GInitiallyUnowned" type-name="EekXkbLayout" get-type="eek_xkb_layout_get_type">
|
||||
<implements>
|
||||
<interface name="EekLayout"/>
|
||||
</implements>
|
||||
<method name="get_geometry" symbol="eek_xkb_layout_get_geometry">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keycodes" symbol="eek_xkb_layout_get_keycodes">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_symbols" symbol="eek_xkb_layout_get_symbols">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_xkb_layout_new">
|
||||
<return-type type="EekLayout*"/>
|
||||
</constructor>
|
||||
<method name="set_geometry" symbol="eek_xkb_layout_set_geometry">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
<parameter name="geometry" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keycodes" symbol="eek_xkb_layout_set_keycodes">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
<parameter name="keycodes" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<!--
|
||||
<method name="set_names" symbol="eek_xkb_layout_set_names">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
<parameter name="names" type="XkbComponentNamesRec*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
-->
|
||||
<method name="set_symbols" symbol="eek_xkb_layout_set_symbols">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
<parameter name="symbols" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="geometry" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="keycodes" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="symbols" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
</object>
|
||||
<constant name="EEK_XKB_LAYOUT_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
1
bindings/vala/eek-xkb-0.90/eek-xkb-0.90.metadata
Normal file
@ -0,0 +1 @@
|
||||
EekXkb cheader_filename="eek/eek-xkb.h"
|
||||
1
bindings/vala/eek-xkb-0.90/eek-xkb-0.90.namespace
Normal file
@ -0,0 +1 @@
|
||||
EekXkb
|
||||
@ -1,2 +0,0 @@
|
||||
eek-0.90
|
||||
x11
|
||||
3
bindings/vala/eek-xkl-0.90/eek-xkl-0.90.files
Normal file
@ -0,0 +1,3 @@
|
||||
include/eek-0.1/eek/eek-xkl-layout.h
|
||||
lib/libeek-xkl.so
|
||||
|
||||
91
bindings/vala/eek-xkl-0.90/eek-xkl-0.90.gi
Normal file
@ -0,0 +1,91 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekXkl">
|
||||
<object name="EekXklLayout" parent="EekXkbLayout" type-name="EekXklLayout" get-type="eek_xkl_layout_get_type">
|
||||
<implements>
|
||||
<interface name="EekLayout"/>
|
||||
</implements>
|
||||
<method name="disable_option" symbol="eek_xkl_layout_disable_option">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="option" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="enable_option" symbol="eek_xkl_layout_enable_option">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="option" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_layouts" symbol="eek_xkl_layout_get_layouts">
|
||||
<return-type type="gchar**"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_model" symbol="eek_xkl_layout_get_model">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_option" symbol="eek_xkl_layout_get_option">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="option" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_options" symbol="eek_xkl_layout_get_options">
|
||||
<return-type type="gchar**"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_variants" symbol="eek_xkl_layout_get_variants">
|
||||
<return-type type="gchar**"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eek_xkl_layout_new">
|
||||
<return-type type="EekLayout*"/>
|
||||
</constructor>
|
||||
<method name="set_layouts" symbol="eek_xkl_layout_set_layouts">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="layouts" type="gchar**"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_model" symbol="eek_xkl_layout_set_model">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="model" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_options" symbol="eek_xkl_layout_set_options">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="options" type="gchar**"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_variants" symbol="eek_xkl_layout_set_variants">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="variants" type="gchar**"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="layouts" type="GStrv*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="model" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="options" type="GStrv*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="variants" type="GStrv*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
</object>
|
||||
<constant name="EEK_XKL_LAYOUT_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
1
bindings/vala/eek-xkl-0.90/eek-xkl-0.90.namespace
Normal file
@ -0,0 +1 @@
|
||||
EekXkl
|
||||
268
configure.ac
Normal file
@ -0,0 +1,268 @@
|
||||
# Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
||||
# Copyright (C) 2010-2011 Red Hat, Inc.
|
||||
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public License
|
||||
# as published by the Free Software Foundation; either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
# 02110-1301 USA
|
||||
|
||||
AC_PREREQ(2.63)
|
||||
dnl AC_CONFIG_SRCDIR([configure.ac])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
AC_INIT([eekboard], [0.90.5], [ueno@unixuser.org])
|
||||
|
||||
dnl Init automake
|
||||
AM_INIT_AUTOMAKE
|
||||
AM_MAINTAINER_MODE([enable])
|
||||
AC_GNU_SOURCE
|
||||
|
||||
dnl Support silent build
|
||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
||||
|
||||
dnl Check for programs
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_PROG_CC_STDC
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_CXX
|
||||
|
||||
# define PACKAGE_VERSION_* variables
|
||||
AM_DISABLE_STATIC
|
||||
AC_ISC_POSIX
|
||||
AC_HEADER_STDC
|
||||
LT_INIT
|
||||
IT_PROG_INTLTOOL([0.35.0])
|
||||
|
||||
AC_MSG_CHECKING([which gtk+ version to compile against])
|
||||
AC_ARG_WITH([gtk],
|
||||
[AS_HELP_STRING([--with-gtk=2.0|3.0],[which gtk+ version to compile against (default: 2.0)])],
|
||||
[case "$with_gtk" in
|
||||
2.0|3.0) ;;
|
||||
*) AC_MSG_ERROR([invalid gtk version specified]) ;;
|
||||
esac],
|
||||
[with_gtk=2.0])
|
||||
AC_MSG_RESULT([$with_gtk])
|
||||
|
||||
case "$with_gtk" in
|
||||
2.0) GTK_API_VERSION=2.0
|
||||
GTK_REQUIRED=2.14.0
|
||||
EEK_API_VERSION=0.90
|
||||
EEK_API_MAJOR_VERSION=0
|
||||
EEK_API_MINOR_VERSION=90
|
||||
EEK_API_PC_VERSION=0.90
|
||||
EEK_LIBRARY_SUFFIX="-$EEK_API_VERSION"
|
||||
;;
|
||||
3.0) GTK_API_VERSION=3.0
|
||||
GTK_REQUIRED=2.91.0
|
||||
EEK_API_VERSION=0.90
|
||||
EEK_API_MAJOR_VERSION=0
|
||||
EEK_API_MINOR_VERSION=90
|
||||
EEK_API_PC_VERSION=0.90
|
||||
EEK_LIBRARY_SUFFIX="-$EEK_API_VERSION"
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_SUBST([GTK_API_VERSION])
|
||||
AC_SUBST([EEK_API_VERSION])
|
||||
AC_SUBST([EEK_API_MAJOR_VERSION])
|
||||
AC_SUBST([EEK_API_MINOR_VERSION])
|
||||
AC_SUBST([EEK_API_PC_VERSION])
|
||||
AC_SUBST([EEK_LIBRARY_SUFFIX])
|
||||
AC_SUBST([EEK_LIBRARY_SUFFIX_U],[AS_TR_SH([$EEK_LIBRARY_SUFFIX])])
|
||||
|
||||
AM_CONDITIONAL([HAVE_GTK_2],[test "$with_gtk" = "2.0"])
|
||||
AM_CONDITIONAL([HAVE_GTK_3],[test "$with_gtk" = "3.0"])
|
||||
|
||||
AM_PATH_GLIB_2_0
|
||||
PKG_CHECK_MODULES([GLIB2], [glib-2.0 >= 2.25.4], ,
|
||||
[AC_MSG_ERROR([GLib2 not found])])
|
||||
PKG_CHECK_MODULES([GIO2], [gio-2.0], ,
|
||||
[AC_MSG_ERROR([Gio2 not found])])
|
||||
PKG_CHECK_MODULES([PANGOCAIRO], [pangocairo], ,
|
||||
[AC_MSG_ERROR([PangoCairo not found])])
|
||||
PKG_CHECK_MODULES([GTK], [
|
||||
gtk+-$GTK_API_VERSION >= $GTK_REQUIRED
|
||||
gdk-$GTK_API_VERSION >= $GTK_REQUIRED], ,
|
||||
[AC_MSG_ERROR([GTK not found])])
|
||||
PKG_CHECK_MODULES([GCONF2], [gconf-2.0], ,
|
||||
[AC_MSG_ERROR([GConf not found])])
|
||||
PKG_CHECK_MODULES([XKB], [x11], ,
|
||||
[AC_MSG_ERROR([XKB support not found])])
|
||||
PKG_CHECK_MODULES([LIBXKLAVIER], [libxklavier x11], ,
|
||||
[AC_MSG_ERROR([Libxklavier not found])])
|
||||
PKG_CHECK_MODULES([LIBCROCO], [libcroco-0.6], ,
|
||||
[AC_MSG_ERROR([libcroco not found])])
|
||||
|
||||
dnl use libfakekey to generate key events
|
||||
AC_MSG_CHECKING([whether you enable fakekey])
|
||||
AC_ARG_ENABLE(fakekey,
|
||||
AS_HELP_STRING([--enable-fakekey=no/yes],
|
||||
[Enable fakekey default=yes]),,
|
||||
enable_fakekey=yes)
|
||||
|
||||
if test x$enable_fakekey = xyes; then
|
||||
PKG_CHECK_MODULES([FAKEKEY], [libfakekey], ,
|
||||
[AC_MSG_ERROR([fakekey not found])])
|
||||
AC_DEFINE([HAVE_FAKEKEY], [1], [Define if fakekey is found])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_FAKEKEY, [test x$enable_fakekey = xyes])
|
||||
AC_MSG_RESULT($enable_fakekey)
|
||||
|
||||
dnl use AT-SPI to capture focus/keystroke events
|
||||
AC_MSG_CHECKING([whether you enable AT-SPI event handling])
|
||||
AC_ARG_ENABLE(cspi,
|
||||
AS_HELP_STRING([--enable-cspi=no/yes],
|
||||
[Enable AT-SPI event handling default=yes]),,
|
||||
enable_cspi=yes)
|
||||
|
||||
if test x$enable_cspi = xyes; then
|
||||
PKG_CHECK_MODULES([CSPI], [cspi-1.0], ,
|
||||
[AC_MSG_ERROR([AT-SPI C not found])])
|
||||
AC_DEFINE([HAVE_CSPI], [1], [Define if CSPI is found])
|
||||
fi
|
||||
AC_MSG_RESULT($enable_cspi)
|
||||
AM_CONDITIONAL(ENABLE_CSPI, [test x$enable_cspi = xyes])
|
||||
|
||||
dnl Python language binding
|
||||
AC_MSG_CHECKING([whether you enable Python language support])
|
||||
AC_ARG_ENABLE(python,
|
||||
AS_HELP_STRING([--enable-python=no/yes],
|
||||
[Enable Python language binding default=yes]),,
|
||||
enable_python=yes)
|
||||
AC_MSG_RESULT($enable_python)
|
||||
AM_CONDITIONAL(ENABLE_PYTHON, [test x$enable_python = xyes])
|
||||
|
||||
if test x"$enable_python" = x"yes"; then
|
||||
# check python
|
||||
AM_PATH_PYTHON([2.5])
|
||||
AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
|
||||
if test x"$PYTHON_CONFIG" = x""; then
|
||||
AC_PATH_PROG(PYTHON_CONFIG, python-config)
|
||||
fi
|
||||
if test x"$PYTHON_CONFIG" != x""; then
|
||||
PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
|
||||
PYTHON_LIBS=`$PYTHON_CONFIG --libs`
|
||||
else
|
||||
PYTHON_CFLAGS=`$PYTHON $srcdir/python-config.py --includes`
|
||||
PYTHON_LIBS=`$PYTHON $srcdir/python-config.py --libs`
|
||||
fi
|
||||
PYTHON_INCLUDES="$PYTHON_CFLAGS"
|
||||
AC_SUBST(PYTHON_CFLAGS)
|
||||
AC_SUBST(PYTHON_INCLUDES)
|
||||
AC_SUBST(PYTHON_LIBS)
|
||||
else
|
||||
enable_python="no (disabled, use --enable-python to enable)"
|
||||
fi
|
||||
|
||||
dnl Vala langauge binding
|
||||
AC_MSG_CHECKING([whether you enable Vala language support])
|
||||
AC_ARG_ENABLE(vala,
|
||||
AS_HELP_STRING([--enable-vala=no/yes],
|
||||
[Enable Vala language binding default=yes]),,
|
||||
enable_vala=yes)
|
||||
AC_MSG_RESULT($enable_vala)
|
||||
AM_CONDITIONAL(ENABLE_VALA, [test x$enable_vala = xyes])
|
||||
|
||||
dnl standalone application
|
||||
AC_MSG_CHECKING([whether you enable eekboard])
|
||||
AC_ARG_ENABLE(eekboard,
|
||||
AS_HELP_STRING([--enable-eekboard=no/yes],
|
||||
[Build standalone application "ekboard" default=yes]),,
|
||||
enable_eekboard=yes)
|
||||
AC_MSG_RESULT($enable_eekboard)
|
||||
AM_CONDITIONAL(ENABLE_EEKBOARD, [test x$enable_eekboard = xyes])
|
||||
|
||||
dnl Clutter
|
||||
AC_MSG_CHECKING([whether you enable Clutter])
|
||||
AC_ARG_ENABLE(clutter,
|
||||
AS_HELP_STRING([--enable-clutter=no/yes],
|
||||
[Enable Clutter user interface default=yes]),,
|
||||
enable_clutter=no)
|
||||
AC_MSG_RESULT($enable_clutter)
|
||||
|
||||
if test x$enable_clutter = xyes; then
|
||||
PKG_CHECK_MODULES([CLUTTER], [clutter-1.0], ,
|
||||
[AC_MSG_ERROR([Clutter not found -- install it or add --disable-clutter])])
|
||||
AC_DEFINE([HAVE_CLUTTER], [1], [Define if Clutter is found])
|
||||
have_clutter_gtk=0
|
||||
need_swap_event_workaround=0
|
||||
PKG_CHECK_MODULES([CLUTTER_GTK], [clutter-gtk-1.0], [have_clutter_gtk=1],
|
||||
[PKG_CHECK_MODULES([CLUTTER_GTK], [clutter-gtk-0.10 clutter-x11-1.0],
|
||||
[have_clutter_gtk=1; need_swap_event_workaround=1])])
|
||||
AC_DEFINE_UNQUOTED([HAVE_CLUTTER_GTK], $have_clutter_gtk,
|
||||
[Define if Clutter-Gtk is found])
|
||||
AC_DEFINE_UNQUOTED([NEED_SWAP_EVENT_WORKAROUND], $need_swap_event_workaround,
|
||||
[Define if GLX_INTEL_swap_event work around is needed])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_CLUTTER, [test x$enable_clutter = xyes])
|
||||
|
||||
GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
|
||||
|
||||
dnl to re-generate eek/*-keysym-labels.txt
|
||||
AC_CHECK_PROGS([PYTHON], [python])
|
||||
|
||||
dnl define GETTEXT_* variables
|
||||
GETTEXT_PACKAGE=$PACKAGE
|
||||
AC_SUBST(GETTEXT_PACKAGE)
|
||||
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define to the read-only architecture-independent data directory.])
|
||||
AM_GLIB_GNU_GETTEXT
|
||||
AM_GLIB_DEFINE_LOCALEDIR(EEKBOARD_LOCALEDIR)
|
||||
|
||||
GOBJECT_INTROSPECTION_CHECK([0.9.0])
|
||||
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_FILES([Makefile
|
||||
eek/Makefile
|
||||
eekboard/Makefile
|
||||
src/Makefile
|
||||
tests/Makefile
|
||||
bindings/Makefile
|
||||
bindings/python/Makefile
|
||||
bindings/python/eekboard/Makefile
|
||||
bindings/vala/Makefile
|
||||
docs/Makefile
|
||||
docs/reference/Makefile
|
||||
docs/reference/eek/Makefile
|
||||
docs/reference/eekboard/Makefile
|
||||
po/Makefile.in
|
||||
data/Makefile
|
||||
data/icons/Makefile
|
||||
data/icons/16x16/Makefile
|
||||
data/icons/22x22/Makefile
|
||||
data/icons/24x24/Makefile
|
||||
data/icons/32x32/Makefile
|
||||
data/icons/48x48/Makefile
|
||||
data/icons/scalable/Makefile
|
||||
data/themes/Makefile
|
||||
data/keyboards/Makefile
|
||||
examples/Makefile
|
||||
examples/eekboard-inscript/Makefile
|
||||
examples/simple-client/Makefile
|
||||
eek/eek-${EEK_API_VERSION}.pc
|
||||
eek/eek-clutter-${EEK_API_VERSION}.pc
|
||||
eek/eek-gtk-${EEK_API_VERSION}.pc
|
||||
eek/eek-xkb-${EEK_API_VERSION}.pc
|
||||
eek/eek-xkl-${EEK_API_VERSION}.pc
|
||||
eekboard/eekboard-${EEK_API_VERSION}.pc])
|
||||
AC_OUTPUT
|
||||
AC_MSG_RESULT([
|
||||
Build options:
|
||||
Version $VERSION
|
||||
Install prefix $prefix
|
||||
Build shared libs $enable_shared
|
||||
Build static libs $enable_static
|
||||
CFLAGS $CFLAGS
|
||||
Build vala binding $enable_vala
|
||||
Build document $enable_gtk_doc
|
||||
])
|
||||
6
data/Makefile.am
Normal file
@ -0,0 +1,6 @@
|
||||
SUBDIRS = icons themes keyboards
|
||||
|
||||
desktopdir = $(datadir)/applications
|
||||
desktop_in_files = eekboard.desktop.in
|
||||
dist_desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
||||
@INTLTOOL_DESKTOP_RULE@
|
||||
@ -1,20 +0,0 @@
|
||||
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
|
||||
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
||||
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
|
||||
<interface name="sm.puri.OSK0">
|
||||
<method name="SetVisible">
|
||||
<arg name="visible" type="b" direction="in"/>
|
||||
<doc:doc><doc:description>
|
||||
Switch keyboard visibility
|
||||
</doc:description></doc:doc>
|
||||
</method>
|
||||
<method name="GetVisible">
|
||||
<arg name="visible" type="b" direction="out"/>
|
||||
<doc:doc><doc:description>
|
||||
Get keyboard visibility
|
||||
</doc:description></doc:doc>
|
||||
</method>
|
||||
<property name="Visible" type="b" access="read">
|
||||
</property>
|
||||
</interface>
|
||||
</node>
|
||||
@ -1,6 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=Eekboard
|
||||
Exec=eekboard -f
|
||||
Type=Application
|
||||
#AutostartCondition=GSettings org.gnome.desktop.a11y.applications screen-keyboard-enabled
|
||||
X-GNOME-AutoRestart=true
|
||||
@ -2,7 +2,7 @@
|
||||
Name=Eekboard
|
||||
GenericName=Eekboard Virtual Keyboard
|
||||
Comment=Virtual Keyboard
|
||||
Exec=eekboard
|
||||
Exec=eekboard-desktop-client
|
||||
Icon=eekboard
|
||||
Terminal=false
|
||||
Type=Application
|
||||
|
||||
16
data/icons/16x16/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
size = 16x16
|
||||
|
||||
icondir = $(datadir)/icons/hicolor/$(size)/apps
|
||||
dist_icon_DATA = eekboard.png
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
BIN
data/icons/16x16/eekboard.png
Normal file
|
After Width: | Height: | Size: 606 B |
16
data/icons/22x22/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
size = 22x22
|
||||
|
||||
icondir = $(datadir)/icons/hicolor/$(size)/apps
|
||||
dist_icon_DATA = eekboard.png
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
BIN
data/icons/22x22/eekboard.png
Normal file
|
After Width: | Height: | Size: 892 B |
16
data/icons/24x24/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
size = 24x24
|
||||
|
||||
icondir = $(datadir)/icons/hicolor/$(size)/apps
|
||||
dist_icon_DATA = eekboard.png
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
BIN
data/icons/24x24/eekboard.png
Normal file
|
After Width: | Height: | Size: 957 B |
16
data/icons/32x32/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
size = 32x32
|
||||
|
||||
icondir = $(datadir)/icons/hicolor/$(size)/apps
|
||||
dist_icon_DATA = eekboard.png
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
BIN
data/icons/32x32/eekboard.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
16
data/icons/48x48/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
size = 48x48
|
||||
|
||||
icondir = $(datadir)/icons/hicolor/$(size)/apps
|
||||
dist_icon_DATA = eekboard.png
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
BIN
data/icons/48x48/eekboard.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
1
data/icons/Makefile.am
Normal file
@ -0,0 +1 @@
|
||||
SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"
|
||||
version="1.1" viewBox="0 0 24 24">
|
||||
|
||||
<path d="M 24,1 L 24,10 C 24,15 20,17 17,17 L 7,17 L 10,20 L 10,23
|
||||
L 7,23 L 0,15 L 7,7 L 10,7 L 10,10 L 7,13 L 17,13
|
||||
C 19,13 20,12 20,10 L 20,1 Z"
|
||||
stroke="none" fill="black" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 388 B |
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"
|
||||
version="1.1" viewBox="0 0 24 24">
|
||||
|
||||
<path d="M 12,2 L 22,14 L 16,14 L 16,22 L 8,22 L 8,14 L 2,14 Z"
|
||||
stroke="none" fill="black" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 279 B |
@ -1,52 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
id="svg4043"
|
||||
version="1.1"
|
||||
viewBox="0 0 4.2333331 4.2333093"
|
||||
height="4.2333093mm"
|
||||
width="4.2333331mm">
|
||||
<defs
|
||||
id="defs4037" />
|
||||
<metadata
|
||||
id="metadata4040">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(-86.329776,-68.097636)"
|
||||
id="layer1">
|
||||
<g
|
||||
style="stroke-width:1.00004983;fill:#2e3436;fill-opacity:1"
|
||||
transform="matrix(0.99990029,0,0,1,-7.1823833,-1.8799927)"
|
||||
id="g842">
|
||||
<g
|
||||
style="stroke-width:1.00004983;fill:#2e3436;fill-opacity:1"
|
||||
id="g836">
|
||||
<path
|
||||
id="path5166"
|
||||
d="m 95.636719,69.978516 c -1.165869,0 -2.115235,0.949365 -2.115235,2.115234 0,1.165869 0.949366,2.117188 2.115235,2.117188 1.165869,0 2.117187,-0.951319 2.117187,-2.117188 0,-1.165869 -0.951318,-2.115234 -2.117187,-2.115234 z m 0,0.529296 c 0.879886,0 1.58789,0.706052 1.58789,1.585938 0,0.879886 -0.708004,1.587891 -1.58789,1.587891 -0.879886,0 -1.585938,-0.708005 -1.585938,-1.587891 0,-0.879886 0.706052,-1.585937 1.585938,-1.585938 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52919304;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||
</g>
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26459652;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 95.636719,70.109375 c -0.144398,0 -0.27248,0.07793 -0.373047,0.189453 -0.100567,0.111521 -0.18209,0.261405 -0.25,0.439453 -0.135821,0.356096 -0.214844,0.830395 -0.214844,1.355469 0,0.525074 0.07902,1.001326 0.214844,1.357422 0.06791,0.178048 0.149433,0.327932 0.25,0.439453 0.100567,0.111521 0.228649,0.1875 0.373047,0.1875 0.144397,0 0.27248,-0.07598 0.373047,-0.1875 0.100566,-0.111521 0.182089,-0.261405 0.25,-0.439453 0.135821,-0.356096 0.216797,-0.832348 0.216796,-1.357422 0,-0.525074 -0.08097,-0.999373 -0.216796,-1.355469 -0.06791,-0.178048 -0.149434,-0.327932 -0.25,-0.439453 -0.100567,-0.111521 -0.22865,-0.189453 -0.373047,-0.189453 z m 0,0.265625 c 0.05067,0 0.109272,0.02564 0.177734,0.101562 0.06846,0.07592 0.139293,0.198356 0.199219,0.355469 0.119851,0.314227 0.197266,0.763915 0.197266,1.261719 0,0.497804 -0.07742,0.949446 -0.197266,1.263672 -0.05993,0.157113 -0.130756,0.279549 -0.199219,0.355469 -0.06846,0.07592 -0.12706,0.101562 -0.177734,0.101562 -0.05067,0 -0.107319,-0.02564 -0.175781,-0.101562 -0.06846,-0.07592 -0.139294,-0.198356 -0.199219,-0.355469 C 95.141867,73.043196 95.0625,72.591554 95.0625,72.09375 c 0,-0.497804 0.07937,-0.947492 0.199219,-1.261719 0.05993,-0.157113 0.130756,-0.279549 0.199219,-0.355469 C 95.5294,70.400643 95.586045,70.375 95.636719,70.375 Z"
|
||||
id="circle5168" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26459652;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 93.697266,71.962891 v 0.263671 h 3.96875 v -0.263671 z"
|
||||
id="path5170" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.6 KiB |
14
data/icons/scalable/Makefile.am
Normal file
@ -0,0 +1,14 @@
|
||||
icondir = $(datadir)/icons/hicolor/scalable/apps
|
||||
dist_icon_DATA = eekboard.svg
|
||||
|
||||
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||||
|
||||
install-data-hook:
|
||||
@-if test -z "$(DESTDIR)"; then \
|
||||
echo "Updating Gtk icon cache."; \
|
||||
$(gtk_update_icon_cache); \
|
||||
else \
|
||||
echo "*** Icon cache not updated. After install, run this:"; \
|
||||
echo "*** $(gtk_update_icon_cache)"; \
|
||||
fi
|
||||
|
||||
3486
data/icons/scalable/eekboard.svg
Normal file
|
After Width: | Height: | Size: 472 KiB |
2
data/keyboards/Makefile.am
Normal file
@ -0,0 +1,2 @@
|
||||
keyboarddir = $(pkgdatadir)/keyboards
|
||||
dist_keyboard_DATA = us-qwerty.xml
|
||||
@ -1,64 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<geometry version="0.90">
|
||||
<bounds x="10" y="10" width="410.0000" height="229"/>
|
||||
|
||||
<outline id="default" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="37.46341" y="0.000000"/>
|
||||
<point x="37.46341" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="altline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="48.39024" y="0.000000"/>
|
||||
<point x="48.39024" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline7" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="88.97561" y="0.000000"/>
|
||||
<point x="88.97561" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="spaceline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="150.5853" y="0.000000"/>
|
||||
<point x="150.5853" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
|
||||
<button name="Shift_L" oref="altline" />
|
||||
<button name="BackSpace" oref="altline" />
|
||||
<button name="preferences" oref="altline" />
|
||||
<button name="show_numbers" oref="altline" keycode="0" />
|
||||
<button name="show_letters" oref="altline" keycode="0" />
|
||||
<button name="show_symbols" oref="altline" keycode="0" />
|
||||
<button name="period" oref="altline" />
|
||||
<button name="space" oref="spaceline" />
|
||||
<button name="Return" oref="outline7" />
|
||||
|
||||
<view>
|
||||
<section angle="0">q w e r t y u i o p</section>
|
||||
<section angle="0">a s d f g h j k l</section>
|
||||
<section angle="0"> Shift_L z x c v b n m BackSpace </section>
|
||||
<section angle="0"> show_numbers preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">Q W E R T Y U I O P</section>
|
||||
<section angle="0">A S D F G H J K L</section>
|
||||
<section angle="0"> Shift_L Z X C V B N M BackSpace </section>
|
||||
<section angle="0"> show_numbers preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">1 2 3 4 5 6 7 8 9 0</section>
|
||||
<section angle="0">at numbersign dollar percent ampersand minus underscore plus parenleft parenright</section>
|
||||
<section angle="0"> show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace </section>
|
||||
<section angle="0"> show_letters preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph</section>
|
||||
<section angle="0">copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright</section>
|
||||
<section angle="0"> show_numbers backslash slash less greater equal bracketleft bracketright BackSpace </section>
|
||||
<section angle="0"> show_letters preferences space period Return </section>
|
||||
</view>
|
||||
</geometry>
|
||||
@ -1,105 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<geometry version="0.90">
|
||||
<bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
|
||||
|
||||
<outline id="outline2" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="32" y="0.000000"/>
|
||||
<point x="32" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="altline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="48.39024" y="0.000000"/>
|
||||
<point x="48.39024" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline4" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="59.31707" y="0.000000"/>
|
||||
<point x="59.31707" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline5" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="59.31707" y="0.000000"/>
|
||||
<point x="59.31707" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline6" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="68.68292" y="0.000000"/>
|
||||
<point x="68.68292" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline7" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="88.97561" y="0.000000"/>
|
||||
<point x="88.97561" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline8" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="88.97561" y="0.000000"/>
|
||||
<point x="88.97561" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline9" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="109.2682" y="0.000000"/>
|
||||
<point x="109.2682" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline10" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="37.46341" y="0.000000"/>
|
||||
<point x="37.46341" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="outline13" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="79.60975" y="0.000000"/>
|
||||
<point x="79.60975" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
<outline id="spaceline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="150.5853" y="0.000000"/>
|
||||
<point x="150.5853" y="52"/>
|
||||
<point x="0.000000" y="52"/>
|
||||
</outline>
|
||||
|
||||
<button name="Shift_L" oref="altline" />
|
||||
<button name="BackSpace" oref="altline" />
|
||||
<button name="preferences" oref="altline" />
|
||||
<button name="show_numbers" oref="altline" keycode="0" />
|
||||
<button name="show_letters" oref="altline" keycode="0" />
|
||||
<button name="show_symbols" oref="altline" keycode="0" />
|
||||
<button name="space" oref="spaceline" />
|
||||
<button name="return" oref="outline7" />
|
||||
|
||||
<view>
|
||||
<section angle="0">q w e r t y u i o p aring</section>
|
||||
<section angle="0">a s d f g h j k l oslash ae</section>
|
||||
<section angle="0"> Shift_L z x c v b n m BackSpace </section>
|
||||
<section angle="0"> show_numbers preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">Q W E R T Y U I O P Aring</section>
|
||||
<section angle="0">A S D F G H J K L Oslash AE</section>
|
||||
<section angle="0"> Shift_L Z X C V B N M BackSpace </section>
|
||||
<section angle="0"> show_numbers preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">1 2 3 4 5 6 7 8 9 0</section>
|
||||
<section angle="0">at numbersign dollar percent ampersand minus underscore plus parenleft parenright</section>
|
||||
<section angle="0"> show_symbols comma quotedbl quoteright colon semicolon exclam question BackSpace </section>
|
||||
<section angle="0"> show_letters preferences space period Return </section>
|
||||
</view>
|
||||
<view>
|
||||
<section angle="0">asciitilde quoteleft bar U00B7 squareroot Greek_pi Greek_tau division multiply paragraph</section>
|
||||
<section angle="0">copyright U00AE U00A3 EuroSign U00A5 asciicircum degree asterisk braceleft braceright</section>
|
||||
<section angle="0"> show_numbers backslash slash less greater equal bracketleft bracketright BackSpace </section>
|
||||
<section angle="0"> show_letters preferences space period Return </section>
|
||||
</view>
|
||||
</geometry>
|
||||
@ -1,40 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<geometry version="0.90">
|
||||
<bounds x="0" y="10.000000" width="426.0000" height="296.5853"/>
|
||||
|
||||
<outline id="default" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="37.46341" y="0.000000"/>
|
||||
<point x="37.46341" y="52.44877"/>
|
||||
<point x="0.000000" y="52.44877"/>
|
||||
</outline>
|
||||
<outline id="altline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="48.39024" y="0.000000"/>
|
||||
<point x="48.39024" y="52.44877"/>
|
||||
<point x="0.000000" y="52.44877"/>
|
||||
</outline>
|
||||
<outline id="outline7" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="88.97561" y="0.000000"/>
|
||||
<point x="88.97561" y="52.44877"/>
|
||||
<point x="0.000000" y="52.44877"/>
|
||||
</outline>
|
||||
<outline id="spaceline" corner-radius="1.000000">
|
||||
<point x="0.000000" y="0.000000"/>
|
||||
<point x="120.5853" y="0.000000"/>
|
||||
<point x="120.5853" y="52.44877"/>
|
||||
<point x="0.000000" y="52.44877"/>
|
||||
</outline>
|
||||
|
||||
<button name="BackSpace" oref="altline" />
|
||||
<button name="space" oref="spaceline" />
|
||||
<button name="Return" oref="outline7" />
|
||||
|
||||
<view>
|
||||
<section angle="0">1 2 3 parenleft parenright</section>
|
||||
<section angle="0">4 5 6 numbersign asterisk</section>
|
||||
<section angle="0">7 8 9 plus minus</section>
|
||||
<section angle="0">BackSpace 0 space Return</section>
|
||||
</view>
|
||||
</geometry>
|
||||
@ -1,100 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<keyboards version="0.90">
|
||||
<keyboard id="ar" name="ar"
|
||||
geometry="compact" symbols="ar"
|
||||
longname="Arabic" language="ar"/>
|
||||
<keyboard id="be" name="be"
|
||||
geometry="compact" symbols="be"
|
||||
longname="Belarusian" language="be"/>
|
||||
<keyboard id="fa" name="fa"
|
||||
geometry="compact" symbols="fa"
|
||||
longname="Farsi (ISIRI 2901-1994)" language="fa"/>
|
||||
<keyboard id="he" name="he"
|
||||
geometry="compact" symbols="he"
|
||||
longname="Hebrew" language="he"/>
|
||||
<keyboard id="ja" name="ja"
|
||||
geometry="compact" symbols="ja-kana"
|
||||
longname="Japanese (Kana)" language="ja"/>
|
||||
<keyboard id="kk" name="kk"
|
||||
geometry="compact" symbols="kk"
|
||||
longname="Kazakh" language="kk"/>
|
||||
<keyboard id="ks" name="ks"
|
||||
geometry="compact" symbols="ks"
|
||||
longname="Kashmiri" language="ks"/>
|
||||
<keyboard id="my" name="my"
|
||||
geometry="compact" symbols="my"
|
||||
longname="Myanmar" language="my"/>
|
||||
<keyboard id="nb" name="nb"
|
||||
geometry="extended" symbols="nb"
|
||||
longname="Norwegian" language="nb"/>
|
||||
<keyboard id="ru" name="ru"
|
||||
geometry="compact" symbols="us"
|
||||
longname="Russian" language="ru"/>
|
||||
<keyboard id="th" name="th"
|
||||
geometry="compact" symbols="th"
|
||||
longname="Thai" language="th"/>
|
||||
<keyboard id="ua" name="ua"
|
||||
geometry="compact" symbols="ua"
|
||||
longname="Ukrainian" language="ua"/>
|
||||
<keyboard id="ug" name="ug"
|
||||
geometry="compact" symbols="ug"
|
||||
longname="Uyghur" language="ug"/>
|
||||
<keyboard id="us" name="us"
|
||||
geometry="compact" symbols="us"
|
||||
longname="US" language="en"/>
|
||||
<keyboard id="zh-bopomofo" name="zh-bopomofo"
|
||||
geometry="compact" symbols="zh-bopomofo"
|
||||
longname="Chinese (Bopomofo)" language="zh"/>
|
||||
<!-- Indic Inscript keyboards converted from m17n-lib -->
|
||||
<keyboard id="as-inscript" name="as-inscript"
|
||||
geometry="compact" symbols="as-inscript"
|
||||
longname="Assamese (Inscript)" language="as"/>
|
||||
<keyboard id="bn-inscript" name="bn-inscript"
|
||||
geometry="compact" symbols="bn-inscript"
|
||||
longname="Bengali (Inscript)" language="bn"/>
|
||||
<keyboard id="gu-inscript" name="gu-inscript"
|
||||
geometry="compact" symbols="gu-inscript"
|
||||
longname="Gujarati (Inscript)" language="gu"/>
|
||||
<keyboard id="hi-inscript" name="hi-inscript"
|
||||
geometry="compact" symbols="hi-inscript"
|
||||
longname="Hindi (Inscript)" language="hi"/>
|
||||
<keyboard id="kn-inscript" name="kn-inscript"
|
||||
geometry="compact" symbols="kn-inscript"
|
||||
longname="Kannada (Inscript)" language="kn"/>
|
||||
<keyboard id="ks-inscript" name="ks-inscript"
|
||||
geometry="compact" symbols="ks-inscript"
|
||||
longname="Kashmiri Devanagari (Inscript)" language="ks"/>
|
||||
<keyboard id="mai-inscript" name="mai-inscript"
|
||||
geometry="compact" symbols="mai-inscript"
|
||||
longname="Maithili (Inscript)" language="mai"/>
|
||||
<keyboard id="ml-inscript" name="ml-inscript"
|
||||
geometry="compact" symbols="ml-inscript"
|
||||
longname="Malayalam (Inscript)" language="ml-inscript"/>
|
||||
<keyboard id="mr-inscript" name="mr-inscript"
|
||||
geometry="compact" symbols="mr-inscript"
|
||||
longname="Marathi (Inscript)" language="mr"/>
|
||||
<keyboard id="or-inscript" name="or-inscript"
|
||||
geometry="compact" symbols="or-inscript"
|
||||
longname="Oriya (Inscript)" language="or"/>
|
||||
<keyboard id="pa-inscript" name="pa-inscript"
|
||||
geometry="compact" symbols="pa-inscript"
|
||||
longname="Punjabi (Inscript)" language="pa"/>
|
||||
<keyboard id="sd-inscript" name="sd-inscript"
|
||||
geometry="compact" symbols="sd-inscript"
|
||||
longname="Sindhi (Inscript)" language="sd"/>
|
||||
<keyboard id="ta-inscript" name="ta-inscript"
|
||||
geometry="compact" symbols="ta-inscript"
|
||||
longname="Tamil (Inscript)" language="ta"/>
|
||||
<keyboard id="te-inscript" name="te-inscript"
|
||||
geometry="compact" symbols="te-inscript"
|
||||
longname="Telugu (Inscript)" language="te"/>
|
||||
|
||||
<!-- Common keyboards -->
|
||||
<keyboard id="number" name="number"
|
||||
geometry="number-keypad" symbols="special/number"
|
||||
longname="Numeric keypad" language="all"/>
|
||||
<keyboard id="phone" name="phone"
|
||||
geometry="number-keypad" symbols="special/number"
|
||||
longname="Phone keypad" language="all"/>
|
||||
|
||||
</keyboards>
|
||||
@ -1,181 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ّ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">١</text>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">٢</text>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">٣</text>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">٤</text>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">٥</text>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">٦</text>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">٧</text>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">٨</text>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">٩</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">٠</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ض</text>
|
||||
<text category="letter">َ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ص</text>
|
||||
<text category="letter">ً</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ث</text>
|
||||
<text category="letter">ُ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ق</text>
|
||||
<text category="letter">ٌ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ف</text>
|
||||
<text category="letter">لإ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">غ</text>
|
||||
<text category="letter">إ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ع</text>
|
||||
<text category="letter">`</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ه</text>
|
||||
<text category="letter">÷</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">خ</text>
|
||||
<text category="letter">×</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ح</text>
|
||||
<text category="letter">؛</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ج</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">د</text>
|
||||
<text category="letter"><</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ش</text>
|
||||
<text category="letter">ِ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">س</text>
|
||||
<text category="letter">ٍ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">ي</text>
|
||||
<text category="letter">]</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ب</text>
|
||||
<text category="letter">[</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ل</text>
|
||||
<text category="letter">لأ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ا</text>
|
||||
<text category="letter">أ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ت</text>
|
||||
<text category="letter">ـ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ن</text>
|
||||
<text category="letter">،</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">م</text>
|
||||
<text category="letter">/</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ك</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ئ</text>
|
||||
<text category="letter">~</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ء</text>
|
||||
<text category="letter">ْ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ؤ</text>
|
||||
<text category="letter">}</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ر</text>
|
||||
<text category="letter">{</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">لا</text>
|
||||
<text category="letter">لآ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ى</text>
|
||||
<text category="letter">آ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ة</text>
|
||||
<text category="letter">'</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">و</text>
|
||||
<text category="letter">,</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ز</text>
|
||||
<text category="letter">.</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ظ</text>
|
||||
<text category="letter">؟</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">~</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">১</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">২</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">৩</text>
|
||||
<text category="letter">্ৰ</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">৪</text>
|
||||
<text category="letter">ৰ্</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">৫</text>
|
||||
<text category="letter">জ্ঞ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">৬</text>
|
||||
<text category="letter">ত্ৰ</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">৭</text>
|
||||
<text category="letter">ক্ষ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">৮</text>
|
||||
<text category="letter">শ্ৰ</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">৯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">০</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ঃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ৃ</text>
|
||||
<text category="letter">ঋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ৌ</text>
|
||||
<text category="letter">ঔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ৈ</text>
|
||||
<text category="letter">ঐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">া</text>
|
||||
<text category="letter">আ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ী</text>
|
||||
<text category="letter">ঈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ূ</text>
|
||||
<text category="letter">ঊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ব</text>
|
||||
<text category="letter">ভ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">হ</text>
|
||||
<text category="letter">ঙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">গ</text>
|
||||
<text category="letter">ঘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">দ</text>
|
||||
<text category="letter">ধ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">জ</text>
|
||||
<text category="letter">ঝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ড</text>
|
||||
<text category="letter">ঢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">়</text>
|
||||
<text category="letter">ঞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">য</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ো</text>
|
||||
<text category="letter">ও</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ে</text>
|
||||
<text category="letter">এ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">্</text>
|
||||
<text category="letter">অ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ি</text>
|
||||
<text category="letter">ই</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ু</text>
|
||||
<text category="letter">উ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">প</text>
|
||||
<text category="letter">ফ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ৰ</text>
|
||||
<text category="letter">J</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ক</text>
|
||||
<text category="letter">খ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ত</text>
|
||||
<text category="letter">থ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">চ</text>
|
||||
<text category="letter">ছ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ঠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ৎ</text>
|
||||
<text category="letter">৺</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ং</text>
|
||||
<text category="letter">ঁ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ম</text>
|
||||
<text category="letter">ণ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ন</text>
|
||||
<text category="letter">V</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ৱ</text>
|
||||
<text category="letter">B</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ল</text>
|
||||
<text category="letter">N</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">স</text>
|
||||
<text category="letter">শ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ষ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">য়</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">Ё</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<text category="letter">№</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<text category="letter">;</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<text category="letter">_</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">й</text>
|
||||
<text category="letter">Й</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ц</text>
|
||||
<text category="letter">Ц</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">у</text>
|
||||
<text category="letter">У</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">к</text>
|
||||
<text category="letter">К</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">е</text>
|
||||
<text category="letter">Е</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">н</text>
|
||||
<text category="letter">Н</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">г</text>
|
||||
<text category="letter">Г</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ш</text>
|
||||
<text category="letter">Ш</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ў</text>
|
||||
<text category="letter">Ў</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">з</text>
|
||||
<text category="letter">З</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">х</text>
|
||||
<text category="letter">Х</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">'</text>
|
||||
<text category="letter">'</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ф</text>
|
||||
<text category="letter">Ф</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ы</text>
|
||||
<text category="letter">Ы</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">в</text>
|
||||
<text category="letter">В</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">а</text>
|
||||
<text category="letter">А</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">п</text>
|
||||
<text category="letter">П</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">р</text>
|
||||
<text category="letter">Р</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">о</text>
|
||||
<text category="letter">О</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">л</text>
|
||||
<text category="letter">Л</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">д</text>
|
||||
<text category="letter">Д</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ж</text>
|
||||
<text category="letter">Ж</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">Э</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">я</text>
|
||||
<text category="letter">Я</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ч</text>
|
||||
<text category="letter">Ч</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">с</text>
|
||||
<text category="letter">С</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">м</text>
|
||||
<text category="letter">М</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">і</text>
|
||||
<text category="letter">І</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">т</text>
|
||||
<text category="letter">Т</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ь</text>
|
||||
<text category="letter">Ь</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">б</text>
|
||||
<text category="letter">Б</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ю</text>
|
||||
<text category="letter">Ю</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">,</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">~</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">১</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">২</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">৩</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">৪</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">৫</text>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">৬</text>
|
||||
<text category="letter">^</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">৭</text>
|
||||
<text category="letter">&</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">৮</text>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">৯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">০</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ঃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ৃ</text>
|
||||
<text category="letter">ঋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ৌ</text>
|
||||
<text category="letter">ঔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ৈ</text>
|
||||
<text category="letter">ঐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">া</text>
|
||||
<text category="letter">আ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ী</text>
|
||||
<text category="letter">ঈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ূ</text>
|
||||
<text category="letter">ঊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ব</text>
|
||||
<text category="letter">ভ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">হ</text>
|
||||
<text category="letter">ঙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">গ</text>
|
||||
<text category="letter">ঘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">দ</text>
|
||||
<text category="letter">ধ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">জ</text>
|
||||
<text category="letter">ঝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ড</text>
|
||||
<text category="letter">ঢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">়</text>
|
||||
<text category="letter">ঞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ো</text>
|
||||
<text category="letter">ও</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ে</text>
|
||||
<text category="letter">এ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">্</text>
|
||||
<text category="letter">অ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ি</text>
|
||||
<text category="letter">ই</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ু</text>
|
||||
<text category="letter">উ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">প</text>
|
||||
<text category="letter">ফ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">র</text>
|
||||
<text category="letter">J</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ক</text>
|
||||
<text category="letter">খ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ত</text>
|
||||
<text category="letter">থ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">চ</text>
|
||||
<text category="letter">ছ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ঠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">z</text>
|
||||
<text category="letter">Z</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ং</text>
|
||||
<text category="letter">ঁ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ম</text>
|
||||
<text category="letter">ণ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ন</text>
|
||||
<text category="letter">V</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ব</text>
|
||||
<text category="letter">B</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ল</text>
|
||||
<text category="letter">N</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">স</text>
|
||||
<text category="letter">শ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ষ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">য়</text>
|
||||
<text category="letter">য</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">۱</text>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">۲</text>
|
||||
<text category="letter">٬</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">۳</text>
|
||||
<text category="letter">٫</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">۴</text>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">۵</text>
|
||||
<text category="letter">٪</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">۶</text>
|
||||
<text category="letter">×</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">۷</text>
|
||||
<text category="letter">،</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">۸</text>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">۹</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">۰</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ض</text>
|
||||
<text category="letter">ْ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ص</text>
|
||||
<text category="letter">ٌ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ث</text>
|
||||
<text category="letter">ٍ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ق</text>
|
||||
<text category="letter">ً</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ف</text>
|
||||
<text category="letter">ُ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">غ</text>
|
||||
<text category="letter">ِ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ع</text>
|
||||
<text category="letter">َ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ه</text>
|
||||
<text category="letter">ّ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">خ</text>
|
||||
<text category="letter">]</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ح</text>
|
||||
<text category="letter">[</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ج</text>
|
||||
<text category="letter">}</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">چ</text>
|
||||
<text category="letter">{</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ش</text>
|
||||
<text category="letter">ؤ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">س</text>
|
||||
<text category="letter">ئ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">ی</text>
|
||||
<text category="letter">ي</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ب</text>
|
||||
<text category="letter">إ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ل</text>
|
||||
<text category="letter">أ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ا</text>
|
||||
<text category="letter">آ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ت</text>
|
||||
<text category="letter">ة</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ن</text>
|
||||
<text category="letter">»</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">م</text>
|
||||
<text category="letter">«</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ک</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">؛</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ظ</text>
|
||||
<text category="letter">ك</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ط</text>
|
||||
<keysym keyval="88">X</keysym>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ز</text>
|
||||
<text category="letter">ژ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ر</text>
|
||||
<keysym keyval="86">V</keysym>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ذ</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">د</text>
|
||||
<text name="N" category="letter"></text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">پ</text>
|
||||
<text category="letter">ء</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">و</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<keysym keyval="46">period</keysym>
|
||||
<text category="letter"><</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<keysym keyval="47">slash</keysym>
|
||||
<text category="letter">؟</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">~</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">૧</text>
|
||||
<text category="letter">ઍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">૨</text>
|
||||
<text category="letter">ૅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">૩</text>
|
||||
<text category="letter">ૠ</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">૪</text>
|
||||
<text category="letter">ૄ</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">૫</text>
|
||||
<text category="letter">જ્ઞ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">૬</text>
|
||||
<text category="letter">ત્ર</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">૭</text>
|
||||
<text category="letter">ક્ષ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">૮</text>
|
||||
<text category="letter">શ્ર</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">૯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">૦</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ઃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ૃ</text>
|
||||
<text category="letter">ઋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ૌ</text>
|
||||
<text category="letter">ઔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ૈ</text>
|
||||
<text category="letter">ઐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ા</text>
|
||||
<text category="letter">આ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ી</text>
|
||||
<text category="letter">ઈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ૂ</text>
|
||||
<text category="letter">ઊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">બ</text>
|
||||
<text category="letter">ભ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">હ</text>
|
||||
<text category="letter">ઙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ગ</text>
|
||||
<text category="letter">ઘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">દ</text>
|
||||
<text category="letter">ધ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">જ</text>
|
||||
<text category="letter">ઝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ડ</text>
|
||||
<text category="letter">ઢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">઼</text>
|
||||
<text category="letter">ઞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ૉ</text>
|
||||
<text category="letter">ઑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ો</text>
|
||||
<text category="letter">ઓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ે</text>
|
||||
<text category="letter">એ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">્</text>
|
||||
<text category="letter">અ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">િ</text>
|
||||
<text category="letter">ઇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ુ</text>
|
||||
<text category="letter">ઉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">પ</text>
|
||||
<text category="letter">ફ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ર</text>
|
||||
<text category="letter">ઽ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ક</text>
|
||||
<text category="letter">ખ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ત</text>
|
||||
<text category="letter">થ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ચ</text>
|
||||
<text category="letter">છ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ઠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">૱</text>
|
||||
<text category="letter">ૐ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ં</text>
|
||||
<text category="letter">ઁ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">મ</text>
|
||||
<text category="letter">ણ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ન</text>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">વ</text>
|
||||
<text category="letter">'</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">લ</text>
|
||||
<text category="letter">ળ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">સ</text>
|
||||
<text category="letter">શ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ષ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ય</text>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">/</text>
|
||||
<keysym keyval="81">Q</keysym>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">'</text>
|
||||
<keysym keyval="87">W</keysym>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ק</text>
|
||||
<keysym keyval="69">E</keysym>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ר</text>
|
||||
<keysym keyval="82">R</keysym>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">א</text>
|
||||
<keysym keyval="84">T</keysym>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ט</text>
|
||||
<keysym keyval="89">Y</keysym>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ו</text>
|
||||
<keysym keyval="85">U</keysym>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ן</text>
|
||||
<keysym keyval="73">I</keysym>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ם</text>
|
||||
<keysym keyval="79">O</keysym>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">פ</text>
|
||||
<keysym keyval="80">P</keysym>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">]</text>
|
||||
<text category="letter">}</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">[</text>
|
||||
<text category="letter">{</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ש</text>
|
||||
<keysym keyval="65">A</keysym>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ד</text>
|
||||
<keysym keyval="83">S</keysym>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">ג</text>
|
||||
<keysym keyval="68">D</keysym>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">כ</text>
|
||||
<keysym keyval="70">F</keysym>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ע</text>
|
||||
<keysym keyval="71">G</keysym>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">י</text>
|
||||
<keysym keyval="72">H</keysym>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ח</text>
|
||||
<keysym keyval="74">J</keysym>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ל</text>
|
||||
<keysym keyval="75">K</keysym>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ך</text>
|
||||
<keysym keyval="76">L</keysym>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ף</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ז</text>
|
||||
<keysym keyval="90">Z</keysym>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ס</text>
|
||||
<keysym keyval="88">X</keysym>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ב</text>
|
||||
<keysym keyval="67">C</keysym>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ה</text>
|
||||
<keysym keyval="86">V</keysym>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">נ</text>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">מ</text>
|
||||
<keysym keyval="78">N</keysym>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">צ</text>
|
||||
<keysym keyval="77">M</keysym>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">ת</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ץ</text>
|
||||
<text category="letter"><</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">.</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ऒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">१</text>
|
||||
<text category="letter">ऍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">२</text>
|
||||
<text category="letter">ॅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">३</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">४</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">५</text>
|
||||
<text category="letter">ज्ञ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">६</text>
|
||||
<text category="letter">त्र</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">७</text>
|
||||
<text category="letter">क्ष</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">८</text>
|
||||
<text category="letter">श्र</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">९</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">०</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ः</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ृ</text>
|
||||
<text category="letter">ऋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ौ</text>
|
||||
<text category="letter">औ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ै</text>
|
||||
<text category="letter">ऐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ा</text>
|
||||
<text category="letter">आ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ी</text>
|
||||
<text category="letter">ई</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ू</text>
|
||||
<text category="letter">ऊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ब</text>
|
||||
<text category="letter">भ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ह</text>
|
||||
<text category="letter">ङ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ग</text>
|
||||
<text category="letter">घ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">द</text>
|
||||
<text category="letter">ध</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ज</text>
|
||||
<text category="letter">झ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ड</text>
|
||||
<text category="letter">ढ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">़</text>
|
||||
<text category="letter">ञ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ॉ</text>
|
||||
<text category="letter">ऑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ो</text>
|
||||
<text category="letter">ओ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">े</text>
|
||||
<text category="letter">ए</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">्</text>
|
||||
<text category="letter">अ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ि</text>
|
||||
<text category="letter">इ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ु</text>
|
||||
<text category="letter">उ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">प</text>
|
||||
<text category="letter">फ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">र</text>
|
||||
<text category="letter">ऱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">क</text>
|
||||
<text category="letter">ख</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">त</text>
|
||||
<text category="letter">थ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">च</text>
|
||||
<text category="letter">छ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ठ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ॆ</text>
|
||||
<text category="letter">ऎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ं</text>
|
||||
<text category="letter">ँ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">म</text>
|
||||
<text category="letter">ण</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">न</text>
|
||||
<text category="letter">ऩ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">व</text>
|
||||
<text category="letter">ऴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ल</text>
|
||||
<text category="letter">ळ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">स</text>
|
||||
<text category="letter">श</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ष</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">य</text>
|
||||
<text category="letter">य़</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,154 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="1246">゛</keysym>
|
||||
<keysym keyval="1247">゜</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="1223">ぬ</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="1228">ふ</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="1201">あ</keysym>
|
||||
<keysym keyval="1191">ぁ</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="1203">う</keysym>
|
||||
<keysym keyval="1193">ぅ</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="1204">え</keysym>
|
||||
<keysym keyval="1194">ぇ</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="1205">お</keysym>
|
||||
<keysym keyval="1195">ぉ</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="1236">や</keysym>
|
||||
<keysym keyval="1196">ゃ</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="1237">ゆ</keysym>
|
||||
<keysym keyval="1197">ゅ</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="1238">よ</keysym>
|
||||
<keysym keyval="1198">ょ</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="1244">わ</keysym>
|
||||
<keysym keyval="1190">を</keysym>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="1230">ほ</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="1229">へ</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<keysym keyval="1216">た</keysym>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<keysym keyval="1219">て</keysym>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<keysym keyval="1202">い</keysym>
|
||||
<keysym keyval="1192">ぃ</keysym>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<keysym keyval="1213">す</keysym>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<keysym keyval="1206">か</keysym>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<keysym keyval="1245">ん</keysym>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<keysym keyval="1221">な</keysym>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<keysym keyval="1222">に</keysym>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<keysym keyval="1239">ら</keysym>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<keysym keyval="1214">せ</keysym>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<keysym keyval="1233">む</keysym>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<keysym keyval="1243">ろ</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<keysym keyval="1217">ち</keysym>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<keysym keyval="1220">と</keysym>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<keysym keyval="1212">し</keysym>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<keysym keyval="1226">は</keysym>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<keysym keyval="1207">き</keysym>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<keysym keyval="1208">く</keysym>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<keysym keyval="1231">ま</keysym>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<keysym keyval="1225">の</keysym>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<keysym keyval="1240">り</keysym>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<keysym keyval="1242">れ</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="1209">け</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<keysym keyval="1218">つ</keysym>
|
||||
<keysym keyval="1199">っ</keysym>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<keysym keyval="1211">さ</keysym>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<keysym keyval="1215">そ</keysym>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<keysym keyval="1227">ひ</keysym>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<keysym keyval="1210">こ</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<keysym keyval="1232">み</keysym>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<keysym keyval="1235">も</keysym>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<keysym keyval="1224">ね</keysym>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<keysym keyval="1241">る</keysym>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<keysym keyval="1234">め</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">"</text>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">ә</text>
|
||||
<text category="letter">Ә</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">і</text>
|
||||
<text category="letter">І</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">ӊ</text>
|
||||
<text category="letter">Ӊ</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">ғ</text>
|
||||
<text category="letter">Ғ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">;</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">ү</text>
|
||||
<text category="letter">Ү</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">ұ</text>
|
||||
<text category="letter">Ұ</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">қ</text>
|
||||
<text category="letter">Қ</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">ө</text>
|
||||
<text category="letter">Ө</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">һ</text>
|
||||
<text category="letter">Һ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">й</text>
|
||||
<text category="letter">Й</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ц</text>
|
||||
<text category="letter">Ц</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">у</text>
|
||||
<text category="letter">У</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">к</text>
|
||||
<text category="letter">К</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">е</text>
|
||||
<text category="letter">Е</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">н</text>
|
||||
<text category="letter">Н</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">г</text>
|
||||
<text category="letter">Г</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ш</text>
|
||||
<text category="letter">Ш</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">щ</text>
|
||||
<text category="letter">Щ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">з</text>
|
||||
<text category="letter">З</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">х</text>
|
||||
<text category="letter">Х</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">ъ</text>
|
||||
<text category="letter">Ъ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ф</text>
|
||||
<text category="letter">Ф</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ы</text>
|
||||
<text category="letter">Ы</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">в</text>
|
||||
<text category="letter">В</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">а</text>
|
||||
<text category="letter">А</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">п</text>
|
||||
<text category="letter">П</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">р</text>
|
||||
<text category="letter">Р</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">о</text>
|
||||
<text category="letter">О</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">л</text>
|
||||
<text category="letter">Л</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">д</text>
|
||||
<text category="letter">Д</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ж</text>
|
||||
<text category="letter">Ж</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">Э</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">я</text>
|
||||
<text category="letter">Я</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ч</text>
|
||||
<text category="letter">Ч</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">с</text>
|
||||
<text category="letter">С</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">м</text>
|
||||
<text category="letter">М</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">и</text>
|
||||
<text category="letter">И</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">т</text>
|
||||
<text category="letter">Т</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ь</text>
|
||||
<text category="letter">Ь</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">б</text>
|
||||
<text category="letter">Б</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ю</text>
|
||||
<text category="letter">Ю</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">№</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ಒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">೧</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">೨</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">೩</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">೪</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">೫</text>
|
||||
<text category="letter">ಜ್ಞ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">೬</text>
|
||||
<text category="letter">ತ್ರ</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">೭</text>
|
||||
<text category="letter">ಕ್ಷ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">೮</text>
|
||||
<text category="letter">ಶ್ರ</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">೯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">೦</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ಃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ೃ</text>
|
||||
<text category="letter">ಋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ೌ</text>
|
||||
<text category="letter">ಔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ೈ</text>
|
||||
<text category="letter">ಐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ಾ</text>
|
||||
<text category="letter">ಆ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ೀ</text>
|
||||
<text category="letter">ಈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ೂ</text>
|
||||
<text category="letter">ಊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ಬ</text>
|
||||
<text category="letter">ಭ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ಹ</text>
|
||||
<text category="letter">ಙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ಗ</text>
|
||||
<text category="letter">ಘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ದ</text>
|
||||
<text category="letter">ಧ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ಜ</text>
|
||||
<text category="letter">ಝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ಡ</text>
|
||||
<text category="letter">ಢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">]</text>
|
||||
<text category="letter">ಞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter"></text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ೋ</text>
|
||||
<text category="letter">ಓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ೇ</text>
|
||||
<text category="letter">ಏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">್</text>
|
||||
<text category="letter">ಅ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ಿ</text>
|
||||
<text category="letter">ಇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ು</text>
|
||||
<text category="letter">ಉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ಪ</text>
|
||||
<text category="letter">ಫ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ರ</text>
|
||||
<text category="letter">ಱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ಕ</text>
|
||||
<text category="letter">ಖ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ತ</text>
|
||||
<text category="letter">ಥ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ಚ</text>
|
||||
<text category="letter">ಛ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ಠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ೆ</text>
|
||||
<text category="letter">ಎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ಂ</text>
|
||||
<text name="X" category="letter"></text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ಮ</text>
|
||||
<text category="letter">ಣ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ನ</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ವ</text>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ಲ</text>
|
||||
<text category="letter">ಳ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ಸ</text>
|
||||
<text category="letter">ಶ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ಷ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">ಾ</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ಯ</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ऒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">१</text>
|
||||
<text category="letter">ऍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">२</text>
|
||||
<text category="letter">ॅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">३</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">४</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">५</text>
|
||||
<text category="letter">ज्ञ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">६</text>
|
||||
<text category="letter">त्र</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">७</text>
|
||||
<text category="letter">क्ष</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">८</text>
|
||||
<text category="letter">श्र</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">९</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">०</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ः</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ृ</text>
|
||||
<text category="letter">ऋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ौ</text>
|
||||
<text category="letter">औ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ै</text>
|
||||
<text category="letter">ऐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ा</text>
|
||||
<text category="letter">आ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ी</text>
|
||||
<text category="letter">ई</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ू</text>
|
||||
<text category="letter">ऊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ॿ</text>
|
||||
<text category="letter">भ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ह</text>
|
||||
<text category="letter">ङ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ॻ</text>
|
||||
<text category="letter">घ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">द</text>
|
||||
<text category="letter">ध</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ॼ</text>
|
||||
<text category="letter">झ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ॾ</text>
|
||||
<text category="letter">ढ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">़</text>
|
||||
<text category="letter">ञ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ॉ</text>
|
||||
<text category="letter">ऑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ो</text>
|
||||
<text category="letter">ओ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">े</text>
|
||||
<text category="letter">ए</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">्</text>
|
||||
<text category="letter">अ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ि</text>
|
||||
<text category="letter">इ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<keysym keyval="103">g</keysym>
|
||||
<keysym keyval="71">G</keysym>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">प</text>
|
||||
<text category="letter">फ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">र</text>
|
||||
<text category="letter">ऱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">क</text>
|
||||
<text category="letter">ख</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">त</text>
|
||||
<text category="letter">थ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">च</text>
|
||||
<text category="letter">छ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ठ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ॆ</text>
|
||||
<text category="letter">ऎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ं</text>
|
||||
<text category="letter">ँ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">म</text>
|
||||
<text category="letter">ण</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">न</text>
|
||||
<text category="letter">ऩ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">व</text>
|
||||
<text category="letter">ऴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ल</text>
|
||||
<text category="letter">ळ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">स</text>
|
||||
<text category="letter">श</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ष</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">य</text>
|
||||
<text category="letter">य़</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ً</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">۱</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">۲</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">۳</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">۴</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">۵</text>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">۶</text>
|
||||
<text category="letter">^</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">۷</text>
|
||||
<text category="letter">&</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">۸</text>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">۹</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">۰</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ّ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">=</text>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ق</text>
|
||||
<text category="letter">ﷺ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">و</text>
|
||||
<text category="letter">ؤ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ع</text>
|
||||
<text category="letter">ئ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ر</text>
|
||||
<text category="letter">ڑ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ت</text>
|
||||
<text category="letter">ٹ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ے</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ء</text>
|
||||
<text category="letter">،</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ی</text>
|
||||
<text category="letter">ۆ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ہ</text>
|
||||
<text category="letter">ۃ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">پ</text>
|
||||
<text category="letter">إ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">]</text>
|
||||
<text category="letter">ٰ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">[</text>
|
||||
<text category="letter">ٰ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">؎</text>
|
||||
<text category="letter">أ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ا</text>
|
||||
<text category="letter">آ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">س</text>
|
||||
<text category="letter">ش</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">د</text>
|
||||
<text category="letter">ڈ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ف</text>
|
||||
<text category="letter">ُ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">گ</text>
|
||||
<text category="letter">غ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ھ</text>
|
||||
<text category="letter">ح</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ج</text>
|
||||
<text category="letter">ژ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ک</text>
|
||||
<text category="letter">خ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ل</text>
|
||||
<text category="letter">ؓ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">؛</text>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ز</text>
|
||||
<text category="letter">ذ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ص</text>
|
||||
<text category="letter">ض</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">چ</text>
|
||||
<text category="letter">ث</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ط</text>
|
||||
<text category="letter">ظ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ب</text>
|
||||
<text category="letter">أ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ن</text>
|
||||
<text category="letter">ں</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">م</text>
|
||||
<text category="letter">ٔ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">،</text>
|
||||
<text category="letter">ِ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">۔</text>
|
||||
<text category="letter">َ</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">/</text>
|
||||
<text category="letter">؟</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ऒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">१</text>
|
||||
<text category="letter">ऍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">२</text>
|
||||
<text category="letter">ॅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">३</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">४</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">५</text>
|
||||
<text category="letter">ज्ञ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">६</text>
|
||||
<text category="letter">त्र</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">७</text>
|
||||
<text category="letter">क्ष</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">८</text>
|
||||
<text category="letter">श्र</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">९</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">०</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ः</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ृ</text>
|
||||
<text category="letter">ऋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ौ</text>
|
||||
<text category="letter">औ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ै</text>
|
||||
<text category="letter">ऐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ा</text>
|
||||
<text category="letter">आ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ी</text>
|
||||
<text category="letter">ई</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ू</text>
|
||||
<text category="letter">ऊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ब</text>
|
||||
<text category="letter">भ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ह</text>
|
||||
<text category="letter">ङ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ग</text>
|
||||
<text category="letter">घ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">द</text>
|
||||
<text category="letter">ध</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ज</text>
|
||||
<text category="letter">झ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ड</text>
|
||||
<text category="letter">ढ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">़</text>
|
||||
<text category="letter">ञ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ॉ</text>
|
||||
<text category="letter">ऑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ो</text>
|
||||
<text category="letter">ओ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">े</text>
|
||||
<text category="letter">ए</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">्</text>
|
||||
<text category="letter">अ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ि</text>
|
||||
<text category="letter">इ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ु</text>
|
||||
<text category="letter">उ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">प</text>
|
||||
<text category="letter">फ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">र</text>
|
||||
<text category="letter">ऱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">क</text>
|
||||
<text category="letter">ख</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">त</text>
|
||||
<text category="letter">थ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">च</text>
|
||||
<text category="letter">छ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ठ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ॆ</text>
|
||||
<text category="letter">ऎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ं</text>
|
||||
<text category="letter">ँ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">म</text>
|
||||
<text category="letter">ण</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">न</text>
|
||||
<text category="letter">ऩ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">व</text>
|
||||
<text category="letter">ऴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ल</text>
|
||||
<text category="letter">ळ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">स</text>
|
||||
<text category="letter">श</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ष</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">य</text>
|
||||
<text category="letter">य़</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ഒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">൧</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">൨</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">൩</text>
|
||||
<text category="letter">്ര</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">൪</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">൫</text>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">൬</text>
|
||||
<text category="letter">^</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">൭</text>
|
||||
<text category="letter">ക്ഷ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">൮</text>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">൯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">൦</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ഃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ൃ</text>
|
||||
<text category="letter">ഋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ൌ</text>
|
||||
<text category="letter">ഔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ൈ</text>
|
||||
<text category="letter">ഐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ാ</text>
|
||||
<text category="letter">ആ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ീ</text>
|
||||
<text category="letter">ഈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ൂ</text>
|
||||
<text category="letter">ഊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ബ</text>
|
||||
<text category="letter">ഭ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ഹ</text>
|
||||
<text category="letter">ങ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ഗ</text>
|
||||
<text category="letter">ഘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ദ</text>
|
||||
<text category="letter">ധ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ജ</text>
|
||||
<text category="letter">ഝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ഡ</text>
|
||||
<text category="letter">ഢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter"></text>
|
||||
<text category="letter">ഞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter"></text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ോ</text>
|
||||
<text category="letter">ഓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">േ</text>
|
||||
<text category="letter">ഏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">്</text>
|
||||
<text category="letter">അ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ി</text>
|
||||
<text category="letter">ഇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ു</text>
|
||||
<text category="letter">ഉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">പ</text>
|
||||
<text category="letter">ഫ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ര</text>
|
||||
<text category="letter">റ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ക</text>
|
||||
<text category="letter">ഖ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ത</text>
|
||||
<text category="letter">ഥ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ച</text>
|
||||
<text category="letter">ഛ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ഠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">െ</text>
|
||||
<text category="letter">എ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ം</text>
|
||||
<text category="letter">X</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">മ</text>
|
||||
<text category="letter">ണ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ന</text>
|
||||
<text category="letter">V</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">വ</text>
|
||||
<text category="letter">ഴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ല</text>
|
||||
<text category="letter">ള</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">സ</text>
|
||||
<text category="letter">ശ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ഷ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">യ</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ऒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">१</text>
|
||||
<text category="letter">ऍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">२</text>
|
||||
<text category="letter">ॅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">३</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">४</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">५</text>
|
||||
<text category="letter">ज्ञ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">६</text>
|
||||
<text category="letter">त्र</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">७</text>
|
||||
<text category="letter">क्ष</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">८</text>
|
||||
<text category="letter">श्र</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">९</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">०</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ः</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ृ</text>
|
||||
<text category="letter">ऋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ौ</text>
|
||||
<text category="letter">औ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ै</text>
|
||||
<text category="letter">ऐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ा</text>
|
||||
<text category="letter">आ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ी</text>
|
||||
<text category="letter">ई</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ू</text>
|
||||
<text category="letter">ऊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ब</text>
|
||||
<text category="letter">भ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ह</text>
|
||||
<text category="letter">ङ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ग</text>
|
||||
<text category="letter">घ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">द</text>
|
||||
<text category="letter">ध</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ज</text>
|
||||
<text category="letter">झ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ड</text>
|
||||
<text category="letter">ढ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">़</text>
|
||||
<text category="letter">ञ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ॉ</text>
|
||||
<text category="letter">ऑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ो</text>
|
||||
<text category="letter">ओ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">े</text>
|
||||
<text category="letter">ए</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">्</text>
|
||||
<text category="letter">अ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ि</text>
|
||||
<text category="letter">इ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ु</text>
|
||||
<text category="letter">उ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">प</text>
|
||||
<text category="letter">फ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">र</text>
|
||||
<text category="letter">ऱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">क</text>
|
||||
<text category="letter">ख</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">त</text>
|
||||
<text category="letter">थ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">च</text>
|
||||
<text category="letter">छ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ठ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ॆ</text>
|
||||
<text category="letter">ऎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ं</text>
|
||||
<text category="letter">ँ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">म</text>
|
||||
<text category="letter">ण</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">न</text>
|
||||
<text category="letter">ऩ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">व</text>
|
||||
<text category="letter">ऴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ल</text>
|
||||
<text category="letter">ळ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">स</text>
|
||||
<text category="letter">श</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ष</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">य</text>
|
||||
<text category="letter">य़</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">၁</text>
|
||||
<text category="letter">ဍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">၂</text>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">၃</text>
|
||||
<text category="letter">ဋ</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">၄</text>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">၅</text>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">၆</text>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">၇</text>
|
||||
<text category="letter">ရ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">၈</text>
|
||||
<text category="letter">ဂ</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">၉</text>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">၀</text>
|
||||
<text category="letter">ဝ</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ဆ</text>
|
||||
<text category="letter">၍</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">တ</text>
|
||||
<keysym keyval="87">W</keysym>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">န</text>
|
||||
<keysym keyval="69">E</keysym>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">မ</text>
|
||||
<keysym keyval="82">R</keysym>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">အ</text>
|
||||
<keysym keyval="84">T</keysym>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ပ</text>
|
||||
<keysym keyval="89">Y</keysym>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">က</text>
|
||||
<keysym keyval="85">U</keysym>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">င</text>
|
||||
<keysym keyval="73">I</keysym>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">သ</text>
|
||||
<text category="letter">ဥ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">စ</text>
|
||||
<text category="letter">ဏ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ဟ</text>
|
||||
<text category="letter">ဎ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">ဉ</text>
|
||||
<text category="letter">ဧ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">၏</text>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ေ</text>
|
||||
<text category="letter">ဗ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">္</text>
|
||||
<text category="letter">္</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">ိ</text>
|
||||
<text category="letter">ီ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">္</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter"></text>
|
||||
<text category="letter">္</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">့</text>
|
||||
<text category="letter">ံ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">္</text>
|
||||
<text category="letter">ဲ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ု</text>
|
||||
<keysym keyval="75">K</keysym>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ူ</text>
|
||||
<keysym keyval="76">L</keysym>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">း</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ဓ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ဖ</text>
|
||||
<text category="letter">ဇ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ထ</text>
|
||||
<text category="letter">ဌ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ခ</text>
|
||||
<text category="letter">ဃ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">လ</text>
|
||||
<text category="letter">ဠ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ဘ</text>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ည</text>
|
||||
<keysym keyval="78">N</keysym>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ာ</text>
|
||||
<keysym keyval="77">M</keysym>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">ယ</text>
|
||||
<text category="letter">၍</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ဈ</text>
|
||||
<text category="letter">ဤ</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">။</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,132 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
||||
<symbols version="0.90">
|
||||
<symbol label="*">asterisk</symbol>
|
||||
<symbol label="+/=">show_symbols</symbol>
|
||||
<symbol label="τ">Greek_tau</symbol>
|
||||
<symbol label="å">aring</symbol>
|
||||
<symbol label="ø">oslash</symbol>
|
||||
<symbol label="æ">ae</symbol>
|
||||
<symbol label="Å">Aring</symbol>
|
||||
<symbol label="Ø">Oslash</symbol>
|
||||
<symbol label="Æ">AE</symbol>
|
||||
<symbol label="q">q</symbol>
|
||||
<symbol label="Q">Q</symbol>
|
||||
<symbol label="1">1</symbol>
|
||||
<symbol label="~">asciitilde</symbol>
|
||||
<symbol label="w">w</symbol>
|
||||
<symbol label="W">W</symbol>
|
||||
<symbol label="2">2</symbol>
|
||||
<symbol label="`">quoteleft</symbol>
|
||||
<symbol label="e">e</symbol>
|
||||
<symbol label="E">E</symbol>
|
||||
<symbol label="3">3</symbol>
|
||||
<symbol label="|">bar</symbol>
|
||||
<symbol label="r">r</symbol>
|
||||
<symbol label="R">R</symbol>
|
||||
<symbol label="4">4</symbol>
|
||||
<symbol label="·">U00B7</symbol>
|
||||
<symbol label="t">t</symbol>
|
||||
<symbol label="T">T</symbol>
|
||||
<symbol label="5">5</symbol>
|
||||
<symbol label="√">squareroot</symbol>
|
||||
<symbol label="y">y</symbol>
|
||||
<symbol label="Y">Y</symbol>
|
||||
<symbol label="6">6</symbol>
|
||||
<symbol label="π">Greek_pi</symbol>
|
||||
<symbol label="u">u</symbol>
|
||||
<symbol label="U">U</symbol>
|
||||
<symbol label="7">7</symbol>
|
||||
<symbol label="÷">division</symbol>
|
||||
<symbol label="i">i</symbol>
|
||||
<symbol label="I">I</symbol>
|
||||
<symbol label="8">8</symbol>
|
||||
<symbol label="×">multiply</symbol>
|
||||
<symbol label="o">o</symbol>
|
||||
<symbol label="O">O</symbol>
|
||||
<symbol label="9">9</symbol>
|
||||
<symbol label="¶">paragraph</symbol>
|
||||
<symbol label="p">p</symbol>
|
||||
<symbol label="P">P</symbol>
|
||||
<symbol label="0">0</symbol>
|
||||
<symbol label="△">U25B3</symbol>
|
||||
<symbol keyval="229" label="å">aring</symbol>
|
||||
<symbol keyval="197" label="Å">Aring</symbol>
|
||||
<symbol label="a">a</symbol>
|
||||
<symbol label="A">A</symbol>
|
||||
<symbol label="@">at</symbol>
|
||||
<symbol label="©">copyright</symbol>
|
||||
<symbol label="s">s</symbol>
|
||||
<symbol label="S">S</symbol>
|
||||
<symbol label="#">numbersign</symbol>
|
||||
<symbol label="®">U00AE</symbol>
|
||||
<symbol label="d">d</symbol>
|
||||
<symbol label="D">D</symbol>
|
||||
<symbol label="$">dollar</symbol>
|
||||
<symbol label="£">U00A3</symbol>
|
||||
<symbol label="f">f</symbol>
|
||||
<symbol label="F">F</symbol>
|
||||
<symbol label="%">percent</symbol>
|
||||
<symbol label="€">EuroSign</symbol>
|
||||
<symbol label="g">g</symbol>
|
||||
<symbol label="G">G</symbol>
|
||||
<symbol label="&">ampersand</symbol>
|
||||
<symbol label="¥">U00A5</symbol>
|
||||
<symbol label="h">h</symbol>
|
||||
<symbol label="H">H</symbol>
|
||||
<symbol label="-">minus</symbol>
|
||||
<symbol label="^">asciicircum</symbol>
|
||||
<symbol label="j">j</symbol>
|
||||
<symbol label="J">J</symbol>
|
||||
<symbol label="_">underscore</symbol>
|
||||
<symbol label="°">degree</symbol>
|
||||
<symbol label="k">k</symbol>
|
||||
<symbol label="K">K</symbol>
|
||||
<symbol label="+">plus</symbol>
|
||||
<symbol label="=">equal</symbol>
|
||||
<symbol label="l">l</symbol>
|
||||
<symbol label="L">L</symbol>
|
||||
<symbol label="(">parenleft</symbol>
|
||||
<symbol label="{">braceleft</symbol>
|
||||
<symbol keyval="248" label="ø">oslash</symbol>
|
||||
<symbol keyval="216" label="Ø">Oslash</symbol>
|
||||
<symbol label=")">parenright</symbol>
|
||||
<symbol label="}">braceright</symbol>
|
||||
<symbol keyval="230" label="æ">ae</symbol>
|
||||
<symbol keyval="198" label="Æ">AE</symbol>
|
||||
<symbol keyval="65293" icon="key-enter">Return</symbol>
|
||||
<symbol keyval="65505" icon="key-shift">Shift_L</symbol>
|
||||
<symbol label="z">z</symbol>
|
||||
<symbol label="Z">Z</symbol>
|
||||
<symbol label=",">comma</symbol>
|
||||
<symbol label="\">backslash</symbol>
|
||||
<symbol label="x">x</symbol>
|
||||
<symbol label="X">X</symbol>
|
||||
<symbol label=""">quotedbl</symbol>
|
||||
<symbol label="/">slash</symbol>
|
||||
<symbol label="c">c</symbol>
|
||||
<symbol label="C">C</symbol>
|
||||
<symbol label="'">quoteright</symbol>
|
||||
<symbol label="<">less</symbol>
|
||||
<symbol label="v">v</symbol>
|
||||
<symbol label="V">V</symbol>
|
||||
<symbol label=":">colon</symbol>
|
||||
<symbol label=">">greater</symbol>
|
||||
<symbol label="b">b</symbol>
|
||||
<symbol label="B">B</symbol>
|
||||
<symbol label=";">semicolon</symbol>
|
||||
<symbol label="=">equal</symbol>
|
||||
<symbol label="n">n</symbol>
|
||||
<symbol label="N">N</symbol>
|
||||
<symbol label="!">exclam</symbol>
|
||||
<symbol label="[">bracketleft</symbol>
|
||||
<symbol label="m">m</symbol>
|
||||
<symbol label="M">M</symbol>
|
||||
<symbol label="?">question</symbol>
|
||||
<symbol label="]">bracketright</symbol>
|
||||
<symbol label=".">period</symbol>
|
||||
<symbol label="123">show_numbers</symbol>
|
||||
<symbol label="ABC">show_letters</symbol>
|
||||
<symbol label="☺" icon="keyboard-mode-symbolic" tooltip="Setup">preferences</symbol>
|
||||
<symbol label=" ">space</symbol>
|
||||
<symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">୰</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">୧</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">୨</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">୩</text>
|
||||
<text category="letter">୍ର</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">୪</text>
|
||||
<text category="letter">ର୍</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">୫</text>
|
||||
<text category="letter">ଜ୍ଞ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">୬</text>
|
||||
<text category="letter">ତ୍ର</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">୭</text>
|
||||
<text category="letter">କ୍ଷ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">୮</text>
|
||||
<text category="letter">ଶ୍ର</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">୯</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">୦</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ଃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ୃ</text>
|
||||
<text category="letter">ଋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ୌ</text>
|
||||
<text category="letter">ଔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ୈ</text>
|
||||
<text category="letter">ଐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ା</text>
|
||||
<text category="letter">ଆ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ୀ</text>
|
||||
<text category="letter">ଈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ୂ</text>
|
||||
<text category="letter">ଊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ବ</text>
|
||||
<text category="letter">ଭ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ହ</text>
|
||||
<text category="letter">ଙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ଗ</text>
|
||||
<text category="letter">ଘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ଦ</text>
|
||||
<text category="letter">ଧ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ଜ</text>
|
||||
<text category="letter">ଝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ଡ</text>
|
||||
<text category="letter">ଢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">଼</text>
|
||||
<text category="letter">ଞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ୋ</text>
|
||||
<text category="letter">ଓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">େ</text>
|
||||
<text category="letter">ଏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">୍</text>
|
||||
<text category="letter">ଅ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ି</text>
|
||||
<text category="letter">ଇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ୁ</text>
|
||||
<text category="letter">ଉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ପ</text>
|
||||
<text category="letter">ଫ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ର</text>
|
||||
<text category="letter">J</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">କ</text>
|
||||
<text category="letter">ଖ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ତ</text>
|
||||
<text category="letter">ଥ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ଚ</text>
|
||||
<text category="letter">ଛ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ଠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">z</text>
|
||||
<text category="letter">Z</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ଂ</text>
|
||||
<text category="letter">ଁ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ମ</text>
|
||||
<text category="letter">ଣ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ନ</text>
|
||||
<text category="letter">V</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ୱ</text>
|
||||
<text category="letter">ଵ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ଲ</text>
|
||||
<text category="letter">ଳ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ସ</text>
|
||||
<text category="letter">ଶ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ଷ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ୟ</text>
|
||||
<text category="letter">ଯ</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">੧</text>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">੨</text>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">੩</text>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">੪</text>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">੫</text>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">੬</text>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">੭</text>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">੮</text>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">੯</text>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">੦</text>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">_</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">=</text>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ੌ</text>
|
||||
<text category="letter">ਔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ੈ</text>
|
||||
<text category="letter">ਐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ਾ</text>
|
||||
<text category="letter">ਆ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ੀ</text>
|
||||
<text category="letter">ਈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ੂ</text>
|
||||
<text category="letter">ਊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ਬ</text>
|
||||
<text category="letter">ਭ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ਹ</text>
|
||||
<text category="letter">ਙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ਗ</text>
|
||||
<text category="letter">ਘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ਦ</text>
|
||||
<text category="letter">ਧ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ਜ</text>
|
||||
<text category="letter">ਝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ਡ</text>
|
||||
<text category="letter">ਢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">਼</text>
|
||||
<text category="letter">ਞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ੋ</text>
|
||||
<text category="letter">ਓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ੇ</text>
|
||||
<text category="letter">ਏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">੍</text>
|
||||
<text category="letter">ਅ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ਿ</text>
|
||||
<text category="letter">ਇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ੁ</text>
|
||||
<text category="letter">ਉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ਪ</text>
|
||||
<text category="letter">ਫ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ਰ</text>
|
||||
<text category="letter">ੜ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ਕ</text>
|
||||
<text category="letter">ਖ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ਤ</text>
|
||||
<text category="letter">ਥ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ਚ</text>
|
||||
<text category="letter">ਛ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ਠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ੰ</text>
|
||||
<text category="letter">ੱ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ਜ਼</text>
|
||||
<text category="letter">ਫ਼</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ਮ</text>
|
||||
<text category="letter">ਣ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ਨ</text>
|
||||
<text category="letter">ਂ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ਵ</text>
|
||||
<text category="letter">ਞ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ਲ</text>
|
||||
<text category="letter">ਲ਼</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ਸ</text>
|
||||
<text category="letter">ਸ਼</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ੳ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">ੲ</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ਯ</text>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">Ё</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<text category="letter">№</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<text category="letter">;</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<text category="letter">_</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">й</text>
|
||||
<text category="letter">Й</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ц</text>
|
||||
<text category="letter">Ц</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">у</text>
|
||||
<text category="letter">У</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">к</text>
|
||||
<text category="letter">К</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">е</text>
|
||||
<text category="letter">Е</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">н</text>
|
||||
<text category="letter">Н</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">г</text>
|
||||
<text category="letter">Г</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ш</text>
|
||||
<text category="letter">Ш</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">щ</text>
|
||||
<text category="letter">Щ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">з</text>
|
||||
<text category="letter">З</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">х</text>
|
||||
<text category="letter">Х</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">ъ</text>
|
||||
<text category="letter">Ъ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ф</text>
|
||||
<text category="letter">Ф</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ы</text>
|
||||
<text category="letter">Ы</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">в</text>
|
||||
<text category="letter">В</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">а</text>
|
||||
<text category="letter">А</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">п</text>
|
||||
<text category="letter">П</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">р</text>
|
||||
<text category="letter">Р</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">о</text>
|
||||
<text category="letter">О</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">л</text>
|
||||
<text category="letter">Л</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">д</text>
|
||||
<text category="letter">Д</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ж</text>
|
||||
<text category="letter">Ж</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">Э</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">я</text>
|
||||
<text category="letter">Я</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ч</text>
|
||||
<text category="letter">Ч</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">с</text>
|
||||
<text category="letter">С</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">м</text>
|
||||
<text category="letter">М</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">и</text>
|
||||
<text category="letter">И</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">т</text>
|
||||
<text category="letter">Т</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ь</text>
|
||||
<text category="letter">Ь</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">б</text>
|
||||
<text category="letter">Б</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ю</text>
|
||||
<text category="letter">Ю</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">,</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ऒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">१</text>
|
||||
<text category="letter">ऍ</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">२</text>
|
||||
<text category="letter">ॅ</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">३</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">४</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">५</text>
|
||||
<text category="letter">ज्ञ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">६</text>
|
||||
<text category="letter">त्र</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">७</text>
|
||||
<text category="letter">क्ष</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">८</text>
|
||||
<text category="letter">श्र</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">९</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">०</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ः</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ृ</text>
|
||||
<text category="letter">ऋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ौ</text>
|
||||
<text category="letter">औ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ै</text>
|
||||
<text category="letter">ऐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ा</text>
|
||||
<text category="letter">आ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ी</text>
|
||||
<text category="letter">ई</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ू</text>
|
||||
<text category="letter">ऊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ॿ</text>
|
||||
<text category="letter">भ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ह</text>
|
||||
<text category="letter">ङ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ॻ</text>
|
||||
<text category="letter">घ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">द</text>
|
||||
<text category="letter">ध</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ॼ</text>
|
||||
<text category="letter">झ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">ॾ</text>
|
||||
<text category="letter">ढ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">़</text>
|
||||
<text category="letter">ञ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ॉ</text>
|
||||
<text category="letter">ऑ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ो</text>
|
||||
<text category="letter">ओ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">े</text>
|
||||
<text category="letter">ए</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">्</text>
|
||||
<text category="letter">अ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ि</text>
|
||||
<text category="letter">इ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ु</text>
|
||||
<text category="letter">उ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">प</text>
|
||||
<text category="letter">फ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">र</text>
|
||||
<text category="letter">ऱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">क</text>
|
||||
<text category="letter">ख</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">त</text>
|
||||
<text category="letter">थ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">च</text>
|
||||
<text category="letter">छ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ठ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ॆ</text>
|
||||
<text category="letter">ऎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ं</text>
|
||||
<text category="letter">ँ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">म</text>
|
||||
<text category="letter">ण</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">न</text>
|
||||
<text category="letter">ऩ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">व</text>
|
||||
<text category="letter">ऴ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ल</text>
|
||||
<text category="letter">ळ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">स</text>
|
||||
<text category="letter">श</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ष</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">।</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">य</text>
|
||||
<text category="letter">य़</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,22 +0,0 @@
|
||||
<?xml version='1.0' encoding='ASCII' standalone='yes'?>
|
||||
<symbols version="0.90">
|
||||
<symbol label="1">1</symbol>
|
||||
<symbol label="2">2</symbol>
|
||||
<symbol label="3">3</symbol>
|
||||
<symbol label="(">parenleft</symbol>
|
||||
<symbol label=")">parenright</symbol>
|
||||
<symbol label="4">4</symbol>
|
||||
<symbol label="5">5</symbol>
|
||||
<symbol label="6">6</symbol>
|
||||
<symbol label="#">numbersign</symbol>
|
||||
<symbol label="*">asterisk</symbol>
|
||||
<symbol label="7">7</symbol>
|
||||
<symbol label="8">8</symbol>
|
||||
<symbol label="9">9</symbol>
|
||||
<symbol label="+">plus</symbol>
|
||||
<symbol label="-">minus</symbol>
|
||||
<symbol label="0">0</symbol>
|
||||
<symbol keyval="65293" icon="key-enter">Return</symbol>
|
||||
<symbol label=" ">space</symbol>
|
||||
<symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ஒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">1</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">2</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">3</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">4</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">5</text>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">6</text>
|
||||
<text category="letter">^</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">7</text>
|
||||
<text category="letter">க்ஷ</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">8</text>
|
||||
<text category="letter">ஷ்ர</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">9</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">0</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">ஃ</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">=</text>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ௌ</text>
|
||||
<text category="letter">ஔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ை</text>
|
||||
<text category="letter">ஐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ா</text>
|
||||
<text category="letter">ஆ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ீ</text>
|
||||
<text category="letter">ஈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ூ</text>
|
||||
<text category="letter">ஊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">y</text>
|
||||
<text category="letter">Y</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ஹ</text>
|
||||
<text category="letter">ங</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">i</text>
|
||||
<text category="letter">I</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">o</text>
|
||||
<text category="letter">O</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ஜ</text>
|
||||
<text category="letter">P</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">[</text>
|
||||
<text category="letter">{</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">]</text>
|
||||
<text category="letter">ஞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ோ</text>
|
||||
<text category="letter">ஓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ே</text>
|
||||
<text category="letter">ஏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">்</text>
|
||||
<text category="letter">அ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ி</text>
|
||||
<text category="letter">இ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ு</text>
|
||||
<text category="letter">உ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ப</text>
|
||||
<text category="letter">H</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ர</text>
|
||||
<text category="letter">ற</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">க</text>
|
||||
<text category="letter">K</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">த</text>
|
||||
<text category="letter">L</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ச</text>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ெ</text>
|
||||
<text category="letter">எ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">x</text>
|
||||
<text category="letter">X</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ம</text>
|
||||
<text category="letter">ண</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ந</text>
|
||||
<text category="letter">ன</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">வ</text>
|
||||
<text category="letter">ழ</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ல</text>
|
||||
<text category="letter">ள</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ஸ</text>
|
||||
<text category="letter">M</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ஷ</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ய</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,194 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">ఒ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">౧</text>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">౨</text>
|
||||
<text category="letter">@</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">౩</text>
|
||||
<text category="letter">#</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">౪</text>
|
||||
<text category="letter">$</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">౫</text>
|
||||
<text category="letter">జ్ఞ</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">౬</text>
|
||||
<text category="letter">త్ర</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">౭</text>
|
||||
<text category="letter">క్ష</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">౮</text>
|
||||
<text category="letter">శ్ర</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">౯</text>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">౦</text>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">-</text>
|
||||
<text category="letter">_</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<text category="letter">ృ</text>
|
||||
<text category="letter">ఋ</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ౌ</text>
|
||||
<text category="letter">ఔ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ై</text>
|
||||
<text category="letter">ఐ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ా</text>
|
||||
<text category="letter">ఆ</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ీ</text>
|
||||
<text category="letter">ఈ</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ూ</text>
|
||||
<text category="letter">ఊ</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">బ</text>
|
||||
<text category="letter">భ</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">హ</text>
|
||||
<text category="letter">ఙ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">గ</text>
|
||||
<text category="letter">ఘ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ద</text>
|
||||
<text category="letter">ధ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">జ</text>
|
||||
<text category="letter">ఝ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">డ</text>
|
||||
<text category="letter">ఢ</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter"></text>
|
||||
<text category="letter">ఞ</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">ౄ</text>
|
||||
<text category="letter">ౠ</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ో</text>
|
||||
<text category="letter">ఓ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ే</text>
|
||||
<text category="letter">ఏ</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">్</text>
|
||||
<text category="letter">అ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ి</text>
|
||||
<text category="letter">ఇ</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ు</text>
|
||||
<text category="letter">ఉ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ప</text>
|
||||
<text category="letter">ఫ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ర</text>
|
||||
<text category="letter">ఱ</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">క</text>
|
||||
<text category="letter">ఖ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">త</text>
|
||||
<text category="letter">థ</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">చ</text>
|
||||
<text category="letter">ఛ</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">ఠ</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ె</text>
|
||||
<text category="letter">ఎ</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ం</text>
|
||||
<text category="letter">ఁ</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">మ</text>
|
||||
<text category="letter">ణ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">న</text>
|
||||
<text category="letter">ః</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">వ</text>
|
||||
<text category="letter"></text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ల</text>
|
||||
<text category="letter">ళ</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">స</text>
|
||||
<text category="letter">శ</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">,</text>
|
||||
<text category="letter">ష</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">></text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">య</text>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
</symbols>
|
||||
|
||||
@ -1,192 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="3557">Thai_lakkhangyao</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="47">slash</keysym>
|
||||
<keysym keyval="3569">Thai_leknung</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="3570">Thai_leksong</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="3520">Thai_phosamphao</keysym>
|
||||
<keysym keyval="3571">Thai_leksam</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="3510">Thai_thothung</keysym>
|
||||
<keysym keyval="3572">Thai_leksi</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="3544">Thai_sarau</keysym>
|
||||
<keysym keyval="3545">Thai_sarauu</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="3542">Thai_saraue</keysym>
|
||||
<keysym keyval="3551">Thai_baht</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="3492">Thai_khokhwai</keysym>
|
||||
<keysym keyval="3573">Thai_lekha</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="3509">Thai_totao</keysym>
|
||||
<keysym keyval="3574">Thai_lekhok</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="3496">Thai_chochan</keysym>
|
||||
<keysym keyval="3575">Thai_lekchet</keysym>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="3490">Thai_khokhai</keysym>
|
||||
<keysym keyval="3576">Thai_lekpaet</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="3498">Thai_chochang</keysym>
|
||||
<keysym keyval="3577">Thai_lekkao</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<keysym keyval="3558">Thai_maiyamok</keysym>
|
||||
<keysym keyval="3568">Thai_leksun</keysym>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<keysym keyval="3556">Thai_saraaimaimalai</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<keysym keyval="3539">Thai_saraam</keysym>
|
||||
<keysym keyval="3502">Thai_dochada</keysym>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<keysym keyval="3518">Thai_phophan</keysym>
|
||||
<keysym keyval="3505">Thai_thonangmontho</keysym>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<keysym keyval="3536">Thai_saraa</keysym>
|
||||
<keysym keyval="3512">Thai_thothong</keysym>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<keysym keyval="3537">Thai_maihanakat</keysym>
|
||||
<keysym keyval="3565">Thai_nikhahit</keysym>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<keysym keyval="3541">Thai_saraii</keysym>
|
||||
<keysym keyval="3562">Thai_maitri</keysym>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<keysym keyval="3523">Thai_rorua</keysym>
|
||||
<keysym keyval="3507">Thai_nonen</keysym>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<keysym keyval="3513">Thai_nonu</keysym>
|
||||
<keysym keyval="3535">Thai_paiyannoi</keysym>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<keysym keyval="3522">Thai_yoyak</keysym>
|
||||
<keysym keyval="3501">Thai_yoying</keysym>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<keysym keyval="3514">Thai_bobaimai</keysym>
|
||||
<keysym keyval="3504">Thai_thothan</keysym>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<keysym keyval="3525">Thai_loling</keysym>
|
||||
<keysym keyval="44">comma</keysym>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="3491">Thai_khokhuat</keysym>
|
||||
<keysym keyval="3493">Thai_khokhon</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<keysym keyval="3519">Thai_fofan</keysym>
|
||||
<keysym keyval="3524">Thai_ru</keysym>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<keysym keyval="3531">Thai_hohip</keysym>
|
||||
<keysym keyval="3494">Thai_khorakhang</keysym>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<keysym keyval="3489">Thai_kokai</keysym>
|
||||
<keysym keyval="3503">Thai_topatak</keysym>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<keysym keyval="3508">Thai_dodek</keysym>
|
||||
<keysym keyval="3554">Thai_sarao</keysym>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<keysym keyval="3552">Thai_sarae</keysym>
|
||||
<keysym keyval="3500">Thai_chochoe</keysym>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<keysym keyval="3561">Thai_maitho</keysym>
|
||||
<keysym keyval="3559">Thai_maitaikhu</keysym>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<keysym keyval="3560">Thai_maiek</keysym>
|
||||
<keysym keyval="3563">Thai_maichattawa</keysym>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<keysym keyval="3538">Thai_saraaa</keysym>
|
||||
<keysym keyval="3529">Thai_sorusi</keysym>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<keysym keyval="3530">Thai_sosua</keysym>
|
||||
<keysym keyval="3528">Thai_sosala</keysym>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<keysym keyval="3527">Thai_wowaen</keysym>
|
||||
<keysym keyval="3499">Thai_soso</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="3495">Thai_ngongu</keysym>
|
||||
<keysym keyval="46">period</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<keysym keyval="3516">Thai_phophung</keysym>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<keysym keyval="3515">Thai_popla</keysym>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<keysym keyval="3553">Thai_saraae</keysym>
|
||||
<keysym keyval="3497">Thai_choching</keysym>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<keysym keyval="3533">Thai_oang</keysym>
|
||||
<keysym keyval="3534">Thai_honokhuk</keysym>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<keysym keyval="3540">Thai_sarai</keysym>
|
||||
<keysym keyval="3546">Thai_phinthu</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<keysym keyval="3543">Thai_sarauee</keysym>
|
||||
<keysym keyval="3564">Thai_thanthakhat</keysym>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<keysym keyval="3511">Thai_thothahan</keysym>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<keysym keyval="3521">Thai_moma</keysym>
|
||||
<keysym keyval="3506">Thai_thophuthao</keysym>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<keysym keyval="3555">Thai_saraaimaimuan</keysym>
|
||||
<keysym keyval="3532">Thai_lochula</keysym>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<keysym keyval="3517">Thai_fofa</keysym>
|
||||
<keysym keyval="3526">Thai_lu</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<text category="letter">Ґ</text>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<text category="letter">!</text>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<text category="letter">"</text>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<text category="letter">№</text>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<text category="letter">;</text>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<text category="letter">%</text>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<text category="letter">:</text>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<text category="letter">?</text>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<text category="letter">*</text>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<text category="letter">(</text>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<text category="letter">)</text>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<text category="letter">_</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<text category="letter">+</text>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">й</text>
|
||||
<text category="letter">Й</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ц</text>
|
||||
<text category="letter">Ц</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">у</text>
|
||||
<text category="letter">У</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">к</text>
|
||||
<text category="letter">К</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">е</text>
|
||||
<text category="letter">Е</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">н</text>
|
||||
<text category="letter">Н</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">г</text>
|
||||
<text category="letter">Г</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ш</text>
|
||||
<text category="letter">Ш</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">щ</text>
|
||||
<text category="letter">Щ</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">з</text>
|
||||
<text category="letter">З</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<text category="letter">х</text>
|
||||
<text category="letter">Х</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<text category="letter">ї</text>
|
||||
<text category="letter">Ї</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<text category="letter">\</text>
|
||||
<text category="letter">|</text>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ф</text>
|
||||
<text category="letter">Ф</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">і</text>
|
||||
<text category="letter">І</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">в</text>
|
||||
<text category="letter">В</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">а</text>
|
||||
<text category="letter">А</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">п</text>
|
||||
<text category="letter">П</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">р</text>
|
||||
<text category="letter">Р</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">о</text>
|
||||
<text category="letter">О</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">л</text>
|
||||
<text category="letter">Л</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">д</text>
|
||||
<text category="letter">Д</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ж</text>
|
||||
<text category="letter">Ж</text>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<text category="letter">Є</text>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">я</text>
|
||||
<text category="letter">Я</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ч</text>
|
||||
<text category="letter">Ч</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">с</text>
|
||||
<text category="letter">С</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">м</text>
|
||||
<text category="letter">М</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">и</text>
|
||||
<text category="letter">И</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">т</text>
|
||||
<text category="letter">Т</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ь</text>
|
||||
<text category="letter">Ь</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">б</text>
|
||||
<text category="letter">Б</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ю</text>
|
||||
<text category="letter">Ю</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">.</text>
|
||||
<text category="letter">,</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<text category="letter">—</text>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">چ</text>
|
||||
<text category="letter">چ</text>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ۋ</text>
|
||||
<text category="letter">ۋ</text>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ې</text>
|
||||
<text category="letter">ې</text>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ر</text>
|
||||
<text category="letter">ر</text>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ت</text>
|
||||
<text category="letter">ت</text>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ي</text>
|
||||
<text category="letter">ي</text>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ۇ</text>
|
||||
<text category="letter">ۇ</text>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ڭ</text>
|
||||
<text category="letter">ڭ</text>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">و</text>
|
||||
<text category="letter">و</text>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">پ</text>
|
||||
<text category="letter">پ</text>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<keysym keyval="91">bracketleft</keysym>
|
||||
<text category="letter">«</text>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<keysym keyval="93">bracketright</keysym>
|
||||
<text category="letter">»</text>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ھ</text>
|
||||
<text category="letter">ھ</text>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">س</text>
|
||||
<text category="letter">س</text>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">د</text>
|
||||
<text category="letter">ژ</text>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ا</text>
|
||||
<text category="letter">ف</text>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ە</text>
|
||||
<text category="letter">گ</text>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ى</text>
|
||||
<text category="letter">خ</text>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ق</text>
|
||||
<text category="letter">ج</text>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ك</text>
|
||||
<text category="letter">ۆ</text>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ل</text>
|
||||
<text category="letter">ل</text>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">؛</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ز</text>
|
||||
<text category="letter">ز</text>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ش</text>
|
||||
<text category="letter">ش</text>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">غ</text>
|
||||
<text category="letter">غ</text>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ۈ</text>
|
||||
<text category="letter">ۈ</text>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ب</text>
|
||||
<text category="letter">ب</text>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ن</text>
|
||||
<text category="letter">ن</text>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">م</text>
|
||||
<text category="letter">م</text>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">،</text>
|
||||
<text category="letter">‹</text>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<keysym keyval="46">period</keysym>
|
||||
<text category="letter">›</text>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ئ</text>
|
||||
<text category="letter">؟</text>
|
||||
</key>
|
||||
</symbols>
|
||||
@ -1,118 +0,0 @@
|
||||
<?xml version='1.0' encoding='ASCII' standalone='yes'?>
|
||||
<symbols version="0.90">
|
||||
<symbol label="*">asterisk</symbol>
|
||||
<symbol label="+/=">show_symbols</symbol>
|
||||
<symbol label="q">q</symbol>
|
||||
<symbol label="Q">Q</symbol>
|
||||
<symbol label="1">1</symbol>
|
||||
<symbol label="~">asciitilde</symbol>
|
||||
<symbol label="w">w</symbol>
|
||||
<symbol label="W">W</symbol>
|
||||
<symbol label="2">2</symbol>
|
||||
<symbol label="`">quoteleft</symbol>
|
||||
<symbol label="e">e</symbol>
|
||||
<symbol label="E">E</symbol>
|
||||
<symbol label="3">3</symbol>
|
||||
<symbol label="|">bar</symbol>
|
||||
<symbol label="r">r</symbol>
|
||||
<symbol label="R">R</symbol>
|
||||
<symbol label="4">4</symbol>
|
||||
<symbol label="·">U00B7</symbol>
|
||||
<symbol label="t">t</symbol>
|
||||
<symbol label="T">T</symbol>
|
||||
<symbol label="5">5</symbol>
|
||||
<symbol label="√">squareroot</symbol>
|
||||
<symbol label="y">y</symbol>
|
||||
<symbol label="Y">Y</symbol>
|
||||
<symbol label="6">6</symbol>
|
||||
<symbol label="π">Greek_pi</symbol>
|
||||
<symbol label="u">u</symbol>
|
||||
<symbol label="U">U</symbol>
|
||||
<symbol label="7">7</symbol>
|
||||
<symbol label="÷">division</symbol>
|
||||
<symbol label="i">i</symbol>
|
||||
<symbol label="I">I</symbol>
|
||||
<symbol label="8">8</symbol>
|
||||
<symbol label="×">multiply</symbol>
|
||||
<symbol label="o">o</symbol>
|
||||
<symbol label="O">O</symbol>
|
||||
<symbol label="9">9</symbol>
|
||||
<symbol label="¶">paragraph</symbol>
|
||||
<symbol label="p">p</symbol>
|
||||
<symbol label="P">P</symbol>
|
||||
<symbol label="0">0</symbol>
|
||||
<symbol label="τ">Greek_tau</symbol>
|
||||
<symbol label="a">a</symbol>
|
||||
<symbol label="A">A</symbol>
|
||||
<symbol label="@">at</symbol>
|
||||
<symbol label="©">copyright</symbol>
|
||||
<symbol label="s">s</symbol>
|
||||
<symbol label="S">S</symbol>
|
||||
<symbol label="#">numbersign</symbol>
|
||||
<symbol label="®">U00AE</symbol>
|
||||
<symbol label="d">d</symbol>
|
||||
<symbol label="D">D</symbol>
|
||||
<symbol label="$">dollar</symbol>
|
||||
<symbol label="£">U00A3</symbol>
|
||||
<symbol label="f">f</symbol>
|
||||
<symbol label="F">F</symbol>
|
||||
<symbol label="%">percent</symbol>
|
||||
<symbol label="€">EuroSign</symbol>
|
||||
<symbol label="g">g</symbol>
|
||||
<symbol label="G">G</symbol>
|
||||
<symbol label="&">ampersand</symbol>
|
||||
<symbol label="¥">U00A5</symbol>
|
||||
<symbol label="h">h</symbol>
|
||||
<symbol label="H">H</symbol>
|
||||
<symbol label="-">minus</symbol>
|
||||
<symbol label="^">asciicircum</symbol>
|
||||
<symbol label="j">j</symbol>
|
||||
<symbol label="J">J</symbol>
|
||||
<symbol label="_">underscore</symbol>
|
||||
<symbol label="°">degree</symbol>
|
||||
<symbol label="k">k</symbol>
|
||||
<symbol label="K">K</symbol>
|
||||
<symbol label="+">plus</symbol>
|
||||
<symbol label="=">equal</symbol>
|
||||
<symbol label="l">l</symbol>
|
||||
<symbol label="L">L</symbol>
|
||||
<symbol label="(">parenleft</symbol>
|
||||
<symbol label="{">braceleft</symbol>
|
||||
<symbol label=")">parenright</symbol>
|
||||
<symbol label="}">braceright</symbol>
|
||||
<symbol keyval="65293" icon="key-enter">Return</symbol>
|
||||
<symbol keyval="65505" icon="key-shift">Shift_L</symbol>
|
||||
<symbol label="z">z</symbol>
|
||||
<symbol label="Z">Z</symbol>
|
||||
<symbol label=",">comma</symbol>
|
||||
<symbol label="\">backslash</symbol>
|
||||
<symbol label="x">x</symbol>
|
||||
<symbol label="X">X</symbol>
|
||||
<symbol label=""">quotedbl</symbol>
|
||||
<symbol label="/">slash</symbol>
|
||||
<symbol label="c">c</symbol>
|
||||
<symbol label="C">C</symbol>
|
||||
<symbol label="'">quoteright</symbol>
|
||||
<symbol label="<">less</symbol>
|
||||
<symbol label="v">v</symbol>
|
||||
<symbol label="V">V</symbol>
|
||||
<symbol label=":">colon</symbol>
|
||||
<symbol label=">">greater</symbol>
|
||||
<symbol label="b">b</symbol>
|
||||
<symbol label="B">B</symbol>
|
||||
<symbol label=";">semicolon</symbol>
|
||||
<symbol label="n">n</symbol>
|
||||
<symbol label="N">N</symbol>
|
||||
<symbol label="!">exclam</symbol>
|
||||
<symbol label="[">bracketleft</symbol>
|
||||
<symbol label="m">m</symbol>
|
||||
<symbol label="M">M</symbol>
|
||||
<symbol label="?">question</symbol>
|
||||
<symbol label="]">bracketright</symbol>
|
||||
<symbol label=".">period</symbol>
|
||||
<symbol label="123">show_numbers</symbol>
|
||||
<symbol label="ABC">show_letters</symbol>
|
||||
<symbol label="☺" icon="keyboard-mode-symbolic" tooltip="Setup">preferences</symbol>
|
||||
<symbol label=" ">space</symbol>
|
||||
<symbol keyval="65288" icon="edit-clear-symbolic">BackSpace</symbol>
|
||||
</symbols>
|
||||
@ -1,193 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<symbols version="0.90">
|
||||
<include>us</include>
|
||||
<key keycode="49" name="TLDE">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</key>
|
||||
<key keycode="10" name="AE01">
|
||||
<text category="letter">ㄅ</text>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</key>
|
||||
<key keycode="11" name="AE02">
|
||||
<text category="letter">ㄉ</text>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</key>
|
||||
<key keycode="12" name="AE03">
|
||||
<text category="letter">ˇ</text>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</key>
|
||||
<key keycode="13" name="AE04">
|
||||
<text category="letter">ˋ</text>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</key>
|
||||
<key keycode="14" name="AE05">
|
||||
<text category="letter">ㄓ</text>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</key>
|
||||
<key keycode="15" name="AE06">
|
||||
<text category="letter">ˊ</text>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</key>
|
||||
<key keycode="16" name="AE07">
|
||||
<text category="letter">˙</text>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</key>
|
||||
<key keycode="17" name="AE08">
|
||||
<text category="letter">ㄚ</text>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</key>
|
||||
<key keycode="18" name="AE09">
|
||||
<text category="letter">ㄞ</text>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</key>
|
||||
<key keycode="19" name="AE10">
|
||||
<text category="letter">ㄢ</text>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</key>
|
||||
<key keycode="20" name="AE11">
|
||||
<text category="letter">ㄦ</text>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</key>
|
||||
<key keycode="21" name="AE12">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</key>
|
||||
<key keycode="24" name="AD01">
|
||||
<text category="letter">ㄆ</text>
|
||||
<keysym keyval="81">Q</keysym>
|
||||
</key>
|
||||
<key keycode="25" name="AD02">
|
||||
<text category="letter">ㄊ</text>
|
||||
<keysym keyval="87">W</keysym>
|
||||
</key>
|
||||
<key keycode="26" name="AD03">
|
||||
<text category="letter">ㄍ</text>
|
||||
<keysym keyval="69">E</keysym>
|
||||
</key>
|
||||
<key keycode="27" name="AD04">
|
||||
<text category="letter">ㄐ</text>
|
||||
<keysym keyval="82">R</keysym>
|
||||
</key>
|
||||
<key keycode="28" name="AD05">
|
||||
<text category="letter">ㄔ</text>
|
||||
<keysym keyval="84">T</keysym>
|
||||
</key>
|
||||
<key keycode="29" name="AD06">
|
||||
<text category="letter">ㄗ</text>
|
||||
<keysym keyval="89">Y</keysym>
|
||||
</key>
|
||||
<key keycode="30" name="AD07">
|
||||
<text category="letter">ㄧ</text>
|
||||
<keysym keyval="85">U</keysym>
|
||||
</key>
|
||||
<key keycode="31" name="AD08">
|
||||
<text category="letter">ㄛ</text>
|
||||
<keysym keyval="73">I</keysym>
|
||||
</key>
|
||||
<key keycode="32" name="AD09">
|
||||
<text category="letter">ㄟ</text>
|
||||
<keysym keyval="79">O</keysym>
|
||||
</key>
|
||||
<key keycode="33" name="AD10">
|
||||
<text category="letter">ㄣ</text>
|
||||
<keysym keyval="80">P</keysym>
|
||||
</key>
|
||||
<key keycode="34" name="AD11">
|
||||
<keysym keyval="91">bracketleft</keysym>
|
||||
<keysym keyval="123">braceleft</keysym>
|
||||
</key>
|
||||
<key keycode="35" name="AD12">
|
||||
<keysym keyval="93">bracketright</keysym>
|
||||
<keysym keyval="125">braceright</keysym>
|
||||
</key>
|
||||
<key keycode="51" name="BKSL">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</key>
|
||||
<key keycode="38" name="AC01">
|
||||
<text category="letter">ㄇ</text>
|
||||
<keysym keyval="65">A</keysym>
|
||||
</key>
|
||||
<key keycode="39" name="AC02">
|
||||
<text category="letter">ㄋ</text>
|
||||
<keysym keyval="83">S</keysym>
|
||||
</key>
|
||||
<key keycode="40" name="AC03">
|
||||
<text category="letter">ㄎ</text>
|
||||
<keysym keyval="68">D</keysym>
|
||||
</key>
|
||||
<key keycode="41" name="AC04">
|
||||
<text category="letter">ㄑ</text>
|
||||
<keysym keyval="70">F</keysym>
|
||||
</key>
|
||||
<key keycode="42" name="AC05">
|
||||
<text category="letter">ㄕ</text>
|
||||
<keysym keyval="71">G</keysym>
|
||||
</key>
|
||||
<key keycode="43" name="AC06">
|
||||
<text category="letter">ㄘ</text>
|
||||
<keysym keyval="72">H</keysym>
|
||||
</key>
|
||||
<key keycode="44" name="AC07">
|
||||
<text category="letter">ㄨ</text>
|
||||
<keysym keyval="74">J</keysym>
|
||||
</key>
|
||||
<key keycode="45" name="AC08">
|
||||
<text category="letter">ㄜ</text>
|
||||
<keysym keyval="75">K</keysym>
|
||||
</key>
|
||||
<key keycode="46" name="AC09">
|
||||
<text category="letter">ㄠ</text>
|
||||
<keysym keyval="76">L</keysym>
|
||||
</key>
|
||||
<key keycode="47" name="AC10">
|
||||
<text category="letter">ㄤ</text>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</key>
|
||||
<key keycode="48" name="AC11">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</key>
|
||||
<key keycode="52" name="AB01">
|
||||
<text category="letter">ㄈ</text>
|
||||
<keysym keyval="90">Z</keysym>
|
||||
</key>
|
||||
<key keycode="53" name="AB02">
|
||||
<text category="letter">ㄌ</text>
|
||||
<keysym keyval="88">X</keysym>
|
||||
</key>
|
||||
<key keycode="54" name="AB03">
|
||||
<text category="letter">ㄏ</text>
|
||||
<keysym keyval="67">C</keysym>
|
||||
</key>
|
||||
<key keycode="55" name="AB04">
|
||||
<text category="letter">ㄒ</text>
|
||||
<keysym keyval="86">V</keysym>
|
||||
</key>
|
||||
<key keycode="56" name="AB05">
|
||||
<text category="letter">ㄖ</text>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</key>
|
||||
<key keycode="57" name="AB06">
|
||||
<text category="letter">ㄙ</text>
|
||||
<keysym keyval="78">N</keysym>
|
||||
</key>
|
||||
<key keycode="58" name="AB07">
|
||||
<text category="letter">ㄩ</text>
|
||||
<keysym keyval="77">M</keysym>
|
||||
</key>
|
||||
<key keycode="59" name="AB08">
|
||||
<text category="letter">ㄝ</text>
|
||||
<keysym keyval="60">less</keysym>
|
||||
</key>
|
||||
<key keycode="60" name="AB09">
|
||||
<text category="letter">ㄡ</text>
|
||||
<keysym keyval="62">greater</keysym>
|
||||
</key>
|
||||
<key keycode="61" name="AB10">
|
||||
<text category="letter">ㄥ</text>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</key>
|
||||
</symbols>
|
||||
707
data/keyboards/us-qwerty.xml
Normal file
@ -0,0 +1,707 @@
|
||||
<?xml version="1.0"?>
|
||||
<keyboard version="0.90">
|
||||
<bounds>0.000000,0.000000,410.000000,190.000000</bounds>
|
||||
<section name="Alpha">
|
||||
<bounds>10.000000,50.000000,390.000000,129.000000</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>14</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>14</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>13</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>12</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>8</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<key id="keycode105" name="RCTL" column="7" row="4">
|
||||
<bounds>359.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65508">Control_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode135" name="MENU" column="6" row="4">
|
||||
<bounds>326.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65383">Menu</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode134" name="RWIN" column="5" row="4">
|
||||
<bounds>294.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65516">Super_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode108" name="RALT" column="4" row="4">
|
||||
<bounds>261.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65027">ISO_Level3_Shift</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode65" name="SPCE" column="3" row="4">
|
||||
<bounds>106.000000,104.000000,153.000000,24.000000</bounds>
|
||||
<oref>outline11</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="32">space</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode64" name="LALT" column="2" row="4">
|
||||
<bounds>73.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65513">Alt_L</keysym>
|
||||
<keysym keyval="65511">Meta_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode133" name="LWIN" column="1" row="4">
|
||||
<bounds>40.000000,104.000000,31.000000,24.000000</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65515">Super_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode37" name="LCTL" column="0" row="4">
|
||||
<bounds>2.000000,104.000000,36.000000,24.000000</bounds>
|
||||
<oref>outline9</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode62" name="RTSH" column="11" row="3">
|
||||
<bounds>320.000000,78.000000,70.000000,24.000000</bounds>
|
||||
<oref>outline8</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65506">Shift_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode61" name="AB10" column="10" row="3">
|
||||
<bounds>294.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="47">slash</keysym>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode60" name="AB09" column="9" row="3">
|
||||
<bounds>268.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="46">period</keysym>
|
||||
<keysym keyval="62">greater</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode59" name="AB08" column="8" row="3">
|
||||
<bounds>242.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="44">comma</keysym>
|
||||
<keysym keyval="60">less</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode58" name="AB07" column="7" row="3">
|
||||
<bounds>216.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="109">m</keysym>
|
||||
<keysym keyval="77">M</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode57" name="AB06" column="6" row="3">
|
||||
<bounds>190.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="110">n</keysym>
|
||||
<keysym keyval="78">N</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode56" name="AB05" column="5" row="3">
|
||||
<bounds>164.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="98">b</keysym>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode55" name="AB04" column="4" row="3">
|
||||
<bounds>138.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="118">v</keysym>
|
||||
<keysym keyval="86">V</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode54" name="AB03" column="3" row="3">
|
||||
<bounds>113.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="99">c</keysym>
|
||||
<keysym keyval="67">C</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode53" name="AB02" column="2" row="3">
|
||||
<bounds>87.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="120">x</keysym>
|
||||
<keysym keyval="88">X</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode52" name="AB01" column="1" row="3">
|
||||
<bounds>61.000000,78.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="122">z</keysym>
|
||||
<keysym keyval="90">Z</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode50" name="LFSH" column="0" row="3">
|
||||
<bounds>2.000000,78.000000,57.000000,24.000000</bounds>
|
||||
<oref>outline7</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65505">Shift_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode36" name="RTRN" column="12" row="2">
|
||||
<bounds>333.000000,53.000000,57.000000,24.000000</bounds>
|
||||
<oref>outline6</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65293">Return</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode48" name="AC11" column="11" row="2">
|
||||
<bounds>307.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode47" name="AC10" column="10" row="2">
|
||||
<bounds>281.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="59">semicolon</keysym>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode46" name="AC09" column="9" row="2">
|
||||
<bounds>256.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="108">l</keysym>
|
||||
<keysym keyval="76">L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode45" name="AC08" column="8" row="2">
|
||||
<bounds>230.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="107">k</keysym>
|
||||
<keysym keyval="75">K</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode44" name="AC07" column="7" row="2">
|
||||
<bounds>204.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="106">j</keysym>
|
||||
<keysym keyval="74">J</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode43" name="AC06" column="6" row="2">
|
||||
<bounds>178.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="104">h</keysym>
|
||||
<keysym keyval="72">H</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode42" name="AC05" column="5" row="2">
|
||||
<bounds>152.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="103">g</keysym>
|
||||
<keysym keyval="71">G</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode41" name="AC04" column="4" row="2">
|
||||
<bounds>126.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="102">f</keysym>
|
||||
<keysym keyval="70">F</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode40" name="AC03" column="3" row="2">
|
||||
<bounds>100.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="100">d</keysym>
|
||||
<keysym keyval="68">D</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode39" name="AC02" column="2" row="2">
|
||||
<bounds>74.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="115">s</keysym>
|
||||
<keysym keyval="83">S</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode38" name="AC01" column="1" row="2">
|
||||
<bounds>49.000000,53.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="97">a</keysym>
|
||||
<keysym keyval="65">A</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode66" name="CAPS" column="0" row="2">
|
||||
<bounds>2.000000,53.000000,44.000000,24.000000</bounds>
|
||||
<oref>outline5</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode51" name="BKSL" column="13" row="1">
|
||||
<bounds>352.000000,27.000000,38.000000,24.000000</bounds>
|
||||
<oref>outline4</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode35" name="AD12" column="12" row="1">
|
||||
<bounds>326.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="93">bracketright</keysym>
|
||||
<keysym keyval="125">braceright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode34" name="AD11" column="11" row="1">
|
||||
<bounds>300.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="91">bracketleft</keysym>
|
||||
<keysym keyval="123">braceleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode33" name="AD10" column="10" row="1">
|
||||
<bounds>275.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="112">p</keysym>
|
||||
<keysym keyval="80">P</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode32" name="AD09" column="9" row="1">
|
||||
<bounds>249.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="111">o</keysym>
|
||||
<keysym keyval="79">O</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode31" name="AD08" column="8" row="1">
|
||||
<bounds>223.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="105">i</keysym>
|
||||
<keysym keyval="73">I</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode30" name="AD07" column="7" row="1">
|
||||
<bounds>197.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="117">u</keysym>
|
||||
<keysym keyval="85">U</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode29" name="AD06" column="6" row="1">
|
||||
<bounds>171.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="121">y</keysym>
|
||||
<keysym keyval="89">Y</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode28" name="AD05" column="5" row="1">
|
||||
<bounds>145.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="116">t</keysym>
|
||||
<keysym keyval="84">T</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode27" name="AD04" column="4" row="1">
|
||||
<bounds>119.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="114">r</keysym>
|
||||
<keysym keyval="82">R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode26" name="AD03" column="3" row="1">
|
||||
<bounds>93.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="101">e</keysym>
|
||||
<keysym keyval="69">E</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode25" name="AD02" column="2" row="1">
|
||||
<bounds>68.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="119">w</keysym>
|
||||
<keysym keyval="87">W</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode24" name="AD01" column="1" row="1">
|
||||
<bounds>42.000000,27.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="113">q</keysym>
|
||||
<keysym keyval="81">Q</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode23" name="TAB" column="0" row="1">
|
||||
<bounds>2.000000,27.000000,38.000000,24.000000</bounds>
|
||||
<oref>outline3</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65289">Tab</keysym>
|
||||
<keysym keyval="65056">ISO_Left_Tab</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode22" name="BKSP" column="13" row="0">
|
||||
<bounds>339.000000,1.000000,51.000000,24.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65288">BackSpace</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode21" name="AE12" column="12" row="0">
|
||||
<bounds>313.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode20" name="AE11" column="11" row="0">
|
||||
<bounds>287.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode19" name="AE10" column="10" row="0">
|
||||
<bounds>261.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode18" name="AE09" column="9" row="0">
|
||||
<bounds>235.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode17" name="AE08" column="8" row="0">
|
||||
<bounds>209.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode16" name="AE07" column="7" row="0">
|
||||
<bounds>183.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode15" name="AE06" column="6" row="0">
|
||||
<bounds>157.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode14" name="AE05" column="5" row="0">
|
||||
<bounds>132.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode13" name="AE04" column="4" row="0">
|
||||
<bounds>106.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode12" name="AE03" column="3" row="0">
|
||||
<bounds>80.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode11" name="AE02" column="2" row="0">
|
||||
<bounds>54.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode10" name="AE01" column="1" row="0">
|
||||
<bounds>28.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode49" name="TLDE" column="0" row="0">
|
||||
<bounds>2.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<section name="Function">
|
||||
<bounds>10.000000,10.000000,410.000000,25.000000</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>16</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<key id="keycode96" name="FK12" column="12" row="0">
|
||||
<bounds>366.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65481">F12</keysym>
|
||||
<keysym keyval="269024780">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode95" name="FK11" column="11" row="0">
|
||||
<bounds>340.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65480">F11</keysym>
|
||||
<keysym keyval="269024779">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode76" name="FK10" column="10" row="0">
|
||||
<bounds>314.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65479">F10</keysym>
|
||||
<keysym keyval="269024778">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode75" name="FK09" column="9" row="0">
|
||||
<bounds>288.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65478">F9</keysym>
|
||||
<keysym keyval="269024777">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode74" name="FK08" column="8" row="0">
|
||||
<bounds>249.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65477">F8</keysym>
|
||||
<keysym keyval="269024776">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode73" name="FK07" column="7" row="0">
|
||||
<bounds>223.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65476">F7</keysym>
|
||||
<keysym keyval="269024775">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode72" name="FK06" column="6" row="0">
|
||||
<bounds>197.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65475">F6</keysym>
|
||||
<keysym keyval="269024774">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode71" name="FK05" column="5" row="0">
|
||||
<bounds>171.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65474">F5</keysym>
|
||||
<keysym keyval="269024773">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode70" name="FK04" column="4" row="0">
|
||||
<bounds>132.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65473">F4</keysym>
|
||||
<keysym keyval="269024772">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode69" name="FK03" column="3" row="0">
|
||||
<bounds>106.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65472">F3</keysym>
|
||||
<keysym keyval="269024771">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode68" name="FK02" column="2" row="0">
|
||||
<bounds>80.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65471">F2</keysym>
|
||||
<keysym keyval="269024770">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode67" name="FK01" column="1" row="0">
|
||||
<bounds>54.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65470">F1</keysym>
|
||||
<keysym keyval="269024769">(null)</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode9" name="ESC" column="0" row="0">
|
||||
<bounds>2.000000,1.000000,24.000000,24.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65307">Escape</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<outline id="outline1">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>24.000000,0.000000</point>
|
||||
<point>24.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline3">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>38.000000,0.000000</point>
|
||||
<point>38.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline4">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>38.000000,0.000000</point>
|
||||
<point>38.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline5">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>44.000000,0.000000</point>
|
||||
<point>44.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline6">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>57.000000,0.000000</point>
|
||||
<point>57.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline7">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>57.000000,0.000000</point>
|
||||
<point>57.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline8">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>70.000000,0.000000</point>
|
||||
<point>70.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline9">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>36.000000,0.000000</point>
|
||||
<point>36.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline10">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>31.000000,0.000000</point>
|
||||
<point>31.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline11">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>153.000000,0.000000</point>
|
||||
<point>153.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline12">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>24.000000,0.000000</point>
|
||||
<point>24.000000,50.000000</point>
|
||||
<point>0.000000,50.000000</point>
|
||||
</outline>
|
||||
<outline id="outline13">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>50.000000,0.000000</point>
|
||||
<point>50.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
<outline id="outline2">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>51.000000,0.000000</point>
|
||||
<point>51.000000,24.000000</point>
|
||||
<point>0.000000,24.000000</point>
|
||||
</outline>
|
||||
</keyboard>
|
||||
@ -1,19 +0,0 @@
|
||||
gnome = import('gnome')
|
||||
|
||||
squeekboard_resources = gnome.compile_resources(
|
||||
'squeekboard-resources',
|
||||
'squeekboard.gresources.xml',
|
||||
|
||||
c_name: 'squeekboard',
|
||||
)
|
||||
|
||||
desktop_file = 'sm.puri.Squeekboard.desktop'
|
||||
|
||||
i18n.merge_file('desktop',
|
||||
input: desktop_file + '.in',
|
||||
output: desktop_file,
|
||||
po_dir: '../po',
|
||||
install: true,
|
||||
install_dir: join_paths(datadir, 'applications'),
|
||||
type: 'desktop'
|
||||
)
|
||||
@ -1,9 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=Squeekboard
|
||||
GenericName=Squeekboard Virtual Keyboard
|
||||
Comment=Virtual Keyboard
|
||||
Exec=squeekboard
|
||||
Icon=squeekboard
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=GTK;Utility;
|
||||
@ -1,43 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="/sm/puri/squeekboard">
|
||||
<file compressed="true">style.css</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/geometry/compact.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/geometry/extended.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/geometry/number-keypad.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/keyboards.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ar.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/as-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/be.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/bn-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/fa.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/gu-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/he.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/hi-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ja-kana.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/kk.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/kn-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ks-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ks.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/mai-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ml-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/mr-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/my.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/nb.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/or-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/pa-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ru.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/sd-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ta-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/te-inscript.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/th.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ua.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/ug.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/us.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/zh-bopomofo.xml</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks">keyboards/symbols/special/number.xml</file>
|
||||
<file>icons/key-enter.svg</file>
|
||||
<file>icons/key-shift.svg</file>
|
||||
<file>icons/keyboard-mode-symbolic.svg</file>
|
||||
</gresource>
|
||||
</gresources>
|
||||
@ -1,19 +0,0 @@
|
||||
.keyboard {
|
||||
background-color: rgba(0, 0, 0, 255);
|
||||
color: #ffffff;
|
||||
font-family: cantarell, sans-serif;
|
||||
}
|
||||
|
||||
.key {
|
||||
color: #deddda;
|
||||
background: #464448;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-color: #5e5c64;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.key:active {
|
||||
background: #1c71d8;
|
||||
border-color: #3584e4;
|
||||
}
|
||||