Compare commits
4 Commits
eekboard-1
...
eekboard-0
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a0540627 | |||
| 878a1c73fd | |||
| b465cbc5de | |||
| 2622e4eb59 |
14
.gitignore
vendored
14
.gitignore
vendored
@ -4,7 +4,6 @@
|
||||
*.o
|
||||
*.so
|
||||
*~
|
||||
*.pyc
|
||||
Makefile
|
||||
Makefile.in
|
||||
.deps
|
||||
@ -34,7 +33,6 @@ gtk-doc.make
|
||||
eek/eek-special-keysym-entries.h
|
||||
eek/eek-unicode-keysym-entries.h
|
||||
eek/eek-xkeysym-keysym-entries.h
|
||||
eek/eek-enumtypes.[ch]
|
||||
eek/eek-marshalers.[ch]
|
||||
eek/*.pc
|
||||
eek/*.gir
|
||||
@ -42,15 +40,15 @@ eek/*.typelib
|
||||
eekboard/*.pc
|
||||
eekboard/*.gir
|
||||
eekboard/*.typelib
|
||||
eekboard/eekboard-marshalers.[ch]
|
||||
tests/eek-simple-test
|
||||
tests/eek-xkb-test
|
||||
tests/eek-xml-test
|
||||
src/eekboard
|
||||
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.types
|
||||
!/docs/reference/eek/eek-sections.txt
|
||||
docs/reference/eek/xml
|
||||
docs/reference/eek/html
|
||||
@ -73,12 +71,6 @@ po/*.gmo
|
||||
po/Makefile.in.in
|
||||
po/POTFILES
|
||||
po/stamp-it
|
||||
po/.intltool-merge-cache
|
||||
bindings/vala/*.vapi
|
||||
py-compile
|
||||
data/org.fedorahosted.eekboard.gschema.xml
|
||||
data/org.fedorahosted.eekboard.gschema.valid
|
||||
data/eekboard-server.service
|
||||
data/*.desktop
|
||||
examples/eekxml/eekxml
|
||||
|
||||
|
||||
46
README
46
README
@ -3,12 +3,12 @@ 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.
|
||||
|
||||
* Building
|
||||
* How to build
|
||||
|
||||
** Dependencies
|
||||
|
||||
REQUIRED: GLib2, GTK, PangoCairo, libxklavier, libcroco
|
||||
OPTIONAL: libXtst, at-spi2-core, IBus, Clutter, Clutter-Gtk, Python, Vala, gobject-introspection, libcanberra
|
||||
REQUIRED: GLib2, GTK, GConf2, PangoCairo, libxklavier, libcroco
|
||||
OPTIONAL: fakekey, CSPI, Clutter, Clutter-Gtk, Vala, gobject-introspection
|
||||
|
||||
** Build from git repo
|
||||
|
||||
@ -24,12 +24,42 @@ OPTIONAL: libXtst, at-spi2-core, IBus, Clutter, Clutter-Gtk, Python, Vala, gobje
|
||||
$ make
|
||||
$ sudo make install
|
||||
|
||||
* Running
|
||||
* 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 -f # show/hide automatically based on focus-in/focus-out events
|
||||
|
||||
Even though eekboard -f watches a11y events by default, it currently
|
||||
works better with IBus. To use IBus, do:
|
||||
** eekboard-xml
|
||||
|
||||
$ gsettings set org.fedorahosted.eekboard focus-listener 'ibus'
|
||||
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
|
||||
|
||||
@ -15,10 +15,7 @@
|
||||
# along with this program. If not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
__init__.py \
|
||||
serializable.py \
|
||||
symbol.py \
|
||||
keysym.py \
|
||||
client.py \
|
||||
pkgpython_PYTHON = \
|
||||
__init__.py \
|
||||
eekboard.py \
|
||||
context.py
|
||||
|
||||
@ -15,8 +15,53 @@
|
||||
# along with this program. If not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
from symbol import *
|
||||
from keysym import *
|
||||
from serializable import *
|
||||
from client import *
|
||||
from context import *
|
||||
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']
|
||||
|
||||
@ -15,9 +15,8 @@
|
||||
# along with this program. If not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
import dbus
|
||||
from gi.repository import Eekboard
|
||||
import gobject
|
||||
import serializable
|
||||
|
||||
class Context(gobject.GObject):
|
||||
__gtype_name__ = "PYEekboardContext"
|
||||
@ -33,7 +32,11 @@ class Context(gobject.GObject):
|
||||
'key-pressed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
(gobject.TYPE_STRING, gobject.TYPE_PYOBJECT, gobject.TYPE_UINT)),
|
||||
(gobject.TYPE_UINT,)),
|
||||
'key-released': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
(gobject.TYPE_UINT,)),
|
||||
'destroyed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
gobject.TYPE_NONE,
|
||||
@ -41,59 +44,19 @@ class Context(gobject.GObject):
|
||||
}
|
||||
|
||||
__gproperties__ = {
|
||||
'visible': (gobject.TYPE_BOOLEAN, 'Visible', 'Visible',
|
||||
False, gobject.PARAM_READWRITE),
|
||||
'keyboard': (gobject.TYPE_UINT, 'Keyboard', 'Keyboard',
|
||||
0, gobject.G_MAXUINT, 0, gobject.PARAM_READWRITE),
|
||||
'group': (gobject.TYPE_UINT, 'Group', 'Group',
|
||||
0, gobject.G_MAXUINT, 0, gobject.PARAM_READWRITE),
|
||||
'keyboard-visible': (bool, None, None, False, gobject.PARAM_READWRITE),
|
||||
}
|
||||
|
||||
def __init__(self, bus, object_path):
|
||||
def __init__(self, giobject):
|
||||
super(Context, self).__init__()
|
||||
self.__bus = bus
|
||||
self.__object_path = object_path
|
||||
self.__properties = {}
|
||||
_context = self.__bus.get_object("org.fedorahosted.Eekboard",
|
||||
object_path)
|
||||
self.__context = dbus.Interface(_context, dbus_interface="org.fedorahosted.Eekboard.Context")
|
||||
|
||||
self.__context.connect_to_signal('Enabled', self.__enabled_cb)
|
||||
self.__context.connect_to_signal('Disabled', self.__disabled_cb)
|
||||
self.__context.connect_to_signal('KeyPressed', self.__key_pressed_cb)
|
||||
self.__context.connect_to_signal('Destroyed', self.__destroyed_cb)
|
||||
self.__context.connect_to_signal('VisibilityChanged', self.__visibility_changed_cb)
|
||||
self.__context.connect_to_signal('KeyboardChanged', self.__keyboard_changed_cb)
|
||||
self.__context.connect_to_signal('GroupChanged', self.__group_changed_cb)
|
||||
|
||||
object_path = property(lambda self: self.__object_path)
|
||||
|
||||
def __enabled_cb(self):
|
||||
self.emit('enabled')
|
||||
|
||||
def __disabled_cb(self):
|
||||
self.emit('disabled')
|
||||
|
||||
def __key_pressed_cb(self, *args):
|
||||
keyname = args[0]
|
||||
symbol = serializable.deserialize_object(args[1])
|
||||
modifiers = args[2]
|
||||
self.emit('key-pressed', keyname, symbol, modifiers)
|
||||
|
||||
def __visibility_changed_cb(self, *args):
|
||||
self.set_property('visible', args[0])
|
||||
self.notify('visible')
|
||||
|
||||
def __keyboard_changed_cb(self, *args):
|
||||
self.set_property('keyboard', args[0])
|
||||
self.notify('keyboard')
|
||||
|
||||
def __group_changed_cb(self, *args):
|
||||
self.set_property('group', args[0])
|
||||
self.notify('group')
|
||||
|
||||
def __destroyed_cb(self):
|
||||
self.emit("destroyed")
|
||||
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
|
||||
@ -101,26 +64,37 @@ class Context(gobject.GObject):
|
||||
def do_get_property(self, pspec):
|
||||
return self.__properties[pspec.name]
|
||||
|
||||
def add_keyboard(self, keyboard_type):
|
||||
return self.__context.AddKeyboard(keyboard_type)
|
||||
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.__context.RemoveKeyboard(keyboard_id)
|
||||
return self.__giobject.remove_keyboard(keyboard_id, None)
|
||||
|
||||
def set_keyboard(self, keyboard_id):
|
||||
self.__context.SetKeyboard(keyboard_id)
|
||||
self.__giobject.set_keyboard(keyboard_id, None)
|
||||
|
||||
def show_keyboard(self):
|
||||
self.__context.ShowKeyboard()
|
||||
self.__giobject.show_keyboard(None)
|
||||
|
||||
def hide_keyboard(self):
|
||||
self.__context.HideKeyboard()
|
||||
self.__giobject.hide_keyboard(None)
|
||||
|
||||
def set_group(self, group):
|
||||
self.__context.SetGroup(group)
|
||||
self.__giobject.set_group(group, None)
|
||||
|
||||
def press_keycode(self, keycode):
|
||||
self.__context.PressKeycode(keycode)
|
||||
def press_key(self, keycode):
|
||||
self.__giobject.press_key(keycode, None)
|
||||
|
||||
def release_keycode(self, keycode):
|
||||
self.__context.ReleaseKeycode(keycode)
|
||||
def release_key(self, keycode):
|
||||
self.__giobject.release_key(keycode, None)
|
||||
|
||||
def is_enabled(self):
|
||||
return self.__giobject.is_enabled()
|
||||
|
||||
@ -15,15 +15,13 @@
|
||||
# along with this program. If not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
import dbus
|
||||
import dbus.mainloop.glib
|
||||
from gi.repository import Gio
|
||||
import gi.repository
|
||||
import gobject
|
||||
from context import Context
|
||||
|
||||
dbus.mainloop.glib.DBusGMainLoop(set_as_default = True)
|
||||
|
||||
class Client(gobject.GObject):
|
||||
__gtype_name__ = "PYEekboardClient"
|
||||
class Eekboard(gobject.GObject):
|
||||
__gtype_name__ = "PYEekboardEekboard"
|
||||
__gsignals__ = {
|
||||
'destroyed': (
|
||||
gobject.SIGNAL_RUN_LAST,
|
||||
@ -32,25 +30,20 @@ class Client(gobject.GObject):
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
super(Client, self).__init__()
|
||||
self.__bus = dbus.SessionBus()
|
||||
_service = self.__bus.get_object("org.fedorahosted.Eekboard",
|
||||
"/org/fedorahosted/Eekboard")
|
||||
self.__service = dbus.Interface(_service, dbus_interface="org.fedorahosted.Eekboard")
|
||||
self.__service.connect_to_signal("Destroyed", self.__destroyed_cb)
|
||||
|
||||
def __destroyed_cb(self):
|
||||
self.emit("destroyed")
|
||||
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):
|
||||
object_path = self.__service.CreateContext(client_name)
|
||||
return Context(self.__bus, object_path)
|
||||
context = self.__eekboard.create_context(client_name, None)
|
||||
return Context(context)
|
||||
|
||||
def push_context(self, context):
|
||||
self.__service.PushContext(context.object_path)
|
||||
self.__eekboard.push_context(context.get_giobject(), None)
|
||||
|
||||
def pop_context(self):
|
||||
self.__service.PopContext()
|
||||
self.__eekboard.pop_context(None)
|
||||
|
||||
def destroy_context(self, context):
|
||||
self.__service.DestroyContext(context.object_path)
|
||||
self.__eekboard.destroy_context(context.get_giobject(), None)
|
||||
@ -1,35 +0,0 @@
|
||||
# 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/>.
|
||||
|
||||
import symbol
|
||||
|
||||
class Keysym(symbol.Symbol):
|
||||
__gtype_name__ = "PYEekKeysym"
|
||||
__NAME__ = "EekKeysym"
|
||||
|
||||
def __init__(self):
|
||||
super(Keysym, self).__init__()
|
||||
|
||||
xkeysym = property(lambda self: self.xkeysym)
|
||||
|
||||
def serialize(self, struct):
|
||||
super(Keysym, self).serialize(struct)
|
||||
struct.append(dbus.UInt32(self.__xkeysym))
|
||||
|
||||
def deserialize(self, struct):
|
||||
super(Keysym, self).deserialize(struct)
|
||||
self.__xkeysym = struct.pop(0)
|
||||
@ -1,76 +0,0 @@
|
||||
# vim:set et sts=4 sw=4:
|
||||
#
|
||||
# ibus - The Input Bus
|
||||
#
|
||||
# Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com>
|
||||
# Copyright (c) 2007-2010 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 program; if not, write to the
|
||||
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
# Boston, MA 02111-1307 USA
|
||||
|
||||
__all__ = (
|
||||
"Serializable",
|
||||
"serialize_object",
|
||||
"deserialize_object",
|
||||
)
|
||||
|
||||
import dbus
|
||||
import gobject
|
||||
|
||||
__serializable_name_dict = dict()
|
||||
|
||||
def serializable_register(classobj):
|
||||
# if not issubclass(classobj, Serializable):
|
||||
# raise "%s is not a sub-class of Serializable" % str(classobj)
|
||||
__serializable_name_dict[classobj.__NAME__] = classobj
|
||||
|
||||
def serialize_object(o):
|
||||
if isinstance(o, Serializable):
|
||||
l = [o.__NAME__]
|
||||
o.serialize(l)
|
||||
return dbus.Struct(l)
|
||||
else:
|
||||
return o
|
||||
|
||||
def deserialize_object(v):
|
||||
if isinstance(v, tuple):
|
||||
struct = list(v)
|
||||
type_name = struct.pop(0)
|
||||
type_class = __serializable_name_dict[type_name]
|
||||
o = type_class()
|
||||
o.deserialize (struct)
|
||||
return o
|
||||
return v
|
||||
|
||||
class SerializableMeta(gobject.GObjectMeta):
|
||||
def __init__(cls, name, bases, dict_):
|
||||
super(SerializableMeta, cls).__init__(name, bases, dict_)
|
||||
if "__NAME__" in cls.__dict__:
|
||||
serializable_register(cls)
|
||||
|
||||
class Serializable(gobject.GObject):
|
||||
__metaclass__ = SerializableMeta
|
||||
__gtype_name__ = "PYEekSerializable"
|
||||
__NAME__ = "EekSerializable"
|
||||
def __init__(self):
|
||||
super(Serializable, self).__init__()
|
||||
|
||||
def serialize(self, struct):
|
||||
pass
|
||||
|
||||
def deserialize(self, struct):
|
||||
pass
|
||||
|
||||
__serializable_name_dict["EekSerializable"] = Serializable
|
||||
@ -1,47 +0,0 @@
|
||||
# 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/>.
|
||||
|
||||
import serializable
|
||||
|
||||
class Symbol(serializable.Serializable):
|
||||
__gtype_name__ = "PYEekSymbol"
|
||||
__NAME__ = "EekSymbol"
|
||||
|
||||
def __init__(self):
|
||||
super(Symbol, self).__init__()
|
||||
|
||||
name = property(lambda self: self.__name)
|
||||
label = property(lambda self: self.__label)
|
||||
category = property(lambda self: self.__category)
|
||||
modifier_mask = property(lambda self: self.__modifier_mask)
|
||||
icon_name = property(lambda self: self.__icon_name)
|
||||
|
||||
def serialize(self, struct):
|
||||
super(Symbol, self).serialize(struct)
|
||||
struct.append(dbus.String(self.__name))
|
||||
struct.append(dbus.String(self.__label))
|
||||
struct.append(dbus.UInt32(self.__category))
|
||||
struct.append(dbus.UInt32(self.__modifier_mask))
|
||||
struct.append(dbus.String(self.__icon_name))
|
||||
|
||||
def deserialize(self, struct):
|
||||
super(Symbol, self).deserialize(struct)
|
||||
self.__name = struct.pop(0)
|
||||
self.__label = struct.pop(0)
|
||||
self.__category = struct.pop(0)
|
||||
self.__modifier_mask = struct.pop(0)
|
||||
self.__icon_name = struct.pop(0)
|
||||
@ -26,49 +26,25 @@ dist_vapi_DATA = \
|
||||
MAINTAINERCLEANFILES = $(dist_vapi_DATA)
|
||||
|
||||
eek-$(EEK_API_VERSION).vapi:
|
||||
$(VAPIGEN_V)$(VAPIGEN) \
|
||||
--library eek-$(EEK_API_VERSION) \
|
||||
--pkg gio-2.0 \
|
||||
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_V)$(VAPIGEN) --vapidir=$(builddir) \
|
||||
--library eek-clutter-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
--pkg clutter-1.0 \
|
||||
--pkg gio-2.0 \
|
||||
--pkg atk \
|
||||
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_V)$(VAPIGEN) --vapidir=$(builddir) \
|
||||
--library eek-gtk-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
--pkg gtk+-2.0 \
|
||||
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_V)$(VAPIGEN) --vapidir=$(builddir) \
|
||||
--library eek-xkb-$(EEK_API_VERSION) \
|
||||
vapigen --vapidir=$(builddir) --library eek-xkb-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
--pkg gio-2.0 \
|
||||
eek-xkb-$(EEK_API_VERSION)/eek-xkb-$(EEK_API_VERSION).gi
|
||||
|
||||
eek-xkl-$(EEK_API_VERSION).vapi: eek-xkb-$(EEK_API_VERSION).vapi
|
||||
$(VAPIGEN_V)$(VAPIGEN) --vapidir=$(builddir) \
|
||||
--library eek-xkl-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
--pkg eek-xkb-$(EEK_API_VERSION) --pkg gio-2.0 \
|
||||
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
|
||||
|
||||
eekboard-$(EEK_API_VERSION).vapi:
|
||||
$(VAPIGEN_V)$(VAPIGEN) \
|
||||
--library eekboard-$(EEK_API_VERSION) \
|
||||
--pkg eek-$(EEK_API_VERSION) \
|
||||
--pkg gio-2.0 \
|
||||
eek-$(EEK_API_VERSION)/eek-$(EEK_API_VERSION).gi
|
||||
|
||||
# set up the verbosity rules to avoid some build noise
|
||||
VAPIGEN_V = $(VAPIGEN_V_$(V))
|
||||
VAPIGEN_V_ = $(VAPIGEN_V_$(AM_DEFAULT_VERBOSITY))
|
||||
VAPIGEN_V_0 = @echo " VAPIG " $@;
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
-DEEK_COMPILATION=1
|
||||
|
||||
@ -1,16 +1,9 @@
|
||||
include/eek-0.90/eek/eek-container.h
|
||||
include/eek-0.90/eek/eek-element.h
|
||||
include/eek-0.90/eek/eek-enumtypes.h
|
||||
include/eek-0.90/eek/eek-keyboard.h
|
||||
include/eek-0.90/eek/eek-key.h
|
||||
include/eek-0.90/eek/eek-keysym.h
|
||||
include/eek-0.90/eek/eek-layout.h
|
||||
include/eek-0.90/eek/eek-section.h
|
||||
include/eek-0.90/eek/eek-serializable.h
|
||||
include/eek-0.90/eek/eek-symbol.h
|
||||
include/eek-0.90/eek/eek-symbol-matrix.h
|
||||
include/eek-0.90/eek/eek-theme.h
|
||||
include/eek-0.90/eek/eek-types.h
|
||||
include/eek-0.90/eek/eek-xml.h
|
||||
include/eek-0.90/eek/eek-xml-layout.h
|
||||
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
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,2 +0,0 @@
|
||||
-DEEK_COMPILATION=1
|
||||
|
||||
@ -1,2 +1,6 @@
|
||||
include/eek-0.90/eek/eek-clutter-keyboard.h
|
||||
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
|
||||
|
||||
|
||||
@ -1,28 +1,85 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekClutter">
|
||||
<object name="EekClutterKeyboard" parent="ClutterGroup" type-name="EekClutterKeyboard" get-type="eek_clutter_keyboard_get_type">
|
||||
<implements>
|
||||
<interface name="ClutterScriptable"/>
|
||||
<interface name="ClutterAnimatable"/>
|
||||
<interface name="AtkImplementor"/>
|
||||
<interface name="ClutterContainer"/>
|
||||
</implements>
|
||||
<constructor name="new" symbol="eek_clutter_keyboard_new">
|
||||
<return-type type="ClutterActor*"/>
|
||||
<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="keyboard" type="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
<method name="set_theme" symbol="eek_clutter_keyboard_set_theme">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekClutterKeyboard*"/>
|
||||
<parameter name="theme" type="EekTheme*"/>
|
||||
<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>
|
||||
<property name="keyboard" type="EekKeyboard*" readable="0" writable="1" construct="0" construct-only="1"/>
|
||||
</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,2 +0,0 @@
|
||||
-DEEK_COMPILATION=1
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
include/eek-0.90/eek/eek-gtk-keyboard.h
|
||||
include/eek-0.1/eek/eek-gtk-keyboard.h
|
||||
include/eek-0.1/eek/eek-gtk.h
|
||||
lib/libeek-gtk.so
|
||||
|
||||
@ -1,26 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekGtk">
|
||||
<object name="EekGtkKeyboard" parent="GtkDrawingArea" type-name="EekGtkKeyboard" get-type="eek_gtk_keyboard_get_type">
|
||||
<implements>
|
||||
<interface name="AtkImplementor"/>
|
||||
<interface name="GtkBuildable"/>
|
||||
</implements>
|
||||
<constructor name="new" symbol="eek_gtk_keyboard_new">
|
||||
<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="EekKeyboard*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
<method name="set_theme" symbol="eek_gtk_keyboard_set_theme">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="keyboard" type="EekGtkKeyboard*"/>
|
||||
<parameter name="theme" type="EekTheme*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="keyboard" type="EekKeyboard*" readable="0" writable="1" construct="0" construct-only="1"/>
|
||||
<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,2 +0,0 @@
|
||||
-DEEK_COMPILATION=1
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
include/eek-0.90/eek/eek-xkb-layout.h
|
||||
include/eek-0.1/eek/eek-xkb-layout.h
|
||||
lib/libeek-xkb.so
|
||||
|
||||
@ -1,7 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="EekXkb">
|
||||
<object name="EekXkbLayout" parent="EekLayout" type-name="EekXkbLayout" get-type="eek_xkb_layout_get_type">
|
||||
<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>
|
||||
@ -37,6 +40,7 @@
|
||||
<parameter name="keycodes" type="gchar*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<!--
|
||||
<method name="set_names" symbol="eek_xkb_layout_set_names">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
@ -44,19 +48,7 @@
|
||||
<parameter name="names" type="XkbComponentNamesRec*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_names_full" symbol="eek_xkb_layout_set_names_full">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_names_full_valist" symbol="eek_xkb_layout_set_names_full_valist">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXkbLayout*"/>
|
||||
<parameter name="var_args" type="va_list"/>
|
||||
</parameters>
|
||||
</method>
|
||||
-->
|
||||
<method name="set_symbols" symbol="eek_xkb_layout_set_symbols">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
|
||||
@ -1,2 +1 @@
|
||||
EekXkb cheader_filename="eek/eek-xkb.h"
|
||||
eek_xkb_layout_set_names hidden="1"
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
-DEEK_COMPILATION=1
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
include/eek-0.90/eek/eek-xkl-layout.h
|
||||
include/eek-0.1/eek/eek-xkl-layout.h
|
||||
lib/libeek-xkl.so
|
||||
|
||||
|
||||
@ -2,6 +2,9 @@
|
||||
<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>
|
||||
@ -50,23 +53,6 @@
|
||||
<constructor name="new" symbol="eek_xkl_layout_new">
|
||||
<return-type type="EekLayout*"/>
|
||||
</constructor>
|
||||
<method name="set_config" symbol="eek_xkl_layout_set_config">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="config" type="XklConfigRec*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_config_full" symbol="eek_xkl_layout_set_config_full">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="layout" type="EekXklLayout*"/>
|
||||
<parameter name="model" type="gchar*"/>
|
||||
<parameter name="layouts" type="gchar**"/>
|
||||
<parameter name="variants" type="gchar**"/>
|
||||
<parameter name="options" type="gchar**"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_layouts" symbol="eek_xkl_layout_set_layouts">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
|
||||
@ -1,2 +1 @@
|
||||
EekXkl cheader_filename="eek/eek-xkl.h"
|
||||
eek_xkl_layout_set_config hidden="1"
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
-DEEKBOARD_COMPILATION
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
include/eekboard-0.90/eekboard
|
||||
lib/libeekboard.so
|
||||
@ -1,340 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<api version="1.0">
|
||||
<namespace name="Eekboard">
|
||||
<function name="xkl_config_rec_from_string" symbol="eekboard_xkl_config_rec_from_string">
|
||||
<return-type type="XklConfigRec*"/>
|
||||
<parameters>
|
||||
<parameter name="layouts" type="gchar*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_config_rec_to_string" symbol="eekboard_xkl_config_rec_to_string">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="rec" type="XklConfigRec*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_list_layout_variants" symbol="eekboard_xkl_list_layout_variants">
|
||||
<return-type type="GSList*"/>
|
||||
<parameters>
|
||||
<parameter name="registry" type="XklConfigRegistry*"/>
|
||||
<parameter name="layout" type="gchar*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_list_layouts" symbol="eekboard_xkl_list_layouts">
|
||||
<return-type type="GSList*"/>
|
||||
<parameters>
|
||||
<parameter name="registry" type="XklConfigRegistry*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_list_models" symbol="eekboard_xkl_list_models">
|
||||
<return-type type="GSList*"/>
|
||||
<parameters>
|
||||
<parameter name="registry" type="XklConfigRegistry*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_list_option_groups" symbol="eekboard_xkl_list_option_groups">
|
||||
<return-type type="GSList*"/>
|
||||
<parameters>
|
||||
<parameter name="registry" type="XklConfigRegistry*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<function name="xkl_list_options" symbol="eekboard_xkl_list_options">
|
||||
<return-type type="GSList*"/>
|
||||
<parameters>
|
||||
<parameter name="registry" type="XklConfigRegistry*"/>
|
||||
<parameter name="group" type="gchar*"/>
|
||||
</parameters>
|
||||
</function>
|
||||
<object name="EekboardClient" parent="GDBusProxy" type-name="EekboardClient" get-type="eekboard_client_get_type">
|
||||
<implements>
|
||||
<interface name="GInitable"/>
|
||||
<interface name="GAsyncInitable"/>
|
||||
</implements>
|
||||
<method name="create_context" symbol="eekboard_client_create_context">
|
||||
<return-type type="EekboardContext*"/>
|
||||
<parameters>
|
||||
<parameter name="eekboard" type="EekboardClient*"/>
|
||||
<parameter name="client_name" type="gchar*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="destroy_context" symbol="eekboard_client_destroy_context">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="eekboard" type="EekboardClient*"/>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eekboard_client_new">
|
||||
<return-type type="EekboardClient*"/>
|
||||
<parameters>
|
||||
<parameter name="connection" type="GDBusConnection*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
<method name="pop_context" symbol="eekboard_client_pop_context">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="eekboard" type="EekboardClient*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="push_context" symbol="eekboard_client_push_context">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="eekboard" type="EekboardClient*"/>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<signal name="destroyed" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardClient*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
</object>
|
||||
<object name="EekboardContext" parent="GDBusProxy" type-name="EekboardContext" get-type="eekboard_context_get_type">
|
||||
<implements>
|
||||
<interface name="GInitable"/>
|
||||
<interface name="GAsyncInitable"/>
|
||||
</implements>
|
||||
<method name="add_keyboard" symbol="eekboard_context_add_keyboard">
|
||||
<return-type type="guint"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="keyboard" type="gchar*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_group" symbol="eekboard_context_get_group">
|
||||
<return-type type="gint"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="hide_keyboard" symbol="eekboard_context_hide_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="is_enabled" symbol="eekboard_context_is_enabled">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="is_keyboard_visible" symbol="eekboard_context_is_keyboard_visible">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<constructor name="new" symbol="eekboard_context_new">
|
||||
<return-type type="EekboardContext*"/>
|
||||
<parameters>
|
||||
<parameter name="connection" type="GDBusConnection*"/>
|
||||
<parameter name="object_path" type="gchar*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
<method name="press_keycode" symbol="eekboard_context_press_keycode">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="release_keycode" symbol="eekboard_context_release_keycode">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="keycode" type="guint"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="remove_keyboard" symbol="eekboard_context_remove_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="keyboard_id" type="guint"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_enabled" symbol="eekboard_context_set_enabled">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="enabled" type="gboolean"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_fullscreen" symbol="eekboard_context_set_fullscreen">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="fullscreen" type="gboolean"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_group" symbol="eekboard_context_set_group">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="group" type="gint"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="set_keyboard" symbol="eekboard_context_set_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="keyboard_id" type="guint"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="show_keyboard" symbol="eekboard_context_show_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContext*"/>
|
||||
<parameter name="cancellable" type="GCancellable*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="visible" type="gboolean" readable="1" writable="0" construct="0" construct-only="0"/>
|
||||
<signal name="destroyed" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContext*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="disabled" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContext*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="enabled" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContext*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="key-pressed" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContext*"/>
|
||||
<parameter name="keyname" type="char*"/>
|
||||
<parameter name="symbol" type="GObject*"/>
|
||||
<parameter name="modifiers" type="guint"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
</object>
|
||||
<object name="EekboardContextService" parent="GObject" type-name="EekboardContextService" get-type="eekboard_context_service_get_type">
|
||||
<method name="disable" symbol="eekboard_context_service_disable">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="enable" symbol="eekboard_context_service_enable">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_client_name" symbol="eekboard_context_service_get_client_name">
|
||||
<return-type type="gchar*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_fullscreen" symbol="eekboard_context_service_get_fullscreen">
|
||||
<return-type type="gboolean"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<method name="get_keyboard" symbol="eekboard_context_service_get_keyboard">
|
||||
<return-type type="EekKeyboard*"/>
|
||||
<parameters>
|
||||
<parameter name="context" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</method>
|
||||
<property name="client-name" type="char*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="connection" type="GDBusConnection*" readable="1" writable="1" construct="1" construct-only="0"/>
|
||||
<property name="fullscreen" type="gboolean" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="keyboard" type="EekKeyboard*" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<property name="object-path" type="char*" readable="1" writable="1" construct="1" construct-only="0"/>
|
||||
<property name="visible" type="gboolean" readable="1" writable="1" construct="0" construct-only="0"/>
|
||||
<signal name="disabled" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<signal name="enabled" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="create_keyboard">
|
||||
<return-type type="EekKeyboard*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContextService*"/>
|
||||
<parameter name="keyboard_type" type="gchar*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="hide_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
<vfunc name="show_keyboard">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardContextService*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<object name="EekboardService" parent="GObject" type-name="EekboardService" get-type="eekboard_service_get_type">
|
||||
<constructor name="new" symbol="eekboard_service_new">
|
||||
<return-type type="EekboardService*"/>
|
||||
<parameters>
|
||||
<parameter name="object_path" type="gchar*"/>
|
||||
<parameter name="connection" type="GDBusConnection*"/>
|
||||
</parameters>
|
||||
</constructor>
|
||||
<property name="connection" type="GDBusConnection*" readable="1" writable="1" construct="1" construct-only="0"/>
|
||||
<property name="object-path" type="char*" readable="1" writable="1" construct="1" construct-only="0"/>
|
||||
<signal name="destroyed" when="LAST">
|
||||
<return-type type="void"/>
|
||||
<parameters>
|
||||
<parameter name="object" type="EekboardService*"/>
|
||||
</parameters>
|
||||
</signal>
|
||||
<vfunc name="create_context">
|
||||
<return-type type="EekboardContextService*"/>
|
||||
<parameters>
|
||||
<parameter name="self" type="EekboardService*"/>
|
||||
<parameter name="client_name" type="gchar*"/>
|
||||
<parameter name="object_path" type="gchar*"/>
|
||||
</parameters>
|
||||
</vfunc>
|
||||
</object>
|
||||
<constant name="EEKBOARD_CLIENT_H" type="int" value="1"/>
|
||||
<constant name="EEKBOARD_CONTEXT_H" type="int" value="1"/>
|
||||
<constant name="EEKBOARD_CONTEXT_SERVICE_H" type="int" value="1"/>
|
||||
<constant name="EEKBOARD_CONTEXT_SERVICE_INTERFACE" type="char*" value="org.fedorahosted.Eekboard.Context"/>
|
||||
<constant name="EEKBOARD_CONTEXT_SERVICE_PATH" type="char*" value="/org/fedorahosted/Eekboard/Context_%d"/>
|
||||
<constant name="EEKBOARD_SERVICE_H" type="int" value="1"/>
|
||||
<constant name="EEKBOARD_SERVICE_INTERFACE" type="char*" value="org.fedorahosted.Eekboard"/>
|
||||
<constant name="EEKBOARD_SERVICE_PATH" type="char*" value="/org/fedorahosted/Eekboard"/>
|
||||
<constant name="EEKBOARD_XKLUTIL_H" type="int" value="1"/>
|
||||
</namespace>
|
||||
</api>
|
||||
@ -1 +0,0 @@
|
||||
Eekboard cheader_filename="eekboard/eekboard.h"
|
||||
@ -1 +0,0 @@
|
||||
Eekboard
|
||||
257
configure.ac
257
configure.ac
@ -20,7 +20,7 @@ AC_PREREQ(2.63)
|
||||
dnl AC_CONFIG_SRCDIR([configure.ac])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
AC_INIT([eekboard], [1.0.2], [ueno@unixuser.org])
|
||||
AC_INIT([eekboard], [0.90.5], [ueno@unixuser.org])
|
||||
|
||||
dnl Init automake
|
||||
AM_INIT_AUTOMAKE
|
||||
@ -46,12 +46,12 @@ 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: 3.0)])],
|
||||
[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=3.0])
|
||||
[with_gtk=2.0])
|
||||
AC_MSG_RESULT([$with_gtk])
|
||||
|
||||
case "$with_gtk" in
|
||||
@ -85,18 +85,18 @@ 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.26.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])])
|
||||
GLIB_GSETTINGS
|
||||
|
||||
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], ,
|
||||
@ -104,209 +104,114 @@ PKG_CHECK_MODULES([LIBXKLAVIER], [libxklavier x11], ,
|
||||
PKG_CHECK_MODULES([LIBCROCO], [libcroco-0.6], ,
|
||||
[AC_MSG_ERROR([libcroco not found])])
|
||||
|
||||
dnl use XTest to generate key events
|
||||
AC_MSG_CHECKING([whether you enable XTest])
|
||||
AC_ARG_ENABLE(xtest,
|
||||
AS_HELP_STRING([--enable-xtest=no/yes],
|
||||
[Enable XTest default=yes]),
|
||||
enable_xtest=$enableval,
|
||||
enable_xtest=yes)
|
||||
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_xtest = xyes; then
|
||||
PKG_CHECK_MODULES([XTEST], [xtst], , enable_xtest=no)
|
||||
if test x$enable_xtest = xyes; then
|
||||
AC_DEFINE([HAVE_XTEST], [1], [Define if XTest is found])
|
||||
fi
|
||||
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_XTEST, [test x$enable_xtest = xyes])
|
||||
AC_MSG_RESULT($enable_xtest)
|
||||
AM_CONDITIONAL(ENABLE_FAKEKEY, [test x$enable_fakekey = xyes])
|
||||
AC_MSG_RESULT($enable_fakekey)
|
||||
|
||||
dnl use X to mark the fullscreen window as dock
|
||||
AC_MSG_CHECKING([whether you enable X dock])
|
||||
AC_ARG_ENABLE(x-dock,
|
||||
AS_HELP_STRING([--enable-x-dock=no/yes],
|
||||
[Enable X dock default=yes]),
|
||||
enable_x_dock=$enableval,
|
||||
enable_x_dock=yes)
|
||||
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_x_dock = xyes; then
|
||||
PKG_CHECK_MODULES([XDOCK], [x11], , enable_x_dock=no)
|
||||
if test x$enable_x_dock = xyes; then
|
||||
AC_DEFINE([HAVE_XDOCK], [1], [Define if X dock is found])
|
||||
fi
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_XDOCK, [test x$enable_x_dock = xyes])
|
||||
AC_MSG_RESULT($enable_x_dock)
|
||||
|
||||
focus_listeners=""
|
||||
keystroke_listeners=""
|
||||
|
||||
focus_listeners=""
|
||||
keystroke_listeners=""
|
||||
|
||||
dnl use AT-SPI 2 to capture focus/keystroke events
|
||||
AC_MSG_CHECKING([whether you enable AT-SPI 2 event handling])
|
||||
AC_ARG_ENABLE(atspi,
|
||||
AS_HELP_STRING([--enable-atspi=no/yes],
|
||||
[Enable AT-SPI 2 event handling default=yes]),
|
||||
enable_atspi=$enableval,
|
||||
enable_atspi=yes)
|
||||
|
||||
if test x$enable_atspi = xyes; then
|
||||
PKG_CHECK_MODULES([ATSPI2], [atspi-2 dbus-glib-1], , enable_atspi=no)
|
||||
if test x$enable_atspi = xyes; then
|
||||
AC_DEFINE([HAVE_ATSPI], [1], [Define if AT-SPI 2 is found])
|
||||
focus_listeners="atspi $focus_listeners"
|
||||
keystroke_listeners="atspi $keystroke_listeners"
|
||||
fi
|
||||
fi
|
||||
AC_MSG_RESULT($enable_atspi)
|
||||
AM_CONDITIONAL(ENABLE_ATSPI, [test x$enable_atspi = xyes])
|
||||
|
||||
dnl use IBus to capture focus events
|
||||
AC_MSG_CHECKING([whether you enable IBus focus tracking])
|
||||
AC_ARG_ENABLE(ibus,
|
||||
AS_HELP_STRING([--enable-ibus=no/yes],
|
||||
[Enable IBus focus tracking default=yes]),
|
||||
enable_ibus=$enableval,
|
||||
enable_ibus=yes)
|
||||
|
||||
if test x$enable_ibus = xyes; then
|
||||
PKG_CHECK_MODULES([IBUS], [ibus-1.0 >= 1.3.99], , enable_ibus=no)
|
||||
if test x$enable_ibus = xyes; then
|
||||
AC_DEFINE([HAVE_IBUS], [1], [Define if IBus is found])
|
||||
focus_listeners="ibus $focus_listeners"
|
||||
fi
|
||||
fi
|
||||
AC_MSG_RESULT($enable_ibus)
|
||||
AM_CONDITIONAL(ENABLE_IBUS, [test x$enable_ibus = xyes])
|
||||
|
||||
if test -n "$focus_listeners"; then
|
||||
AC_DEFINE(ENABLE_FOCUS_LISTENER, [1], [Define if eekboard can follow focus changes])
|
||||
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=$enableval,
|
||||
[Enable Python language binding default=yes]),,
|
||||
enable_python=yes)
|
||||
|
||||
dnl check python unconditionally to re-generate
|
||||
dnl eek/*-keysym-labels.txt when maintainer-mode enabled
|
||||
AM_PATH_PYTHON([2.5], , enable_python=no)
|
||||
AC_MSG_RESULT($enable_python)
|
||||
AM_CONDITIONAL(ENABLE_PYTHON, [test x$enable_python = xyes])
|
||||
|
||||
if test x"$enable_python" = x"yes"; then
|
||||
if test x$enable_python = xyes; then
|
||||
AC_PATH_PROGS(PYTHON_CONFIG, [python$PYTHON_VERSION-config python-config])
|
||||
# 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`
|
||||
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`
|
||||
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)
|
||||
fi
|
||||
else
|
||||
enable_python="no (disabled, use --enable-python to enable)"
|
||||
fi
|
||||
|
||||
AC_MSG_RESULT($enable_python)
|
||||
AM_CONDITIONAL(ENABLE_PYTHON, [test x$enable_python = xyes])
|
||||
|
||||
GOBJECT_INTROSPECTION_CHECK([0.9.0])
|
||||
|
||||
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=$enableval,
|
||||
[Enable Vala language binding default=yes]),,
|
||||
enable_vala=yes)
|
||||
if test x$enable_vala = xyes; then
|
||||
if test "x$INTROSPECTION_SCANNER" = x; then
|
||||
enable_vala=no
|
||||
AC_MSG_WARN([GObject-Introspection must be enabled for Vala bindings])
|
||||
fi
|
||||
|
||||
AM_PROG_VALAC([0.10.0])
|
||||
have_vala=yes
|
||||
|
||||
AC_PATH_PROG(VALAC, valac, valac)
|
||||
AC_SUBST(VALAC)
|
||||
AC_SUBST(VALAFLAGS)
|
||||
|
||||
AC_PATH_PROG([VAPIGEN], [vapigen], [false])
|
||||
|
||||
if test "x$VAPIGEN" = "xfalse"; then
|
||||
enable_vala=no
|
||||
AC_MSG_WARN([vapigen not found. Was vala compiled with --enable-vapigen?])
|
||||
fi
|
||||
|
||||
AC_SUBST(VAPIGEN)
|
||||
fi
|
||||
AC_MSG_RESULT($enable_vala)
|
||||
AM_CONDITIONAL(ENABLE_VALA, [test x$enable_vala = xyes])
|
||||
|
||||
dnl clutter
|
||||
AC_MSG_CHECKING([whether you enable clutter])
|
||||
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=no]),
|
||||
enable_clutter=$enableval,
|
||||
[Enable Clutter user interface default=yes]),,
|
||||
enable_clutter=no)
|
||||
|
||||
if test x$enable_clutter = xyes; then
|
||||
PKG_CHECK_MODULES([CLUTTER], [clutter-1.0], , enable_clutter=no)
|
||||
if test x$enable_clutter = xyes; then
|
||||
AC_DEFINE([HAVE_CLUTTER], [1], [Define if clutter is found])
|
||||
fi
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_CLUTTER, [test x$enable_clutter = xyes])
|
||||
AC_MSG_RESULT($enable_clutter)
|
||||
|
||||
dnl clutter-gtk
|
||||
if test x$enable_clutter = xyes; then
|
||||
AC_MSG_CHECKING([whether you enable clutter-gtk])
|
||||
AC_ARG_ENABLE(clutter-gtk,
|
||||
AS_HELP_STRING([--enable-clutter-gtk=no/yes],
|
||||
[Enable clutter user interface default=yes]),
|
||||
enable_clutter_gtk=$enableval,
|
||||
enable_clutter_gtk=yes)
|
||||
|
||||
if test x$enable_clutter_gtk = xyes; then
|
||||
PKG_CHECK_MODULES([CLUTTER_GTK], [clutter-gtk-1.0], ,
|
||||
enable_clutter_gtk=no)
|
||||
if test x$enable_clutter_gtk = xyes; then
|
||||
AC_DEFINE([HAVE_CLUTTER_GTK], [1], [Define if Clutter-Gtk is found])
|
||||
fi
|
||||
fi
|
||||
AC_MSG_RESULT($enable_clutter_gtk)
|
||||
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_GTK, [test x$enable_clutter_gtk = xyes])
|
||||
|
||||
dnl libcanberra
|
||||
AC_MSG_CHECKING([whether you enable libcanberra])
|
||||
AC_ARG_ENABLE(libcanberra,
|
||||
AS_HELP_STRING([--enable-libcanberra=no/yes],
|
||||
[Enable clutter user interface default=no]),
|
||||
enable_libcanberra=$enableval,
|
||||
enable_libcanberra=yes)
|
||||
|
||||
if test x$enable_libcanberra = xyes; then
|
||||
PKG_CHECK_MODULES([LIBCANBERRA], [libcanberra-gtk3], , enable_libcanberra=no)
|
||||
if test x$enable_libcanberra = xyes; then
|
||||
AC_DEFINE([HAVE_LIBCANBERRA], [1], [Define if libcanberra is found])
|
||||
fi
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_LIBCANBERRA, [test x$enable_libcanberra = xyes])
|
||||
AC_MSG_RESULT($enable_libcanberra)
|
||||
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)
|
||||
@ -314,6 +219,8 @@ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Define to the read-only
|
||||
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
|
||||
@ -340,7 +247,7 @@ data/icons/scalable/Makefile
|
||||
data/themes/Makefile
|
||||
data/keyboards/Makefile
|
||||
examples/Makefile
|
||||
examples/eekxml/Makefile
|
||||
examples/eekboard-inscript/Makefile
|
||||
examples/simple-client/Makefile
|
||||
eek/eek-${EEK_API_VERSION}.pc
|
||||
eek/eek-clutter-${EEK_API_VERSION}.pc
|
||||
@ -356,14 +263,6 @@ Build options:
|
||||
Build shared libs $enable_shared
|
||||
Build static libs $enable_static
|
||||
CFLAGS $CFLAGS
|
||||
GTK version $with_gtk
|
||||
Build Clutter UI $enable_clutter
|
||||
Build Vala binding $enable_vala
|
||||
Build Python binding $enable_python
|
||||
Sound support $enable_libcanberra
|
||||
Build vala binding $enable_vala
|
||||
Build document $enable_gtk_doc
|
||||
Focus listeners $focus_listeners
|
||||
Keystroke listeners $keystroke_listeners
|
||||
])
|
||||
|
||||
|
||||
|
||||
@ -1,34 +1,6 @@
|
||||
SUBDIRS = icons themes keyboards
|
||||
|
||||
@GSETTINGS_RULES@
|
||||
@INTLTOOL_XML_NOMERGE_RULE@
|
||||
gsettings_schemas_in_files = org.fedorahosted.eekboard.gschema.xml.in
|
||||
gsettings_SCHEMAS = $(gsettings_schemas_in_files:.gschema.xml.in=.gschema.xml)
|
||||
|
||||
servicedir = $(datadir)/dbus-1/services
|
||||
service_in_files = eekboard-server.service.in
|
||||
service_DATA = $(service_in_files:.service.in=.service)
|
||||
|
||||
$(service_DATA): $(service_in_files) Makefile
|
||||
$(AM_V_GEN) sed -e "s|\@bindir\@|$(bindir)|" $< > $@
|
||||
|
||||
desktopdir = $(datadir)/applications
|
||||
desktop_in_files = eekboard.desktop.in
|
||||
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
||||
|
||||
if ENABLE_ATSPI
|
||||
autostartdir = $(sysconfdir)/xdg/autostart
|
||||
autostart_in_files = eekboard-autostart.desktop.in
|
||||
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
|
||||
endif
|
||||
|
||||
dist_desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
||||
@INTLTOOL_DESKTOP_RULE@
|
||||
|
||||
CLEANFILES = $(service_DATA) $(desktop_DATA) $(gsettings_SCHEMAS)
|
||||
EXTRA_DIST = $(service_in_files) $(desktop_in_files) $(gsettings_schemas_in_files)
|
||||
|
||||
if ENABLE_ATSPI
|
||||
CLEANFILES += $(autostart_DATA)
|
||||
EXTRA_DIST += $(autostart_in_files)
|
||||
endif
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
keyboarddir = $(pkgdatadir)/keyboards
|
||||
dist_keyboard_DATA = us.xml th.xml jp-kana.xml
|
||||
dist_keyboard_DATA = us-qwerty.xml
|
||||
|
||||
@ -1,697 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<keyboard version="0.90">
|
||||
<bounds>0.000000,0.000000,640.000000,296.585366</bounds>
|
||||
<section name="LeftModifiers">
|
||||
<bounds>16.000000,78.048780,94.000000,202.000000</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<key id="keycode61" name="TAB" column="1" row="0">
|
||||
<bounds>4.000000,43.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65289">Tab</keysym>
|
||||
<keysym keyval="65056">ISO_Left_Tab</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode56" name="CAPS" column="2" row="0">
|
||||
<bounds>4.000000,83.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode57" name="LFSH" column="3" row="0">
|
||||
<bounds>4.000000,122.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65505">Shift_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode58" name="LCTL" column="4" row="0">
|
||||
<bounds>4.000000,162.341463,57.000000,38.000000</bounds>
|
||||
<oref>outline9</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<symbol label="⌨" icon="input-keyboard-symbolic">cycle-keyboard</symbol>
|
||||
<symbol label="☺" icon="preferences-system-symbolic">preferences</symbol>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode60" name="BKSP" column="1" row="1">
|
||||
<bounds>517.000000,44.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65288">BackSpace</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode62" name="RTRN" column="1" row="1">
|
||||
<bounds>517.000000,83.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65293">Return</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode63" name="RTSH" column="2" row="1">
|
||||
<bounds>517.000000,122.000000,80.000000,38.000000</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65506">Shift_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode65" name="keycode65" column="0" row="2">
|
||||
<bounds>165.463415,162.341463,238.829268,37.463415</bounds>
|
||||
<oref>outline14</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="32">space</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode108" name="keycode108" column="1" row="2">
|
||||
<bounds>407.414634,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65361">Left</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode134" name="keycode134" column="2" row="2">
|
||||
<bounds>458.926829,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65362">Up</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode135" name="keycode135" column="3" row="2">
|
||||
<bounds>508.878049,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65364">Down</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode105" name="keycode105" column="4" row="2">
|
||||
<bounds>560.390244,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65363">Right</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<section name="Alpha">
|
||||
<bounds>99.000000,16.000000,469.000000,202.000000</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<row>
|
||||
<columns>5</columns>
|
||||
<orientation>0</orientation>
|
||||
</row>
|
||||
<key id="keycode1" name="AE03" column="0" row="0">
|
||||
<bounds>4.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="51" label="あ">3</keysym>
|
||||
<keysym keyval="35" label="ぁ">numbersign</keysym>
|
||||
<keysym keyval="51" label="ア">3</keysym>
|
||||
<keysym keyval="35" label="ァ">numbersign</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode2" name="AD03" column="1" row="0">
|
||||
<bounds>4.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="101" label="い">e</keysym>
|
||||
<keysym keyval="69" label="ぃ">E</keysym>
|
||||
<keysym keyval="101" label="イ">e</keysym>
|
||||
<keysym keyval="69" label="ィ">E</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode3" name="AE04" column="2" row="0">
|
||||
<bounds>4.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="52" label="う">4</keysym>
|
||||
<keysym keyval="36" label="ぅ">dollar</keysym>
|
||||
<keysym keyval="52" label="ウ">4</keysym>
|
||||
<keysym keyval="36" label="ゥ">dollar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode4" name="AE05" column="3" row="0">
|
||||
<bounds>4.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="53" label="え">5</keysym>
|
||||
<keysym keyval="37" label="ぇ">percent</keysym>
|
||||
<keysym keyval="53" label="エ">5</keysym>
|
||||
<keysym keyval="37" label="ェ">percent</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode5" name="AE06" column="4" row="0">
|
||||
<bounds>4.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="54" label="お">6</keysym>
|
||||
<keysym keyval="38" label="ぉ">ampersand</keysym>
|
||||
<keysym keyval="54" label="オ">6</keysym>
|
||||
<keysym keyval="38" label="ォ">ampersand</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode6" name="AE03" column="0" row="1">
|
||||
<bounds>43.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="116" label="か">t</keysym>
|
||||
<keysym keyval="116" label="カ">t</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode7" name="AD03" column="1" row="1">
|
||||
<bounds>43.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="103" label="き">g</keysym>
|
||||
<keysym keyval="103" label="キ">g</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode8" name="AE04" column="2" row="1">
|
||||
<bounds>43.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="104" label="く">h</keysym>
|
||||
<keysym keyval="104" label="ク">h</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode9" name="AE05" column="3" row="1">
|
||||
<bounds>43.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="58" label="け">colon</keysym>
|
||||
<keysym keyval="58" label="ケ">colon</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode10" name="AE06" column="4" row="1">
|
||||
<bounds>43.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="98" label="こ">b</keysym>
|
||||
<keysym keyval="98" label="コ">b</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode11" name="AE03" column="0" row="2">
|
||||
<bounds>82.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="120" label="さ">x</keysym>
|
||||
<keysym keyval="120" label="サ">x</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode12" name="AD03" column="1" row="2">
|
||||
<bounds>82.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="100" label="し">d</keysym>
|
||||
<keysym keyval="100" label="シ">d</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode13" name="AE04" column="2" row="0">
|
||||
<bounds>82.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="114" label="す">r</keysym>
|
||||
<keysym keyval="114" label="ス">r</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode14" name="AE05" column="3" row="2">
|
||||
<bounds>82.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="112" label="せ">p</keysym>
|
||||
<keysym keyval="112" label="セ">p</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode15" name="AE06" column="4" row="2">
|
||||
<bounds>82.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="99" label="そ">c</keysym>
|
||||
<keysym keyval="99" label="ソ">c</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode16" name="AE03" column="0" row="3">
|
||||
<bounds>121.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="113" label="た">q</keysym>
|
||||
<keysym keyval="113" label="タ">q</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode17" name="AD03" column="1" row="3">
|
||||
<bounds>121.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="97" label="ち">a</keysym>
|
||||
<keysym keyval="97" label="チ">a</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode18" name="AE04" column="2" row="3">
|
||||
<bounds>121.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="122" label="つ">z</keysym>
|
||||
<keysym keyval="90" label="っ">Z</keysym>
|
||||
<keysym keyval="122" label="ツ">z</keysym>
|
||||
<keysym keyval="90" label="ッ">Z</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode19" name="AE05" column="3" row="3">
|
||||
<bounds>121.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="119" label="て">w</keysym>
|
||||
<keysym keyval="119" label="テ">w</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode20" name="AE06" column="4" row="3">
|
||||
<bounds>121.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="115" label="と">s</keysym>
|
||||
<keysym keyval="115" label="ト">s</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode21" name="AE03" column="0" row="4">
|
||||
<bounds>160.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="117" label="な">u</keysym>
|
||||
<keysym keyval="117" label="ナ">u</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode22" name="AD03" column="1" row="4">
|
||||
<bounds>160.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="105" label="に">i</keysym>
|
||||
<keysym keyval="105" label="ニ">i</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode23" name="AE04" column="2" row="4">
|
||||
<bounds>160.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="33" label="ぬ">exclam</keysym>
|
||||
<keysym keyval="33" label="ヌ">exclam</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode24" name="AE05" column="3" row="4">
|
||||
<bounds>160.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="44" label="ね">comma</keysym>
|
||||
<keysym keyval="44" label="ネ">comma</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode25" name="AE06" column="4" row="4">
|
||||
<bounds>160.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="107" label="の">k</keysym>
|
||||
<keysym keyval="107" label="ノ">k</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode26" name="AE03" column="0" row="5">
|
||||
<bounds>199.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="102" label="は">f</keysym>
|
||||
<keysym keyval="102" label="ハ">f</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode27" name="AD03" column="1" row="5">
|
||||
<bounds>199.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="118" label="ひ">v</keysym>
|
||||
<keysym keyval="118" label="ヒ">v</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode28" name="AE04" column="2" row="5">
|
||||
<bounds>199.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="34" label="ふ">quotedbl</keysym>
|
||||
<keysym keyval="34" label="フ">quotedbl</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode29" name="AE05" column="3" row="5">
|
||||
<bounds>199.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="94" label="へ">asciicircum</keysym>
|
||||
<keysym keyval="94" label="ヘ">asciicircum</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode30" name="AE06" column="4" row="5">
|
||||
<bounds>199.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="61" label="ほ">equal</keysym>
|
||||
<keysym keyval="61" label="ホ">equal</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode31" name="AE03" column="0" row="6">
|
||||
<bounds>238.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="106" label="ま">j</keysym>
|
||||
<keysym keyval="106" label="マ">j</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode32" name="AD03" column="1" row="6">
|
||||
<bounds>238.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="110" label="み">n</keysym>
|
||||
<keysym keyval="110" label="ミ">n</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode33" name="AE04" column="2" row="6">
|
||||
<bounds>238.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="93" label="む">bracketright</keysym>
|
||||
<keysym keyval="93" label="ム">bracketright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode34" name="AE05" column="3" row="6">
|
||||
<bounds>238.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="47" label="め">slash</keysym>
|
||||
<keysym keyval="47" label="メ">slash</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode35" name="AE06" column="4" row="6">
|
||||
<bounds>238.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="109" label="も">m</keysym>
|
||||
<keysym keyval="109" label="モ">m</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode36" name="AE03" column="0" row="7">
|
||||
<bounds>277.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="55" label="や">7</keysym>
|
||||
<keysym keyval="39" label="ゃ">quoteright</keysym>
|
||||
<keysym keyval="55" label="ヤ">7</keysym>
|
||||
<keysym keyval="39" label="ャ">quoteright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode37" name="AD03" column="1" row="7">
|
||||
<bounds>277.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="56" label="ゆ">8</keysym>
|
||||
<keysym keyval="40" label="ゅ">parenleft</keysym>
|
||||
<keysym keyval="56" label="ユ">8</keysym>
|
||||
<keysym keyval="40" label="ュ">parenleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode38" name="AE04" column="2" row="7">
|
||||
<bounds>277.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="57" label="よ">9</keysym>
|
||||
<keysym keyval="41" label="ょ">parenright</keysym>
|
||||
<keysym keyval="57" label="ヨ">9</keysym>
|
||||
<keysym keyval="41" label="ョ">parenright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode41" name="AE03" column="0" row="8">
|
||||
<bounds>316.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="111" label="ら">o</keysym>
|
||||
<keysym keyval="111" label="ラ">o</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode42" name="AD03" column="1" row="8">
|
||||
<bounds>316.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="108" label="り">l</keysym>
|
||||
<keysym keyval="108" label="リ">l</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode43" name="AE04" column="2" row="8">
|
||||
<bounds>316.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="46" label="る">period</keysym>
|
||||
<keysym keyval="46" label="ル">period</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode44" name="AE05" column="3" row="8">
|
||||
<bounds>316.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="59" label="れ">semicolon</keysym>
|
||||
<keysym keyval="59" label="レ">semicolon</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode45" name="AE06" column="4" row="8">
|
||||
<bounds>316.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="92" label="ろ">backslash</keysym>
|
||||
<keysym keyval="92" label="ロ">backslash</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode46" name="AE03" column="0" row="9">
|
||||
<bounds>355.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="48" label="わ">0</keysym>
|
||||
<keysym keyval="48" label="ワ">0</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode47" name="AD03" column="1" row="9">
|
||||
<bounds>355.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="126" label="を">asciitilde</keysym>
|
||||
<keysym keyval="126" label="ヲ">asciitilde</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode48" name="AE04" column="2" row="9">
|
||||
<bounds>355.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="121" label="ん">y</keysym>
|
||||
<keysym keyval="121" label="ン">y</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode49" name="AE05" column="3" row="9">
|
||||
<bounds>355.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="123" label="「">braceleft</keysym>
|
||||
<keysym keyval="48" label="ゐ">0</keysym>
|
||||
<keysym keyval="123" label="「">braceleft</keysym>
|
||||
<keysym keyval="48" label="ヰ">0</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode50" name="AE06" column="4" row="9">
|
||||
<bounds>355.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="125" label="」">braceright</keysym>
|
||||
<keysym keyval="48" label="ゑ">0</keysym>
|
||||
<keysym keyval="125" label="」">braceright</keysym>
|
||||
<keysym keyval="48" label="ヱ">0</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
|
||||
<key id="keycode51" name="AE03" column="0" row="10">
|
||||
<bounds>394.000000,4.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="64" label="゛">at</keysym>
|
||||
<keysym keyval="64" label="゛">at</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode52" name="AD03" column="1" row="10">
|
||||
<bounds>394.000000,43.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="91" label="゜">bracketleft</keysym>
|
||||
<keysym keyval="91" label="゜">bracketleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode53" name="AE04" column="2" row="10">
|
||||
<bounds>394.000000,82.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="124" label="ー">bar</keysym>
|
||||
<keysym keyval="124" label="ー">bar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode54" name="AE05" column="3" row="10">
|
||||
<bounds>394.000000,121.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="1">
|
||||
<keysym keyval="60" label="、">less</keysym>
|
||||
<keysym keyval="60" label="、">less</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode55" name="AE06" column="4" row="10">
|
||||
<bounds>394.000000,160.000000,38.000000,38.000000</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="2" levels="2">
|
||||
<keysym keyval="62" label="。">greater</keysym>
|
||||
<keysym keyval="63" label="・">question</keysym>
|
||||
<keysym keyval="62" label="。">greater</keysym>
|
||||
<keysym keyval="63" label="・">question</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<outline id="outline1">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>38.000000,0.000000</point>
|
||||
<point>38.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline3">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>60.000000,0.000000</point>
|
||||
<point>60.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline4">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>60.000000,0.000000</point>
|
||||
<point>60.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline5">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>69.000000,0.000000</point>
|
||||
<point>69.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline6">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>89.000000,0.000000</point>
|
||||
<point>89.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline7">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>89.000000,0.000000</point>
|
||||
<point>89.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline8">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>110.000000,0.000000</point>
|
||||
<point>110.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline9">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>57.000000,0.000000</point>
|
||||
<point>57.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline10">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>49.000000,0.000000</point>
|
||||
<point>49.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline11">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>239.000000,0.000000</point>
|
||||
<point>239.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline12">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>38.000000,0.000000</point>
|
||||
<point>38.000000,79.000000</point>
|
||||
<point>0.000000,79.000000</point>
|
||||
</outline>
|
||||
<outline id="outline13">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>79.000000,0.000000</point>
|
||||
<point>79.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline2">
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>80.000000,0.000000</point>
|
||||
<point>80.000000,38.000000</point>
|
||||
<point>0.000000,38.000000</point>
|
||||
</outline>
|
||||
<outline id="outline14">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>238.829268,0.000000</point>
|
||||
<point>238.829268,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
</keyboard>
|
||||
|
||||
@ -1,681 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<keyboard version="0.90">
|
||||
<bounds>0.000000,0.000000,640.000000,296.585366</bounds>
|
||||
<section>
|
||||
<bounds>15.609756,15.609756,640.000000,39.024390</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>16</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<key id="keycode9" name="keycode9" column="0" row="0">
|
||||
<bounds>3.121951,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65307">Escape</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode67" name="keycode67" column="1" row="0">
|
||||
<bounds>84.292683,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65470">F1</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode68" name="keycode68" column="2" row="0">
|
||||
<bounds>124.878049,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65471">F2</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode69" name="keycode69" column="3" row="0">
|
||||
<bounds>165.463415,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65472">F3</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode70" name="keycode70" column="4" row="0">
|
||||
<bounds>206.048780,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65473">F4</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode71" name="keycode71" column="5" row="0">
|
||||
<bounds>266.926829,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65474">F5</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode72" name="keycode72" column="6" row="0">
|
||||
<bounds>307.512195,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65475">F6</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode73" name="keycode73" column="7" row="0">
|
||||
<bounds>348.097561,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65476">F7</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode74" name="keycode74" column="8" row="0">
|
||||
<bounds>388.682927,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65477">F8</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode75" name="keycode75" column="9" row="0">
|
||||
<bounds>449.560976,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65478">F9</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode76" name="keycode76" column="10" row="0">
|
||||
<bounds>490.146341,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65479">F10</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode95" name="keycode95" column="11" row="0">
|
||||
<bounds>530.731707,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65480">F11</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode96" name="keycode96" column="12" row="0">
|
||||
<bounds>571.317073,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65481">F12</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<section>
|
||||
<bounds>15.609756,78.048780,608.780488,201.365854</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="keycode49" name="keycode49" column="0" row="0">
|
||||
<bounds>3.121951,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode10" name="keycode10" column="1" row="0">
|
||||
<bounds>43.707317,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3557">Thai_lakkhangyao</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode11" name="keycode11" column="2" row="0">
|
||||
<bounds>84.292683,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="47">slash</keysym>
|
||||
<keysym keyval="3569">Thai_leknung</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode12" name="keycode12" column="3" row="0">
|
||||
<bounds>124.878049,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="3570">Thai_leksong</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode13" name="keycode13" column="4" row="0">
|
||||
<bounds>165.463415,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3520">Thai_phosamphao</keysym>
|
||||
<keysym keyval="3571">Thai_leksam</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode14" name="keycode14" column="5" row="0">
|
||||
<bounds>206.048780,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3510">Thai_thothung</keysym>
|
||||
<keysym keyval="3572">Thai_leksi</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode15" name="keycode15" column="6" row="0">
|
||||
<bounds>245.073171,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3544">Thai_sarau</keysym>
|
||||
<keysym keyval="3545">Thai_sarauu</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode16" name="keycode16" column="7" row="0">
|
||||
<bounds>285.658537,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3542">Thai_saraue</keysym>
|
||||
<keysym keyval="3551">Thai_baht</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode17" name="keycode17" column="8" row="0">
|
||||
<bounds>326.243902,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3492">Thai_khokhwai</keysym>
|
||||
<keysym keyval="3573">Thai_lekha</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode18" name="keycode18" column="9" row="0">
|
||||
<bounds>366.829268,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3509">Thai_totao</keysym>
|
||||
<keysym keyval="3574">Thai_lekhok</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode19" name="keycode19" column="10" row="0">
|
||||
<bounds>407.414634,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3496">Thai_chochan</keysym>
|
||||
<keysym keyval="3575">Thai_lekchet</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode20" name="keycode20" column="11" row="0">
|
||||
<bounds>448.000000,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3490">Thai_khokhai</keysym>
|
||||
<keysym keyval="3576">Thai_lekpaet</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode21" name="keycode21" column="12" row="0">
|
||||
<bounds>488.585366,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3498">Thai_chochang</keysym>
|
||||
<keysym keyval="3577">Thai_lekkao</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode22" name="keycode22" column="13" row="0">
|
||||
<bounds>529.170732,1.560976,79.609756,37.463415</bounds>
|
||||
<oref>outline13</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65288">BackSpace</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode23" name="keycode23" column="0" row="1">
|
||||
<bounds>3.121951,42.146341,59.317073,37.463415</bounds>
|
||||
<oref>outline4</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65289">Tab</keysym>
|
||||
<keysym keyval="65056">ISO_Left_Tab</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode24" name="keycode24" column="1" row="1">
|
||||
<bounds>65.560976,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3558">Thai_maiyamok</keysym>
|
||||
<keysym keyval="3568">Thai_leksun</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode25" name="keycode25" column="2" row="1">
|
||||
<bounds>106.146341,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3556">Thai_saraaimaimalai</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode26" name="keycode26" column="3" row="1">
|
||||
<bounds>145.170732,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3539">Thai_saraam</keysym>
|
||||
<keysym keyval="3502">Thai_dochada</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode27" name="keycode27" column="4" row="1">
|
||||
<bounds>185.756098,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3518">Thai_phophan</keysym>
|
||||
<keysym keyval="3505">Thai_thonangmontho</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode28" name="keycode28" column="5" row="1">
|
||||
<bounds>226.341463,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3536">Thai_saraa</keysym>
|
||||
<keysym keyval="3512">Thai_thothong</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode29" name="keycode29" column="6" row="1">
|
||||
<bounds>266.926829,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3537">Thai_maihanakat</keysym>
|
||||
<keysym keyval="3565">Thai_nikhahit</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode30" name="keycode30" column="7" row="1">
|
||||
<bounds>307.512195,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3541">Thai_saraii</keysym>
|
||||
<keysym keyval="3562">Thai_maitri</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode31" name="keycode31" column="8" row="1">
|
||||
<bounds>348.097561,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3523">Thai_rorua</keysym>
|
||||
<keysym keyval="3507">Thai_nonen</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode32" name="keycode32" column="9" row="1">
|
||||
<bounds>388.682927,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3513">Thai_nonu</keysym>
|
||||
<keysym keyval="3535">Thai_paiyannoi</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode33" name="keycode33" column="10" row="1">
|
||||
<bounds>429.268293,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3522">Thai_yoyak</keysym>
|
||||
<keysym keyval="3501">Thai_yoying</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode34" name="keycode34" column="11" row="1">
|
||||
<bounds>468.292683,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3514">Thai_bobaimai</keysym>
|
||||
<keysym keyval="3504">Thai_thothan</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode35" name="keycode35" column="12" row="1">
|
||||
<bounds>508.878049,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3525">Thai_loling</keysym>
|
||||
<keysym keyval="44">comma</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode51" name="keycode51" column="13" row="1">
|
||||
<bounds>549.463415,42.146341,59.317073,37.463415</bounds>
|
||||
<oref>outline5</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3491">Thai_khokhuat</keysym>
|
||||
<keysym keyval="3493">Thai_khokhon</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode66" name="keycode66" column="0" row="2">
|
||||
<bounds>3.121951,82.731707,68.682927,37.463415</bounds>
|
||||
<oref>outline6</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65027">ISO_Level3_Shift</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode38" name="keycode38" column="1" row="2">
|
||||
<bounds>76.487805,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3519">Thai_fofan</keysym>
|
||||
<keysym keyval="3524">Thai_ru</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode39" name="keycode39" column="2" row="2">
|
||||
<bounds>115.512195,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3531">Thai_hohip</keysym>
|
||||
<keysym keyval="3494">Thai_khorakhang</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode40" name="keycode40" column="3" row="2">
|
||||
<bounds>156.097561,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3489">Thai_kokai</keysym>
|
||||
<keysym keyval="3503">Thai_topatak</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode41" name="keycode41" column="4" row="2">
|
||||
<bounds>196.682927,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3508">Thai_dodek</keysym>
|
||||
<keysym keyval="3554">Thai_sarao</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode42" name="keycode42" column="5" row="2">
|
||||
<bounds>237.268293,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3552">Thai_sarae</keysym>
|
||||
<keysym keyval="3500">Thai_chochoe</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode43" name="keycode43" column="6" row="2">
|
||||
<bounds>277.853659,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3561">Thai_maitho</keysym>
|
||||
<keysym keyval="3559">Thai_maitaikhu</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode44" name="keycode44" column="7" row="2">
|
||||
<bounds>318.439024,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3560">Thai_maiek</keysym>
|
||||
<keysym keyval="3563">Thai_maichattawa</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode45" name="keycode45" column="8" row="2">
|
||||
<bounds>359.024390,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3538">Thai_saraaa</keysym>
|
||||
<keysym keyval="3529">Thai_sorusi</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode46" name="keycode46" column="9" row="2">
|
||||
<bounds>399.609756,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3530">Thai_sosua</keysym>
|
||||
<keysym keyval="3528">Thai_sosala</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode47" name="keycode47" column="10" row="2">
|
||||
<bounds>438.634146,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3527">Thai_wowaen</keysym>
|
||||
<keysym keyval="3499">Thai_soso</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode48" name="keycode48" column="11" row="2">
|
||||
<bounds>479.219512,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3495">Thai_ngongu</keysym>
|
||||
<keysym keyval="46">period</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode36" name="keycode36" column="12" row="2">
|
||||
<bounds>519.804878,82.731707,88.975610,37.463415</bounds>
|
||||
<oref>outline7</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65293">Return</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode50" name="keycode50" column="0" row="3">
|
||||
<bounds>3.121951,121.756098,88.975610,37.463415</bounds>
|
||||
<oref>outline8</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65505">Shift_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode52" name="keycode52" column="1" row="3">
|
||||
<bounds>95.219512,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3516">Thai_phophung</keysym>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode53" name="keycode53" column="2" row="3">
|
||||
<bounds>135.804878,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3515">Thai_popla</keysym>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode54" name="keycode54" column="3" row="3">
|
||||
<bounds>176.390244,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3553">Thai_saraae</keysym>
|
||||
<keysym keyval="3497">Thai_choching</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode55" name="keycode55" column="4" row="3">
|
||||
<bounds>215.414634,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3533">Thai_oang</keysym>
|
||||
<keysym keyval="3534">Thai_honokhuk</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode56" name="keycode56" column="5" row="3">
|
||||
<bounds>256.000000,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3540">Thai_sarai</keysym>
|
||||
<keysym keyval="3546">Thai_phinthu</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode57" name="keycode57" column="6" row="3">
|
||||
<bounds>296.585366,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3543">Thai_sarauee</keysym>
|
||||
<keysym keyval="3564">Thai_thanthakhat</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode58" name="keycode58" column="7" row="3">
|
||||
<bounds>337.170732,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3511">Thai_thothahan</keysym>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode59" name="keycode59" column="8" row="3">
|
||||
<bounds>377.756098,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3521">Thai_moma</keysym>
|
||||
<keysym keyval="3506">Thai_thophuthao</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode60" name="keycode60" column="9" row="3">
|
||||
<bounds>418.341463,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3555">Thai_saraaimaimuan</keysym>
|
||||
<keysym keyval="3532">Thai_lochula</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode61" name="keycode61" column="10" row="3">
|
||||
<bounds>458.926829,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="3517">Thai_fofa</keysym>
|
||||
<keysym keyval="3526">Thai_lu</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode62" name="keycode62" column="11" row="3">
|
||||
<bounds>499.512195,121.756098,109.268293,37.463415</bounds>
|
||||
<oref>outline9</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65506">Shift_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode37" name="keycode37" column="0" row="4">
|
||||
<bounds>3.121951,162.341463,56.195122,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<symbol label="⌨" icon="input-keyboard-symbolic">cycle-keyboard</symbol>
|
||||
<symbol label="☺" icon="preferences-system-symbolic">preferences</symbol>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode133" name="keycode133" column="1" row="4">
|
||||
<bounds>62.439024,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode64" name="keycode64" column="2" row="4">
|
||||
<bounds>113.951220,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65513">Alt_L</keysym>
|
||||
<keysym keyval="65511">Meta_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode65" name="keycode65" column="3" row="4">
|
||||
<bounds>165.463415,162.341463,238.829268,37.463415</bounds>
|
||||
<oref>outline3</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="32">space</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode108" name="keycode108" column="4" row="4">
|
||||
<bounds>407.414634,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65361">Left</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode134" name="keycode134" column="5" row="4">
|
||||
<bounds>458.926829,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65362">Up</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode135" name="keycode135" column="6" row="4">
|
||||
<bounds>508.878049,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65364">Down</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode105" name="keycode105" column="7" row="4">
|
||||
<bounds>560.390244,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65363">Right</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<outline id="outline2">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>37.463415,0.000000</point>
|
||||
<point>37.463415,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline1">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>48.390244,0.000000</point>
|
||||
<point>48.390244,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline4">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>59.317073,0.000000</point>
|
||||
<point>59.317073,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline5">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>59.317073,0.000000</point>
|
||||
<point>59.317073,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline6">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>68.682927,0.000000</point>
|
||||
<point>68.682927,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline7">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>88.975610,0.000000</point>
|
||||
<point>88.975610,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline8">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>88.975610,0.000000</point>
|
||||
<point>88.975610,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline9">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>109.268293,0.000000</point>
|
||||
<point>109.268293,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline10">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>56.195122,0.000000</point>
|
||||
<point>56.195122,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline13">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>79.609756,0.000000</point>
|
||||
<point>79.609756,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline3">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>238.829268,0.000000</point>
|
||||
<point>238.829268,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
</keyboard>
|
||||
707
data/keyboards/us-qwerty.xml
Normal file
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,682 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<keyboard version="0.90">
|
||||
<bounds>0.000000,0.000000,640.000000,296.585366</bounds>
|
||||
<section>
|
||||
<bounds>15.609756,15.609756,640.000000,39.024390</bounds>
|
||||
<angle>0</angle>
|
||||
<row>
|
||||
<columns>16</columns>
|
||||
<orientation>1</orientation>
|
||||
</row>
|
||||
<key id="keycode9" name="keycode9" column="0" row="0">
|
||||
<bounds>3.121951,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65307">Escape</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode67" name="keycode67" column="1" row="0">
|
||||
<bounds>84.292683,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65470">F1</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode68" name="keycode68" column="2" row="0">
|
||||
<bounds>124.878049,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65471">F2</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode69" name="keycode69" column="3" row="0">
|
||||
<bounds>165.463415,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65472">F3</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode70" name="keycode70" column="4" row="0">
|
||||
<bounds>206.048780,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65473">F4</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode71" name="keycode71" column="5" row="0">
|
||||
<bounds>266.926829,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65474">F5</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode72" name="keycode72" column="6" row="0">
|
||||
<bounds>307.512195,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65475">F6</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode73" name="keycode73" column="7" row="0">
|
||||
<bounds>348.097561,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65476">F7</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode74" name="keycode74" column="8" row="0">
|
||||
<bounds>388.682927,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65477">F8</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode75" name="keycode75" column="9" row="0">
|
||||
<bounds>449.560976,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65478">F9</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode76" name="keycode76" column="10" row="0">
|
||||
<bounds>490.146341,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65479">F10</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode95" name="keycode95" column="11" row="0">
|
||||
<bounds>530.731707,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65480">F11</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode96" name="keycode96" column="12" row="0">
|
||||
<bounds>571.317073,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65481">F12</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<section>
|
||||
<bounds>15.609756,78.048780,608.780488,201.365854</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="keycode49" name="keycode49" column="0" row="0">
|
||||
<bounds>3.121951,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="96">quoteleft</keysym>
|
||||
<keysym keyval="126">asciitilde</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode10" name="keycode10" column="1" row="0">
|
||||
<bounds>43.707317,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="49">1</keysym>
|
||||
<keysym keyval="33">exclam</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode11" name="keycode11" column="2" row="0">
|
||||
<bounds>84.292683,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="50">2</keysym>
|
||||
<keysym keyval="64">at</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode12" name="keycode12" column="3" row="0">
|
||||
<bounds>124.878049,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="51">3</keysym>
|
||||
<keysym keyval="35">numbersign</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode13" name="keycode13" column="4" row="0">
|
||||
<bounds>165.463415,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="52">4</keysym>
|
||||
<keysym keyval="36">dollar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode14" name="keycode14" column="5" row="0">
|
||||
<bounds>206.048780,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="3">
|
||||
<keysym keyval="53">5</keysym>
|
||||
<keysym keyval="37">percent</keysym>
|
||||
<keysym keyval="8364">EuroSign</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode15" name="keycode15" column="6" row="0">
|
||||
<bounds>245.073171,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="54">6</keysym>
|
||||
<keysym keyval="94">asciicircum</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode16" name="keycode16" column="7" row="0">
|
||||
<bounds>285.658537,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="55">7</keysym>
|
||||
<keysym keyval="38">ampersand</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode17" name="keycode17" column="8" row="0">
|
||||
<bounds>326.243902,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="56">8</keysym>
|
||||
<keysym keyval="42">asterisk</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode18" name="keycode18" column="9" row="0">
|
||||
<bounds>366.829268,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="57">9</keysym>
|
||||
<keysym keyval="40">parenleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode19" name="keycode19" column="10" row="0">
|
||||
<bounds>407.414634,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="48">0</keysym>
|
||||
<keysym keyval="41">parenright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode20" name="keycode20" column="11" row="0">
|
||||
<bounds>448.000000,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="45">minus</keysym>
|
||||
<keysym keyval="95">underscore</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode21" name="keycode21" column="12" row="0">
|
||||
<bounds>488.585366,1.560976,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="61">equal</keysym>
|
||||
<keysym keyval="43">plus</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode22" name="keycode22" column="13" row="0">
|
||||
<bounds>529.170732,1.560976,79.609756,37.463415</bounds>
|
||||
<oref>outline13</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65288">BackSpace</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode23" name="keycode23" column="0" row="1">
|
||||
<bounds>3.121951,42.146341,59.317073,37.463415</bounds>
|
||||
<oref>outline4</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65289">Tab</keysym>
|
||||
<keysym keyval="65056">ISO_Left_Tab</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode24" name="keycode24" column="1" row="1">
|
||||
<bounds>65.560976,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="113">q</keysym>
|
||||
<keysym keyval="81">Q</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode25" name="keycode25" column="2" row="1">
|
||||
<bounds>106.146341,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="119">w</keysym>
|
||||
<keysym keyval="87">W</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode26" name="keycode26" column="3" row="1">
|
||||
<bounds>145.170732,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="101">e</keysym>
|
||||
<keysym keyval="69">E</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode27" name="keycode27" column="4" row="1">
|
||||
<bounds>185.756098,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="114">r</keysym>
|
||||
<keysym keyval="82">R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode28" name="keycode28" column="5" row="1">
|
||||
<bounds>226.341463,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="116">t</keysym>
|
||||
<keysym keyval="84">T</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode29" name="keycode29" column="6" row="1">
|
||||
<bounds>266.926829,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="121">y</keysym>
|
||||
<keysym keyval="89">Y</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode30" name="keycode30" column="7" row="1">
|
||||
<bounds>307.512195,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="117">u</keysym>
|
||||
<keysym keyval="85">U</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode31" name="keycode31" column="8" row="1">
|
||||
<bounds>348.097561,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="105">i</keysym>
|
||||
<keysym keyval="73">I</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode32" name="keycode32" column="9" row="1">
|
||||
<bounds>388.682927,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="111">o</keysym>
|
||||
<keysym keyval="79">O</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode33" name="keycode33" column="10" row="1">
|
||||
<bounds>429.268293,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="112">p</keysym>
|
||||
<keysym keyval="80">P</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode34" name="keycode34" column="11" row="1">
|
||||
<bounds>468.292683,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="91">bracketleft</keysym>
|
||||
<keysym keyval="123">braceleft</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode35" name="keycode35" column="12" row="1">
|
||||
<bounds>508.878049,42.146341,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="93">bracketright</keysym>
|
||||
<keysym keyval="125">braceright</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode51" name="keycode51" column="13" row="1">
|
||||
<bounds>549.463415,42.146341,59.317073,37.463415</bounds>
|
||||
<oref>outline5</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="92">backslash</keysym>
|
||||
<keysym keyval="124">bar</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode66" name="keycode66" column="0" row="2">
|
||||
<bounds>3.121951,82.731707,68.682927,37.463415</bounds>
|
||||
<oref>outline6</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65027">ISO_Level3_Shift</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode38" name="keycode38" column="1" row="2">
|
||||
<bounds>76.487805,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="97">a</keysym>
|
||||
<keysym keyval="65">A</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode39" name="keycode39" column="2" row="2">
|
||||
<bounds>115.512195,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="115">s</keysym>
|
||||
<keysym keyval="83">S</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode40" name="keycode40" column="3" row="2">
|
||||
<bounds>156.097561,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="100">d</keysym>
|
||||
<keysym keyval="68">D</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode41" name="keycode41" column="4" row="2">
|
||||
<bounds>196.682927,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="102">f</keysym>
|
||||
<keysym keyval="70">F</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode42" name="keycode42" column="5" row="2">
|
||||
<bounds>237.268293,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="103">g</keysym>
|
||||
<keysym keyval="71">G</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode43" name="keycode43" column="6" row="2">
|
||||
<bounds>277.853659,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="104">h</keysym>
|
||||
<keysym keyval="72">H</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode44" name="keycode44" column="7" row="2">
|
||||
<bounds>318.439024,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="106">j</keysym>
|
||||
<keysym keyval="74">J</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode45" name="keycode45" column="8" row="2">
|
||||
<bounds>359.024390,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="107">k</keysym>
|
||||
<keysym keyval="75">K</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode46" name="keycode46" column="9" row="2">
|
||||
<bounds>399.609756,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="108">l</keysym>
|
||||
<keysym keyval="76">L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode47" name="keycode47" column="10" row="2">
|
||||
<bounds>438.634146,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="59">semicolon</keysym>
|
||||
<keysym keyval="58">colon</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode48" name="keycode48" column="11" row="2">
|
||||
<bounds>479.219512,82.731707,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="39">quoteright</keysym>
|
||||
<keysym keyval="34">quotedbl</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode36" name="keycode36" column="12" row="2">
|
||||
<bounds>519.804878,82.731707,88.975610,37.463415</bounds>
|
||||
<oref>outline7</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65293">Return</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode50" name="keycode50" column="0" row="3">
|
||||
<bounds>3.121951,121.756098,88.975610,37.463415</bounds>
|
||||
<oref>outline8</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65505">Shift_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode52" name="keycode52" column="1" row="3">
|
||||
<bounds>95.219512,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="122">z</keysym>
|
||||
<keysym keyval="90">Z</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode53" name="keycode53" column="2" row="3">
|
||||
<bounds>135.804878,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="120">x</keysym>
|
||||
<keysym keyval="88">X</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode54" name="keycode54" column="3" row="3">
|
||||
<bounds>176.390244,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="99">c</keysym>
|
||||
<keysym keyval="67">C</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode55" name="keycode55" column="4" row="3">
|
||||
<bounds>215.414634,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="118">v</keysym>
|
||||
<keysym keyval="86">V</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode56" name="keycode56" column="5" row="3">
|
||||
<bounds>256.000000,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="98">b</keysym>
|
||||
<keysym keyval="66">B</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode57" name="keycode57" column="6" row="3">
|
||||
<bounds>296.585366,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="110">n</keysym>
|
||||
<keysym keyval="78">N</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode58" name="keycode58" column="7" row="3">
|
||||
<bounds>337.170732,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="109">m</keysym>
|
||||
<keysym keyval="77">M</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode59" name="keycode59" column="8" row="3">
|
||||
<bounds>377.756098,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="44">comma</keysym>
|
||||
<keysym keyval="60">less</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode60" name="keycode60" column="9" row="3">
|
||||
<bounds>418.341463,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="46">period</keysym>
|
||||
<keysym keyval="62">greater</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode61" name="keycode61" column="10" row="3">
|
||||
<bounds>458.926829,121.756098,37.463415,37.463415</bounds>
|
||||
<oref>outline2</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="47">slash</keysym>
|
||||
<keysym keyval="63">question</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode62" name="keycode62" column="11" row="3">
|
||||
<bounds>499.512195,121.756098,109.268293,37.463415</bounds>
|
||||
<oref>outline9</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65506">Shift_R</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode37" name="keycode37" column="0" row="4">
|
||||
<bounds>3.121951,162.341463,56.195122,37.463415</bounds>
|
||||
<oref>outline10</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<symbol label="⌨" icon="input-keyboard-symbolic">cycle-keyboard</symbol>
|
||||
<symbol label="☺" icon="preferences-system-symbolic">preferences</symbol>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode133" name="keycode133" column="1" row="4">
|
||||
<bounds>62.439024,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65507">Control_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode64" name="keycode64" column="2" row="4">
|
||||
<bounds>113.951220,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="2">
|
||||
<keysym keyval="65513">Alt_L</keysym>
|
||||
<keysym keyval="65511">Meta_L</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode65" name="keycode65" column="3" row="4">
|
||||
<bounds>165.463415,162.341463,238.829268,37.463415</bounds>
|
||||
<oref>outline3</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="32">space</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode108" name="keycode108" column="4" row="4">
|
||||
<bounds>407.414634,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65361">Left</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode134" name="keycode134" column="5" row="4">
|
||||
<bounds>458.926829,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65362">Up</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode135" name="keycode135" column="6" row="4">
|
||||
<bounds>508.878049,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65364">Down</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
<key id="keycode105" name="keycode105" column="7" row="4">
|
||||
<bounds>560.390244,162.341463,48.390244,37.463415</bounds>
|
||||
<oref>outline1</oref>
|
||||
<symbols groups="1" levels="1">
|
||||
<keysym keyval="65363">Right</keysym>
|
||||
</symbols>
|
||||
</key>
|
||||
</section>
|
||||
<outline id="outline2">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>37.463415,0.000000</point>
|
||||
<point>37.463415,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline1">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>48.390244,0.000000</point>
|
||||
<point>48.390244,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline4">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>59.317073,0.000000</point>
|
||||
<point>59.317073,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline5">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>59.317073,0.000000</point>
|
||||
<point>59.317073,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline6">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>68.682927,0.000000</point>
|
||||
<point>68.682927,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline7">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>88.975610,0.000000</point>
|
||||
<point>88.975610,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline8">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>88.975610,0.000000</point>
|
||||
<point>88.975610,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline9">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>109.268293,0.000000</point>
|
||||
<point>109.268293,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline10">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>56.195122,0.000000</point>
|
||||
<point>56.195122,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline13">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>79.609756,0.000000</point>
|
||||
<point>79.609756,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
<outline id="outline3">
|
||||
<corner-radius>1.000000</corner-radius>
|
||||
<point>0.000000,0.000000</point>
|
||||
<point>238.829268,0.000000</point>
|
||||
<point>238.829268,37.463415</point>
|
||||
<point>0.000000,37.463415</point>
|
||||
</outline>
|
||||
</keyboard>
|
||||
@ -1,55 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<schemalist>
|
||||
<schema id="org.fedorahosted.eekboard" path="/org/fedorahosted/eekboard/">
|
||||
<key name="keyboard" type="s">
|
||||
<default>'us'</default>
|
||||
<summary>Keyboard types</summary>
|
||||
<description>keyboard types (comma separated).</description>
|
||||
</key>
|
||||
<key name="ui-toolkit" type="s">
|
||||
<default>'gtk'</default>
|
||||
<summary>GUI toolkit used to render keyboard</summary>
|
||||
<description>The name of GUI toolkit (either 'gtk' or 'clutter') used to render keyboard on screen.</description>
|
||||
</key>
|
||||
<key name="focus-listener" type="s">
|
||||
<default>'atspi'</default>
|
||||
<summary>Use the given focus listener</summary>
|
||||
<description>The name of the focus listener (either 'atspi' or 'ibus') used to detect focus events.</description>
|
||||
</key>
|
||||
<key name="auto-hide" type="b">
|
||||
<default>true</default>
|
||||
<summary>Hide keyboard automatically when focus is out</summary>
|
||||
<description>If true, hide keyboard automatically when focus is out.</description>
|
||||
</key>
|
||||
<key name="auto-hide-delay" type="u">
|
||||
<default>500</default>
|
||||
<summary>Delay before hiding keyboard</summary>
|
||||
<description>Delay before hiding keyboard in milliseconds. This is useful when focus listener is enabled.</description>
|
||||
</key>
|
||||
<key type="b" name="repeat">
|
||||
<default>true</default>
|
||||
<summary>Key repeat</summary>
|
||||
<description>Generate key-press/release event repeatedly while a key is held down</description>
|
||||
</key>
|
||||
<key type="u" name="repeat-interval">
|
||||
<default>100</default>
|
||||
<summary>Key repeat interval</summary>
|
||||
<description>Delay between repeats in milliseconds.</description>
|
||||
</key>
|
||||
<key type="u" name="repeat-delay">
|
||||
<default>1000</default>
|
||||
<summary>Initial key repeat delay</summary>
|
||||
<description>Initial key repeat delay in milliseconds.</description>
|
||||
</key>
|
||||
<key name="start-fullscreen" type="b">
|
||||
<default>false</default>
|
||||
<summary>Switch to fullscreen mode when startup</summary>
|
||||
<description>If true, switch to fullscreen mode when startup.</description>
|
||||
</key>
|
||||
<key name="theme" type="s">
|
||||
<default>'default'</default>
|
||||
<summary>Theme</summary>
|
||||
<description>Base name of the theme to apply.</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@ -47,7 +47,7 @@ SCANGOBJ_OPTIONS=
|
||||
|
||||
# Extra options to supply to gtkdoc-scan.
|
||||
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
|
||||
SCAN_OPTIONS=--rebuild-types --deprecated-guards="EEK_DISABLE_DEPRECATED"
|
||||
SCAN_OPTIONS=--rebuild-types
|
||||
|
||||
# Extra options to supply to gtkdoc-mkdb.
|
||||
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
|
||||
@ -82,10 +82,7 @@ IGNORE_HFILES = \
|
||||
eek-clutter-renderer.h \
|
||||
eek-clutter-section.h \
|
||||
eek-clutter-key.h \
|
||||
eek-gtk-renderer.h \
|
||||
eek-theme.h \
|
||||
eek-theme-node.h \
|
||||
eek-enumtypes.h
|
||||
eek-gtk-renderer.h
|
||||
if !ENABLE_CLUTTER
|
||||
IGNORE_HFILES += eek-clutter-keyboard.h eek-clutter.h
|
||||
endif
|
||||
|
||||
@ -37,7 +37,6 @@
|
||||
<title>API Manual</title>
|
||||
<chapter>
|
||||
<title>Base Classes, Interfaces, and Utilities</title>
|
||||
<xi:include href="xml/eek.xml"/>
|
||||
<xi:include href="xml/eek-serializable.xml"/>
|
||||
<xi:include href="xml/eek-element.xml"/>
|
||||
<xi:include href="xml/eek-container.xml"/>
|
||||
@ -50,12 +49,12 @@
|
||||
<xi:include href="xml/eek-types.xml"/>
|
||||
</chapter>
|
||||
<chapter>
|
||||
<title>GTK Adapter</title>
|
||||
<xi:include href="xml/eek-gtk-keyboard.xml"/>
|
||||
<title>Clutter Keyboard</title>
|
||||
<xi:include href="xml/eek-clutter-keyboard.xml"/>
|
||||
</chapter>
|
||||
<chapter>
|
||||
<title>Clutter Adapter</title>
|
||||
<xi:include href="xml/eek-clutter-keyboard.xml"/>
|
||||
<title>GTK Keyboard</title>
|
||||
<xi:include href="xml/eek-gtk-keyboard.xml"/>
|
||||
</chapter>
|
||||
<chapter>
|
||||
<title>Libxklavier Layout Engine</title>
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
<SECTION>
|
||||
<FILE>eek-keyboard</FILE>
|
||||
<TITLE>EekKeyboard</TITLE>
|
||||
EekKeyboard
|
||||
EekKeyboardClass
|
||||
EekModifierKey
|
||||
EekKeyboardPrivate
|
||||
EekKeyboard
|
||||
eek_keyboard_new
|
||||
eek_keyboard_get_layout
|
||||
eek_keyboard_get_size
|
||||
@ -16,19 +16,11 @@ eek_keyboard_get_group
|
||||
eek_keyboard_get_level
|
||||
eek_keyboard_set_modifier_behavior
|
||||
eek_keyboard_get_modifier_behavior
|
||||
eek_keyboard_set_modifiers
|
||||
eek_keyboard_get_modifiers
|
||||
eek_keyboard_create_section
|
||||
eek_keyboard_find_key_by_keycode
|
||||
eek_keyboard_add_outline
|
||||
eek_keyboard_get_outline
|
||||
eek_keyboard_set_num_lock_mask
|
||||
eek_keyboard_get_num_lock_mask
|
||||
eek_keyboard_set_alt_gr_mask
|
||||
eek_keyboard_get_alt_gr_mask
|
||||
eek_keyboard_get_pressed_keys
|
||||
eek_keyboard_get_locked_keys
|
||||
EekKeyboardPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_KEYBOARD
|
||||
EEK_IS_KEYBOARD
|
||||
@ -42,8 +34,8 @@ EEK_KEYBOARD_GET_CLASS
|
||||
<SECTION>
|
||||
<FILE>eek-layout</FILE>
|
||||
<TITLE>EekLayout</TITLE>
|
||||
EekLayout
|
||||
EekLayoutClass
|
||||
EekLayout
|
||||
<SUBSECTION Standard>
|
||||
EEK_LAYOUT
|
||||
EEK_IS_LAYOUT
|
||||
@ -59,9 +51,8 @@ EEK_LAYOUT_GET_CLASS
|
||||
<TITLE>EekGtkKeyboard</TITLE>
|
||||
EekGtkKeyboard
|
||||
EekGtkKeyboardClass
|
||||
eek_gtk_keyboard_new
|
||||
eek_gtk_keyboard_set_theme
|
||||
EekGtkKeyboardPrivate
|
||||
eek_gtk_keyboard_new
|
||||
<SUBSECTION Standard>
|
||||
EEK_GTK_KEYBOARD
|
||||
EEK_IS_GTK_KEYBOARD
|
||||
@ -75,8 +66,9 @@ EEK_GTK_KEYBOARD_GET_CLASS
|
||||
<SECTION>
|
||||
<FILE>eek-section</FILE>
|
||||
<TITLE>EekSection</TITLE>
|
||||
EekSection
|
||||
EekSectionClass
|
||||
EekSectionPrivate
|
||||
EekSection
|
||||
eek_section_set_angle
|
||||
eek_section_get_angle
|
||||
eek_section_get_n_rows
|
||||
@ -84,7 +76,6 @@ eek_section_add_row
|
||||
eek_section_get_row
|
||||
eek_section_create_key
|
||||
eek_section_find_key_by_keycode
|
||||
EekSectionPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_SECTION
|
||||
EEK_IS_SECTION
|
||||
@ -95,39 +86,17 @@ EEK_IS_SECTION_CLASS
|
||||
EEK_SECTION_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek-theme-context</FILE>
|
||||
eek_theme_context_new
|
||||
eek_theme_context_set_theme
|
||||
eek_theme_context_get_theme
|
||||
eek_theme_context_set_resolution
|
||||
eek_theme_context_set_default_resolution
|
||||
eek_theme_context_get_resolution
|
||||
eek_theme_context_set_font
|
||||
eek_theme_context_get_font
|
||||
eek_theme_context_get_root_node
|
||||
EekThemeContextClass
|
||||
<SUBSECTION Standard>
|
||||
EEK_THEME_CONTEXT
|
||||
EEK_IS_THEME_CONTEXT
|
||||
EEK_TYPE_THEME_CONTEXT
|
||||
eek_theme_context_get_type
|
||||
EEK_THEME_CONTEXT_CLASS
|
||||
EEK_IS_THEME_CONTEXT_CLASS
|
||||
EEK_THEME_CONTEXT_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek-container</FILE>
|
||||
<TITLE>EekContainer</TITLE>
|
||||
EekContainerClass
|
||||
EekContainerPrivate
|
||||
EekCallback
|
||||
EekCompareFunc
|
||||
EekContainer
|
||||
EekContainerClass
|
||||
eek_container_foreach_child
|
||||
eek_container_find
|
||||
eek_container_add_child
|
||||
EekContainerPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_CONTAINER
|
||||
EEK_IS_CONTAINER
|
||||
@ -138,30 +107,13 @@ EEK_IS_CONTAINER_CLASS
|
||||
EEK_CONTAINER_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek-clutter-keyboard</FILE>
|
||||
<TITLE>EekClutterKeyboard</TITLE>
|
||||
EekClutterKeyboard
|
||||
EekClutterKeyboardClass
|
||||
eek_clutter_keyboard_new
|
||||
eek_clutter_keyboard_set_theme
|
||||
EekClutterKeyboardPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_CLUTTER_KEYBOARD
|
||||
EEK_IS_CLUTTER_KEYBOARD
|
||||
EEK_TYPE_CLUTTER_KEYBOARD
|
||||
eek_clutter_keyboard_get_type
|
||||
EEK_CLUTTER_KEYBOARD_CLASS
|
||||
EEK_IS_CLUTTER_KEYBOARD_CLASS
|
||||
EEK_CLUTTER_KEYBOARD_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek-symbol</FILE>
|
||||
<TITLE>EekSymbol</TITLE>
|
||||
EekSymbolCategory
|
||||
EekSymbol
|
||||
EekSymbolClass
|
||||
EekSymbolPrivate
|
||||
EekSymbol
|
||||
eek_symbol_new
|
||||
eek_symbol_set_name
|
||||
eek_symbol_get_name
|
||||
@ -174,7 +126,6 @@ eek_symbol_set_modifier_mask
|
||||
eek_symbol_is_modifier
|
||||
eek_symbol_set_icon_name
|
||||
eek_symbol_get_icon_name
|
||||
EekSymbolPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_SYMBOL
|
||||
EEK_IS_SYMBOL
|
||||
@ -190,6 +141,7 @@ EEK_SYMBOL_GET_CLASS
|
||||
<TITLE>EekXklLayout</TITLE>
|
||||
EekXklLayout
|
||||
EekXklLayoutClass
|
||||
EekXklLayoutPrivate
|
||||
eek_xkl_layout_new
|
||||
eek_xkl_layout_set_config
|
||||
eek_xkl_layout_set_config_full
|
||||
@ -204,7 +156,6 @@ eek_xkl_layout_get_layouts
|
||||
eek_xkl_layout_get_variants
|
||||
eek_xkl_layout_get_options
|
||||
eek_xkl_layout_get_option
|
||||
EekXklLayoutPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_XKL_LAYOUT
|
||||
EEK_IS_XKL_LAYOUT
|
||||
@ -220,6 +171,7 @@ EEK_XKL_LAYOUT_GET_CLASS
|
||||
<TITLE>EekXkbLayout</TITLE>
|
||||
EekXkbLayout
|
||||
EekXkbLayoutClass
|
||||
EekXkbLayoutPrivate
|
||||
eek_xkb_layout_new
|
||||
eek_xkb_layout_set_names
|
||||
eek_xkb_layout_set_names_full
|
||||
@ -230,7 +182,6 @@ eek_xkb_layout_set_symbols
|
||||
eek_xkb_layout_get_keycodes
|
||||
eek_xkb_layout_get_geometry
|
||||
eek_xkb_layout_get_symbols
|
||||
EekXkbLayoutPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_XKB_LAYOUT
|
||||
EEK_IS_XKB_LAYOUT
|
||||
@ -244,8 +195,9 @@ EEK_XKB_LAYOUT_GET_CLASS
|
||||
<SECTION>
|
||||
<FILE>eek-key</FILE>
|
||||
<TITLE>EekKey</TITLE>
|
||||
EekKey
|
||||
EekKeyClass
|
||||
EekKeyPrivate
|
||||
EekKey
|
||||
eek_key_set_keycode
|
||||
eek_key_get_keycode
|
||||
eek_key_set_symbol_matrix
|
||||
@ -258,8 +210,6 @@ eek_key_get_index
|
||||
eek_key_set_oref
|
||||
eek_key_get_oref
|
||||
eek_key_is_pressed
|
||||
eek_key_is_locked
|
||||
EekKeyPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_KEY
|
||||
EEK_IS_KEY
|
||||
@ -273,6 +223,7 @@ EEK_KEY_GET_CLASS
|
||||
<SECTION>
|
||||
<FILE>eek-serializable</FILE>
|
||||
<TITLE>EekSerializable</TITLE>
|
||||
EekSerializable
|
||||
EekSerializableIface
|
||||
eek_serializable_serialize
|
||||
eek_serializable_deserialize
|
||||
@ -287,8 +238,9 @@ EEK_SERIALIZABLE_GET_IFACE
|
||||
<SECTION>
|
||||
<FILE>eek-element</FILE>
|
||||
<TITLE>EekElement</TITLE>
|
||||
EekElement
|
||||
EekElementClass
|
||||
EekElementPrivate
|
||||
EekElement
|
||||
eek_element_set_parent
|
||||
eek_element_get_parent
|
||||
eek_element_set_name
|
||||
@ -304,7 +256,6 @@ eek_element_set_group
|
||||
eek_element_set_level
|
||||
eek_element_get_group
|
||||
eek_element_get_level
|
||||
EekElementPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_ELEMENT
|
||||
EEK_IS_ELEMENT
|
||||
@ -320,10 +271,10 @@ EEK_ELEMENT_GET_CLASS
|
||||
<TITLE>EekXmlLayout</TITLE>
|
||||
EekXmlLayout
|
||||
EekXmlLayoutClass
|
||||
EekXmlLayoutPrivate
|
||||
eek_xml_layout_new
|
||||
eek_xml_layout_set_source
|
||||
eek_xml_layout_get_source
|
||||
EekXmlLayoutPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_XML_LAYOUT
|
||||
EEK_IS_XML_LAYOUT
|
||||
@ -338,13 +289,12 @@ EEK_XML_LAYOUT_GET_CLASS
|
||||
<FILE>eek-keysym</FILE>
|
||||
<TITLE>EekKeysym</TITLE>
|
||||
EEK_KEYSYM
|
||||
EekKeysym
|
||||
EekKeysymClass
|
||||
EekKeysymPrivate
|
||||
EekKeysym
|
||||
eek_keysym_new
|
||||
eek_keysym_get_xkeysym
|
||||
eek_keysym_new_from_name
|
||||
eek_keysym_new_with_modifier
|
||||
EekKeysymPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEK_INVALID_KEYSYM
|
||||
EEK_IS_KEYSYM
|
||||
@ -364,6 +314,7 @@ eek_keyboard_output
|
||||
<SECTION>
|
||||
<FILE>eek-types</FILE>
|
||||
I_
|
||||
EEK_TYPE_SYMBOL_MATRIX
|
||||
EEK_TYPE_POINT
|
||||
EEK_TYPE_BOUNDS
|
||||
EEK_TYPE_OUTLINE
|
||||
@ -372,42 +323,23 @@ EekOrientation
|
||||
EekModifierBehavior
|
||||
EekModifierType
|
||||
EEK_INVALID_KEYCODE
|
||||
EekPoint
|
||||
eek_point_get_type
|
||||
eek_point_copy
|
||||
eek_point_free
|
||||
eek_point_rotate
|
||||
EekBounds
|
||||
eek_bounds_get_type
|
||||
eek_bounds_copy
|
||||
eek_bounds_free
|
||||
eek_bounds_long_side
|
||||
EekOutline
|
||||
eek_outline_get_type
|
||||
eek_outline_copy
|
||||
eek_outline_free
|
||||
EekColor
|
||||
eek_color_get_type
|
||||
eek_color_new
|
||||
eek_color_copy
|
||||
eek_color_free
|
||||
EekGradientType
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek</FILE>
|
||||
eek_init
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eek-symbol-matrix</FILE>
|
||||
EekSymbolMatrix
|
||||
EEK_TYPE_SYMBOL_MATRIX
|
||||
EekPoint
|
||||
EekBounds
|
||||
EekOutline
|
||||
EekColor
|
||||
eek_symbol_matrix_get_type
|
||||
eek_symbol_matrix_new
|
||||
eek_symbol_matrix_copy
|
||||
eek_symbol_matrix_free
|
||||
eek_symbol_matrix_set_symbol
|
||||
eek_symbol_matrix_get_symbol
|
||||
eek_point_get_type
|
||||
eek_point_rotate
|
||||
eek_bounds_get_type
|
||||
eek_bounds_long_side
|
||||
eek_outline_get_type
|
||||
eek_outline_copy
|
||||
eek_outline_free
|
||||
eek_color_get_type
|
||||
eek_color_new
|
||||
</SECTION>
|
||||
|
||||
|
||||
@ -35,15 +35,10 @@
|
||||
<part id="apireference">
|
||||
<title>API Manual</title>
|
||||
<chapter>
|
||||
<title>Client interface to eekboard-server</title>
|
||||
<xi:include href="xml/eekboard-client.xml"/>
|
||||
<title>D-Bus client interface to eekboard-server</title>
|
||||
<xi:include href="xml/eekboard-eekboard.xml"/>
|
||||
<xi:include href="xml/eekboard-context.xml"/>
|
||||
</chapter>
|
||||
<chapter>
|
||||
<title>Server interface to implement custom eekboard-server</title>
|
||||
<xi:include href="xml/eekboard-service.xml"/>
|
||||
<xi:include href="xml/eekboard-context-service.xml"/>
|
||||
</chapter>
|
||||
<chapter id="object-tree">
|
||||
<title>Object Hierarchy</title>
|
||||
<xi:include href="xml/tree_index.sgml"/>
|
||||
|
||||
@ -1,41 +1,22 @@
|
||||
<SECTION>
|
||||
<FILE>eekboard-client</FILE>
|
||||
<TITLE>EekboardClient</TITLE>
|
||||
EekboardClient
|
||||
EekboardClientClass
|
||||
eekboard_client_new
|
||||
eekboard_client_create_context
|
||||
eekboard_client_push_context
|
||||
eekboard_client_pop_context
|
||||
eekboard_client_destroy_context
|
||||
EekboardClientPrivate
|
||||
<FILE>eekboard-eekboard</FILE>
|
||||
<TITLE>EekboardEekboard</TITLE>
|
||||
EekboardEekboard
|
||||
EekboardEekboardClass
|
||||
EekboardEekboardPrivate
|
||||
eekboard_eekboard_new
|
||||
eekboard_eekboard_create_context
|
||||
eekboard_eekboard_push_context
|
||||
eekboard_eekboard_pop_context
|
||||
eekboard_eekboard_destroy_context
|
||||
<SUBSECTION Standard>
|
||||
EEKBOARD_CLIENT
|
||||
EEKBOARD_IS_CLIENT
|
||||
EEKBOARD_TYPE_CLIENT
|
||||
eekboard_client_get_type
|
||||
EEKBOARD_CLIENT_CLASS
|
||||
EEKBOARD_IS_CLIENT_CLASS
|
||||
EEKBOARD_CLIENT_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eekboard-service</FILE>
|
||||
<TITLE>EekboardService</TITLE>
|
||||
EEKBOARD_SERVICE_PATH
|
||||
EEKBOARD_SERVICE_INTERFACE
|
||||
EekboardService
|
||||
EekboardServiceClass
|
||||
eekboard_service_new
|
||||
EekboardServicePrivate
|
||||
<SUBSECTION Standard>
|
||||
EEKBOARD_SERVICE
|
||||
EEKBOARD_IS_SERVICE
|
||||
EEKBOARD_TYPE_SERVICE
|
||||
eekboard_service_get_type
|
||||
EEKBOARD_SERVICE_CLASS
|
||||
EEKBOARD_IS_SERVICE_CLASS
|
||||
EEKBOARD_SERVICE_GET_CLASS
|
||||
EEKBOARD_EEKBOARD
|
||||
EEKBOARD_IS_EEKBOARD
|
||||
EEKBOARD_TYPE_EEKBOARD
|
||||
eekboard_eekboard_get_type
|
||||
EEKBOARD_EEKBOARD_CLASS
|
||||
EEKBOARD_IS_EEKBOARD_CLASS
|
||||
EEKBOARD_EEKBOARD_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
@ -43,21 +24,17 @@ EEKBOARD_SERVICE_GET_CLASS
|
||||
<TITLE>EekboardContext</TITLE>
|
||||
EekboardContext
|
||||
EekboardContextClass
|
||||
EekboardContextPrivate
|
||||
eekboard_context_new
|
||||
eekboard_context_add_keyboard
|
||||
eekboard_context_remove_keyboard
|
||||
eekboard_context_set_keyboard
|
||||
eekboard_context_show_keyboard
|
||||
eekboard_context_hide_keyboard
|
||||
eekboard_context_set_group
|
||||
eekboard_context_get_group
|
||||
eekboard_context_press_keycode
|
||||
eekboard_context_release_keycode
|
||||
eekboard_context_press_key
|
||||
eekboard_context_release_key
|
||||
eekboard_context_is_keyboard_visible
|
||||
eekboard_context_set_enabled
|
||||
eekboard_context_is_enabled
|
||||
eekboard_context_set_fullscreen
|
||||
EekboardContextPrivate
|
||||
<SUBSECTION Standard>
|
||||
EEKBOARD_CONTEXT
|
||||
EEKBOARD_IS_CONTEXT
|
||||
@ -68,37 +45,3 @@ EEKBOARD_IS_CONTEXT_CLASS
|
||||
EEKBOARD_CONTEXT_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eekboard-context-service</FILE>
|
||||
<TITLE>EekboardContextService</TITLE>
|
||||
EEKBOARD_CONTEXT_SERVICE_PATH
|
||||
EEKBOARD_CONTEXT_SERVICE_INTERFACE
|
||||
EekboardContextService
|
||||
EekboardContextServiceClass
|
||||
eekboard_context_service_enable
|
||||
eekboard_context_service_disable
|
||||
eekboard_context_service_get_keyboard
|
||||
eekboard_context_service_get_fullscreen
|
||||
eekboard_context_service_get_client_name
|
||||
EekboardContextServicePrivate
|
||||
<SUBSECTION Standard>
|
||||
EEKBOARD_CONTEXT_SERVICE
|
||||
EEKBOARD_IS_CONTEXT_SERVICE
|
||||
EEKBOARD_TYPE_CONTEXT_SERVICE
|
||||
eekboard_context_service_get_type
|
||||
EEKBOARD_CONTEXT_SERVICE_CLASS
|
||||
EEKBOARD_IS_CONTEXT_SERVICE_CLASS
|
||||
EEKBOARD_CONTEXT_SERVICE_GET_CLASS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>eekboard-xklutil</FILE>
|
||||
eekboard_xkl_config_rec_from_string
|
||||
eekboard_xkl_config_rec_to_string
|
||||
eekboard_xkl_list_models
|
||||
eekboard_xkl_list_layouts
|
||||
eekboard_xkl_list_option_groups
|
||||
eekboard_xkl_list_layout_variants
|
||||
eekboard_xkl_list_options
|
||||
</SECTION>
|
||||
|
||||
|
||||
@ -1,4 +1,2 @@
|
||||
eekboard_client_get_type
|
||||
eekboard_context_get_type
|
||||
eekboard_context_service_get_type
|
||||
eekboard_service_get_type
|
||||
eekboard_eekboard_get_type
|
||||
|
||||
@ -54,7 +54,6 @@ libeek_private_headers = \
|
||||
$(srcdir)/eek-theme-node.h
|
||||
|
||||
libeek_sources = \
|
||||
$(srcdir)/eek.c \
|
||||
$(srcdir)/eek-layout.c \
|
||||
$(srcdir)/eek-element.c \
|
||||
$(srcdir)/eek-container.c \
|
||||
@ -89,15 +88,13 @@ libeek_marshalers_sources = \
|
||||
|
||||
BUILT_SOURCES = \
|
||||
$(libeek_keysym_sources) \
|
||||
$(libeek_enumtypes_sources) \
|
||||
$(libeek_marshalers_sources)
|
||||
|
||||
libeek_la_SOURCES = \
|
||||
$(libeek_sources) \
|
||||
$(srcdir)/eek-enumtypes.c \
|
||||
$(srcdir)/eek-marshalers.c
|
||||
|
||||
libeek_la_CFLAGS = -DEEK_COMPILATION=1 $(GIO2_CFLAGS) $(PANGOCAIRO_CFLAGS) $(LIBCROCO_CFLAGS)
|
||||
libeek_la_CFLAGS = $(GIO2_CFLAGS) $(PANGOCAIRO_CFLAGS) $(LIBCROCO_CFLAGS)
|
||||
libeek_la_LIBADD = $(GIO2_LIBS) $(PANGOCAIRO_LIBS) $(LIBCROCO_LIBS) -lm
|
||||
|
||||
if ENABLE_CLUTTER
|
||||
@ -117,7 +114,7 @@ libeek_clutter_sources = \
|
||||
$(srcdir)/eek-clutter-renderer.c
|
||||
|
||||
libeek_clutter_la_SOURCES = $(libeek_clutter_sources)
|
||||
libeek_clutter_la_CFLAGS = -DEEK_COMPILATION=1 $(CLUTTER_CFLAGS)
|
||||
libeek_clutter_la_CFLAGS = $(CLUTTER_CFLAGS)
|
||||
libeek_clutter_la_LIBADD = libeek.la $(CLUTTER_LIBS)
|
||||
endif
|
||||
|
||||
@ -131,8 +128,8 @@ libeek_gtk_sources = \
|
||||
$(srcdir)/eek-gtk-renderer.c
|
||||
|
||||
libeek_gtk_la_SOURCES = $(libeek_gtk_sources)
|
||||
libeek_gtk_la_CFLAGS = -DEEK_COMPILATION=1 $(GTK_CFLAGS) $(LIBCANBERRA_CFLAGS)
|
||||
libeek_gtk_la_LIBADD = libeek.la $(GTK_LIBS) $(LIBCANBERRA_LIBS)
|
||||
libeek_gtk_la_CFLAGS = $(GTK_CFLAGS)
|
||||
libeek_gtk_la_LIBADD = libeek.la $(GTK_LIBS)
|
||||
|
||||
libeek_xkb_public_headers = \
|
||||
$(srcdir)/eek-xkb-layout.h \
|
||||
@ -142,7 +139,7 @@ libeek_xkb_sources = \
|
||||
$(srcdir)/eek-xkb-layout.c
|
||||
|
||||
libeek_xkb_la_SOURCES = $(libeek_xkb_sources)
|
||||
libeek_xkb_la_CFLAGS = -DEEK_COMPILATION=1 $(XKB_CFLAGS) $(GTK_CFLAGS)
|
||||
libeek_xkb_la_CFLAGS = $(XKB_CFLAGS) $(GTK_CFLAGS)
|
||||
libeek_xkb_la_LIBADD = libeek.la $(XKB_LIBS) $(GTK_LIBS)
|
||||
|
||||
libeek_xkl_public_headers = \
|
||||
@ -153,13 +150,12 @@ libeek_xkl_sources = \
|
||||
$(srcdir)/eek-xkl-layout.c
|
||||
|
||||
libeek_xkl_la_SOURCES = $(libeek_xkl_sources)
|
||||
libeek_xkl_la_CFLAGS = -DEEK_COMPILATION=1 $(LIBXKLAVIER_CFLAGS) $(GTK_CFLAGS)
|
||||
libeek_xkl_la_CFLAGS = $(LIBXKLAVIER_CFLAGS) $(GTK_CFLAGS)
|
||||
libeek_xkl_la_LIBADD = libeek-xkb.la $(LIBXKLAVIER_LIBS) $(GTK_LIBS)
|
||||
|
||||
eekdir = $(includedir)/eek-$(EEK_API_VERSION)/eek
|
||||
eek_HEADERS = \
|
||||
$(libeek_public_headers) \
|
||||
$(srcdir)/eek-enumtypes.h \
|
||||
$(libeek_clutter_public_headers) \
|
||||
$(libeek_gtk_public_headers) \
|
||||
$(libeek_xkb_public_headers) \
|
||||
@ -173,24 +169,11 @@ noinst_HEADERS = \
|
||||
$(libeek_xkl_private_headers)
|
||||
|
||||
eek-special-keysym-entries.h: special-keysym-entries.txt
|
||||
$(AM_V_GEN) $(PYTHON) ./gen-keysym-entries.py special_keysym_entries \
|
||||
< $< > $@
|
||||
$(PYTHON) ./gen-keysym-entries.py special_keysym_entries < $< > $@
|
||||
eek-unicode-keysym-entries.h: unicode-keysym-entries.txt
|
||||
$(AM_V_GEN) $(PYTHON) ./gen-keysym-entries.py unicode_keysym_entries \
|
||||
< $< > $@
|
||||
$(PYTHON) ./gen-keysym-entries.py unicode_keysym_entries < $< > $@
|
||||
eek-xkeysym-keysym-entries.h: xkeysym-keysym-entries.txt
|
||||
$(AM_V_GEN) $(PYTHON) ./gen-keysym-entries.py xkeysym_keysym_entries \
|
||||
< $< > $@
|
||||
|
||||
eek-enumtypes.h: $(libeek_public_headers) eek-enumtypes.h.template
|
||||
$(AM_V_GEN) $(GLIB_MKENUMS) --template eek-enumtypes.h.template \
|
||||
$(libeek_public_headers) > eek-enumtypes.h.tmp && \
|
||||
mv eek-enumtypes.h.tmp eek-enumtypes.h
|
||||
|
||||
eek-enumtypes.c: $(libeek_public_headers) eek-enumtypes.c.template
|
||||
$(AM_V_GEN) $(GLIB_MKENUMS) --template eek-enumtypes.c.template \
|
||||
$(libeek_public_headers) > eek-enumtypes.c.tmp && \
|
||||
mv eek-enumtypes.c.tmp eek-enumtypes.c
|
||||
$(PYTHON) ./gen-keysym-entries.py xkeysym_keysym_entries < $< > $@
|
||||
|
||||
# gen marshal
|
||||
eek-marshalers.h: eek-marshalers.list
|
||||
@ -224,8 +207,6 @@ EXTRA_DIST = \
|
||||
special-keysym-entries.txt \
|
||||
unicode-keysym-entries.txt \
|
||||
xkeysym-keysym-entries.txt \
|
||||
eek-enumtypes.h.template \
|
||||
eek-enumtypes.c.template \
|
||||
eek-marshalers.list
|
||||
|
||||
-include $(INTROSPECTION_MAKEFILE)
|
||||
@ -240,7 +221,7 @@ Eek@EEK_LIBRARY_SUFFIX_U@_gir_SCANNERFLAGS = --strip-prefix=Eek --pkg=glib-2.0
|
||||
Eek@EEK_LIBRARY_SUFFIX_U@_gir_INCLUDES = GLib-2.0 GObject-2.0 Gio-2.0
|
||||
Eek@EEK_LIBRARY_SUFFIX_U@_gir_CFLAGS = $(libeek_la_CFLAGS)
|
||||
Eek@EEK_LIBRARY_SUFFIX_U@_gir_LIBS = libeek.la
|
||||
Eek@EEK_LIBRARY_SUFFIX_U@_gir_FILES = $(libeek_sources) $(libeek_public_headers) $(srcdir)/eek-enumtypes.h
|
||||
Eek@EEK_LIBRARY_SUFFIX_U@_gir_FILES = $(libeek_sources) $(libeek_public_headers)
|
||||
|
||||
EekGtk@EEK_LIBRARY_SUFFIX@.gir: libeek-gtk.la Eek@EEK_LIBRARY_SUFFIX@.gir
|
||||
EekGtk@EEK_LIBRARY_SUFFIX_U@_gir_INCLUDES = GObject-2.0 Gtk-@GTK_API_VERSION@ Eek@EEK_LIBRARY_SUFFIX@
|
||||
|
||||
@ -23,8 +23,8 @@ includedir=@includedir@
|
||||
|
||||
Name: EEK
|
||||
Description: A Library to Create Keyboard-like UI
|
||||
URL: http://fedorahosted.org/eekboard/
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: gobject-2.0 gio-2.0
|
||||
Requires: gobject-2.0
|
||||
Libs: -L${libdir} -leek
|
||||
Cflags: -I${includedir}/eek-@EEK_API_VERSION@
|
||||
|
||||
@ -23,7 +23,7 @@ includedir=@includedir@
|
||||
|
||||
Name: libeek-clutter
|
||||
Description: A Library to Create Keyboard-like UI (Clutter Support)
|
||||
URL: http://fedorahosted.org/eekboard/
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: eek-@EEK_API_VERSION@ clutter-1.0
|
||||
Libs: -L${libdir} -leek-clutter
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek-clutter.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_CLUTTER_KEYBOARD_H
|
||||
#define EEK_CLUTTER_KEYBOARD_H 1
|
||||
|
||||
|
||||
@ -53,8 +53,7 @@ G_DEFINE_ABSTRACT_TYPE_WITH_CODE (EekContainer, eek_container, EEK_TYPE_ELEMENT,
|
||||
|
||||
struct _EekContainerPrivate
|
||||
{
|
||||
GList *head;
|
||||
GList *last;
|
||||
GSList *children;
|
||||
};
|
||||
|
||||
static EekSerializableIface *eek_container_parent_serializable_iface;
|
||||
@ -64,13 +63,13 @@ eek_container_real_serialize (EekSerializable *self,
|
||||
GVariantBuilder *builder)
|
||||
{
|
||||
EekContainerPrivate *priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
GSList *head;
|
||||
GVariantBuilder array;
|
||||
|
||||
eek_container_parent_serializable_iface->serialize (self, builder);
|
||||
|
||||
g_variant_builder_init (&array, G_VARIANT_TYPE("av"));
|
||||
for (head = priv->head; head; head = g_list_next (head)) {
|
||||
for (head = priv->children; head; head = g_slist_next (head)) {
|
||||
GVariant *variant =
|
||||
eek_serializable_serialize (EEK_SERIALIZABLE(head->data));
|
||||
g_variant_builder_add (&array, "v", variant);
|
||||
@ -120,12 +119,7 @@ eek_container_real_add_child (EekContainer *self,
|
||||
g_return_if_fail (EEK_IS_ELEMENT(child));
|
||||
g_object_ref (child);
|
||||
|
||||
if (!priv->head) {
|
||||
priv->head = priv->last = g_list_prepend (priv->head, child);
|
||||
} else {
|
||||
priv->last->next = g_list_prepend (priv->last->next, child);
|
||||
priv->last = priv->last->next;
|
||||
}
|
||||
priv->children = g_slist_prepend (priv->children, child);
|
||||
eek_element_set_parent (child, EEK_ELEMENT(self));
|
||||
g_signal_emit_by_name (self, "child-added", child);
|
||||
}
|
||||
@ -135,15 +129,13 @@ eek_container_real_remove_child (EekContainer *self,
|
||||
EekElement *child)
|
||||
{
|
||||
EekContainerPrivate *priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
GSList *head;
|
||||
|
||||
g_return_if_fail (EEK_IS_ELEMENT(child));
|
||||
head = g_list_find (priv->head, child);
|
||||
head = g_slist_find (priv->children, child);
|
||||
g_return_if_fail (head);
|
||||
g_object_unref (child);
|
||||
if (head == priv->last)
|
||||
priv->last = g_list_previous (priv->last);
|
||||
priv->head = g_list_remove_link (priv->head, head);
|
||||
priv->children = g_slist_remove_link (priv->children, head);
|
||||
eek_element_set_parent (child, NULL);
|
||||
g_signal_emit_by_name (self, "child-removed", child);
|
||||
}
|
||||
@ -154,9 +146,9 @@ eek_container_real_foreach_child (EekContainer *self,
|
||||
gpointer user_data)
|
||||
{
|
||||
EekContainerPrivate *priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
GSList *head;
|
||||
|
||||
for (head = priv->head; head; head = g_list_next (head))
|
||||
for (head = priv->children; head; head = g_slist_next (head))
|
||||
(*callback) (EEK_ELEMENT(head->data), user_data);
|
||||
}
|
||||
|
||||
@ -166,9 +158,9 @@ eek_container_real_find (EekContainer *self,
|
||||
gpointer user_data)
|
||||
{
|
||||
EekContainerPrivate *priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
GSList *head;
|
||||
|
||||
head = g_list_find_custom (priv->head, user_data, (GCompareFunc)func);
|
||||
head = g_slist_find_custom (priv->children, user_data, (GCompareFunc)func);
|
||||
if (head)
|
||||
return head->data;
|
||||
return NULL;
|
||||
@ -178,12 +170,12 @@ static void
|
||||
eek_container_dispose (GObject *object)
|
||||
{
|
||||
EekContainerPrivate *priv = EEK_CONTAINER_GET_PRIVATE(object);
|
||||
GList *head;
|
||||
GSList *head;
|
||||
|
||||
for (head = priv->head; head; head = priv->head) {
|
||||
for (head = priv->children; head; head = priv->children) {
|
||||
g_object_unref (head->data);
|
||||
priv->head = g_list_next (head);
|
||||
g_list_free1 (head);
|
||||
priv->children = g_slist_next (head);
|
||||
g_slist_free1 (head);
|
||||
}
|
||||
G_OBJECT_CLASS(eek_container_parent_class)->dispose (object);
|
||||
}
|
||||
@ -248,13 +240,16 @@ eek_container_class_init (EekContainerClass *klass)
|
||||
static void
|
||||
eek_container_init (EekContainer *self)
|
||||
{
|
||||
self->priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
EekContainerPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_CONTAINER_GET_PRIVATE(self);
|
||||
priv->children = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* eek_container_foreach_child:
|
||||
* @container: an #EekContainer
|
||||
* @callback: (scope call): an #EekCallback
|
||||
* @callback: an #EekCallback
|
||||
* @user_data: additional data passed to @callback
|
||||
*
|
||||
* Enumerate children of @container and run @callback with each child.
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_CONTAINER_H
|
||||
#define EEK_CONTAINER_H 1
|
||||
|
||||
@ -39,14 +34,6 @@ G_BEGIN_DECLS
|
||||
typedef struct _EekContainerClass EekContainerClass;
|
||||
typedef struct _EekContainerPrivate EekContainerPrivate;
|
||||
|
||||
/**
|
||||
* EekCallback:
|
||||
* @element: an #EekElement
|
||||
* @user_data: user-supplied data
|
||||
*
|
||||
* The type of the callback function used for iterating over the
|
||||
* children of a container, see eek_container_foreach_child().
|
||||
*/
|
||||
typedef void (*EekCallback) (EekElement *element, gpointer user_data);
|
||||
typedef gint (*EekCompareFunc) (EekElement *element, gpointer user_data);
|
||||
|
||||
|
||||
@ -404,6 +404,8 @@ eek_element_init (EekElement *self)
|
||||
EekElementPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_ELEMENT_GET_PRIVATE(self);
|
||||
priv->name = NULL;
|
||||
memset (&priv->bounds, 0, sizeof priv->bounds);
|
||||
priv->group = -1;
|
||||
priv->level = -1;
|
||||
}
|
||||
@ -487,7 +489,7 @@ eek_element_set_bounds (EekElement *element,
|
||||
/**
|
||||
* eek_element_get_bounds:
|
||||
* @element: an #EekElement
|
||||
* @bounds: (out): pointer where bounding box of @element will be stored
|
||||
* @bounds: pointer where bounding box of @element will be stored
|
||||
*
|
||||
* Get the bounding box of @element. Note that if @element has
|
||||
* parent, position of @bounds are relative to the parent. To obtain
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_ELEMENT_H
|
||||
#define EEK_ELEMENT_H 1
|
||||
|
||||
|
||||
@ -1,36 +0,0 @@
|
||||
/*** BEGIN file-header ***/
|
||||
#include "eek.h"
|
||||
|
||||
/*** END file-header ***/
|
||||
|
||||
/*** BEGIN file-production ***/
|
||||
/* enumerations from "@filename@" */
|
||||
/*** END file-production ***/
|
||||
|
||||
/*** BEGIN value-header ***/
|
||||
GType
|
||||
@enum_name@_get_type (void)
|
||||
{
|
||||
static volatile gsize g_define_type_id__volatile = 0;
|
||||
|
||||
if (g_once_init_enter (&g_define_type_id__volatile))
|
||||
{
|
||||
static const G@Type@Value values[] = {
|
||||
/*** END value-header ***/
|
||||
|
||||
/*** BEGIN value-production ***/
|
||||
{ @VALUENAME@, "@VALUENAME@", "@valuenick@" },
|
||||
/*** END value-production ***/
|
||||
|
||||
/*** BEGIN value-tail ***/
|
||||
{ 0, NULL, NULL }
|
||||
};
|
||||
GType g_define_type_id =
|
||||
g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
||||
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
|
||||
}
|
||||
|
||||
return g_define_type_id__volatile;
|
||||
}
|
||||
|
||||
/*** END value-tail ***/
|
||||
@ -1,29 +0,0 @@
|
||||
/*** BEGIN file-header ***/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef __EEK_ENUMTYPES_H__
|
||||
#define __EEK_ENUMTYPES_H__
|
||||
|
||||
#include <glib-object.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
/*** END file-header ***/
|
||||
|
||||
/*** BEGIN file-production ***/
|
||||
|
||||
/* enumerations from "@filename@" */
|
||||
/*** END file-production ***/
|
||||
|
||||
/*** BEGIN value-header ***/
|
||||
GType @enum_name@_get_type (void) G_GNUC_CONST;
|
||||
#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type ())
|
||||
/*** END value-header ***/
|
||||
|
||||
/*** BEGIN file-tail ***/
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __EEK_ENUMTYPES_H__ */
|
||||
/*** END file-tail ***/
|
||||
@ -23,7 +23,7 @@ includedir=@includedir@
|
||||
|
||||
Name: libeek-gtk
|
||||
Description: A Library to Create Keyboard-like UI (GTK Support)
|
||||
URL: http://fedorahosted.org/eekboard/
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: eek-@EEK_API_VERSION@ gtk+-@GTK_API_VERSION@
|
||||
Libs: -L${libdir} -leek-gtk
|
||||
|
||||
@ -27,10 +27,6 @@
|
||||
#include "config.h"
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
|
||||
#ifdef HAVE_LIBCANBERRA
|
||||
#include <canberra-gtk.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "eek-gtk-keyboard.h"
|
||||
@ -61,11 +57,9 @@ struct _EekGtkKeyboardPrivate
|
||||
{
|
||||
EekRenderer *renderer;
|
||||
EekKeyboard *keyboard;
|
||||
EekKey *dragged_key;
|
||||
gulong key_pressed_handler;
|
||||
gulong key_released_handler;
|
||||
gulong key_locked_handler;
|
||||
gulong key_unlocked_handler;
|
||||
gulong key_cancelled_handler;
|
||||
gulong symbol_index_changed_handler;
|
||||
EekTheme *theme;
|
||||
};
|
||||
@ -77,25 +71,12 @@ static void on_key_pressed (EekKeyboard *keyboard,
|
||||
static void on_key_released (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data);
|
||||
static void on_key_locked (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data);
|
||||
static void on_key_unlocked (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data);
|
||||
static void on_key_cancelled (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data);
|
||||
static void on_symbol_index_changed (EekKeyboard *keyboard,
|
||||
gint group,
|
||||
gint level,
|
||||
gpointer user_data);
|
||||
static void render_pressed_key (GtkWidget *widget,
|
||||
EekKey *key);
|
||||
static void render_locked_key (GtkWidget *widget,
|
||||
EekKey *key);
|
||||
static void render_released_key (GtkWidget *widget,
|
||||
EekKey *key);
|
||||
|
||||
static void
|
||||
eek_gtk_keyboard_real_realize (GtkWidget *self)
|
||||
@ -106,8 +87,7 @@ eek_gtk_keyboard_real_realize (GtkWidget *self)
|
||||
GDK_KEY_PRESS_MASK |
|
||||
GDK_KEY_RELEASE_MASK |
|
||||
GDK_BUTTON_PRESS_MASK |
|
||||
GDK_BUTTON_RELEASE_MASK |
|
||||
GDK_BUTTON_MOTION_MASK);
|
||||
GDK_BUTTON_RELEASE_MASK);
|
||||
|
||||
GTK_WIDGET_CLASS (eek_gtk_keyboard_parent_class)->realize (self);
|
||||
}
|
||||
@ -119,7 +99,6 @@ eek_gtk_keyboard_real_draw (GtkWidget *self,
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
GtkAllocation allocation;
|
||||
EekColor background;
|
||||
GList *head;
|
||||
|
||||
gtk_widget_get_allocation (self, &allocation);
|
||||
|
||||
@ -163,17 +142,9 @@ eek_gtk_keyboard_real_draw (GtkWidget *self,
|
||||
|
||||
eek_renderer_render_keyboard (priv->renderer, cr);
|
||||
|
||||
/* redraw pressed key */
|
||||
head = eek_keyboard_get_pressed_keys (priv->keyboard);
|
||||
for (; head; head = g_list_next (head)) {
|
||||
render_pressed_key (self, head->data);
|
||||
}
|
||||
|
||||
/* redraw locked key */
|
||||
head = eek_keyboard_get_locked_keys (priv->keyboard);
|
||||
for (; head; head = g_list_next (head)) {
|
||||
render_locked_key (self, ((EekModifierKey *)head->data)->key);
|
||||
}
|
||||
/* redraw dragged key */
|
||||
if (priv->dragged_key)
|
||||
render_pressed_key (self, priv->dragged_key);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
@ -219,8 +190,14 @@ eek_gtk_keyboard_real_button_press_event (GtkWidget *self,
|
||||
key = eek_renderer_find_key_by_position (priv->renderer,
|
||||
(gdouble)event->x,
|
||||
(gdouble)event->y);
|
||||
if (key)
|
||||
|
||||
if (priv->dragged_key && priv->dragged_key != key)
|
||||
g_signal_emit_by_name (priv->dragged_key, "released", priv->keyboard);
|
||||
if (key && !eek_key_is_pressed (key)) {
|
||||
priv->dragged_key = key;
|
||||
g_signal_emit_by_name (key, "pressed", priv->keyboard);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@ -229,57 +206,15 @@ eek_gtk_keyboard_real_button_release_event (GtkWidget *self,
|
||||
GdkEventButton *event)
|
||||
{
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
|
||||
head = eek_keyboard_get_pressed_keys (priv->keyboard);
|
||||
for (; head; head = g_list_next (head)) {
|
||||
g_signal_emit_by_name (head->data, "released", priv->keyboard);
|
||||
if (priv->dragged_key) {
|
||||
g_signal_emit_by_name (priv->dragged_key, "released", priv->keyboard);
|
||||
priv->dragged_key = NULL;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
eek_gtk_keyboard_real_motion_notify_event (GtkWidget *self,
|
||||
GdkEventMotion *event)
|
||||
{
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
EekKey *key;
|
||||
|
||||
key = eek_renderer_find_key_by_position (priv->renderer,
|
||||
(gdouble)event->x,
|
||||
(gdouble)event->y);
|
||||
if (key) {
|
||||
GList *head = eek_keyboard_get_pressed_keys (priv->keyboard);
|
||||
gboolean found = FALSE;
|
||||
for (; head; head = g_list_next (head)) {
|
||||
if (head->data == key)
|
||||
found = TRUE;
|
||||
else
|
||||
g_signal_emit_by_name (head->data, "cancelled", priv->keyboard);
|
||||
}
|
||||
if (!found)
|
||||
g_signal_emit_by_name (key, "pressed", priv->keyboard);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_gtk_keyboard_real_unmap (GtkWidget *self)
|
||||
{
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
|
||||
if (priv->keyboard) {
|
||||
GList *head;
|
||||
|
||||
head = eek_keyboard_get_pressed_keys (priv->keyboard);
|
||||
for (; head; head = g_list_next (head)) {
|
||||
g_signal_emit_by_name (head->data, "released", priv->keyboard);
|
||||
}
|
||||
}
|
||||
|
||||
GTK_WIDGET_CLASS (eek_gtk_keyboard_parent_class)->unmap (self);
|
||||
}
|
||||
|
||||
static void
|
||||
eek_gtk_keyboard_set_keyboard (EekGtkKeyboard *self,
|
||||
EekKeyboard *keyboard)
|
||||
@ -293,15 +228,6 @@ eek_gtk_keyboard_set_keyboard (EekGtkKeyboard *self,
|
||||
priv->key_released_handler =
|
||||
g_signal_connect (priv->keyboard, "key-released",
|
||||
G_CALLBACK(on_key_released), self);
|
||||
priv->key_locked_handler =
|
||||
g_signal_connect (priv->keyboard, "key-locked",
|
||||
G_CALLBACK(on_key_locked), self);
|
||||
priv->key_unlocked_handler =
|
||||
g_signal_connect (priv->keyboard, "key-unlocked",
|
||||
G_CALLBACK(on_key_unlocked), self);
|
||||
priv->key_cancelled_handler =
|
||||
g_signal_connect (priv->keyboard, "key-cancelled",
|
||||
G_CALLBACK(on_key_cancelled), self);
|
||||
priv->symbol_index_changed_handler =
|
||||
g_signal_connect (priv->keyboard, "symbol-index-changed",
|
||||
G_CALLBACK(on_symbol_index_changed), self);
|
||||
@ -347,28 +273,16 @@ eek_gtk_keyboard_dispose (GObject *object)
|
||||
priv->key_released_handler))
|
||||
g_signal_handler_disconnect (priv->keyboard,
|
||||
priv->key_released_handler);
|
||||
if (g_signal_handler_is_connected (priv->keyboard,
|
||||
priv->key_locked_handler))
|
||||
g_signal_handler_disconnect (priv->keyboard,
|
||||
priv->key_locked_handler);
|
||||
if (g_signal_handler_is_connected (priv->keyboard,
|
||||
priv->key_unlocked_handler))
|
||||
g_signal_handler_disconnect (priv->keyboard,
|
||||
priv->key_unlocked_handler);
|
||||
if (g_signal_handler_is_connected (priv->keyboard,
|
||||
priv->key_cancelled_handler))
|
||||
g_signal_handler_disconnect (priv->keyboard,
|
||||
priv->key_cancelled_handler);
|
||||
if (g_signal_handler_is_connected (priv->keyboard,
|
||||
priv->symbol_index_changed_handler))
|
||||
g_signal_handler_disconnect (priv->keyboard,
|
||||
priv->symbol_index_changed_handler);
|
||||
|
||||
GList *head;
|
||||
|
||||
head = eek_keyboard_get_pressed_keys (priv->keyboard);
|
||||
for (; head; head = g_list_next (head)) {
|
||||
g_signal_emit_by_name (head->data, "released", priv->keyboard);
|
||||
if (priv->dragged_key) {
|
||||
g_signal_emit_by_name (priv->dragged_key,
|
||||
"released",
|
||||
priv->keyboard);
|
||||
priv->dragged_key = NULL;
|
||||
}
|
||||
|
||||
g_object_unref (priv->keyboard);
|
||||
@ -394,7 +308,6 @@ eek_gtk_keyboard_class_init (EekGtkKeyboardClass *klass)
|
||||
sizeof (EekGtkKeyboardPrivate));
|
||||
|
||||
widget_class->realize = eek_gtk_keyboard_real_realize;
|
||||
widget_class->unmap = eek_gtk_keyboard_real_unmap;
|
||||
#if GTK_CHECK_VERSION (2, 91, 2)
|
||||
widget_class->draw = eek_gtk_keyboard_real_draw;
|
||||
#else /* GTK_CHECK_VERSION (2, 91, 2) */
|
||||
@ -405,8 +318,6 @@ eek_gtk_keyboard_class_init (EekGtkKeyboardClass *klass)
|
||||
eek_gtk_keyboard_real_button_press_event;
|
||||
widget_class->button_release_event =
|
||||
eek_gtk_keyboard_real_button_release_event;
|
||||
widget_class->motion_notify_event =
|
||||
eek_gtk_keyboard_real_motion_notify_event;
|
||||
|
||||
gobject_class->set_property = eek_gtk_keyboard_set_property;
|
||||
gobject_class->dispose = eek_gtk_keyboard_dispose;
|
||||
@ -424,7 +335,12 @@ eek_gtk_keyboard_class_init (EekGtkKeyboardClass *klass)
|
||||
static void
|
||||
eek_gtk_keyboard_init (EekGtkKeyboard *self)
|
||||
{
|
||||
self->priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
EekGtkKeyboardPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_GTK_KEYBOARD_GET_PRIVATE(self);
|
||||
priv->renderer = NULL;
|
||||
priv->keyboard = NULL;
|
||||
priv->dragged_key = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -450,26 +366,15 @@ color_from_gdk_color (GdkColor *gdk_color)
|
||||
}
|
||||
|
||||
static void
|
||||
magnify_bounds (GtkWidget *self,
|
||||
EekBounds *bounds,
|
||||
EekBounds *large_bounds,
|
||||
gdouble scale)
|
||||
magnify_bounds (EekBounds *bounds, EekBounds *large_bounds, gdouble scale)
|
||||
{
|
||||
GtkAllocation allocation;
|
||||
gdouble x, y;
|
||||
|
||||
g_assert (scale >= 1.0);
|
||||
|
||||
gtk_widget_get_allocation (self, &allocation);
|
||||
|
||||
large_bounds->width = bounds->width * scale;
|
||||
large_bounds->height = bounds->height * scale;
|
||||
|
||||
x = bounds->x - (large_bounds->width - bounds->width) / 2;
|
||||
y = bounds->y - large_bounds->height;
|
||||
|
||||
large_bounds->x = CLAMP(x, 0, allocation.width - large_bounds->width);
|
||||
large_bounds->y = CLAMP(y, 0, allocation.height - large_bounds->height);
|
||||
large_bounds->x = bounds->x - (large_bounds->width - bounds->width) / 2;
|
||||
large_bounds->y = bounds->y - (large_bounds->height - bounds->height) / 2;
|
||||
}
|
||||
|
||||
static void
|
||||
@ -483,63 +388,10 @@ render_pressed_key (GtkWidget *widget,
|
||||
cr = gdk_cairo_create (GDK_DRAWABLE (gtk_widget_get_window (widget)));
|
||||
|
||||
eek_renderer_get_key_bounds (priv->renderer, key, &bounds, TRUE);
|
||||
magnify_bounds (widget, &bounds, &large_bounds, 1.5);
|
||||
magnify_bounds (&bounds, &large_bounds, 1.5);
|
||||
|
||||
cairo_save (cr);
|
||||
cairo_translate (cr, bounds.x, bounds.y);
|
||||
eek_renderer_render_key (priv->renderer, cr, key, 1.0, TRUE);
|
||||
cairo_restore (cr);
|
||||
|
||||
cairo_save (cr);
|
||||
cairo_translate (cr, large_bounds.x, large_bounds.y);
|
||||
eek_renderer_render_key (priv->renderer, cr, key, 1.5, TRUE);
|
||||
cairo_restore (cr);
|
||||
|
||||
cairo_destroy (cr);
|
||||
}
|
||||
|
||||
static void
|
||||
render_locked_key (GtkWidget *widget,
|
||||
EekKey *key)
|
||||
{
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
EekBounds bounds;
|
||||
cairo_t *cr;
|
||||
|
||||
cr = gdk_cairo_create (GDK_DRAWABLE (gtk_widget_get_window (widget)));
|
||||
|
||||
eek_renderer_get_key_bounds (priv->renderer, key, &bounds, TRUE);
|
||||
cairo_translate (cr, bounds.x, bounds.y);
|
||||
eek_renderer_render_key (priv->renderer, cr, key, 1.0, TRUE);
|
||||
|
||||
cairo_destroy (cr);
|
||||
}
|
||||
|
||||
static void
|
||||
render_released_key (GtkWidget *widget,
|
||||
EekKey *key)
|
||||
{
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
EekBounds bounds, large_bounds;
|
||||
cairo_t *cr;
|
||||
|
||||
cr = gdk_cairo_create (GDK_DRAWABLE (gtk_widget_get_window (widget)));
|
||||
|
||||
eek_renderer_get_key_bounds (priv->renderer, key, &bounds, TRUE);
|
||||
magnify_bounds (widget, &bounds, &large_bounds, 2.0);
|
||||
cairo_rectangle (cr,
|
||||
large_bounds.x,
|
||||
large_bounds.y,
|
||||
large_bounds.width,
|
||||
large_bounds.height);
|
||||
cairo_rectangle (cr,
|
||||
bounds.x,
|
||||
bounds.y,
|
||||
bounds.width,
|
||||
bounds.height);
|
||||
cairo_clip (cr);
|
||||
|
||||
eek_renderer_render_keyboard (priv->renderer, cr);
|
||||
cairo_destroy (cr);
|
||||
}
|
||||
|
||||
@ -556,14 +408,6 @@ on_key_pressed (EekKeyboard *keyboard,
|
||||
return;
|
||||
|
||||
render_pressed_key (widget, key);
|
||||
|
||||
#if HAVE_LIBCANBERRA
|
||||
ca_gtk_play_for_widget (widget, 0,
|
||||
CA_PROP_EVENT_ID, "button-pressed",
|
||||
CA_PROP_EVENT_DESCRIPTION, "virtual key pressed",
|
||||
CA_PROP_APPLICATION_ID, "org.fedorahosted.Eekboard",
|
||||
NULL);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
@ -573,65 +417,26 @@ on_key_released (EekKeyboard *keyboard,
|
||||
{
|
||||
GtkWidget *widget = user_data;
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
cairo_t *cr;
|
||||
EekBounds bounds, large_bounds;
|
||||
|
||||
/* renderer may have not been set yet if the widget is a popup */
|
||||
if (!priv->renderer)
|
||||
return;
|
||||
|
||||
render_released_key (widget, key);
|
||||
cr = gdk_cairo_create (GDK_DRAWABLE (gtk_widget_get_window (widget)));
|
||||
|
||||
#if HAVE_LIBCANBERRA
|
||||
ca_gtk_play_for_widget (widget, 0,
|
||||
CA_PROP_EVENT_ID, "button-released",
|
||||
CA_PROP_EVENT_DESCRIPTION, "virtual key pressed",
|
||||
CA_PROP_APPLICATION_ID, "org.fedorahosted.Eekboard",
|
||||
NULL);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_cancelled (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *widget = user_data;
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
|
||||
/* renderer may have not been set yet if the widget is a popup */
|
||||
if (!priv->renderer)
|
||||
return;
|
||||
|
||||
render_released_key (widget, key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_locked (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *widget = user_data;
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
|
||||
/* renderer may have not been set yet if the widget is a popup */
|
||||
if (!priv->renderer)
|
||||
return;
|
||||
|
||||
render_locked_key (widget, key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_unlocked (EekKeyboard *keyboard,
|
||||
EekKey *key,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *widget = user_data;
|
||||
EekGtkKeyboardPrivate *priv = EEK_GTK_KEYBOARD_GET_PRIVATE(widget);
|
||||
|
||||
/* renderer may have not been set yet if the widget is a popup */
|
||||
if (!priv->renderer)
|
||||
return;
|
||||
|
||||
render_released_key (widget, key);
|
||||
eek_renderer_get_key_bounds (priv->renderer, key, &bounds, TRUE);
|
||||
magnify_bounds (&bounds, &large_bounds, 2.0);
|
||||
cairo_rectangle (cr,
|
||||
large_bounds.x,
|
||||
large_bounds.y,
|
||||
large_bounds.width,
|
||||
large_bounds.height);
|
||||
cairo_clip (cr);
|
||||
eek_renderer_render_keyboard (priv->renderer, cr);
|
||||
cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
|
||||
cairo_destroy (cr);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek-gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_GTK_KEYBOARD_H
|
||||
#define EEK_GTK_KEYBOARD_H 1
|
||||
|
||||
|
||||
@ -51,27 +51,58 @@ pixbuf_to_cairo_surface (GdkPixbuf *pixbuf)
|
||||
return surface;
|
||||
}
|
||||
|
||||
static cairo_surface_t *
|
||||
eek_gtk_renderer_real_get_icon_surface (EekRenderer *self,
|
||||
const gchar *icon_name,
|
||||
gint size)
|
||||
static void
|
||||
eek_gtk_renderer_real_render_key_icon (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate)
|
||||
{
|
||||
EekBounds bounds;
|
||||
EekSymbol *symbol;
|
||||
const gchar *icon_name;
|
||||
GdkPixbuf *pixbuf;
|
||||
GError *error;
|
||||
cairo_surface_t *surface;
|
||||
GError *error;
|
||||
gint width, height;
|
||||
|
||||
symbol = eek_key_get_symbol_with_fallback (key, 0, 0);
|
||||
g_return_if_fail (symbol);
|
||||
|
||||
icon_name = eek_symbol_get_icon_name (symbol);
|
||||
g_return_if_fail (icon_name);
|
||||
|
||||
eek_element_get_bounds (EEK_ELEMENT(key), &bounds);
|
||||
bounds.width *= scale;
|
||||
bounds.height *= scale;
|
||||
|
||||
error = NULL;
|
||||
pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (),
|
||||
icon_name,
|
||||
size,
|
||||
MIN(bounds.width, bounds.height),
|
||||
0,
|
||||
&error);
|
||||
if (pixbuf == NULL)
|
||||
return NULL;
|
||||
g_return_if_fail (pixbuf);
|
||||
|
||||
width = gdk_pixbuf_get_width (pixbuf);
|
||||
height = gdk_pixbuf_get_height (pixbuf);
|
||||
|
||||
if (bounds.width * height < bounds.height * width)
|
||||
scale = bounds.width / width;
|
||||
else
|
||||
scale = bounds.height / height;
|
||||
|
||||
cairo_save (cr);
|
||||
cairo_translate (cr,
|
||||
(bounds.width - width * scale) / 2,
|
||||
(bounds.height - height * scale) / 2);
|
||||
|
||||
eek_renderer_apply_transformation_for_key (self, cr, key, scale, rotate);
|
||||
surface = pixbuf_to_cairo_surface (pixbuf);
|
||||
g_object_unref (pixbuf);
|
||||
return surface;
|
||||
cairo_set_source_surface (cr, surface, 0.0, 0.0);
|
||||
cairo_paint (cr);
|
||||
cairo_restore (cr);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -79,7 +110,7 @@ eek_gtk_renderer_class_init (EekGtkRendererClass *klass)
|
||||
{
|
||||
EekRendererClass *renderer_class = EEK_RENDERER_CLASS (klass);
|
||||
|
||||
renderer_class->get_icon_surface = eek_gtk_renderer_real_get_icon_surface;
|
||||
renderer_class->render_key_icon = eek_gtk_renderer_real_render_key_icon;
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
230
eek/eek-key.c
230
eek/eek-key.c
@ -39,6 +39,7 @@
|
||||
#include "eek-section.h"
|
||||
#include "eek-keyboard.h"
|
||||
#include "eek-symbol.h"
|
||||
#include "eek-serializable.h"
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
@ -53,15 +54,16 @@ enum {
|
||||
enum {
|
||||
PRESSED,
|
||||
RELEASED,
|
||||
LOCKED,
|
||||
UNLOCKED,
|
||||
CANCELLED,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
static guint signals[LAST_SIGNAL] = { 0, };
|
||||
|
||||
G_DEFINE_TYPE (EekKey, eek_key, EEK_TYPE_ELEMENT);
|
||||
static void eek_serializable_iface_init (EekSerializableIface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (EekKey, eek_key, EEK_TYPE_ELEMENT,
|
||||
G_IMPLEMENT_INTERFACE (EEK_TYPE_SERIALIZABLE,
|
||||
eek_serializable_iface_init));
|
||||
|
||||
#define EEK_KEY_GET_PRIVATE(obj) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), EEK_TYPE_KEY, EekKeyPrivate))
|
||||
@ -75,9 +77,106 @@ struct _EekKeyPrivate
|
||||
gint row;
|
||||
gulong oref;
|
||||
gboolean is_pressed;
|
||||
gboolean is_locked;
|
||||
};
|
||||
|
||||
static EekSerializableIface *eek_key_parent_serializable_iface;
|
||||
|
||||
static GVariant *
|
||||
_g_variant_new_symbol_matrix (EekSymbolMatrix *symbol_matrix)
|
||||
{
|
||||
GVariantBuilder builder, array;
|
||||
gint i, num_symbols = symbol_matrix->num_groups * symbol_matrix->num_levels;
|
||||
|
||||
g_variant_builder_init (&builder, G_VARIANT_TYPE ("(iiv)"));
|
||||
g_variant_builder_add (&builder, "i", symbol_matrix->num_groups);
|
||||
g_variant_builder_add (&builder, "i", symbol_matrix->num_levels);
|
||||
g_variant_builder_init (&array, G_VARIANT_TYPE ("av"));
|
||||
for (i = 0; i < num_symbols; i++) {
|
||||
GVariant *symbol = eek_serializable_serialize
|
||||
(EEK_SERIALIZABLE(symbol_matrix->data[i]));
|
||||
g_variant_builder_add (&array, "v", symbol);
|
||||
}
|
||||
g_variant_builder_add (&builder, "v", g_variant_builder_end (&array));
|
||||
return g_variant_builder_end (&builder);
|
||||
}
|
||||
|
||||
static EekSymbolMatrix *
|
||||
_g_variant_get_symbol_matrix (GVariant *variant)
|
||||
{
|
||||
gint num_groups, num_levels, i;
|
||||
EekSymbolMatrix *symbol_matrix;
|
||||
GVariant *array, *child;
|
||||
GVariantIter iter;
|
||||
|
||||
g_variant_get_child (variant, 0, "i", &num_groups);
|
||||
g_variant_get_child (variant, 1, "i", &num_levels);
|
||||
symbol_matrix = eek_symbol_matrix_new (num_groups, num_levels);
|
||||
|
||||
g_variant_get_child (variant, 2, "v", &array);
|
||||
g_variant_iter_init (&iter, array);
|
||||
for (i = 0; i < num_groups * num_levels; i++) {
|
||||
EekSerializable *serializable;
|
||||
|
||||
if (!g_variant_iter_next (&iter, "v", &child)) {
|
||||
eek_symbol_matrix_free (symbol_matrix);
|
||||
g_return_val_if_reached (NULL);
|
||||
}
|
||||
|
||||
serializable = eek_serializable_deserialize (child);
|
||||
symbol_matrix->data[i] = EEK_SYMBOL(serializable);
|
||||
}
|
||||
return symbol_matrix;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_serialize (EekSerializable *self,
|
||||
GVariantBuilder *builder)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
|
||||
eek_key_parent_serializable_iface->serialize (self, builder);
|
||||
|
||||
g_variant_builder_add (builder, "u", priv->keycode);
|
||||
g_variant_builder_add (builder, "v",
|
||||
_g_variant_new_symbol_matrix (priv->symbol_matrix));
|
||||
g_variant_builder_add (builder, "i", priv->column);
|
||||
g_variant_builder_add (builder, "i", priv->row);
|
||||
g_variant_builder_add (builder, "u", priv->oref);
|
||||
}
|
||||
|
||||
static gsize
|
||||
eek_key_real_deserialize (EekSerializable *self,
|
||||
GVariant *variant,
|
||||
gsize index)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
GVariant *symbol_matrix;
|
||||
|
||||
index = eek_key_parent_serializable_iface->deserialize (self,
|
||||
variant,
|
||||
index);
|
||||
|
||||
g_variant_get_child (variant, index++, "u", &priv->keycode);
|
||||
g_variant_get_child (variant, index++, "v", &symbol_matrix);
|
||||
eek_symbol_matrix_free (priv->symbol_matrix);
|
||||
priv->symbol_matrix = _g_variant_get_symbol_matrix (symbol_matrix);
|
||||
g_variant_get_child (variant, index++, "i", &priv->column);
|
||||
g_variant_get_child (variant, index++, "i", &priv->row);
|
||||
g_variant_get_child (variant, index++, "u", &priv->oref);
|
||||
|
||||
return index;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_serializable_iface_init (EekSerializableIface *iface)
|
||||
{
|
||||
eek_key_parent_serializable_iface =
|
||||
g_type_interface_peek_parent (iface);
|
||||
|
||||
iface->serialize = eek_key_real_serialize;
|
||||
iface->deserialize = eek_key_real_deserialize;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_set_keycode (EekKey *self, guint keycode)
|
||||
{
|
||||
@ -155,13 +254,6 @@ eek_key_real_is_pressed (EekKey *self)
|
||||
return priv->is_pressed;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
eek_key_real_is_locked (EekKey *self)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
return priv->is_locked;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_pressed (EekKey *self)
|
||||
{
|
||||
@ -184,39 +276,6 @@ eek_key_real_released (EekKey *self)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_locked (EekKey *self)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
|
||||
priv->is_locked = TRUE;
|
||||
#if DEBUG
|
||||
g_debug ("locked %X", eek_key_get_keycode (self));
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_unlocked (EekKey *self)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
|
||||
priv->is_locked = FALSE;
|
||||
#if DEBUG
|
||||
g_debug ("unlocked %X", eek_key_get_keycode (self));
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_real_cancelled (EekKey *self)
|
||||
{
|
||||
EekKeyPrivate *priv = EEK_KEY_GET_PRIVATE(self);
|
||||
|
||||
priv->is_pressed = FALSE;
|
||||
#if DEBUG
|
||||
g_debug ("cancelled %X", eek_key_get_keycode (self));
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
eek_key_finalize (GObject *object)
|
||||
{
|
||||
@ -315,7 +374,6 @@ eek_key_class_init (EekKeyClass *klass)
|
||||
klass->set_oref = eek_key_real_set_oref;
|
||||
klass->get_oref = eek_key_real_get_oref;
|
||||
klass->is_pressed = eek_key_real_is_pressed;
|
||||
klass->is_locked = eek_key_real_is_locked;
|
||||
|
||||
gobject_class->set_property = eek_key_set_property;
|
||||
gobject_class->get_property = eek_key_get_property;
|
||||
@ -324,9 +382,6 @@ eek_key_class_init (EekKeyClass *klass)
|
||||
/* signals */
|
||||
klass->pressed = eek_key_real_pressed;
|
||||
klass->released = eek_key_real_released;
|
||||
klass->locked = eek_key_real_locked;
|
||||
klass->unlocked = eek_key_real_unlocked;
|
||||
klass->cancelled = eek_key_real_cancelled;
|
||||
|
||||
/**
|
||||
* EekKey:keycode:
|
||||
@ -423,59 +478,6 @@ eek_key_class_init (EekKeyClass *klass)
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
/**
|
||||
* EekKey::locked:
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::locked signal is emitted each time @key is shifted to
|
||||
* the locked state. The class handler runs before signal
|
||||
* handlers to allow signal handlers to read the status of @key
|
||||
* with eek_key_is_locked().
|
||||
*/
|
||||
signals[LOCKED] =
|
||||
g_signal_new (I_("locked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_FIRST,
|
||||
G_STRUCT_OFFSET(EekKeyClass, locked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
/**
|
||||
* EekKey::unlocked:
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::unlocked signal is emitted each time @key is shifted to
|
||||
* the unlocked state.
|
||||
*/
|
||||
signals[UNLOCKED] =
|
||||
g_signal_new (I_("unlocked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekKeyClass, unlocked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
/**
|
||||
* EekKey::cancelled:
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::cancelled signal is emitted each time @key is shifted to
|
||||
* the cancelled state.
|
||||
*/
|
||||
signals[CANCELLED] =
|
||||
g_signal_new (I_("cancelled"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekKeyClass, cancelled),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -484,7 +486,10 @@ eek_key_init (EekKey *self)
|
||||
EekKeyPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_KEY_GET_PRIVATE(self);
|
||||
priv->keycode = 0;
|
||||
priv->symbol_matrix = eek_symbol_matrix_new (0, 0);
|
||||
priv->column = priv->row = 0;
|
||||
priv->oref = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -540,7 +545,7 @@ eek_key_set_symbol_matrix (EekKey *key,
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* Get the symbol matrix of @key.
|
||||
* Returns: (transfer none): #EekSymbolMatrix or %NULL
|
||||
* Returns: #EekSymbolMatrix or %NULL
|
||||
*/
|
||||
EekSymbolMatrix *
|
||||
eek_key_get_symbol_matrix (EekKey *key)
|
||||
@ -552,9 +557,9 @@ eek_key_get_symbol_matrix (EekKey *key)
|
||||
/**
|
||||
* eek_key_get_symbol:
|
||||
* @key: an #EekKey
|
||||
* @returns: (transfer none): the current #EekSymbol or %NULL on failure
|
||||
*
|
||||
* Get the current symbol of @key.
|
||||
* Return value: (transfer none): the current #EekSymbol or %NULL on failure
|
||||
*/
|
||||
EekSymbol *
|
||||
eek_key_get_symbol (EekKey *key)
|
||||
@ -567,9 +572,9 @@ eek_key_get_symbol (EekKey *key)
|
||||
* @key: an #EekKey
|
||||
* @fallback_group: fallback group index
|
||||
* @fallback_level: fallback level index
|
||||
* @returns: (transfer none): the current #EekSymbol or %NULL on failure
|
||||
*
|
||||
* Get the current symbol of @key.
|
||||
* Return value: (transfer none): the current #EekSymbol or %NULL on failure
|
||||
*/
|
||||
EekSymbol *
|
||||
eek_key_get_symbol_with_fallback (EekKey *key,
|
||||
@ -623,9 +628,9 @@ eek_key_get_symbol_with_fallback (EekKey *key,
|
||||
* @level: level index of the symbol matrix
|
||||
* @fallback_group: fallback group index
|
||||
* @fallback_level: fallback level index
|
||||
* @returns: (transfer none): an #EekSymbol at (@group, @level), or %NULL
|
||||
*
|
||||
* Get the symbol at (@group, @level) in the symbol matrix of @key.
|
||||
* Return value: (transfer none): an #EekSymbol at (@group, @level), or %NULL
|
||||
*/
|
||||
EekSymbol *
|
||||
eek_key_get_symbol_at_index (EekKey *key,
|
||||
@ -744,16 +749,3 @@ eek_key_is_pressed (EekKey *key)
|
||||
g_assert (EEK_IS_KEY(key));
|
||||
return EEK_KEY_GET_CLASS(key)->is_pressed (key);
|
||||
}
|
||||
|
||||
/**
|
||||
* eek_key_is_locked:
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* Return %TRUE if key is marked as locked.
|
||||
*/
|
||||
gboolean
|
||||
eek_key_is_locked (EekKey *key)
|
||||
{
|
||||
g_assert (EEK_IS_KEY(key));
|
||||
return EEK_KEY_GET_CLASS(key)->is_locked (key);
|
||||
}
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_KEY_H
|
||||
#define EEK_KEY_H 1
|
||||
|
||||
@ -40,12 +35,6 @@ G_BEGIN_DECLS
|
||||
typedef struct _EekKeyClass EekKeyClass;
|
||||
typedef struct _EekKeyPrivate EekKeyPrivate;
|
||||
|
||||
/**
|
||||
* EekKey:
|
||||
*
|
||||
* The #EekKey structure contains only private data and should only be
|
||||
* accessed using the provided API.
|
||||
*/
|
||||
struct _EekKey
|
||||
{
|
||||
/*< private >*/
|
||||
@ -68,11 +57,7 @@ struct _EekKey
|
||||
* @get_oref: virtual function for getting outline id of the key
|
||||
* @pressed: class handler for #EekKey::pressed signal
|
||||
* @released: class handler for #EekKey::released signal
|
||||
* @locked: class handler for #EekKey::locked signal
|
||||
* @unlocked: class handler for #EekKey::unlocked signal
|
||||
* @cancelled: class handler for #EekKey::cancelled signal
|
||||
* @is_pressed: virtual function for getting whether the key is pressed
|
||||
* @is_locked: virtual function for getting whether the key is locked
|
||||
*/
|
||||
struct _EekKeyClass
|
||||
{
|
||||
@ -100,18 +85,13 @@ struct _EekKeyClass
|
||||
|
||||
gboolean (* is_pressed) (EekKey *self);
|
||||
|
||||
/* signals */
|
||||
void (* pressed) (EekKey *key);
|
||||
void (* released) (EekKey *key);
|
||||
|
||||
gboolean (* is_locked) (EekKey *self);
|
||||
|
||||
void (* locked) (EekKey *key);
|
||||
void (* unlocked) (EekKey *key);
|
||||
void (* cancelled) (EekKey *key);
|
||||
|
||||
/*< private >*/
|
||||
/* padding */
|
||||
gpointer pdummy[20];
|
||||
gpointer pdummy[24];
|
||||
};
|
||||
|
||||
GType eek_key_get_type (void) G_GNUC_CONST;
|
||||
@ -145,7 +125,6 @@ void eek_key_set_oref (EekKey *key,
|
||||
gulong eek_key_get_oref (EekKey *key);
|
||||
|
||||
gboolean eek_key_is_pressed (EekKey *key);
|
||||
gboolean eek_key_is_locked (EekKey *key);
|
||||
|
||||
G_END_DECLS
|
||||
#endif /* EEK_KEY_H */
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
#include "eek-section.h"
|
||||
#include "eek-key.h"
|
||||
#include "eek-symbol.h"
|
||||
#include "eek-enumtypes.h"
|
||||
#include "eek-serializable.h"
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
@ -47,26 +47,26 @@ enum {
|
||||
enum {
|
||||
KEY_PRESSED,
|
||||
KEY_RELEASED,
|
||||
KEY_LOCKED,
|
||||
KEY_UNLOCKED,
|
||||
KEY_CANCELLED,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
static guint signals[LAST_SIGNAL] = { 0, };
|
||||
|
||||
G_DEFINE_TYPE (EekKeyboard, eek_keyboard, EEK_TYPE_CONTAINER);
|
||||
static void eek_serializable_iface_init (EekSerializableIface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (EekKeyboard, eek_keyboard, EEK_TYPE_CONTAINER,
|
||||
G_IMPLEMENT_INTERFACE (EEK_TYPE_SERIALIZABLE,
|
||||
eek_serializable_iface_init));
|
||||
|
||||
#define EEK_KEYBOARD_GET_PRIVATE(obj) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), EEK_TYPE_KEYBOARD, EekKeyboardPrivate))
|
||||
|
||||
|
||||
struct _EekKeyboardPrivate
|
||||
{
|
||||
EekLayout *layout;
|
||||
EekModifierBehavior modifier_behavior;
|
||||
EekModifierType modifiers;
|
||||
GList *pressed_keys;
|
||||
GList *locked_keys;
|
||||
GArray *outline_array;
|
||||
|
||||
/* modifiers dynamically assigned at run time */
|
||||
@ -74,6 +74,120 @@ struct _EekKeyboardPrivate
|
||||
EekModifierType alt_gr_mask;
|
||||
};
|
||||
|
||||
static EekSerializableIface *eek_keyboard_parent_serializable_iface;
|
||||
|
||||
static GVariant *_g_variant_new_outline (EekOutline *outline);
|
||||
static EekOutline *_g_variant_get_outline (GVariant *variant);
|
||||
|
||||
static GVariant *
|
||||
_g_variant_new_outline (EekOutline *outline)
|
||||
{
|
||||
GVariantBuilder builder, array;
|
||||
gint i;
|
||||
|
||||
g_variant_builder_init (&builder, G_VARIANT_TYPE ("(div)"));
|
||||
g_variant_builder_add (&builder, "d", outline->corner_radius);
|
||||
g_variant_builder_add (&builder, "i", outline->num_points);
|
||||
g_variant_builder_init (&array, G_VARIANT_TYPE ("a(dd)"));
|
||||
for (i = 0; i < outline->num_points; i++)
|
||||
g_variant_builder_add (&array,
|
||||
"(dd)",
|
||||
outline->points[i].x,
|
||||
outline->points[i].y);
|
||||
g_variant_builder_add (&builder, "v", g_variant_builder_end (&array));
|
||||
return g_variant_builder_end (&builder);
|
||||
}
|
||||
|
||||
static EekOutline *
|
||||
_g_variant_get_outline (GVariant *variant)
|
||||
{
|
||||
EekOutline *outline;
|
||||
GVariant *array;
|
||||
GVariantIter iter;
|
||||
gdouble x, y;
|
||||
gint i;
|
||||
|
||||
outline = g_slice_new0 (EekOutline);
|
||||
|
||||
g_variant_get_child (variant, 0, "d", &outline->corner_radius);
|
||||
g_variant_get_child (variant, 1, "i", &outline->num_points);
|
||||
|
||||
outline->points = g_slice_alloc0 (sizeof (EekPoint) * outline->num_points);
|
||||
|
||||
g_variant_get_child (variant, 2, "v", &array);
|
||||
g_variant_iter_init (&iter, array);
|
||||
for (i = 0; i < outline->num_points; i++) {
|
||||
if (!g_variant_iter_next (&iter, "(dd)", &x, &y)) {
|
||||
eek_outline_free (outline);
|
||||
g_return_val_if_reached (NULL);
|
||||
}
|
||||
outline->points[i].x = x;
|
||||
outline->points[i].y = y;
|
||||
}
|
||||
|
||||
return outline;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_keyboard_real_serialize (EekSerializable *self,
|
||||
GVariantBuilder *builder)
|
||||
{
|
||||
EekKeyboardPrivate *priv = EEK_KEYBOARD_GET_PRIVATE(self);
|
||||
GVariantBuilder array;
|
||||
guint i;
|
||||
|
||||
eek_keyboard_parent_serializable_iface->serialize (self, builder);
|
||||
|
||||
g_variant_builder_init (&array, G_VARIANT_TYPE ("av"));
|
||||
for (i = 0; i < priv->outline_array->len; i++) {
|
||||
EekOutline *outline =
|
||||
eek_keyboard_get_outline (EEK_KEYBOARD(self), i + 1);
|
||||
g_variant_builder_add (&array, "v",
|
||||
_g_variant_new_outline (outline));
|
||||
}
|
||||
g_variant_builder_add (builder, "v", g_variant_builder_end (&array));
|
||||
g_variant_builder_add (builder, "u", priv->num_lock_mask);
|
||||
g_variant_builder_add (builder, "u", priv->alt_gr_mask);
|
||||
}
|
||||
|
||||
static gsize
|
||||
eek_keyboard_real_deserialize (EekSerializable *self,
|
||||
GVariant *variant,
|
||||
gsize index)
|
||||
{
|
||||
EekKeyboardPrivate *priv = EEK_KEYBOARD_GET_PRIVATE(self);
|
||||
GVariant *array, *outline;
|
||||
GVariantIter iter;
|
||||
|
||||
index = eek_keyboard_parent_serializable_iface->deserialize (self,
|
||||
variant,
|
||||
index);
|
||||
|
||||
g_variant_get_child (variant, index++, "v", &array);
|
||||
|
||||
g_variant_iter_init (&iter, array);
|
||||
while (g_variant_iter_next (&iter, "v", &outline)) {
|
||||
EekOutline *_outline = _g_variant_get_outline (outline);
|
||||
g_array_append_val (priv->outline_array, *_outline);
|
||||
/* don't use eek_outline_free here, so as to keep _outline->points */
|
||||
g_slice_free (EekOutline, _outline);
|
||||
}
|
||||
g_variant_get_child (variant, index++, "u", &priv->num_lock_mask);
|
||||
g_variant_get_child (variant, index++, "u", &priv->alt_gr_mask);
|
||||
|
||||
return index;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_serializable_iface_init (EekSerializableIface *iface)
|
||||
{
|
||||
eek_keyboard_parent_serializable_iface =
|
||||
g_type_interface_peek_parent (iface);
|
||||
|
||||
iface->serialize = eek_keyboard_real_serialize;
|
||||
iface->deserialize = eek_keyboard_real_deserialize;
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_pressed (EekSection *section,
|
||||
EekKey *key,
|
||||
@ -90,30 +204,6 @@ on_key_released (EekSection *section,
|
||||
g_signal_emit_by_name (keyboard, "key-released", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_locked (EekSection *section,
|
||||
EekKey *key,
|
||||
EekKeyboard *keyboard)
|
||||
{
|
||||
g_signal_emit_by_name (keyboard, "key-locked", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_unlocked (EekSection *section,
|
||||
EekKey *key,
|
||||
EekKeyboard *keyboard)
|
||||
{
|
||||
g_signal_emit_by_name (keyboard, "key-unlocked", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_key_cancelled (EekSection *section,
|
||||
EekKey *key,
|
||||
EekKeyboard *keyboard)
|
||||
{
|
||||
g_signal_emit_by_name (keyboard, "key-cancelled", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_symbol_index_changed (EekSection *section,
|
||||
gint group,
|
||||
@ -184,7 +274,7 @@ eek_keyboard_set_property (GObject *object,
|
||||
break;
|
||||
case PROP_MODIFIER_BEHAVIOR:
|
||||
eek_keyboard_set_modifier_behavior (EEK_KEYBOARD(object),
|
||||
g_value_get_enum (value));
|
||||
g_value_get_int (value));
|
||||
break;
|
||||
default:
|
||||
g_object_set_property (object,
|
||||
@ -207,8 +297,8 @@ eek_keyboard_get_property (GObject *object,
|
||||
g_value_set_object (value, priv->layout);
|
||||
break;
|
||||
case PROP_MODIFIER_BEHAVIOR:
|
||||
g_value_set_enum (value,
|
||||
eek_keyboard_get_modifier_behavior (EEK_KEYBOARD(object)));
|
||||
g_value_set_int (value,
|
||||
eek_keyboard_get_modifier_behavior (EEK_KEYBOARD(object)));
|
||||
break;
|
||||
default:
|
||||
g_object_get_property (object,
|
||||
@ -231,45 +321,6 @@ set_level_from_modifiers (EekKeyboard *self)
|
||||
eek_element_set_level (EEK_ELEMENT(self), level);
|
||||
}
|
||||
|
||||
static void
|
||||
set_modifiers_with_key (EekKeyboard *self,
|
||||
EekKey *key,
|
||||
EekModifierType modifiers)
|
||||
{
|
||||
EekKeyboardPrivate *priv = EEK_KEYBOARD_GET_PRIVATE(self);
|
||||
EekModifierType enabled = (priv->modifiers ^ modifiers) & modifiers;
|
||||
EekModifierType disabled = (priv->modifiers ^ modifiers) & priv->modifiers;
|
||||
|
||||
if (enabled != 0) {
|
||||
if (priv->modifier_behavior != EEK_MODIFIER_BEHAVIOR_NONE) {
|
||||
EekModifierKey *modifier_key = g_slice_new (EekModifierKey);
|
||||
modifier_key->modifiers = enabled;
|
||||
modifier_key->key = key;
|
||||
priv->locked_keys =
|
||||
g_list_prepend (priv->locked_keys, modifier_key);
|
||||
g_signal_emit_by_name (modifier_key->key, "locked");
|
||||
}
|
||||
} else {
|
||||
if (priv->modifier_behavior != EEK_MODIFIER_BEHAVIOR_NONE) {
|
||||
GList *head;
|
||||
for (head = priv->locked_keys; head; ) {
|
||||
EekModifierKey *modifier_key = head->data;
|
||||
if (modifier_key->modifiers & disabled) {
|
||||
GList *next = g_list_next (head);
|
||||
priv->locked_keys =
|
||||
g_list_remove_link (priv->locked_keys, head);
|
||||
g_signal_emit_by_name (modifier_key->key, "unlocked");
|
||||
g_list_free1 (head);
|
||||
head = next;
|
||||
} else
|
||||
head = g_list_next (head);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
priv->modifiers = modifiers;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_keyboard_real_key_pressed (EekKeyboard *self,
|
||||
EekKey *key)
|
||||
@ -278,15 +329,13 @@ eek_keyboard_real_key_pressed (EekKeyboard *self,
|
||||
EekSymbol *symbol;
|
||||
EekModifierType modifier;
|
||||
|
||||
priv->pressed_keys = g_list_prepend (priv->pressed_keys, key);
|
||||
|
||||
symbol = eek_key_get_symbol_with_fallback (key, 0, 0);
|
||||
if (!symbol)
|
||||
return;
|
||||
|
||||
modifier = eek_symbol_get_modifier_mask (symbol);
|
||||
if (priv->modifier_behavior == EEK_MODIFIER_BEHAVIOR_NONE) {
|
||||
set_modifiers_with_key (self, key, priv->modifiers | modifier);
|
||||
priv->modifiers |= modifier;
|
||||
set_level_from_modifiers (self);
|
||||
}
|
||||
}
|
||||
@ -299,8 +348,6 @@ eek_keyboard_real_key_released (EekKeyboard *self,
|
||||
EekSymbol *symbol;
|
||||
EekModifierType modifier;
|
||||
|
||||
EEK_KEYBOARD_GET_CLASS (self)->key_cancelled (self, key);
|
||||
|
||||
symbol = eek_key_get_symbol_with_fallback (key, 0, 0);
|
||||
if (!symbol)
|
||||
return;
|
||||
@ -308,42 +355,21 @@ eek_keyboard_real_key_released (EekKeyboard *self,
|
||||
modifier = eek_symbol_get_modifier_mask (symbol);
|
||||
switch (priv->modifier_behavior) {
|
||||
case EEK_MODIFIER_BEHAVIOR_NONE:
|
||||
set_modifiers_with_key (self, key, priv->modifiers & ~modifier);
|
||||
priv->modifiers &= ~modifier;
|
||||
break;
|
||||
case EEK_MODIFIER_BEHAVIOR_LOCK:
|
||||
priv->modifiers ^= modifier;
|
||||
break;
|
||||
case EEK_MODIFIER_BEHAVIOR_LATCH:
|
||||
if (modifier)
|
||||
set_modifiers_with_key (self, key, priv->modifiers ^ modifier);
|
||||
if (modifier == priv->alt_gr_mask || modifier == EEK_SHIFT_MASK)
|
||||
priv->modifiers ^= modifier;
|
||||
else
|
||||
set_modifiers_with_key (self, key,
|
||||
(priv->modifiers ^ modifier) & modifier);
|
||||
priv->modifiers = (priv->modifiers ^ modifier) & modifier;
|
||||
break;
|
||||
}
|
||||
set_level_from_modifiers (self);
|
||||
}
|
||||
|
||||
static void
|
||||
eek_keyboard_real_key_cancelled (EekKeyboard *self,
|
||||
EekKey *key)
|
||||
{
|
||||
EekKeyboardPrivate *priv = EEK_KEYBOARD_GET_PRIVATE(self);
|
||||
GList *head;
|
||||
|
||||
for (head = priv->pressed_keys; head; ) {
|
||||
EekKey *pressed_key = head->data;
|
||||
if (pressed_key == key) {
|
||||
GList *next = g_list_next (head);
|
||||
priv->pressed_keys =
|
||||
g_list_remove_link (priv->pressed_keys, head);
|
||||
g_list_free1 (head);
|
||||
head = next;
|
||||
} else
|
||||
head = g_list_next (head);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
eek_keyboard_dispose (GObject *object)
|
||||
{
|
||||
@ -363,9 +389,6 @@ eek_keyboard_finalize (GObject *object)
|
||||
EekKeyboardPrivate *priv = EEK_KEYBOARD_GET_PRIVATE(object);
|
||||
gint i;
|
||||
|
||||
g_list_free (priv->pressed_keys);
|
||||
g_list_free (priv->locked_keys);
|
||||
|
||||
for (i = 0; i < priv->outline_array->len; i++) {
|
||||
EekOutline *outline = &g_array_index (priv->outline_array,
|
||||
EekOutline,
|
||||
@ -386,12 +409,6 @@ eek_keyboard_real_child_added (EekContainer *self,
|
||||
G_CALLBACK(on_key_pressed), self);
|
||||
g_signal_connect (element, "key-released",
|
||||
G_CALLBACK(on_key_released), self);
|
||||
g_signal_connect (element, "key-locked",
|
||||
G_CALLBACK(on_key_locked), self);
|
||||
g_signal_connect (element, "key-unlocked",
|
||||
G_CALLBACK(on_key_unlocked), self);
|
||||
g_signal_connect (element, "key-cancelled",
|
||||
G_CALLBACK(on_key_cancelled), self);
|
||||
g_signal_connect (element, "symbol-index-changed",
|
||||
G_CALLBACK(on_symbol_index_changed), self);
|
||||
}
|
||||
@ -402,9 +419,6 @@ eek_keyboard_real_child_removed (EekContainer *self,
|
||||
{
|
||||
g_signal_handlers_disconnect_by_func (element, on_key_pressed, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_key_released, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_key_locked, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_key_unlocked, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_key_cancelled, self);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -423,7 +437,6 @@ eek_keyboard_class_init (EekKeyboardClass *klass)
|
||||
/* signals */
|
||||
klass->key_pressed = eek_keyboard_real_key_pressed;
|
||||
klass->key_released = eek_keyboard_real_key_released;
|
||||
klass->key_cancelled = eek_keyboard_real_key_cancelled;
|
||||
|
||||
container_class->child_added = eek_keyboard_real_child_added;
|
||||
container_class->child_removed = eek_keyboard_real_child_removed;
|
||||
@ -452,12 +465,11 @@ eek_keyboard_class_init (EekKeyboardClass *klass)
|
||||
*
|
||||
* The modifier handling mode of #EekKeyboard.
|
||||
*/
|
||||
pspec = g_param_spec_enum ("modifier-behavior",
|
||||
"Modifier behavior",
|
||||
"Modifier handling mode of the keyboard",
|
||||
EEK_TYPE_MODIFIER_BEHAVIOR,
|
||||
EEK_MODIFIER_BEHAVIOR_NONE,
|
||||
G_PARAM_READWRITE);
|
||||
pspec = g_param_spec_int ("modifier-behavior",
|
||||
"Modifier behavior",
|
||||
"Modifier handling mode of the keyboard",
|
||||
0, G_MAXINT, EEK_MODIFIER_BEHAVIOR_NONE,
|
||||
G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_MODIFIER_BEHAVIOR,
|
||||
pspec);
|
||||
@ -501,66 +513,6 @@ eek_keyboard_class_init (EekKeyboardClass *klass)
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekKeyboard::key-locked:
|
||||
* @keyboard: an #EekKeyboard
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-locked signal is emitted each time a key in @keyboard
|
||||
* is shifted to the locked state.
|
||||
*/
|
||||
signals[KEY_LOCKED] =
|
||||
g_signal_new (I_("key-locked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekKeyboardClass, key_locked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekKeyboard::key-unlocked:
|
||||
* @keyboard: an #EekKeyboard
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-unlocked signal is emitted each time a key in @keyboard
|
||||
* is shifted to the unlocked state.
|
||||
*/
|
||||
signals[KEY_UNLOCKED] =
|
||||
g_signal_new (I_("key-unlocked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekKeyboardClass, key_unlocked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekKeyboard::key-cancelled:
|
||||
* @keyboard: an #EekKeyboard
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-cancelled signal is emitted each time a key in @keyboard
|
||||
* is shifted to the cancelled state.
|
||||
*/
|
||||
signals[KEY_CANCELLED] =
|
||||
g_signal_new (I_("key-cancelled"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekKeyboardClass, key_cancelled),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -569,8 +521,11 @@ eek_keyboard_init (EekKeyboard *self)
|
||||
EekKeyboardPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_KEYBOARD_GET_PRIVATE(self);
|
||||
priv->layout = NULL;
|
||||
priv->modifier_behavior = EEK_MODIFIER_BEHAVIOR_NONE;
|
||||
priv->modifiers = 0;
|
||||
priv->outline_array = g_array_new (FALSE, TRUE, sizeof (EekOutline));
|
||||
priv->num_lock_mask = 0;
|
||||
eek_element_set_symbol_index (EEK_ELEMENT(self), 0, 0);
|
||||
}
|
||||
|
||||
@ -703,9 +658,9 @@ eek_keyboard_create_section (EekKeyboard *keyboard)
|
||||
* eek_keyboard_find_key_by_keycode:
|
||||
* @keyboard: an #EekKeyboard
|
||||
* @keycode: a keycode
|
||||
* @returns: (transfer none): #EekKey whose keycode is @keycode
|
||||
*
|
||||
* Find an #EekKey whose keycode is @keycode.
|
||||
* Return value: (transfer none): #EekKey whose keycode is @keycode
|
||||
*/
|
||||
EekKey *
|
||||
eek_keyboard_find_key_by_keycode (EekKeyboard *keyboard,
|
||||
@ -791,19 +746,6 @@ eek_keyboard_get_modifier_behavior (EekKeyboard *keyboard)
|
||||
return priv->modifier_behavior;
|
||||
}
|
||||
|
||||
void
|
||||
eek_keyboard_set_modifiers (EekKeyboard *keyboard,
|
||||
EekModifierType modifiers)
|
||||
{
|
||||
EekKeyboardPrivate *priv;
|
||||
|
||||
g_assert (EEK_IS_KEYBOARD(keyboard));
|
||||
priv = EEK_KEYBOARD_GET_PRIVATE(keyboard);
|
||||
|
||||
priv->modifiers = modifiers;
|
||||
set_level_from_modifiers (keyboard);
|
||||
}
|
||||
|
||||
/**
|
||||
* eek_keyboard_get_modifiers:
|
||||
* @keyboard: an #EekKeyboard
|
||||
@ -943,41 +885,3 @@ eek_keyboard_get_alt_gr_mask (EekKeyboard *keyboard)
|
||||
|
||||
return priv->alt_gr_mask;
|
||||
}
|
||||
|
||||
/**
|
||||
* eek_keyboard_get_pressed_keys:
|
||||
* @keyboard: an #EekKeyboard
|
||||
*
|
||||
* Get pressed keys.
|
||||
* Returns: (transfer container) (element-type EekKey): A list of
|
||||
* pressed keys.
|
||||
*/
|
||||
GList *
|
||||
eek_keyboard_get_pressed_keys (EekKeyboard *keyboard)
|
||||
{
|
||||
EekKeyboardPrivate *priv;
|
||||
|
||||
g_assert (EEK_IS_KEYBOARD(keyboard));
|
||||
priv = EEK_KEYBOARD_GET_PRIVATE(keyboard);
|
||||
|
||||
return priv->pressed_keys;
|
||||
}
|
||||
|
||||
/**
|
||||
* eek_keyboard_get_locked_keys:
|
||||
* @keyboard: an #EekKeyboard
|
||||
*
|
||||
* Get locked keys.
|
||||
* Returns: (transfer container) (element-type EekModifierKey): A list
|
||||
* of locked keys.
|
||||
*/
|
||||
GList *
|
||||
eek_keyboard_get_locked_keys (EekKeyboard *keyboard)
|
||||
{
|
||||
EekKeyboardPrivate *priv;
|
||||
|
||||
g_assert (EEK_IS_KEYBOARD(keyboard));
|
||||
priv = EEK_KEYBOARD_GET_PRIVATE(keyboard);
|
||||
|
||||
return priv->locked_keys;
|
||||
}
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_KEYBOARD_H
|
||||
#define EEK_KEYBOARD_H 1
|
||||
|
||||
@ -63,9 +58,6 @@ struct _EekKeyboard
|
||||
* keyboard by keycode
|
||||
* @key_pressed: class handler for #EekKeyboard::key-pressed signal
|
||||
* @key_released: class handler for #EekKeyboard::key-released signal
|
||||
* @key_locked: class handler for #EekKeyboard::key-locked signal
|
||||
* @key_unlocked: class handler for #EekKeyboard::key-unlocked signal
|
||||
* @key_cancelled: class handler for #EekKeyboard::key-cancelled signal
|
||||
*/
|
||||
struct _EekKeyboardClass
|
||||
{
|
||||
@ -77,50 +69,25 @@ struct _EekKeyboardClass
|
||||
gpointer get_symbol_index;
|
||||
|
||||
/*< public >*/
|
||||
EekSection *(* create_section) (EekKeyboard *self);
|
||||
EekSection *(* create_section) (EekKeyboard *self);
|
||||
|
||||
EekKey *(* find_key_by_keycode) (EekKeyboard *self,
|
||||
guint keycode);
|
||||
EekKey *(* find_key_by_keycode) (EekKeyboard *self,
|
||||
guint keycode);
|
||||
|
||||
/* signals */
|
||||
void (* key_pressed) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
void (* key_released) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
void (* key_pressed) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
void (* key_released) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
|
||||
/*< private >*/
|
||||
/* obsolete members moved to EekElement */
|
||||
gpointer symbol_index_changed;
|
||||
|
||||
/*< public >*/
|
||||
/* signals */
|
||||
void (* key_locked) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
void (* key_unlocked) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
void (* key_cancelled) (EekKeyboard *self,
|
||||
EekKey *key);
|
||||
|
||||
/*< private >*/
|
||||
/* padding */
|
||||
gpointer pdummy[21];
|
||||
gpointer pdummy[24];
|
||||
};
|
||||
|
||||
/**
|
||||
* EekModifierKey:
|
||||
* @modifiers: an #EekModifierType which @key triggers
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* Entry which associates modifier mask to a key. This is returned by
|
||||
* eek_keyboard_get_locked_keys().
|
||||
*/
|
||||
struct _EekModifierKey {
|
||||
/*< public >*/
|
||||
EekModifierType modifiers;
|
||||
EekKey *key;
|
||||
};
|
||||
typedef struct _EekModifierKey EekModifierKey;
|
||||
|
||||
GType eek_keyboard_get_type
|
||||
(void) G_GNUC_CONST;
|
||||
|
||||
@ -137,7 +104,6 @@ void eek_keyboard_set_size
|
||||
(EekKeyboard *keyboard,
|
||||
gdouble width,
|
||||
gdouble height);
|
||||
#ifndef EEK_DISABLE_DEPRECATED
|
||||
void eek_keyboard_set_symbol_index
|
||||
(EekKeyboard *keyboard,
|
||||
gint group,
|
||||
@ -146,6 +112,7 @@ void eek_keyboard_get_symbol_index
|
||||
(EekKeyboard *keyboard,
|
||||
gint *group,
|
||||
gint *level);
|
||||
|
||||
void eek_keyboard_set_group
|
||||
(EekKeyboard *keyboard,
|
||||
gint group);
|
||||
@ -156,16 +123,12 @@ gint eek_keyboard_get_group
|
||||
(EekKeyboard *keyboard);
|
||||
gint eek_keyboard_get_level
|
||||
(EekKeyboard *keyboard);
|
||||
#endif /* EEK_DISABLE_DEPRECATED */
|
||||
|
||||
void eek_keyboard_set_modifier_behavior
|
||||
(EekKeyboard *keyboard,
|
||||
EekModifierBehavior modifier_behavior);
|
||||
EekModifierBehavior eek_keyboard_get_modifier_behavior
|
||||
(EekKeyboard *keyboard);
|
||||
void eek_keyboard_set_modifiers
|
||||
(EekKeyboard *keyboard,
|
||||
EekModifierType modifiers);
|
||||
EekModifierType eek_keyboard_get_modifiers
|
||||
(EekKeyboard *keyboard);
|
||||
|
||||
@ -196,10 +159,5 @@ void eek_keyboard_set_alt_gr_mask
|
||||
EekModifierType eek_keyboard_get_alt_gr_mask
|
||||
(EekKeyboard *keyboard);
|
||||
|
||||
GList *eek_keyboard_get_pressed_keys
|
||||
(EekKeyboard *keyboard);
|
||||
GList *eek_keyboard_get_locked_keys
|
||||
(EekKeyboard *keyboard);
|
||||
|
||||
G_END_DECLS
|
||||
#endif /* EEK_KEYBOARD_H */
|
||||
|
||||
@ -208,7 +208,10 @@ eek_keysym_class_init (EekKeysymClass *klass)
|
||||
static void
|
||||
eek_keysym_init (EekKeysym *self)
|
||||
{
|
||||
self->priv = EEK_KEYSYM_GET_PRIVATE(self);
|
||||
EekKeysymPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_KEYSYM_GET_PRIVATE(self);
|
||||
priv->xkeysym = EEK_INVALID_KEYSYM;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -220,8 +223,7 @@ eek_keysym_init (EekKeysym *self)
|
||||
* modifier @modifier_mask.
|
||||
*/
|
||||
EekKeysym *
|
||||
eek_keysym_new_with_modifier (guint xkeysym,
|
||||
EekModifierType modifier_mask)
|
||||
eek_keysym_new_with_modifier (guint xkeysym, EekModifierType modifier_mask)
|
||||
{
|
||||
EekKeysym *keysym;
|
||||
EekKeysymPrivate *priv;
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_KEYSYM_H
|
||||
#define EEK_KEYSYM_H 1
|
||||
|
||||
@ -47,12 +42,6 @@ G_BEGIN_DECLS
|
||||
typedef struct _EekKeysymClass EekKeysymClass;
|
||||
typedef struct _EekKeysymPrivate EekKeysymPrivate;
|
||||
|
||||
/**
|
||||
* EekKeysym:
|
||||
*
|
||||
* The #EekKeysym structure contains only private data and should only
|
||||
* be accessed using the provided API.
|
||||
*/
|
||||
struct _EekKeysym {
|
||||
/*< private >*/
|
||||
EekSymbol parent;
|
||||
@ -71,7 +60,7 @@ guint eek_keysym_get_xkeysym (EekKeysym *keysym);
|
||||
|
||||
EekKeysym *eek_keysym_new_from_name (const gchar *name);
|
||||
EekKeysym *eek_keysym_new_with_modifier (guint xkeysym,
|
||||
EekModifierType modifier_mask);
|
||||
EekModifierType modifier);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
||||
@ -18,10 +18,6 @@
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_LAYOUT_H
|
||||
#define EEK_LAYOUT_H 1
|
||||
|
||||
|
||||
@ -87,8 +87,7 @@ static void eek_renderer_real_render_key_label (EekRenderer *self,
|
||||
static void invalidate (EekRenderer *renderer);
|
||||
static void render_key (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gboolean active);
|
||||
EekKey *key);
|
||||
static void on_symbol_index_changed (EekKeyboard *keyboard,
|
||||
gint group,
|
||||
gint level,
|
||||
@ -118,7 +117,7 @@ create_keyboard_surface_key_callback (EekElement *element,
|
||||
bounds.width * priv->scale,
|
||||
bounds.height * priv->scale);
|
||||
cairo_clip (data->cr);
|
||||
render_key (data->renderer, data->cr, EEK_KEY(element), FALSE);
|
||||
render_key (data->renderer, data->cr, EEK_KEY(element));
|
||||
|
||||
cairo_restore (data->cr);
|
||||
}
|
||||
@ -198,8 +197,7 @@ create_keyboard_surface (EekRenderer *renderer)
|
||||
static void
|
||||
render_key_outline (EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gboolean active)
|
||||
EekKey *key)
|
||||
{
|
||||
EekRendererPrivate *priv = EEK_RENDERER_GET_PRIVATE(renderer);
|
||||
EekOutline *outline;
|
||||
@ -217,10 +215,10 @@ render_key_outline (EekRenderer *renderer,
|
||||
if (oref == 0)
|
||||
return;
|
||||
|
||||
theme_node = g_object_get_data (G_OBJECT(key),
|
||||
active ?
|
||||
"theme-node-pressed" :
|
||||
"theme-node");
|
||||
if (eek_key_is_pressed (key))
|
||||
theme_node = g_object_get_data (G_OBJECT(key), "theme-node-pressed");
|
||||
else
|
||||
theme_node = g_object_get_data (G_OBJECT(key), "theme-node");
|
||||
if (theme_node) {
|
||||
eek_theme_node_get_foreground_color (theme_node, &foreground);
|
||||
eek_theme_node_get_background_color (theme_node, &background);
|
||||
@ -430,8 +428,7 @@ calculate_font_size (EekRenderer *renderer,
|
||||
static void
|
||||
render_key (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gboolean active)
|
||||
EekKey *key)
|
||||
{
|
||||
EekRendererPrivate *priv = EEK_RENDERER_GET_PRIVATE(self);
|
||||
EekOutline *outline;
|
||||
@ -440,20 +437,13 @@ render_key (EekRenderer *self,
|
||||
gulong oref;
|
||||
EekSymbol *symbol;
|
||||
GHashTable *outline_surface_cache;
|
||||
PangoLayout *layout;
|
||||
PangoRectangle extents = { 0, };
|
||||
EekColor foreground;
|
||||
|
||||
/* render outline */
|
||||
eek_element_get_bounds (EEK_ELEMENT(key), &bounds);
|
||||
bounds.width *= priv->scale;
|
||||
bounds.height *= priv->scale;
|
||||
|
||||
oref = eek_key_get_oref (key);
|
||||
if (oref == 0)
|
||||
return;
|
||||
|
||||
if (active)
|
||||
if (eek_key_is_pressed (key))
|
||||
outline_surface_cache = priv->active_outline_surface_cache;
|
||||
else
|
||||
outline_surface_cache = priv->outline_surface_cache;
|
||||
@ -465,19 +455,15 @@ render_key (EekRenderer *self,
|
||||
|
||||
outline_surface =
|
||||
cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
|
||||
bounds.width,
|
||||
bounds.height);
|
||||
bounds.width * priv->scale,
|
||||
bounds.height * priv->scale);
|
||||
cr = cairo_create (outline_surface);
|
||||
|
||||
/* blank background */
|
||||
cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.0);
|
||||
cairo_paint (cr);
|
||||
|
||||
cairo_save (cr);
|
||||
eek_renderer_apply_transformation_for_key (self, cr, key, 1.0, FALSE);
|
||||
render_key_outline (self, cr, key, active);
|
||||
cairo_restore (cr);
|
||||
|
||||
eek_renderer_render_key_outline (self, cr, key, 1.0, 0);
|
||||
cairo_destroy (cr);
|
||||
|
||||
g_hash_table_insert (outline_surface_cache,
|
||||
@ -488,66 +474,42 @@ render_key (EekRenderer *self,
|
||||
cairo_set_source_surface (cr, outline_surface, 0.0, 0.0);
|
||||
cairo_paint (cr);
|
||||
|
||||
/* render icon (if any) */
|
||||
symbol = eek_key_get_symbol_with_fallback (key, 0, 0);
|
||||
if (!symbol)
|
||||
return;
|
||||
if (EEK_RENDERER_GET_CLASS(self)->render_key_icon &&
|
||||
symbol && eek_symbol_get_icon_name (symbol)) {
|
||||
eek_renderer_render_key_icon (self, cr, key, 1.0, 0);
|
||||
} else {
|
||||
PangoLayout *layout;
|
||||
PangoRectangle extents = { 0, };
|
||||
EekColor foreground;
|
||||
EekThemeNode *theme_node;
|
||||
|
||||
if (eek_symbol_get_icon_name (symbol)) {
|
||||
cairo_surface_t *icon_surface =
|
||||
eek_renderer_get_icon_surface (self,
|
||||
eek_symbol_get_icon_name (symbol),
|
||||
MIN(bounds.width, bounds.height));
|
||||
if (icon_surface) {
|
||||
gint width = cairo_image_surface_get_width (icon_surface);
|
||||
gint height = cairo_image_surface_get_height (icon_surface);
|
||||
gdouble scale;
|
||||
layout = pango_cairo_create_layout (cr);
|
||||
eek_renderer_render_key_label (self, layout, key);
|
||||
pango_layout_get_extents (layout, NULL, &extents);
|
||||
|
||||
if (height * bounds.width / width <= bounds.height)
|
||||
scale = bounds.width / width;
|
||||
else if (width * bounds.height / height <= bounds.width)
|
||||
scale = bounds.height / height;
|
||||
else {
|
||||
if (width * bounds.height < height * bounds.width)
|
||||
scale = width / bounds.width;
|
||||
else
|
||||
scale = height / bounds.height;
|
||||
}
|
||||
cairo_save (cr);
|
||||
cairo_move_to
|
||||
(cr,
|
||||
(bounds.width * priv->scale - extents.width / PANGO_SCALE) / 2,
|
||||
(bounds.height * priv->scale - extents.height / PANGO_SCALE) / 2);
|
||||
|
||||
cairo_save (cr);
|
||||
cairo_translate (cr,
|
||||
(bounds.width - width * scale) / 2,
|
||||
(bounds.height - height * scale) / 2);
|
||||
cairo_rectangle (cr, 0, 0, width, height);
|
||||
cairo_clip (cr);
|
||||
cairo_set_source_surface (cr, icon_surface, 0.0, 0.0);
|
||||
cairo_paint (cr);
|
||||
cairo_restore (cr);
|
||||
return;
|
||||
}
|
||||
if (eek_key_is_pressed (key))
|
||||
theme_node = g_object_get_data (G_OBJECT(key), "theme-node-pressed");
|
||||
else
|
||||
theme_node = g_object_get_data (G_OBJECT(key), "theme-node");
|
||||
|
||||
eek_renderer_get_foreground_color (self, EEK_ELEMENT(key), &foreground);
|
||||
cairo_set_source_rgba (cr,
|
||||
foreground.red,
|
||||
foreground.green,
|
||||
foreground.blue,
|
||||
foreground.alpha);
|
||||
|
||||
pango_cairo_show_layout (cr, layout);
|
||||
cairo_restore (cr);
|
||||
g_object_unref (layout);
|
||||
}
|
||||
|
||||
/* render label */
|
||||
layout = pango_cairo_create_layout (cr);
|
||||
eek_renderer_render_key_label (self, layout, key);
|
||||
pango_layout_get_extents (layout, NULL, &extents);
|
||||
|
||||
cairo_save (cr);
|
||||
cairo_move_to
|
||||
(cr,
|
||||
(bounds.width - extents.width / PANGO_SCALE) / 2,
|
||||
(bounds.height - extents.height / PANGO_SCALE) / 2);
|
||||
|
||||
eek_renderer_get_foreground_color (self, EEK_ELEMENT(key), &foreground);
|
||||
cairo_set_source_rgba (cr,
|
||||
foreground.red,
|
||||
foreground.green,
|
||||
foreground.blue,
|
||||
foreground.alpha);
|
||||
|
||||
pango_cairo_show_layout (cr, layout);
|
||||
cairo_restore (cr);
|
||||
g_object_unref (layout);
|
||||
}
|
||||
|
||||
void
|
||||
@ -608,7 +570,7 @@ eek_renderer_real_render_key_label (EekRenderer *self,
|
||||
EekBounds bounds;
|
||||
const TextProperty *prop;
|
||||
PangoFontDescription *font;
|
||||
gdouble scale;
|
||||
gdouble size, scale;
|
||||
|
||||
symbol = eek_key_get_symbol_with_fallback (key, 0, 0);
|
||||
if (!symbol)
|
||||
@ -669,7 +631,7 @@ eek_renderer_real_render_key_outline (EekRenderer *self,
|
||||
{
|
||||
cairo_save (cr);
|
||||
eek_renderer_apply_transformation_for_key (self, cr, key, scale, rotate);
|
||||
render_key_outline (self, cr, key, eek_key_is_pressed (key) || eek_key_is_locked (key));
|
||||
render_key_outline (self, cr, key);
|
||||
cairo_restore (cr);
|
||||
}
|
||||
|
||||
@ -682,7 +644,7 @@ eek_renderer_real_render_key (EekRenderer *self,
|
||||
{
|
||||
cairo_save (cr);
|
||||
eek_renderer_apply_transformation_for_key (self, cr, key, scale, rotate);
|
||||
render_key (self, cr, key, eek_key_is_pressed (key) || eek_key_is_locked (key));
|
||||
render_key (self, cr, key);
|
||||
cairo_restore (cr);
|
||||
}
|
||||
|
||||
@ -691,7 +653,6 @@ eek_renderer_real_render_keyboard (EekRenderer *self,
|
||||
cairo_t *cr)
|
||||
{
|
||||
EekRendererPrivate *priv = EEK_RENDERER_GET_PRIVATE(self);
|
||||
cairo_pattern_t *source;
|
||||
|
||||
g_return_if_fail (priv->keyboard);
|
||||
g_return_if_fail (priv->allocation_width > 0.0);
|
||||
@ -701,8 +662,6 @@ eek_renderer_real_render_keyboard (EekRenderer *self,
|
||||
priv->keyboard_surface = create_keyboard_surface (self);
|
||||
|
||||
cairo_set_source_surface (cr, priv->keyboard_surface, 0.0, 0.0);
|
||||
source = cairo_get_source (cr);
|
||||
cairo_pattern_set_extend (source, CAIRO_EXTEND_PAD);
|
||||
cairo_paint (cr);
|
||||
}
|
||||
|
||||
@ -917,17 +876,8 @@ eek_renderer_set_allocation_size (EekRenderer *renderer,
|
||||
priv->allocation_height = height;
|
||||
|
||||
eek_element_get_bounds (EEK_ELEMENT(priv->keyboard), &bounds);
|
||||
|
||||
if (bounds.height * width / bounds.width <= height)
|
||||
scale = width / bounds.width;
|
||||
else if (bounds.width * height / bounds.height <= width)
|
||||
scale = height / bounds.height;
|
||||
else {
|
||||
if (bounds.width * height < bounds.height * width)
|
||||
scale = bounds.width / width;
|
||||
else
|
||||
scale = bounds.height / height;
|
||||
}
|
||||
scale = width > height ? height / bounds.height :
|
||||
width / bounds.width;
|
||||
|
||||
if (scale != priv->scale) {
|
||||
priv->scale = scale;
|
||||
@ -1077,19 +1027,22 @@ eek_renderer_render_key_outline (EekRenderer *renderer,
|
||||
rotate);
|
||||
}
|
||||
|
||||
cairo_surface_t *
|
||||
eek_renderer_get_icon_surface (EekRenderer *renderer,
|
||||
const gchar *icon_name,
|
||||
gint size)
|
||||
void
|
||||
eek_renderer_render_key_icon (EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate)
|
||||
{
|
||||
EekRendererClass *klass;
|
||||
g_return_if_fail (EEK_IS_RENDERER(renderer));
|
||||
g_return_if_fail (EEK_IS_KEY(key));
|
||||
g_return_if_fail (scale >= 0.0);
|
||||
|
||||
g_return_val_if_fail (EEK_IS_RENDERER(renderer), NULL);
|
||||
|
||||
klass = EEK_RENDERER_GET_CLASS(renderer);
|
||||
if (klass->get_icon_surface)
|
||||
return klass->get_icon_surface (renderer, icon_name, size);
|
||||
return NULL;
|
||||
EEK_RENDERER_GET_CLASS(renderer)->render_key_icon (renderer,
|
||||
cr,
|
||||
key,
|
||||
scale,
|
||||
rotate);
|
||||
}
|
||||
|
||||
void
|
||||
@ -1188,6 +1141,7 @@ eek_renderer_get_background_gradient (EekRenderer *renderer,
|
||||
EekColor *start,
|
||||
EekColor *end)
|
||||
{
|
||||
EekRendererPrivate *priv;
|
||||
EekThemeNode *theme_node;
|
||||
|
||||
g_return_if_fail (EEK_IS_RENDERER(renderer));
|
||||
@ -1196,6 +1150,8 @@ eek_renderer_get_background_gradient (EekRenderer *renderer,
|
||||
g_return_if_fail (start);
|
||||
g_return_if_fail (end);
|
||||
|
||||
priv = EEK_RENDERER_GET_PRIVATE(renderer);
|
||||
|
||||
theme_node = g_object_get_data (G_OBJECT(element), "theme-node");
|
||||
if (theme_node)
|
||||
eek_theme_node_get_background_gradient (theme_node, type, start, end);
|
||||
@ -1278,8 +1234,11 @@ find_key_by_position_section_callback (EekElement *element,
|
||||
{
|
||||
FindKeyByPositionCallbackData *data = user_data;
|
||||
EekBounds bounds;
|
||||
EekRendererPrivate *priv;
|
||||
EekPoint origin;
|
||||
|
||||
priv = EEK_RENDERER_GET_PRIVATE(data->renderer);
|
||||
|
||||
origin = data->origin;
|
||||
eek_element_get_bounds (element, &bounds);
|
||||
data->origin.x += bounds.x;
|
||||
|
||||
@ -51,111 +51,109 @@ struct _EekRendererClass
|
||||
{
|
||||
GObjectClass parent_class;
|
||||
|
||||
void (* render_key_label) (EekRenderer *self,
|
||||
PangoLayout *layout,
|
||||
EekKey *key);
|
||||
void (* render_key_label) (EekRenderer *self,
|
||||
PangoLayout *layout,
|
||||
EekKey *key);
|
||||
|
||||
void (* render_key_outline) (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
void (* render_key_outline) (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
void (* render_key) (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
void (* render_key) (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
void (* render_keyboard) (EekRenderer *self,
|
||||
cairo_t *cr);
|
||||
void (* render_keyboard) (EekRenderer *self,
|
||||
cairo_t *cr);
|
||||
|
||||
cairo_surface_t *(* get_icon_surface) (EekRenderer *self,
|
||||
const gchar *icon_name,
|
||||
gint size);
|
||||
void (* render_key_icon) (EekRenderer *self,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
/*< private >*/
|
||||
/* padding */
|
||||
gpointer pdummy[23];
|
||||
};
|
||||
|
||||
GType eek_renderer_get_type (void) G_GNUC_CONST;
|
||||
EekRenderer *eek_renderer_new (EekKeyboard *keyboard,
|
||||
GType eek_renderer_get_type (void) G_GNUC_CONST;
|
||||
EekRenderer *eek_renderer_new (EekKeyboard *keyboard,
|
||||
PangoContext *pcontext);
|
||||
void eek_renderer_set_allocation_size
|
||||
(EekRenderer *renderer,
|
||||
void eek_renderer_set_allocation_size (EekRenderer *renderer,
|
||||
gdouble width,
|
||||
gdouble height);
|
||||
void eek_renderer_get_size (EekRenderer *renderer,
|
||||
void eek_renderer_get_size (EekRenderer *renderer,
|
||||
gdouble *width,
|
||||
gdouble *height);
|
||||
void eek_renderer_get_key_bounds (EekRenderer *renderer,
|
||||
void eek_renderer_get_key_bounds (EekRenderer *renderer,
|
||||
EekKey *key,
|
||||
EekBounds *bounds,
|
||||
gboolean rotate);
|
||||
|
||||
gdouble eek_renderer_get_scale (EekRenderer *renderer);
|
||||
gdouble eek_renderer_get_scale (EekRenderer *renderer);
|
||||
|
||||
PangoLayout *eek_renderer_create_pango_layout
|
||||
(EekRenderer *renderer);
|
||||
void eek_renderer_render_key_label (EekRenderer *renderer,
|
||||
PangoLayout *eek_renderer_create_pango_layout (EekRenderer *renderer);
|
||||
void eek_renderer_render_key_label (EekRenderer *renderer,
|
||||
PangoLayout *layout,
|
||||
EekKey *key);
|
||||
|
||||
void eek_renderer_render_key_outline
|
||||
(EekRenderer *renderer,
|
||||
void eek_renderer_render_key_outline (EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
void eek_renderer_render_key (EekRenderer *renderer,
|
||||
void eek_renderer_render_key (EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
cairo_surface_t *eek_renderer_get_icon_surface (EekRenderer *renderer,
|
||||
const gchar *icon_name,
|
||||
gint size);
|
||||
void eek_renderer_render_key_icon (EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
void eek_renderer_render_keyboard (EekRenderer *renderer,
|
||||
void eek_renderer_render_keyboard (EekRenderer *renderer,
|
||||
cairo_t *cr);
|
||||
|
||||
void eek_renderer_set_default_foreground_color
|
||||
void eek_renderer_set_default_foreground_color
|
||||
(EekRenderer *renderer,
|
||||
const EekColor *color);
|
||||
void eek_renderer_set_default_background_color
|
||||
void eek_renderer_set_default_background_color
|
||||
(EekRenderer *renderer,
|
||||
const EekColor *color);
|
||||
void eek_renderer_get_foreground_color
|
||||
(EekRenderer *renderer,
|
||||
void eek_renderer_get_foreground_color (EekRenderer *renderer,
|
||||
EekElement *element,
|
||||
EekColor *color);
|
||||
void eek_renderer_get_background_color
|
||||
(EekRenderer *renderer,
|
||||
void eek_renderer_get_background_color (EekRenderer *renderer,
|
||||
EekElement *element,
|
||||
EekColor *color);
|
||||
void eek_renderer_get_background_gradient
|
||||
void eek_renderer_get_background_gradient
|
||||
(EekRenderer *renderer,
|
||||
EekElement *element,
|
||||
EekGradientType *type,
|
||||
EekColor *start,
|
||||
EekColor *end);
|
||||
void eek_renderer_set_border_width (EekRenderer *renderer,
|
||||
void eek_renderer_set_border_width (EekRenderer *renderer,
|
||||
gdouble border_width);
|
||||
EekKey *eek_renderer_find_key_by_position
|
||||
(EekRenderer *renderer,
|
||||
EekKey *eek_renderer_find_key_by_position (EekRenderer *renderer,
|
||||
gdouble x,
|
||||
gdouble y);
|
||||
void eek_renderer_apply_transformation_for_key
|
||||
void eek_renderer_apply_transformation_for_key
|
||||
(EekRenderer *renderer,
|
||||
cairo_t *cr,
|
||||
EekKey *key,
|
||||
gdouble scale,
|
||||
gboolean rotate);
|
||||
|
||||
void eek_renderer_set_theme (EekRenderer *renderer,
|
||||
void eek_renderer_set_theme (EekRenderer *renderer,
|
||||
EekTheme *theme);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
@ -37,6 +37,7 @@
|
||||
#include "eek-section.h"
|
||||
#include "eek-key.h"
|
||||
#include "eek-symbol.h"
|
||||
#include "eek-serializable.h"
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
@ -47,15 +48,16 @@ enum {
|
||||
enum {
|
||||
KEY_PRESSED,
|
||||
KEY_RELEASED,
|
||||
KEY_LOCKED,
|
||||
KEY_UNLOCKED,
|
||||
KEY_CANCELLED,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
static guint signals[LAST_SIGNAL] = { 0, };
|
||||
|
||||
G_DEFINE_TYPE (EekSection, eek_section, EEK_TYPE_CONTAINER);
|
||||
static void eek_serializable_iface_init (EekSerializableIface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (EekSection, eek_section, EEK_TYPE_CONTAINER,
|
||||
G_IMPLEMENT_INTERFACE (EEK_TYPE_SERIALIZABLE,
|
||||
eek_serializable_iface_init));
|
||||
|
||||
#define EEK_SECTION_GET_PRIVATE(obj) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), EEK_TYPE_SECTION, EekSectionPrivate))
|
||||
@ -75,6 +77,80 @@ struct _EekSectionPrivate
|
||||
EekModifierType modifiers;
|
||||
};
|
||||
|
||||
static EekSerializableIface *eek_section_parent_serializable_iface;
|
||||
|
||||
static GVariant *
|
||||
_g_variant_new_row (EekRow *row)
|
||||
{
|
||||
GVariantBuilder builder;
|
||||
|
||||
g_variant_builder_init (&builder, G_VARIANT_TYPE ("(iu)"));
|
||||
g_variant_builder_add (&builder, "i", row->num_columns);
|
||||
g_variant_builder_add (&builder, "u", row->orientation);
|
||||
|
||||
return g_variant_builder_end (&builder);
|
||||
}
|
||||
|
||||
static EekRow *
|
||||
_g_variant_get_row (GVariant *variant)
|
||||
{
|
||||
EekRow *row = g_slice_new (EekRow);
|
||||
g_variant_get_child (variant, 0, "i", &row->num_columns);
|
||||
g_variant_get_child (variant, 1, "u", &row->orientation);
|
||||
return row;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_section_real_serialize (EekSerializable *self,
|
||||
GVariantBuilder *builder)
|
||||
{
|
||||
EekSectionPrivate *priv = EEK_SECTION_GET_PRIVATE(self);
|
||||
GSList *head;
|
||||
GVariantBuilder array;
|
||||
|
||||
eek_section_parent_serializable_iface->serialize (self, builder);
|
||||
|
||||
g_variant_builder_add (builder, "i", priv->angle);
|
||||
|
||||
g_variant_builder_init (&array, G_VARIANT_TYPE("av"));
|
||||
for (head = priv->rows; head; head = g_slist_next (head))
|
||||
g_variant_builder_add (&array, "v", _g_variant_new_row (head->data));
|
||||
g_variant_builder_add (builder, "v", g_variant_builder_end (&array));
|
||||
}
|
||||
|
||||
static gsize
|
||||
eek_section_real_deserialize (EekSerializable *self,
|
||||
GVariant *variant,
|
||||
gsize index)
|
||||
{
|
||||
EekSectionPrivate *priv = EEK_SECTION_GET_PRIVATE(self);
|
||||
GVariant *array, *child;
|
||||
GVariantIter iter;
|
||||
|
||||
index = eek_section_parent_serializable_iface->deserialize (self,
|
||||
variant,
|
||||
index);
|
||||
|
||||
g_variant_get_child (variant, index++, "i", &priv->angle);
|
||||
g_variant_get_child (variant, index++, "v", &array);
|
||||
g_variant_iter_init (&iter, array);
|
||||
while (g_variant_iter_next (&iter, "v", &child))
|
||||
priv->rows = g_slist_prepend (priv->rows, _g_variant_get_row (child));
|
||||
priv->rows = g_slist_reverse (priv->rows);
|
||||
|
||||
return index;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_serializable_iface_init (EekSerializableIface *iface)
|
||||
{
|
||||
eek_section_parent_serializable_iface =
|
||||
g_type_interface_peek_parent (iface);
|
||||
|
||||
iface->serialize = eek_section_real_serialize;
|
||||
iface->deserialize = eek_section_real_deserialize;
|
||||
}
|
||||
|
||||
static void
|
||||
eek_section_real_set_angle (EekSection *self,
|
||||
gint angle)
|
||||
@ -147,27 +223,6 @@ on_released (EekKey *key,
|
||||
g_signal_emit_by_name (section, "key-released", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_locked (EekKey *key,
|
||||
EekSection *section)
|
||||
{
|
||||
g_signal_emit_by_name (section, "key-locked", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_unlocked (EekKey *key,
|
||||
EekSection *section)
|
||||
{
|
||||
g_signal_emit_by_name (section, "key-unlocked", key);
|
||||
}
|
||||
|
||||
static void
|
||||
on_cancelled (EekKey *key,
|
||||
EekSection *section)
|
||||
{
|
||||
g_signal_emit_by_name (section, "key-cancelled", key);
|
||||
}
|
||||
|
||||
static EekKey *
|
||||
eek_section_real_create_key (EekSection *self,
|
||||
gint column,
|
||||
@ -334,9 +389,6 @@ eek_section_real_child_added (EekContainer *self,
|
||||
{
|
||||
g_signal_connect (element, "pressed", G_CALLBACK(on_pressed), self);
|
||||
g_signal_connect (element, "released", G_CALLBACK(on_released), self);
|
||||
g_signal_connect (element, "locked", G_CALLBACK(on_locked), self);
|
||||
g_signal_connect (element, "unlocked", G_CALLBACK(on_unlocked), self);
|
||||
g_signal_connect (element, "cancelled", G_CALLBACK(on_cancelled), self);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -345,9 +397,6 @@ eek_section_real_child_removed (EekContainer *self,
|
||||
{
|
||||
g_signal_handlers_disconnect_by_func (element, on_pressed, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_released, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_locked, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_unlocked, self);
|
||||
g_signal_handlers_disconnect_by_func (element, on_cancelled, self);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -431,72 +480,17 @@ eek_section_class_init (EekSectionClass *klass)
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekSection::key-locked:
|
||||
* @section: an #EekSection
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-locked signal is emitted each time a key in @section
|
||||
* is shifted to the locked state.
|
||||
*/
|
||||
signals[KEY_LOCKED] =
|
||||
g_signal_new (I_("key-locked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekSectionClass, key_locked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekSection::key-unlocked:
|
||||
* @section: an #EekSection
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-unlocked signal is emitted each time a key in @section
|
||||
* is shifted to the unlocked state.
|
||||
*/
|
||||
signals[KEY_UNLOCKED] =
|
||||
g_signal_new (I_("key-unlocked"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekSectionClass, key_unlocked),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
|
||||
/**
|
||||
* EekSection::key-cancelled:
|
||||
* @section: an #EekSection
|
||||
* @key: an #EekKey
|
||||
*
|
||||
* The ::key-cancelled signal is emitted each time a key in @section
|
||||
* is shifted to the cancelled state.
|
||||
*/
|
||||
signals[KEY_CANCELLED] =
|
||||
g_signal_new (I_("key-cancelled"),
|
||||
G_TYPE_FROM_CLASS(gobject_class),
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET(EekSectionClass, key_cancelled),
|
||||
NULL,
|
||||
NULL,
|
||||
g_cclosure_marshal_VOID__OBJECT,
|
||||
G_TYPE_NONE,
|
||||
1,
|
||||
EEK_TYPE_KEY);
|
||||
}
|
||||
|
||||
static void
|
||||
eek_section_init (EekSection *self)
|
||||
{
|
||||
self->priv = EEK_SECTION_GET_PRIVATE (self);
|
||||
EekSectionPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_SECTION_GET_PRIVATE (self);
|
||||
priv->angle = 0;
|
||||
priv->rows = NULL;
|
||||
priv->modifiers = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_SECTION_H
|
||||
#define EEK_SECTION_H 1
|
||||
|
||||
@ -41,12 +36,6 @@ G_BEGIN_DECLS
|
||||
typedef struct _EekSectionClass EekSectionClass;
|
||||
typedef struct _EekSectionPrivate EekSectionPrivate;
|
||||
|
||||
/**
|
||||
* EekSection:
|
||||
*
|
||||
* The #EekSection structure contains only private data and should
|
||||
* only be accessed using the provided API.
|
||||
*/
|
||||
struct _EekSection
|
||||
{
|
||||
/*< private >*/
|
||||
@ -65,11 +54,6 @@ struct _EekSection
|
||||
* @create_key: virtual function for creating key in the section
|
||||
* @find_key_by_keycode: virtual function for accessing a key in the
|
||||
* section by keycode
|
||||
* @key_pressed: class handler for #EekSection::key-pressed signal
|
||||
* @key_released: class handler for #EekSection::key-released signal
|
||||
* @key_locked: class handler for #EekSection::key-locked signal
|
||||
* @key_unlocked: class handler for #EekSection::key-unlocked signal
|
||||
* @key_cancelled: class handler for #EekSection::key-cancelled signal
|
||||
*/
|
||||
struct _EekSectionClass
|
||||
{
|
||||
@ -102,16 +86,10 @@ struct _EekSectionClass
|
||||
EekKey *key);
|
||||
void (* key_released) (EekSection *self,
|
||||
EekKey *key);
|
||||
void (* key_locked) (EekSection *self,
|
||||
EekKey *key);
|
||||
void (* key_unlocked) (EekSection *self,
|
||||
EekKey *key);
|
||||
void (* key_cancelled) (EekSection *self,
|
||||
EekKey *key);
|
||||
|
||||
/*< private >*/
|
||||
/* padding */
|
||||
gpointer pdummy[19];
|
||||
gpointer pdummy[22];
|
||||
};
|
||||
|
||||
GType eek_section_get_type (void) G_GNUC_CONST;
|
||||
|
||||
@ -20,11 +20,11 @@
|
||||
|
||||
/**
|
||||
* SECTION:eek-serializable
|
||||
* @short_description: Interface which provides object serialization
|
||||
* into #GVariant
|
||||
* @short_description: Interface implemented by #EekElement to
|
||||
* serialize it to #GVariant
|
||||
*
|
||||
* The #EekSerializableIface interface defines serialize/deserialize
|
||||
* method.
|
||||
* method of #EekElement.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
|
||||
@ -16,10 +16,6 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_SERIALIZABLE_H
|
||||
#define EEK_SERIALIZABLE_H 1
|
||||
|
||||
|
||||
@ -34,13 +34,11 @@ G_BEGIN_DECLS
|
||||
*/
|
||||
struct _EekSymbolMatrix
|
||||
{
|
||||
/*< public >*/
|
||||
gint num_groups;
|
||||
gint num_levels;
|
||||
EekSymbol **data;
|
||||
};
|
||||
|
||||
#define EEK_TYPE_SYMBOL_MATRIX (eek_symbol_matrix_get_type ())
|
||||
GType eek_symbol_matrix_get_type (void) G_GNUC_CONST;
|
||||
EekSymbolMatrix *eek_symbol_matrix_new (gint num_groups,
|
||||
gint num_levels);
|
||||
|
||||
@ -31,7 +31,6 @@
|
||||
|
||||
#include "eek-symbol.h"
|
||||
#include "eek-serializable.h"
|
||||
#include "eek-enumtypes.h"
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
@ -111,11 +110,11 @@ eek_symbol_set_property (GObject *object,
|
||||
eek_symbol_set_label (EEK_SYMBOL(object), g_value_get_string (value));
|
||||
break;
|
||||
case PROP_CATEGORY:
|
||||
eek_symbol_set_category (EEK_SYMBOL(object), g_value_get_enum (value));
|
||||
eek_symbol_set_category (EEK_SYMBOL(object), g_value_get_uint (value));
|
||||
break;
|
||||
case PROP_MODIFIER_MASK:
|
||||
eek_symbol_set_modifier_mask (EEK_SYMBOL(object),
|
||||
g_value_get_flags (value));
|
||||
g_value_get_uint (value));
|
||||
break;
|
||||
case PROP_ICON_NAME:
|
||||
eek_symbol_set_icon_name (EEK_SYMBOL(object),
|
||||
@ -143,11 +142,11 @@ eek_symbol_get_property (GObject *object,
|
||||
g_value_set_string (value, eek_symbol_get_label (EEK_SYMBOL(object)));
|
||||
break;
|
||||
case PROP_CATEGORY:
|
||||
g_value_set_enum (value, eek_symbol_get_category (EEK_SYMBOL(object)));
|
||||
g_value_set_uint (value, eek_symbol_get_category (EEK_SYMBOL(object)));
|
||||
break;
|
||||
case PROP_MODIFIER_MASK:
|
||||
g_value_set_flags (value,
|
||||
eek_symbol_get_modifier_mask (EEK_SYMBOL(object)));
|
||||
g_value_set_uint (value,
|
||||
eek_symbol_get_modifier_mask (EEK_SYMBOL(object)));
|
||||
break;
|
||||
case PROP_ICON_NAME:
|
||||
g_value_set_string (value,
|
||||
@ -198,20 +197,18 @@ eek_symbol_class_init (EekSymbolClass *klass)
|
||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_LABEL, pspec);
|
||||
|
||||
pspec = g_param_spec_enum ("category",
|
||||
pspec = g_param_spec_uint ("category",
|
||||
"Category",
|
||||
"Category of the symbol",
|
||||
EEK_TYPE_SYMBOL_CATEGORY,
|
||||
EEK_SYMBOL_CATEGORY_UNKNOWN,
|
||||
0, G_MAXUINT, 0,
|
||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_CATEGORY, pspec);
|
||||
|
||||
pspec = g_param_spec_flags ("modifier-mask",
|
||||
"Modifier mask",
|
||||
"Modifier mask of the symbol",
|
||||
EEK_TYPE_MODIFIER_TYPE,
|
||||
0,
|
||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
|
||||
pspec = g_param_spec_uint ("modifier-mask",
|
||||
"Modifier mask",
|
||||
"Modifier mask of the symbol",
|
||||
0, G_MAXUINT, 0,
|
||||
G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_MODIFIER_MASK, pspec);
|
||||
|
||||
pspec = g_param_spec_string ("icon-name",
|
||||
@ -228,7 +225,11 @@ eek_symbol_init (EekSymbol *self)
|
||||
EekSymbolPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_SYMBOL_GET_PRIVATE(self);
|
||||
priv->name = NULL;
|
||||
priv->label = NULL;
|
||||
priv->icon_name = NULL;
|
||||
priv->category = EEK_SYMBOL_CATEGORY_UNKNOWN;
|
||||
priv->modifier_mask = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -240,7 +241,7 @@ eek_symbol_init (EekSymbol *self)
|
||||
EekSymbol *
|
||||
eek_symbol_new (const gchar *name)
|
||||
{
|
||||
return g_object_new (EEK_TYPE_SYMBOL, "name", name, NULL);
|
||||
return g_object_new (EEK_TYPE_SYMBOL, "name", name);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -360,9 +361,8 @@ eek_symbol_get_category (EekSymbol *symbol)
|
||||
/**
|
||||
* eek_symbol_set_modifier_mask:
|
||||
* @symbol: an #EekSymbol
|
||||
* @mask: an #EekModifierType
|
||||
*
|
||||
* Set modifier mask that @symbol can trigger.
|
||||
* Set modifier mask @symbol can trigger.
|
||||
*/
|
||||
void
|
||||
eek_symbol_set_modifier_mask (EekSymbol *symbol,
|
||||
@ -380,7 +380,7 @@ eek_symbol_set_modifier_mask (EekSymbol *symbol,
|
||||
* eek_symbol_get_modifier_mask:
|
||||
* @symbol: an #EekSymbol
|
||||
*
|
||||
* Get modifier mask that @symbol can trigger.
|
||||
* Get modifier mask @symbol can trigger.
|
||||
*/
|
||||
EekModifierType
|
||||
eek_symbol_get_modifier_mask (EekSymbol *symbol)
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_SYMBOL_H
|
||||
#define EEK_SYMBOL_H 1
|
||||
|
||||
@ -41,7 +36,6 @@ G_BEGIN_DECLS
|
||||
* @EEK_SYMBOL_CATEGORY_USER3: reserved for future use
|
||||
* @EEK_SYMBOL_CATEGORY_USER4: reserved for future use
|
||||
* @EEK_SYMBOL_CATEGORY_UNKNOWN: used for error reporting
|
||||
* @EEK_SYMBOL_CATEGORY_LAST: the last symbol category
|
||||
*
|
||||
* Category of the key symbols.
|
||||
*/
|
||||
@ -55,6 +49,7 @@ typedef enum {
|
||||
EEK_SYMBOL_CATEGORY_USER3,
|
||||
EEK_SYMBOL_CATEGORY_USER4,
|
||||
EEK_SYMBOL_CATEGORY_UNKNOWN,
|
||||
/*< private >*/
|
||||
EEK_SYMBOL_CATEGORY_LAST = EEK_SYMBOL_CATEGORY_UNKNOWN
|
||||
} EekSymbolCategory;
|
||||
|
||||
@ -102,9 +97,9 @@ void eek_symbol_set_category (EekSymbol *symbol,
|
||||
EekSymbolCategory category);
|
||||
EekSymbolCategory eek_symbol_get_category (EekSymbol *symbol);
|
||||
EekModifierType eek_symbol_get_modifier_mask
|
||||
(EekSymbol *symbol);
|
||||
(EekSymbol *keysym);
|
||||
void eek_symbol_set_modifier_mask
|
||||
(EekSymbol *symbol,
|
||||
(EekSymbol *keysym,
|
||||
EekModifierType mask);
|
||||
gboolean eek_symbol_is_modifier (EekSymbol *symbol);
|
||||
void eek_symbol_set_icon_name (EekSymbol *symbol,
|
||||
|
||||
@ -121,8 +121,7 @@ eek_theme_context_changed (EekThemeContext *context)
|
||||
|
||||
/**
|
||||
* eek_theme_context_set_theme:
|
||||
* @context: an #EekThemeContext
|
||||
* @theme: an #EekTheme
|
||||
* @context: a #EekThemeContext
|
||||
*
|
||||
* Sets the default set of theme stylesheets for the context. This theme will
|
||||
* be used for the root node and for nodes descending from it, unless some other
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* SECTION:eek-theme-context
|
||||
* SECTION:EekThemeContext
|
||||
* @short_description: holds global information about a tree of styled objects
|
||||
*
|
||||
* #EekThemeContext is responsible for managing information global to
|
||||
|
||||
@ -26,12 +26,12 @@
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* SECTION:eek-theme-node
|
||||
* SECTION:EekThemeNode
|
||||
* @short_description: style information for one node in a tree of
|
||||
* themed objects
|
||||
*
|
||||
* The #EekThemeNode class represents the CSS style information (the
|
||||
* set of CSS properties) for one node in a tree of themed objects. In
|
||||
* A #EekThemeNode represents the CSS style information (the set of
|
||||
* CSS properties) for one node in a tree of themed objects. In
|
||||
* typical usage, it represents the style information for a single
|
||||
* #EekElement. A #EekThemeNode is immutable: attributes such as the
|
||||
* CSS classes for the node are passed in at construction. If the
|
||||
|
||||
@ -489,11 +489,11 @@ eek_theme_get_property (GObject *object,
|
||||
|
||||
/**
|
||||
* eek_theme_new:
|
||||
* @application_stylesheet: (allow-none): The highest priority stylesheet, representing application-specific
|
||||
* @application_stylesheet: The highest priority stylesheet, representing application-specific
|
||||
* styling; this is associated with the CSS "author" stylesheet, may be %NULL
|
||||
* @theme_stylesheet: (allow-none): The second priority stylesheet, representing theme-specific styling ;
|
||||
* @theme_stylesheet: The second priority stylesheet, representing theme-specific styling ;
|
||||
* this is associated with the CSS "user" stylesheet, may be %NULL
|
||||
* @default_stylesheet: (allow-none): The lowest priority stylesheet, representing global default styling;
|
||||
* @default_stylesheet: The lowest priority stylesheet, representing global default styling;
|
||||
* this is associated with the CSS "user agent" stylesheet, may be %NULL
|
||||
*
|
||||
* Return value: the newly created theme object
|
||||
|
||||
@ -1,9 +1,4 @@
|
||||
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef __EEK_THEME_H__
|
||||
#define __EEK_THEME_H__
|
||||
|
||||
|
||||
@ -20,8 +20,7 @@
|
||||
|
||||
/**
|
||||
* SECTION:eek-types
|
||||
* @title: Miscellaneous Types
|
||||
* @short_description: Miscellaneous types used in Libeek
|
||||
* @short_description: Miscellaneous types
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
@ -34,20 +33,31 @@
|
||||
#include "eek-types.h"
|
||||
|
||||
/* EekPoint */
|
||||
G_DEFINE_BOXED_TYPE(EekPoint, eek_point, eek_point_copy, eek_point_free);
|
||||
|
||||
EekPoint *
|
||||
static EekPoint *
|
||||
eek_point_copy (const EekPoint *point)
|
||||
{
|
||||
return g_slice_dup (EekPoint, point);
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
eek_point_free (EekPoint *point)
|
||||
{
|
||||
g_slice_free (EekPoint, point);
|
||||
}
|
||||
|
||||
GType
|
||||
eek_point_get_type (void)
|
||||
{
|
||||
static GType our_type = 0;
|
||||
|
||||
if (our_type == 0)
|
||||
our_type =
|
||||
g_boxed_type_register_static ("EekPoint",
|
||||
(GBoxedCopyFunc)eek_point_copy,
|
||||
(GBoxedFreeFunc)eek_point_free);
|
||||
return our_type;
|
||||
}
|
||||
|
||||
void
|
||||
eek_point_rotate (EekPoint *point, gint angle)
|
||||
{
|
||||
@ -61,24 +71,32 @@ eek_point_rotate (EekPoint *point, gint angle)
|
||||
}
|
||||
|
||||
/* EekBounds */
|
||||
G_DEFINE_BOXED_TYPE(EekBounds, eek_bounds, eek_bounds_copy, eek_bounds_free);
|
||||
|
||||
EekBounds *
|
||||
static EekBounds *
|
||||
eek_bounds_copy (const EekBounds *bounds)
|
||||
{
|
||||
return g_slice_dup (EekBounds, bounds);
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
eek_bounds_free (EekBounds *bounds)
|
||||
{
|
||||
g_slice_free (EekBounds, bounds);
|
||||
}
|
||||
|
||||
/* EekOutline */
|
||||
G_DEFINE_BOXED_TYPE(EekOutline, eek_outline,
|
||||
eek_outline_copy, eek_outline_free);
|
||||
GType
|
||||
eek_bounds_get_type (void)
|
||||
{
|
||||
static GType our_type = 0;
|
||||
|
||||
if (our_type == 0)
|
||||
our_type =
|
||||
g_boxed_type_register_static ("EekBounds",
|
||||
(GBoxedCopyFunc)eek_bounds_copy,
|
||||
(GBoxedFreeFunc)eek_bounds_free);
|
||||
return our_type;
|
||||
}
|
||||
|
||||
/* EekOutline */
|
||||
EekOutline *
|
||||
eek_outline_copy (const EekOutline *outline)
|
||||
{
|
||||
@ -97,9 +115,20 @@ eek_outline_free (EekOutline *outline)
|
||||
g_slice_free (EekOutline, outline);
|
||||
}
|
||||
|
||||
/* EekColor */
|
||||
G_DEFINE_BOXED_TYPE(EekColor, eek_color, eek_color_copy, eek_color_free);
|
||||
GType
|
||||
eek_outline_get_type (void)
|
||||
{
|
||||
static GType our_type = 0;
|
||||
|
||||
if (our_type == 0)
|
||||
our_type =
|
||||
g_boxed_type_register_static ("EekOutline",
|
||||
(GBoxedCopyFunc)eek_outline_copy,
|
||||
(GBoxedFreeFunc)eek_outline_free);
|
||||
return our_type;
|
||||
}
|
||||
|
||||
/* EekColor */
|
||||
EekColor *
|
||||
eek_color_copy (const EekColor *color)
|
||||
{
|
||||
@ -112,6 +141,19 @@ eek_color_free (EekColor *color)
|
||||
g_slice_free (EekColor, color);
|
||||
}
|
||||
|
||||
GType
|
||||
eek_color_get_type (void)
|
||||
{
|
||||
static GType our_type = 0;
|
||||
|
||||
if (our_type == 0)
|
||||
our_type =
|
||||
g_boxed_type_register_static ("EekColor",
|
||||
(GBoxedCopyFunc)eek_color_copy,
|
||||
(GBoxedFreeFunc)eek_color_free);
|
||||
return our_type;
|
||||
}
|
||||
|
||||
EekColor *
|
||||
eek_color_new (gdouble red,
|
||||
gdouble green,
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_TYPES_H
|
||||
#define EEK_TYPES_H 1
|
||||
|
||||
@ -31,6 +26,7 @@ G_BEGIN_DECLS
|
||||
|
||||
#define I_(string) g_intern_static_string (string)
|
||||
|
||||
#define EEK_TYPE_SYMBOL_MATRIX (eek_symbol_matrix_get_type ())
|
||||
#define EEK_TYPE_POINT (eek_point_get_type ())
|
||||
#define EEK_TYPE_BOUNDS (eek_bounds_get_type ())
|
||||
#define EEK_TYPE_OUTLINE (eek_outline_get_type ())
|
||||
@ -145,6 +141,7 @@ typedef struct _EekThemeContext EekThemeContext;
|
||||
typedef struct _EekThemeNode EekThemeNode;
|
||||
|
||||
typedef struct _EekSymbolMatrix EekSymbolMatrix;
|
||||
typedef struct _EekPoint EekPoint;
|
||||
typedef struct _EekBounds EekBounds;
|
||||
typedef struct _EekOutline EekOutline;
|
||||
typedef struct _EekColor EekColor;
|
||||
@ -156,19 +153,15 @@ typedef struct _EekColor EekColor;
|
||||
*
|
||||
* 2D vertex
|
||||
*/
|
||||
typedef struct _EekPoint EekPoint;
|
||||
struct _EekPoint
|
||||
{
|
||||
/*< public >*/
|
||||
gdouble x;
|
||||
gdouble y;
|
||||
};
|
||||
|
||||
GType eek_point_get_type (void) G_GNUC_CONST;
|
||||
EekPoint *eek_point_copy (const EekPoint *point);
|
||||
void eek_point_free (EekPoint *point);
|
||||
void eek_point_rotate (EekPoint *point,
|
||||
gint angle);
|
||||
GType eek_point_get_type (void) G_GNUC_CONST;
|
||||
void eek_point_rotate (EekPoint *point,
|
||||
gint angle);
|
||||
|
||||
/**
|
||||
* EekBounds:
|
||||
@ -188,9 +181,7 @@ struct _EekBounds
|
||||
gdouble height;
|
||||
};
|
||||
|
||||
GType eek_bounds_get_type (void) G_GNUC_CONST;
|
||||
EekBounds *eek_bounds_copy (const EekBounds *bounds);
|
||||
void eek_bounds_free (EekBounds *bounds);
|
||||
GType eek_bounds_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_INLINE_FUNC gdouble
|
||||
eek_bounds_long_side (EekBounds *bounds)
|
||||
@ -208,7 +199,6 @@ eek_bounds_long_side (EekBounds *bounds)
|
||||
*/
|
||||
struct _EekOutline
|
||||
{
|
||||
/*< public >*/
|
||||
gdouble corner_radius;
|
||||
EekPoint *points;
|
||||
gint num_points;
|
||||
@ -229,7 +219,6 @@ void eek_outline_free (EekOutline *outline);
|
||||
*/
|
||||
struct _EekColor
|
||||
{
|
||||
/*< public >*/
|
||||
gdouble red;
|
||||
gdouble green;
|
||||
gdouble blue;
|
||||
|
||||
@ -23,7 +23,7 @@ includedir=@includedir@
|
||||
|
||||
Name: libeek-xkb
|
||||
Description: A Library to Create Keyboard-like UI (XKB Support)
|
||||
URL: http://fedorahosted.org/eekboard/
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: eek-@EEK_API_VERSION@ gtk+-x11-@GTK_API_VERSION@
|
||||
Libs: -L${libdir} -leek-xkb
|
||||
|
||||
@ -127,7 +127,7 @@ create_key (EekXkbLayout *layout,
|
||||
EekSymbolMatrix *matrix = NULL;
|
||||
gchar name[XkbKeyNameLength + 1];
|
||||
KeyCode keycode;
|
||||
gint num_groups, num_levels;
|
||||
gint num_groups, num_levels, num_symbols;
|
||||
gulong oref;
|
||||
|
||||
xkbgeometry = priv->xkb->geom;
|
||||
@ -199,6 +199,7 @@ create_key (EekXkbLayout *layout,
|
||||
|
||||
num_groups = XkbKeyNumGroups (priv->xkb, keycode);
|
||||
num_levels = XkbKeyGroupsWidth (priv->xkb, keycode);
|
||||
num_symbols = num_groups * num_levels;
|
||||
matrix = eek_symbol_matrix_new (num_groups, num_levels);
|
||||
for (i = 0; i < num_groups; i++)
|
||||
for (j = 0; j < num_levels; j++) {
|
||||
@ -457,6 +458,7 @@ eek_xkb_layout_init (EekXkbLayout *self)
|
||||
EekXkbLayoutPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_XKB_LAYOUT_GET_PRIVATE (self);
|
||||
memset (&priv->names, 0, sizeof priv->names);
|
||||
|
||||
priv->display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ());
|
||||
g_return_if_fail (priv->display);
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek-xkb.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_XKB_LAYOUT_H
|
||||
#define EEK_XKB_LAYOUT_H 1
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ includedir=@includedir@
|
||||
|
||||
Name: libeek-xkl
|
||||
Description: A Library to Create Keyboard-like UI (Libxklavier Support)
|
||||
URL: http://fedorahosted.org/eekboard/
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: eek-xkb-@EEK_API_VERSION@ libxklavier
|
||||
Libs: -L${libdir} -leek-xkl
|
||||
|
||||
@ -84,6 +84,11 @@ eek_xkl_layout_dispose (GObject *object)
|
||||
priv->config = NULL;
|
||||
}
|
||||
|
||||
if (priv->engine) {
|
||||
g_object_unref (priv->engine);
|
||||
priv->engine = NULL;
|
||||
}
|
||||
|
||||
G_OBJECT_CLASS (eek_xkl_layout_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek-xkl.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_XKL_LAYOUT_H
|
||||
#define EEK_XKL_LAYOUT_H 1
|
||||
|
||||
|
||||
@ -94,7 +94,9 @@ static const gchar *valid_path_list[] = {
|
||||
"groups/symbols/key/section/keyboard",
|
||||
"levels/symbols/key/section/keyboard",
|
||||
"keysym/symbols/key/section/keyboard",
|
||||
"symbol/symbols/key/section/keyboard",
|
||||
"custom/symbols/key/section/keyboard",
|
||||
"text/symbols/key/section/keyboard",
|
||||
"icon/symbols/key/section/keyboard",
|
||||
"invalid/symbols/key/section/keyboard",
|
||||
"index/key/section/keyboard",
|
||||
"point/outline/keyboard",
|
||||
@ -227,12 +229,10 @@ start_element_callback (GMarkupParseContext *pcontext,
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (g_strcmp0 (element_name, "symbol") == 0 ||
|
||||
g_strcmp0 (element_name, "keysym") == 0) {
|
||||
if (g_strcmp0 (element_name, "keysym") == 0) {
|
||||
data->label = g_strdup (label);
|
||||
data->icon = g_strdup (icon);
|
||||
if (g_strcmp0 (element_name, "keysym") == 0)
|
||||
data->keyval = keyval;
|
||||
data->keyval = keyval;
|
||||
}
|
||||
|
||||
if (g_strcmp0 (element_name, "outline") == 0) {
|
||||
@ -410,32 +410,23 @@ end_element_callback (GMarkupParseContext *pcontext,
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (g_strcmp0 (element_name, "symbol") == 0 ||
|
||||
g_strcmp0 (element_name, "keysym") == 0) {
|
||||
EekSymbol *symbol;
|
||||
|
||||
if (g_strcmp0 (element_name, "keysym") == 0) {
|
||||
EekKeysym *keysym;
|
||||
if (data->keyval != EEK_INVALID_KEYSYM)
|
||||
keysym = eek_keysym_new (data->keyval);
|
||||
else
|
||||
keysym = eek_keysym_new_from_name (text);
|
||||
symbol = EEK_SYMBOL(keysym);
|
||||
} else {
|
||||
symbol = eek_symbol_new (text);
|
||||
eek_symbol_set_category (symbol, EEK_SYMBOL_CATEGORY_KEYNAME);
|
||||
}
|
||||
if (g_strcmp0 (element_name, "keysym") == 0) {
|
||||
EekKeysym *keysym;
|
||||
|
||||
if (data->keyval != EEK_INVALID_KEYSYM) {
|
||||
keysym = eek_keysym_new (data->keyval);
|
||||
//g_debug ("%u %s", data->keyval, eek_symbol_get_label (EEK_SYMBOL(keysym)));
|
||||
} else
|
||||
keysym = eek_keysym_new_from_name (text);
|
||||
if (data->label) {
|
||||
eek_symbol_set_label (symbol, data->label);
|
||||
eek_symbol_set_label (EEK_SYMBOL(keysym), data->label);
|
||||
g_free (data->label);
|
||||
}
|
||||
if (data->icon) {
|
||||
eek_symbol_set_icon_name (symbol, data->icon);
|
||||
eek_symbol_set_icon_name (EEK_SYMBOL(keysym), data->icon);
|
||||
g_free (data->icon);
|
||||
}
|
||||
|
||||
data->symbols = g_slist_prepend (data->symbols, symbol);
|
||||
data->symbols = g_slist_prepend (data->symbols, keysym);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@ -599,10 +590,6 @@ eek_xml_layout_real_create_keyboard (EekLayout *self,
|
||||
if (data.oref_outline_hash)
|
||||
g_hash_table_destroy (data.oref_outline_hash);
|
||||
|
||||
/* use pre-defined modifier mask here */
|
||||
eek_keyboard_set_num_lock_mask (data.keyboard, EEK_MOD2_MASK);
|
||||
eek_keyboard_set_alt_gr_mask (data.keyboard, EEK_MOD5_MASK);
|
||||
|
||||
return data.keyboard;
|
||||
}
|
||||
|
||||
@ -685,7 +672,10 @@ eek_xml_layout_class_init (EekXmlLayoutClass *klass)
|
||||
static void
|
||||
eek_xml_layout_init (EekXmlLayout *self)
|
||||
{
|
||||
self->priv = EEK_XML_LAYOUT_GET_PRIVATE (self);
|
||||
EekXmlLayoutPrivate *priv;
|
||||
|
||||
priv = self->priv = EEK_XML_LAYOUT_GET_PRIVATE (self);
|
||||
priv->source = NULL;
|
||||
}
|
||||
|
||||
EekLayout *
|
||||
|
||||
@ -16,10 +16,6 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_XML_LAYOUT_H
|
||||
#define EEK_XML_LAYOUT_H 1
|
||||
|
||||
|
||||
@ -18,7 +18,6 @@
|
||||
|
||||
/**
|
||||
* SECTION: eek-xml
|
||||
* @title: XML Conversion Utilities
|
||||
* @short_description: #EekKeyboard to XML conversion utilities
|
||||
*/
|
||||
|
||||
|
||||
@ -16,10 +16,6 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#if !defined(__EEK_H_INSIDE__) && !defined(EEK_COMPILATION)
|
||||
#error "Only <eek/eek.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#ifndef EEK_XML_H
|
||||
#define EEK_XML_H 1
|
||||
|
||||
|
||||
45
eek/eek.c
45
eek/eek.c
@ -1,45 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 Daiki Ueno <ueno@unixuser.org>
|
||||
* Copyright (C) 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
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:eek
|
||||
* @title: Library Initialization
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
|
||||
#include "eek.h"
|
||||
|
||||
/**
|
||||
* eek_init:
|
||||
*
|
||||
* Initialize the Libeek library. This must be called before using
|
||||
* functions provided by Libeek.
|
||||
*/
|
||||
void
|
||||
eek_init (void)
|
||||
{
|
||||
g_type_init ();
|
||||
|
||||
g_type_class_ref (EEK_TYPE_SYMBOL);
|
||||
g_type_class_ref (EEK_TYPE_KEYSYM);
|
||||
}
|
||||
@ -20,8 +20,6 @@
|
||||
#ifndef EEK_H
|
||||
#define EEK_H 1
|
||||
|
||||
#define __EEK_H_INSIDE__ 1
|
||||
|
||||
#include "eek-keyboard.h"
|
||||
#include "eek-section.h"
|
||||
#include "eek-key.h"
|
||||
@ -32,6 +30,4 @@
|
||||
#include "eek-serializable.h"
|
||||
#include "eek-theme.h"
|
||||
|
||||
void eek_init (void);
|
||||
|
||||
#endif /* EEK_H */
|
||||
|
||||
@ -30,9 +30,9 @@
|
||||
0xFF9E "Ins" EEK_SYMBOL_CATEGORY_FUNCTION
|
||||
0xFF9F "Del" EEK_SYMBOL_CATEGORY_FUNCTION
|
||||
# aliases
|
||||
0xFE03 "⇮" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE04 "⇮" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE05 "⇮" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE03 "AltGr" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE04 "AltGr" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE05 "AltGr" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE08 "Next" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFE0A "Prev" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFF08 "←" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
@ -47,8 +47,6 @@
|
||||
0xFFE5 "⇪" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFE9 "Alt" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFEA "Alt" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFE7 "Meta" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFE8 "Meta" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFEB "Super" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFEC "Super" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
0xFFED "Hyper" EEK_SYMBOL_CATEGORY_KEYNAME
|
||||
|
||||
@ -18,43 +18,17 @@
|
||||
|
||||
lib_LTLIBRARIES = libeekboard.la
|
||||
|
||||
libeekboard_headers = \
|
||||
eekboard-service.h \
|
||||
eekboard-context-service.h \
|
||||
eekboard-client.h \
|
||||
eekboard-context.h \
|
||||
eekboard-xklutil.h
|
||||
libeekboard_private_headers = \
|
||||
eekboard-marshalers.h
|
||||
libeekboard_headers = \
|
||||
eekboard.h \
|
||||
eekboard-eekboard.h \
|
||||
eekboard-context.h
|
||||
libeekboard_sources = \
|
||||
eekboard-service.c \
|
||||
eekboard-context-service.c \
|
||||
eekboard-client.c \
|
||||
eekboard-context.c \
|
||||
eekboard-xklutil.c
|
||||
eekboard-eekboard.c \
|
||||
eekboard-context.c
|
||||
|
||||
libeekboard_marshalers_sources = \
|
||||
eekboard-marshalers.c \
|
||||
eekboard-marshalers.h
|
||||
|
||||
BUILT_SOURCES = \
|
||||
$(libeekboard_marshalers_sources)
|
||||
|
||||
libeekboard_la_SOURCES = \
|
||||
$(libeekboard_sources) \
|
||||
eekboard-marshalers.c
|
||||
|
||||
libeekboard_la_CFLAGS = \
|
||||
-DEEKBOARD_COMPILATION=1 \
|
||||
-DKEYBOARDDIR=\"$(pkgdatadir)/keyboards\" \
|
||||
-I$(top_srcdir) \
|
||||
$(GIO2_CFLAGS) \
|
||||
$(LIBXKLAVIER_CFLAGS)
|
||||
libeekboard_la_LIBADD = \
|
||||
$(top_builddir)/eek/libeek.la \
|
||||
$(top_builddir)/eek/libeek-xkl.la \
|
||||
$(GIO2_LIBS) \
|
||||
$(LIBXKLAVIER_LIBS)
|
||||
libeekboard_la_SOURCES = $(libeekboard_sources)
|
||||
libeekboard_la_CFLAGS = -I$(top_srcdir) $(GIO2_CFLAGS)
|
||||
libeekboard_la_LIBADD = $(top_builddir)/eek/libeek.la $(GIO2_LIBS)
|
||||
|
||||
eekboarddir = $(includedir)/eekboard-$(EEK_API_VERSION)/eekboard
|
||||
eekboard_HEADERS = $(libeekboard_headers)
|
||||
@ -63,23 +37,10 @@ pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = \
|
||||
eekboard-$(EEK_API_VERSION).pc
|
||||
DISTCLEANFILES = \
|
||||
$(BUILT_SOURCES) \
|
||||
$(pkgconfig_DATA)
|
||||
|
||||
CLEANFILES =
|
||||
|
||||
EXTRA_DIST = eekboard-marshalers.list
|
||||
|
||||
# gen marshal
|
||||
eekboard-marshalers.h: eekboard-marshalers.list
|
||||
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=_eekboard_marshal $(srcdir)/eekboard-marshalers.list --header --internal > $@.tmp && \
|
||||
mv $@.tmp $@
|
||||
|
||||
eekboard-marshalers.c: eekboard-marshalers.list eekboard-marshalers.h
|
||||
$(AM_V_GEN) (echo "#include \"eekboard-marshalers.h\""; \
|
||||
$(GLIB_GENMARSHAL) --prefix=_eekboard_marshal $(srcdir)/eekboard-marshalers.list --body --internal) > $@.tmp && \
|
||||
mv $@.tmp $@
|
||||
|
||||
-include $(INTROSPECTION_MAKEFILE)
|
||||
INTROSPECTION_GIRS =
|
||||
INTROSPECTION_SCANNER_ARGS = --add-include-path=$(builddir) --add-include-path=$(top_builddir)/eek
|
||||
|
||||
@ -25,6 +25,6 @@ Name: Eekboard
|
||||
Description: A Library to Create Keyboard-like UI
|
||||
URL: http://ueno.github.com/eekboard/
|
||||
Version: @VERSION@
|
||||
Requires: eek-@EEK_API_VERSION@
|
||||
Requires: gobject-2.0
|
||||
Libs: -L${libdir} -leek
|
||||
Cflags: -I${includedir}/eekboard-@EEK_API_VERSION@
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user