forked from xlab/matchbox-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2006-02-28 Matthew Allum <[email protected]>
* configure.ac: Make version 0.1. Make cairo usage explicit. * layouts/Makefile.am: * layouts/keyboard-numpad.xml: New Layout. * src/matchbox-keyboard-ui-xft-backend.c: (mb_kbd_ui_xft_redraw_key): * src/matchbox-keyboard-ui.c: (mb_kdb_ui_unit_key_size), (mb_kbd_ui_allocate_ui_layout), (mb_kbd_ui_handle_configure), (mb_kbd_ui_event_loop): * src/matchbox-keyboard.c: (mb_kbd_new): Fixups for layout on small screens and improvements for high DPI layouts. git-svn-id: https://svn.o-hand.com/repos/matchbox/trunk/matchbox-keyboard@1314 b067294f-1dea-0310-9683-c47a78595994
- Loading branch information
mallum
committed
Feb 28, 2006
1 parent
e5532c5
commit 2f3b941
Showing
7 changed files
with
116 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
2006-02-28 Matthew Allum <[email protected]> | ||
|
||
* configure.ac: | ||
Make version 0.1. Make cairo usage explicit. | ||
|
||
* layouts/Makefile.am: | ||
* layouts/keyboard-numpad.xml: | ||
New Layout. | ||
|
||
* src/matchbox-keyboard-ui-xft-backend.c: | ||
(mb_kbd_ui_xft_redraw_key): | ||
* src/matchbox-keyboard-ui.c: (mb_kdb_ui_unit_key_size), | ||
(mb_kbd_ui_allocate_ui_layout), (mb_kbd_ui_handle_configure), | ||
(mb_kbd_ui_event_loop): | ||
* src/matchbox-keyboard.c: (mb_kbd_new): | ||
Fixups for layout on small screens and improvements for high | ||
DPI layouts. | ||
|
||
|
||
2005-10-27 Matthew Allum <[email protected]> | ||
|
||
* README: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
AC_PREREQ(2.53) | ||
AC_INIT([matchbox-keyboard], 0.0.0, [[email protected]]) | ||
AC_INIT([matchbox-keyboard], 0.1, [[email protected]]) | ||
AC_CONFIG_SRCDIR([src/matchbox-keyboard.c]) | ||
|
||
AM_INIT_AUTOMAKE() | ||
|
@@ -26,9 +26,9 @@ AC_TYPE_SIGNAL | |
AC_FUNC_STAT | ||
|
||
AC_ARG_ENABLE(cairo, | ||
[ --disable-cairo disable Cairo support [default=auto]], | ||
[ --enable-cairo enable experimental Cairo support [default=no]], | ||
enable_cairo=$enableval, | ||
enable_cairo=yes) | ||
enable_cairo=no) | ||
|
||
AC_ARG_ENABLE(examples, | ||
[ --enable-examples Build embedding examples ( requires GTK ) [default=no]], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
keyboardsdir = $(datadir)/matchbox-keyboard | ||
keyboards_DATA = keyboard.xml keyboard-extended.xml keyboard-dvorak.xml \ | ||
keyboard-ru.xml keyboard-fi.xml | ||
keyboard-ru.xml keyboard-fi.xml keyboard-numpad.xml | ||
|
||
EXTRA_DIST = $(keyboards_DATA) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<keyboard> | ||
|
||
<options> | ||
<!-- not yet implemented --> | ||
</options> | ||
|
||
<layout id="defualt keyboard"> | ||
|
||
<row> | ||
|
||
<space width="500" extended="true"/> | ||
|
||
<key> | ||
<default display="9" /> | ||
</key> | ||
<key> | ||
<default display="8" /> | ||
</key> | ||
<key> | ||
<default display="7" /> | ||
</key> | ||
|
||
</row> | ||
<row> | ||
<space width="500" extended="true"/> | ||
<key> | ||
<default display="6" /> | ||
</key> | ||
<key> | ||
<default display="5" /> | ||
</key> | ||
<key> | ||
<default display="4" /> | ||
</key> | ||
</row> | ||
<row> | ||
<space width="500" extended="true"/> | ||
<key> | ||
<default display="3" /> | ||
</key> | ||
|
||
<key> | ||
<default display="2" /> | ||
</key> | ||
<key> | ||
<default display="1" /> | ||
</key> | ||
</row> | ||
<row> | ||
<space width="500" extended="true"/> | ||
<key> | ||
<default display="0" /> | ||
</key> | ||
</row> | ||
|
||
</layout> | ||
|
||
|
||
</keyboard> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters