~michael-sheldon/ubuntu-keyboard/fix-magnifier-shifted

« back to all changes in this revision

Viewing changes to plugins/ar/qml/Keyboard_ar_url.qml

  • Committer: Michael Sheldon
  • Date: 2014-08-22 15:20:27 UTC
  • mfrom: (202.2.5 ubuntu-keyboard)
  • Revision ID: michael.sheldon@canonical.com-20140822152027-hk7s0ghn4eefa4hh
Merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
import QtQuick 2.0
18
18
import "../../keys"
 
19
import "../../keys/key_constants.js" as UI
19
20
 
20
21
KeyPad {
21
22
    anchors.fill: parent
83
84
            anchors.left: parent.left
84
85
            anchors.right: parent.right
85
86
 
86
 
            height: panel.keyHeight;
 
87
            height: panel.keyHeight + units.gu(UI.bottom_margin*2);
87
88
 
88
 
            SymbolShiftKey { id: symShiftKey;                            anchors.left: parent.left; }
89
 
            LanguageKey    { id: languageMenuButton;                     anchors.left: symShiftKey.right; }
90
 
            CharKey        { id: slashKey; label: "/"; shifted: "/";     anchors.left: languageMenuButton.right; }
91
 
            UrlKey         { id: urlKey; label: ".eg"; extended: [".iq", ".lb", ".sa", ".sy", ".jo", ".ye"]; anchors.right: dotKey.left; }
92
 
            CharKey        { id: dotKey;      label: "."; shifted: "ذ"; extended: ["?", "!"]; extendedShifted: ["?", "!"]; anchors.right: specialChar.left; }
93
 
            CharKey        { id: specialChar; label: "ط";                anchors.right: enterKey.left }
94
 
            ReturnKey      { id: enterKey;                               anchors.right: parent.right }
 
89
            SymbolShiftKey { id: symShiftKey;                            anchors.left: parent.left; height: parent.height; }
 
90
            LanguageKey    { id: languageMenuButton;                     anchors.left: symShiftKey.right; height: parent.height; }
 
91
            CharKey        { id: slashKey; label: "/"; shifted: "/";     anchors.left: languageMenuButton.right; height: parent.height; }
 
92
            UrlKey         { id: urlKey; label: ".eg"; extended: [".iq", ".lb", ".sa", ".sy", ".jo", ".ye"]; anchors.right: dotKey.left; height: parent.height; }
 
93
            CharKey        { id: dotKey;      label: "."; shifted: "ذ"; extended: ["?", "!"]; extendedShifted: ["?", "!"]; anchors.right: specialChar.left; height: parent.height; }
 
94
            CharKey        { id: specialChar; label: "ط";                anchors.right: enterKey.left; height: parent.height; }
 
95
            ReturnKey      { id: enterKey;                               anchors.right: parent.right; height: parent.height; }
95
96
        }
96
97
    } // column
97
98
}