summaryrefslogtreecommitdiff
path: root/caribou
Commit message (Collapse)AuthorAgeFilesLines
* antler: Specify source code encodingDaiki Ueno2016-11-071-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=773995#c5
* Use Unicode in translatable stringsPiotr Drąg2016-11-071-1/+1
| | | | | | See https://developer.gnome.org/hig/stable/typography.html https://bugzilla.gnome.org/show_bug.cgi?id=773995
* Initialize Clutter explicitly in antler code.Parag Nemade2016-07-031-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=768104
* Fix the antler-keyboard execution tracebackParag Nemade2016-06-271-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=768092
* Add missing python3 compatibilityParag Nemade2016-06-275-5/+11
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=767664
* Fix PyGIWarning warnings in preferences_window.pyParag Nemade2016-04-111-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=764764
* Add some code compatibility for python3. It is seen that on Fedora Caribou ↵Parag Nemade2015-11-242-5/+4
| | | | rpm build failed for python3. If used 2to3 tool everything works fine, but if I remove it then build fails. I tried to find minimal changes required in code compared to what 2to3 tool is offering changes. With this attached patch build on Fedora for python3 succeeds.
* antler: Add --level option to antler-keyboardDaiki Ueno2015-01-182-7/+14
|
* antler: Add preview sub-command to antler-keyboardDaiki Ueno2015-01-163-6/+22
| | | | | | | | | | | As suggested by Bastien Nocera in https://bugzilla.gnome.org/show_bug.cgi?id=690436#c4, a previewer would come in handy for designers to tweak auto-generated / imported layout files. This adds 'preview' sub-command to antler-keyboard. To use: ./bin/antler-keyboard -c preview -f data/layouts/touch/us.xml
* antler: Refactor antler-keyboard invocationDaiki Ueno2015-01-161-7/+26
|
* antler: Remove unnecessary call to Clutter.initDaiki Ueno2015-01-161-2/+0
|
* Fix gschema generation with Python 3Daiki Ueno2014-11-043-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=722634
* Port daemon from Python to ValaDaiki Ueno2013-02-174-133/+1
| | | | | | This eliminates the need of the shell script wrapper. https://bugzilla.gnome.org/show_bug.cgi?id=688218
* Don't check the toolkit-accessibility settingMatthias Clasen2013-02-131-50/+0
| | | | | It is irrelevant for gtk3 and clutter apps. https://bugzilla.gnome.org/show_bug.cgi?id=693616
* build: use git.mkDaiki Ueno2012-12-304-0/+8
| | | | | | | | Use git.mk to generate .gitignore files upon building. Also remove *.[ch] from CLEANFILES since it makes little sense with automake Vala support. https://bugzilla.gnome.org/show_bug.cgi?id=687315
* build: suppress Python bytecode generation when buildingDaiki Ueno2012-12-304-12/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687315
* Fix typo in antler code.Daiki Ueno2012-11-172-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673543
* Port label string construction code to libcaribouDaiki Ueno2012-10-311-30/+2
| | | | | | | Move the key label construction code from Antler to libcaribou and also handle the "text" attribute of key. https://bugzilla.gnome.org/show_bug.cgi?id=656175
* Support out-of-tree buildDaiki Ueno2012-10-233-3/+9
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667455
* daemon: use GDBus directly instead of dbus-pythonDaiki Ueno2012-10-181-12/+17
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685792
* Fix caribou daemon to use new keyboard DBus API.Eitan Isaacson2011-09-091-4/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=658533
* antler: Draw bg custom gradient in keyboard window.Eitan Isaacson2011-09-051-0/+3
|
* Update width calculation method.Eitan Isaacson2011-09-051-1/+2
|
* antler: Use custom theme by default.Eitan Isaacson2011-09-051-1/+1
|
* antler: Don't use pyobject as an animateable property.Eitan Isaacson2011-09-051-17/+26
|
* Revert "setting_types: avoid using GVariant"Eitan Isaacson2011-09-051-9/+2
| | | | | | This reverts commit 4ee4055a9a77e7cf0ebba636f569e3181e8d7697. We are now on pygobject-3.0, so this issue went away.
* Fixed typo and translator comments added for keyboard typesClaude Paroz2011-09-031-2/+5
| | | | Fixes bug #658053
* Use GLib, GObject from gi.repository instead of glib, gobjectAlexandre Rostovtsev2011-08-315-37/+35
| | | | | | | | | | | | | | Use GLib and GObject from gi.repository instead of glib and gobject modules for compatibility with pygobject-3.0. Otherwise, when running on a system with pygobject-2.0 and pygobject-3.0 installed, caribou-preferences fails with ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject".',)) https://bugzilla.gnome.org/show_bug.cgi?id=657666
* Add timestamp to show/hide Gtk module methodsNohemi Fernandez2011-08-122-4/+4
| | | | | | | Several signals may be passed to the GNOME shell to show/hide the keyboard. Since, the signals may be received in a different order than they were sent, we ignore older messages and process the newer ones.
* Add Caribou to GTK_MODULESNohemi Fernandez2011-08-121-2/+2
| | | | | | | | The Caribou IM module would override any other modules the user is utilizing; by adding it to the GTK_MODULES the user can decide whether or not to enable the module (enabled automatically for onscreen keyboard) and will avoid override. There is also no dependency for the abstract class GtkIMContextSimple.
* setting_types: avoid using GVariantDan Winship2011-08-041-2/+9
| | | | | | | | pygobject 2.28's GLib.Variant doesn't work with glib master (bug 654859), and pygobject 3.x is not yet ready for general use. So just avoid using variants for now. https://bugzilla.gnome.org/show_bug.cgi?id=655976
* Made modifiers work in AntlerEitan Isaacson2011-07-181-27/+26
|
* Add "full scale" to antler settings.Eitan Isaacson2011-07-181-0/+1
|
* Antler: Have keyboard resize correctly when type changes.Eitan Isaacson2011-06-223-20/+24
|
* Adjust Antler to use align.Eitan Isaacson2011-06-221-24/+36
|
* Replace Gtk.[HV]Box with Gtk.Box.Eitan Isaacson2011-06-133-6/+6
|
* Use generic keyboard service name.Eitan Isaacson2011-06-082-3/+8
| | | | | | | | - Have it replaceable by a service that is activated later. - Have Antler quit if the generic name is acquired by a new service. - Keep non-replaceable implementation specific name on bus. https://bugzilla.gnome.org/show_bug.cgi?id=651702
* Fix memory leaks. Remove cyclic references.Eitan Isaacson2011-06-011-17/+33
|
* Support on-the-fly keyboard type switching.Eitan Isaacson2011-06-011-8/+21
|
* Aggregate button activation signals.Eitan Isaacson2011-06-011-9/+9
|
* Added IKeyboardObject interface, and have all model classes implement it.Eitan Isaacson2011-06-011-21/+20
|
* Have UI choose keyboard type.Eitan Isaacson2011-06-013-16/+13
|
* remove scan-style.css loading, not needed.Eitan Isaacson2011-05-281-9/+0
|
* Add scanning support in antler.Eitan Isaacson2011-05-281-1/+71
|
* Add label for repeat buton in antlerEitan Isaacson2011-05-281-1/+2
|
* Update scanner settings.Eitan Isaacson2011-05-281-18/+32
|
* Added "scan" layout.Eitan Isaacson2011-05-281-1/+2
|
* Preferences UI: Support non-strings in combo boxesEitan Isaacson2011-05-281-3/+3
|
* Support columns in antler.Eitan Isaacson2011-05-281-19/+37
|
* Antler: Fixed location change updates for keyboard.Eitan Isaacson2011-05-061-1/+1
|