summaryrefslogtreecommitdiff
path: root/libgnomekbd
Commit message (Collapse)AuthorAgeFilesLines
* Removed wrong double-incrementationSergey V. Udaltsov2011-03-071-1/+1
|
* explicit declaration of internal libxklavier functionsSergey V. Udaltsov2011-03-031-0/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=643754
* The latest changes in xk-c: variants contain full descriptionsSergey V. Udaltsov2011-03-013-25/+24
| | | | | The formatting of the visible strings changes: no need to prepend the layout description to the variant description.
* "font-size" gsetting should have a range tooSergey V. Udaltsov2011-02-281-0/+1
|
* Derived files should not be in gitSergey V. Udaltsov2011-02-282-86/+0
|
* Default value -1 not within rangeSergey V. Udaltsov2011-02-281-1/+1
|
* Fixed gschema filesSergey V. Udaltsov2011-02-283-5/+11
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=643190
* Removed "Keyboard Layout" prefix from the preview dialogSergey V. Udaltsov2011-02-251-4/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=642903
* Improve app name and add iconWilliam Jon McCann2011-02-241-2/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=642903
* Added desktop file for the preview appSergey V. Udaltsov2011-02-243-8/+32
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=642903
* Improved rendering of keysyms. No ISO_, underscores->spacesSergey V. Udaltsov2011-02-241-19/+26
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=642903
* Unneeded wrapping for caps lock removedSergey V. Udaltsov2011-02-241-1/+1
|
* Removed Printing of previewSergey V. Udaltsov2011-02-231-16/+0
| | | | | The code is there, the button can be added back to .ui file if necessary https://bugzilla.gnome.org/show_bug.cgi?id=642903
* For pressed keys, used the font color from gtk themeSergey V. Udaltsov2011-02-221-19/+29
| | | | http://bugzilla.gnome.org/show_bug.cgi?id=642903
* Removed useless Help buttonSergey V. Udaltsov2011-02-212-21/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=642903
* Make Caps Lock consistent with indicatorSergey V. Udaltsov2011-02-211-0/+4
| | | | http://bugzilla.gnome.org/show_bug.cgi?id=642903
* Added gconf->gsettings convertion fileSergey V. Udaltsov2011-02-182-0/+31
|
* Do not display VoidSymbol, use "" insteadSergey V. Udaltsov2011-02-171-0/+4
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=34369
* Do not use group name for the kbd drawing dialog titleSergey V. Udaltsov2011-02-103-95/+116
| | | | Use proper name from xml instead of group name
* libgnomekbd: Work-around automake dependenciesBastien Nocera2011-02-051-2/+2
| | | | | | automake and make seem to get confused when the library to link against is in another directory. It's not really though, so use the name of the library, instead of its full path.
* Another attempt to fix the dependency issueSergey V. Udaltsov2011-02-041-1/+1
|
* Improved keyboard drawing dialogSergey V. Udaltsov2011-02-043-18/+51
| | | | API is fixed, proper title taken from libxklavier meta data
* Build result - no need to keep in gitSergey V. Udaltsov2011-02-041-30/+0
|
* Invalid fix for the dependency removedSergey V. Udaltsov2011-02-031-1/+0
| | | | It broke the build process completely - so reverted
* Typo in the app nameSergey V. Udaltsov2011-02-031-1/+1
| | | | Using dashes instead of underscores
* Now, gkbd-keyboard-display is able to show layoutsSergey V. Udaltsov2011-02-033-62/+172
| | | | To be used by g-c-c
* Fix gkbd_keyboard_display buildDiego Escalante Urrelo2011-02-031-0/+1
| | | | Bug #641413
* Don't use different layouts per windowBastien Nocera2011-02-031-1/+1
| | | | | | | | | | | | Using different layouts per-window is confusing for new users. Both Windows and MacOS X default to using the same layout globally, and just like them, we offer a graphical way to change the layout (through a system icon). Once the user gains profiency in switching layouts, we can offer them a more complicated way, using separate layouts for each window. https://bugzilla.gnome.org/show_bug.cgi?id=641351
* Added gkbd-keyboard-display utilitySergey V. Udaltsov2011-02-035-2/+101
| | | | It is going to be used by the gnome-shell and gnome-control-center
* Improved handling of null/empty string with gsettingsSergey V. Udaltsov2011-01-311-2/+13
| | | | The patch contributed by halfline (Ray Strode) to avoid crashes in gdm
* call gtk_widget_set_allocation from size_allocateSergey V. Udaltsov2011-01-281-1/+1
| | | | And there is no need to invalidate - it will be done anyway
* Proper default dialog sizeSergey V. Udaltsov2011-01-281-30/+68
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=640423 At the same time, gtkvbox still doing strange things, to be continued
* removed unneeded 2nd slot in the vboxSergey V. Udaltsov2011-01-281-13/+21
|
* Invalidate only required regionSergey V. Udaltsov2011-01-261-7/+6
| | | | Using widget allocation allows to provide correct invalidation area for updates.
* Specifying explicit line width for outlinesSergey V. Udaltsov2011-01-261-12/+34
| | | | When outlines are too thick, LEDs are not visible at all
* Invalidate entire widgetSergey V. Udaltsov2011-01-251-2/+4
| | | | | | | For some reason, the coordinates are taken from the window corner. Should be investigated. For now, closing https://bugzilla.gnome.org/show_bug.cgi?id=640424 https://bugzilla.gnome.org/show_bug.cgi?id=640422
* Implemented immediate rendering (without idle)Sergey V. Udaltsov2011-01-252-112/+38
| | | | As a side effect, fixed https://bugzilla.gnome.org/show_bug.cgi?id=640424
* Do not highlight when focus is receivedSergey V. Udaltsov2011-01-251-12/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=640425
* Stricter syntaxSergey V. Udaltsov2011-01-241-1/+1
|
* Improved cooords for labels - consider complex outlinesSergey V. Udaltsov2011-01-241-60/+89
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=640425 Also, a bit of indent love
* A bit of indent loveSergey V. Udaltsov2011-01-241-3/+5
|
* Fix dialog sizingMatthias Clasen2011-01-211-1/+2
|
* Fix clipping problems in the drawing widgetMatthias Clasen2011-01-211-0/+1
| | | | | | No-window widgets _must_ call gtk_widget_set_has_window (w, FALSE) in _init; else the clipping/transformation logic in GTK+ gets confused.
* Change icon names - otherwise GtkIcon falls back to "keyboard"Sergey V. Udaltsov2011-01-194-3/+3
| | | | | GtkIcon has strange behaviour - it prefers theme-specific "keyboard" to non-themeable keyboard-caps-lock. So, the prefix has to be changed
* Using append, not prepend for the icons dirSergey V. Udaltsov2011-01-191-1/+1
| | | | To let other dirs have preferences, the libgnomekbd icons dir is a fallback
* Added icons to distributionSergey V. Udaltsov2011-01-181-0/+1
|
* Provide icons for caps/num/scroll locksSergey V. Udaltsov2011-01-185-0/+260
| | | | The icons are installed by libgnomekbd itself, can be used by apps
* Use variant-specific short descriptions, if availableSergey V. Udaltsov2011-01-181-2/+5
| | | | | As discussed on https://bugzilla.gnome.org/show_bug.cgi?id=600771
* Include gi18n-lib.h in library sources instead of gi18n.h. Fixes bug #639569Gabor Kelemen2011-01-168-8/+12
|
* Added handling of caps/num/scroll locksSergey V. Udaltsov2011-01-072-5/+68
| | | | Signal and state functions - to be used from JS