The Following User Says Thank You to Penguin For This Useful Post: | ||
|
2014-03-11
, 23:22
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#202
|
import QtQuick 2.0 import Sailfish.Silica 1.0 FunctionKey { icon.source: "image://theme/icon-l-left" + (pressed ? ("?" + Theme.highlightColor) : "") repeat: true key: Qt.Key_Left width: 52 }
|
2014-03-12
, 10:29
|
Posts: 144 |
Thanked: 242 times |
Joined on Nov 2007
@ Finland
|
#203
|
|
2014-03-12
, 11:02
|
Posts: 197 |
Thanked: 65 times |
Joined on Jul 2011
|
#204
|
|
2014-03-12
, 11:27
|
Posts: 144 |
Thanked: 242 times |
Joined on Nov 2007
@ Finland
|
#205
|
The Following User Says Thank You to Penguin For This Useful Post: | ||
|
2014-03-12
, 11:28
|
Posts: 144 |
Thanked: 242 times |
Joined on Nov 2007
@ Finland
|
#206
|
French "ergonomic" layout fr-bépo : https://pad.lqdn.fr/p/sailfish-bepo
Thank you for this mapping;
But you are missing [W] key, so this mapping is not usable…
[W] key is next to [Z] (in place of []] on qwerty keyboard).
If there is not enough place on the first row, [W] should at least be accessible with a long press on [Z].
Another option could be to remove [È], which is already accessible with a long-press on [E].
You already did the same for [À] and [Ç]…
|
2014-03-13
, 10:46
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#207
|
Check this http://talk.maemo.org/showpost.php?p...&postcount=197 to get arrow keys working. Forget those LeftArrowKey.qml, RightArrowKey.qml, etc and use that one file for all four arrow key directions. It has internal input handler for arrow keys and it works.
Forget also that modified InputHandler.qml which you have and which adds support for arrow keys. You can't modify only that file to get custom input handler, you need more files from system and that wouldn't be feasible compared to solution I made in CustomArrowKey.qml
That and few other files also available in Github Gist: https://gist.github.com/JanneEdelman/9496850
Edit: Changing stock KeyboardLayout.qml is typically an indication that something is wrong with your layout, not in KeyboardLayout.qml file which is very flexible if your layout file has been properly defined. Let me know what is the problem with stock KeyboardLayout.qml, I think we can solve it.
|
2014-03-14
, 11:40
|
Posts: 301 |
Thanked: 531 times |
Joined on Aug 2010
@ The Netherlands
|
#208
|
/usr/share/maliit/plugins/com/jolla/layouts
killall maliit-server
The Following User Says Thank You to rob_kouw For This Useful Post: | ||
|
2014-03-14
, 18:02
|
Posts: 144 |
Thanked: 242 times |
Joined on Nov 2007
@ Finland
|
#209
|
|
2014-03-14
, 18:21
|
Posts: 144 |
Thanked: 242 times |
Joined on Nov 2007
@ Finland
|
#210
|
But if user don't want to see all languages and want to see only 2-3, he still need replace layouts.conf file...
The Following User Says Thank You to Penguin For This Useful Post: | ||
Updated: bug fix to this instruction. Property type alone disables both text prediction and autocaps and enables usage of custom input handler. Do not use it unless you want to change input handler from default.
Update ; Ouch! I tried to disable to word prediction by changing value of read only property...
Last edited by Penguin; 2014-03-14 at 21:10.