zlatko
|
2015-04-17
, 16:33
|
|
Posts: 861 |
Thanked: 936 times |
Joined on Feb 2010
@ Bulgaria
|
#321
|
The Following User Says Thank You to zlatko For This Useful Post: | ||
|
2015-04-17
, 17:12
|
Posts: 121 |
Thanked: 231 times |
Joined on Oct 2013
|
#322
|
For anyone still interested, I updated the keyboard to work in 1.1.4.28 and to support the split keyboard mode.
The 'g' is after the separator on purpose. That way the left side of the second row felt more usable to me. If this annoys someone too much, then just adjust the splitIndex value from "4" to "5" in layouts/en_ios.qml.
|
2015-04-17
, 18:11
|
Posts: 307 |
Thanked: 488 times |
Joined on Sep 2010
@ USA around Chicago
|
#323
|
What are the changes in update 1.1.4.28 with respect to keyboard? I can not get my manually added Bulgarian keyboard to work?
|
2015-04-17
, 18:55
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#324
|
SpacebarKey {} SpacebarKey { active: splitActive languageLabel: "" }
The Following 5 Users Say Thank You to Bundyo For This Useful Post: | ||
|
2015-04-17
, 20:10
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#325
|
The Following User Says Thank You to Bundyo For This Useful Post: | ||
|
2015-04-19
, 19:37
|
Posts: 233 |
Thanked: 532 times |
Joined on Sep 2011
|
#327
|
import QtQuick 2.0 import ".." KeyboardLayout { splitSupported: true KeyboardRow { CharacterKey { caption: ";"; captionShifted: ":"; symView: "1"; symView2: "€" } CharacterKey { caption: "ς"; captionShifted: "€"; symView: "2"; symView2: "£" } AccentedCharacterKey { caption: "ε"; captionShifted: "Ε"; symView: "3"; symView2: "$"; accents: "έ"; accentsShifted: "Έ"; deadKeyAccents: "´έ" ; deadKeyAccentsShifted: "´Έ" } CharacterKey { caption: "ρ"; captionShifted: "Ρ"; symView: "4"; symView2: "¥" } CharacterKey { caption: "τ"; captionShifted: "Τ"; symView: "5"; symView2: "₹" } AccentedCharacterKey { caption: "υ"; captionShifted: "Υ"; symView: "6"; symView2: "%"; accents: "ύϋΰ"; accentsShifted: "Ϋ"; deadKeyAccents: "´ύ" ; deadKeyAccentsShifted: "´Ύ" } CharacterKey { caption: "θ"; captionShifted: "Θ"; symView: "7"; symView2: "<"; } AccentedCharacterKey { caption: "ι"; captionShifted: "Ι"; symView: "8"; symView2: ">"; accents: "ίϊΐ"; accentsShifted: "ΊΪ"; deadKeyAccents: "´ί" ; deadKeyAccentsShifted: "´Ί" } AccentedCharacterKey { caption: "ο"; captionShifted: "Ο"; symView: "9"; symView2: "["; accents: "ό"; accentsShifted: "Ό"; deadKeyAccents: "´ό" ; deadKeyAccentsShifted: "´Ό" } CharacterKey { caption: "π"; captionShifted: "Π"; symView: "0"; symView2: "]" } } KeyboardRow { splitIndex: 5 AccentedCharacterKey { caption: "α"; captionShifted: "Α"; symView: "*"; symView2: "`"; accents: "ά"; accentsShifted: "Ά"; deadKeyAccents: "´ά" ; deadKeyAccentsShifted: "´Ά" } CharacterKey { caption: "σ"; captionShifted: "Σ"; symView: "#"; symView2: "^" } CharacterKey { caption: "δ"; captionShifted: "Δ"; symView: "+"; symView2: "|" } CharacterKey { caption: "φ"; captionShifted: "Φ"; symView: "-"; symView2: "_" } CharacterKey { caption: "γ"; captionShifted: "Γ"; symView: "="; symView2: "§" } AccentedCharacterKey { caption: "η"; captionShifted: "Η"; symView: "("; symView2: "{"; accents: "ή"; accentsShifted: "Ή"; deadKeyAccents: "´ή" ; deadKeyAccentsShifted: "´Ή" } CharacterKey { caption: "ξ"; captionShifted: "Ξ"; symView: ")"; symView2: "}" } CharacterKey { caption: "κ"; captionShifted: "Κ"; symView: "~"; symView2: "°" } CharacterKey { caption: "λ"; captionShifted: "Λ"; symView: "!"; symView2: "¡" } DeadKey { id: deadKey; caption: "´"; captionShifted: "¨";} } KeyboardRow { splitIndex: 5 ShiftKey { width: shiftKeyWidthNarrow } CharacterKey { caption: "ζ"; captionShifted: "Ζ"; symView: "@"; symView2: "«" } CharacterKey { caption: "χ"; captionShifted: "Χ"; symView: "&"; symView2: "»" } CharacterKey { caption: "ψ"; captionShifted: "Ψ"; symView: "/"; symView2: "÷"} AccentedCharacterKey { caption: "ω"; captionShifted: "Ω"; symView: "\\"; symView2: "“"; accents: "ώ"; accentsShifted: "Ώ"; deadKeyAccents: "´ώ" ; deadKeyAccentsShifted: "´Ώ" } CharacterKey { caption: "β"; captionShifted: "Β"; symView: "\""; symView2: "”" } CharacterKey { caption: "ν"; captionShifted: "Ν"; symView: ";"; symView2: "„"} CharacterKey { caption: "μ"; captionShifted: "Μ"; symView: ":"; symView2: "·" } BackspaceKey {} } KeyboardRow { splitIndex: 3 SymbolKey { width: symbolKeyWidthNarrow } CharacterKey { caption: "," captionShifted: "," implicitWidth: punctuationKeyWidthNarrow fixedWidth: !splitActive separator: SeparatorState.HiddenSeparator } SpacebarKey {} SpacebarKey { active: splitActive languageLabel: "" } CharacterKey { caption: "." captionShifted: "." implicitWidth: punctuationKeyWidthNarrow fixedWidth: !splitActive separator: SeparatorState.HiddenSeparator } EnterKey {} } }
The Following User Says Thank You to pagis For This Useful Post: | ||
|
2015-04-19
, 20:33
|
Posts: 172 |
Thanked: 353 times |
Joined on Nov 2014
|
#328
|
|
2015-04-20
, 05:58
|
Posts: 752 |
Thanked: 2,808 times |
Joined on Jan 2011
@ Czech Republic
|
#329
|
|
2015-04-20
, 07:04
|
Posts: 233 |
Thanked: 532 times |
Joined on Sep 2011
|
#330
|
import QtQuick 2.0 import ".." KeyboardLayout { splitSupported: true KeyboardRow { CharacterKey { caption: ";"; captionShifted: ":"; symView: "1"; symView2: "€" } CharacterKey { caption: "ς"; captionShifted: "€"; symView: "2"; symView2: "£" } AccentedCharacterKey { caption: "ε"; captionShifted: "Ε"; symView: "3"; symView2: "$"; accents: "έ"; accentsShifted: "Έ"; deadKeyAccents: "´έ"; deadKeyAccentsShifted: "´Έ" } CharacterKey { caption: "ρ"; captionShifted: "Ρ"; symView: "4"; symView2: "¥" } CharacterKey { caption: "τ"; captionShifted: "Τ"; symView: "5"; symView2: "₹" } AccentedCharacterKey { caption: "υ"; captionShifted: "Υ"; symView: "6"; symView2: "%"; accents: "ύϋΰ "; accentsShifted: "Ϋ"; deadKeyAccents: "´ύ"; deadKeyAccentsShifted: "´Ύ" } CharacterKey { caption: "θ"; captionShifted: "Θ"; symView: "7"; symView2: "<"; } AccentedCharacterKey { caption: "ι"; captionShifted: "Ι"; symView: "8"; symView2: ">"; accents: "ίϊΐ "; accentsShifted: "ΊΪ"; deadKeyAccents: "´ί"; deadKeyAccentsShifted: "´Ί" } AccentedCharacterKey { caption: "ο"; captionShifted: "Ο"; symView: "9"; symView2: "["; accents: "ό"; accentsShifted: "Ό"; deadKeyAccents: "´ό"; deadKeyAccentsShifted: "´Ό" } CharacterKey { caption: "π"; captionShifted: "Π"; symView: "0"; symView2: "]" } } KeyboardRow { splitIndex: 5 AccentedCharacterKey { caption: "α"; captionShifted: "Α"; symView: "*"; symView2: "`"; accents: "ά"; accentsShifted: "Ά"; deadKeyAccents: "´ά"; deadKeyAccentsShifted: "´Ά" } CharacterKey { caption: "σ"; captionShifted: "Σ"; symView: "#"; symView2: "^" } CharacterKey { caption: "δ"; captionShifted: "Δ"; symView: "+"; symView2: "|" } CharacterKey { caption: "φ"; captionShifted: "Φ"; symView: "-"; symView2: "_" } CharacterKey { caption: "γ"; captionShifted: "Γ"; symView: "="; symView2: "§" } AccentedCharacterKey { caption: "η"; captionShifted: "Η"; symView: "("; symView2: "{"; accents: "ή"; accentsShifted: "Ή"; deadKeyAccents: "´ή"; deadKeyAccentsShifted: "´Ή" } CharacterKey { caption: "ξ"; captionShifted: "Ξ"; symView: ")"; symView2: "}" } CharacterKey { caption: "κ"; captionShifted: "Κ"; symView: "~"; symView2: "°" } CharacterKey { caption: "λ"; captionShifted: "Λ"; symView: "!"; symView2: "¡" } } KeyboardRow { splitIndex: 5 ShiftKey { width: shiftKeyWidthNarrow } CharacterKey { caption: "ζ"; captionShifted: "Ζ"; symView: "@"; symView2: "«" } CharacterKey { caption: "χ"; captionShifted: "Χ"; symView: "&"; symView2: "»" } CharacterKey { caption: "ψ"; captionShifted: "Ψ"; symView: "/"; symView2: "÷"} AccentedCharacterKey { caption: "ω"; captionShifted: "Ω"; symView: "\\"; symView2: "“"; accents: "ώ" ; accentsShifted: "Ώ"; deadKeyAccents: "´ώ"; deadKeyAccentsShifted: "´Ώ" } CharacterKey { caption: "β"; captionShifted: "Β"; symView: "\""; symView2: "”" } CharacterKey { caption: "ν"; captionShifted: "Ν"; symView: ";"; symView2: "„"} CharacterKey { caption: "μ"; captionShifted: "Μ"; symView: ":"; symView2: "·" } BackspaceKey {} } SpacebarRowDeadKey { deadKeyCaption: "´" deadKeyCaptionShifted: "´" } }