The Following User Says Thank You to abyzthomas For This Useful Post: | ||
|
2014-12-26
, 18:42
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#312
|
|
2014-12-26
, 19:13
|
|
Posts: 6,447 |
Thanked: 20,981 times |
Joined on Sep 2012
@ UK
|
#313
|
|
2015-01-26
, 12:41
|
|
Posts: 956 |
Thanked: 2,628 times |
Joined on Nov 2011
|
#315
|
Yeah I left the default here as it is also with other keyboards on other plattforms.
/* * Author: Leszek Lesner * * Original Copyright (C) 2013 Jolla ltd and/or its subsidiary(-ies). All rights reserved. * * Original Contact: Pekka Vuorela <pekka.vuorela@jollamobile.com> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list * of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * Neither the name of Jolla Ltd nor the names of its contributors may be * used to endorse or promote products derived from this software without specific * prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ import QtQuick 2.0 import ".." KeyboardLayout { KeyboardRow { CharacterKey { caption: "q"; captionShifted: "Q"; symView: "1"; symView2: "€" } CharacterKey { caption: "w"; captionShifted: "W"; symView: "2"; symView2: "£" } CharacterKey { caption: "e"; captionShifted: "E"; symView: "3"; symView2: "$"; accents: "eèéëê€"; accentsShifted: "EÈÉÊË€" } CharacterKey { caption: "r"; captionShifted: "R"; symView: "4"; symView2: "¥" } CharacterKey { caption: "t"; captionShifted: "T"; symView: "5"; symView2: "₹"; accents: "t"; accentsShifted: "T" } CharacterKey { caption: "z"; captionShifted: "Z"; symView: "6"; symView2: "%" } CharacterKey { caption: "u"; captionShifted: "U"; symView: "7"; symView2: "<"; accents: "uùúüû"; accentsShifted: "UÙÚÜÛ" } CharacterKey { caption: "i"; captionShifted: "I"; symView: "8"; symView2: ">"; accents: "iîïì*"; accentsShifted: "IÎÏÌÍ" } CharacterKey { caption: "o"; captionShifted: "O"; symView: "9"; symView2: "["; accents: "oòóôõøö"; accentsShifted: "OÒÓÔÕØÖ" } CharacterKey { caption: "p"; captionShifted: "P"; symView: "0"; symView2: "]" } //CharacterKey { caption: "ü"; captionShifted: "Ü"; symView: "%"; symView2: "‰" } } KeyboardRow { CharacterKey { caption: "a"; captionShifted: "A"; symView: "*"; symView2: "`"; accents: "aä*áãâåæ"; accentsShifted: "AÄÀÁÃÂÅÆ"} CharacterKey { caption: "s"; captionShifted: "S"; symView: "#"; symView2: "^"; accents: "sßş$"; accentsShifted: "SŞ$" } CharacterKey { caption: "d"; captionShifted: "D"; symView: "+"; symView2: "|"; accents: "dð"; accentsShifted: "DÐ" } CharacterKey { caption: "f"; captionShifted: "F"; symView: "-"; symView2: "_" } CharacterKey { caption: "g"; captionShifted: "G"; symView: "="; symView2: "§"; accents: "gğ"; accentsShifted: "GĞ" } CharacterKey { caption: "h"; captionShifted: "H"; symView: "("; symView2: "{" } CharacterKey { caption: "j"; captionShifted: "J"; symView: ")"; symView2: "}" } CharacterKey { caption: "k"; captionShifted: "K"; symView: "!"; symView2: "°" } CharacterKey { caption: "l"; captionShifted: "L"; symView: "?"; symView2: "·" } //CharacterKey { caption: "ö"; captionShifted: "Ö"; symView: "÷"; symView2: "¡" } //CharacterKey { caption: "ä"; captionShifted: "Ä"; symView: "×"; symView2: "¿" } } KeyboardRow { ShiftKey {} CharacterKey { caption: "y"; captionShifted: "Y"; symView: "@"; symView2: "«"; accents: "yý¥"; accentsShifted: "YÝ¥" } CharacterKey { caption: "x"; captionShifted: "X"; symView: "&"; symView2: "»" } CharacterKey { caption: "c"; captionShifted: "C"; symView: "/"; symView2: "\""; accents: "cç"; accentsShifted: "CÇ" } CharacterKey { caption: "v"; captionShifted: "V"; symView: "\\"; symView2: "“" } CharacterKey { caption: "b"; captionShifted: "B"; symView: "'"; symView2: "”" } CharacterKey { caption: "n"; captionShifted: "N"; symView: ";"; symView2: "„"; accents: "nñ"; accentsShifted: "NÑ" } CharacterKey { caption: "m"; captionShifted: "M"; symView: ":"; symView2: "~" } BackspaceKey {} } SpacebarRow {} }
|
2015-01-26
, 13:01
|
Posts: 426 |
Thanked: 1,812 times |
Joined on Dec 2013
|
#316
|
|
2015-01-26
, 14:05
|
|
Posts: 956 |
Thanked: 2,628 times |
Joined on Nov 2011
|
#317
|
|
2015-01-31
, 19:36
|
Posts: 426 |
Thanked: 1,812 times |
Joined on Dec 2013
|
#318
|
|
2015-04-17
, 03:06
|
Posts: 172 |
Thanked: 353 times |
Joined on Nov 2014
|
#319
|
Originally Posted by vistausHere's one. It's not the default Jolla one in number/symbol view but shouldn't be too hard to modify to your liking.Would be great if someone could make an English QWERTY layout (like the default English one from Jolla) with arrow keys (at least left and right arrow keys)
|
2015-04-17
, 07:35
|
|
Posts: 423 |
Thanked: 478 times |
Joined on Sep 2014
@ Netherlands
|
#320
|
The Following User Says Thank You to vistaus For This Useful Post: | ||
I can put those unicode characters on keyboard and have maliit send it, but they are all blank keys. I would like to display some characters on the key so the user know which key is which.
Is there a way to have maliit send a different character/string than what is displayed on the key?
Apps for iPhone & iPad
Malayalam Keyboard for iPhone Telugu Keyboard for iPhone Gujarati Keyboard for iPhone