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

« back to all changes in this revision

Viewing changes to plugins/nl/qml/Keyboard_nl_url_search.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
78
79
            anchors.left: parent.left
79
80
            anchors.right: parent.right
80
81
 
81
 
            height: panel.keyHeight;
 
82
            height: panel.keyHeight + units.gu(UI.bottom_margin*2);
82
83
 
83
 
            SymbolShiftKey { id: symShiftKey;                            anchors.left: parent.left; }
84
 
            LanguageKey    { id: languageMenuButton;                     anchors.left: symShiftKey.right; }
85
 
            CharKey        { id: slashKey; label: "/"; shifted: "/";     anchors.left: languageMenuButton.right; }
86
 
            SpaceKey       { id: spaceKey;                               anchors.left: slashKey.right; anchors.right: urlKey.left; noMagnifier: true }
87
 
            UrlKey         { id: urlKey; label: ".nl"; extended: [".be", ".an", ".sx", ".sr", ".aw", ".cw"]; anchors.right: dotKey.left; }
88
 
            CharKey        { id: dotKey;      label: "."; shifted: "."; extended: ["?", "!"]; extendedShifted: ["?", "!"]; anchors.right: enterKey.left; }
89
 
            ReturnKey      { id: enterKey;                               anchors.right: parent.right }
 
84
            SymbolShiftKey { id: symShiftKey;                            anchors.left: parent.left; height: parent.height; }
 
85
            LanguageKey    { id: languageMenuButton;                     anchors.left: symShiftKey.right; height: parent.height; }
 
86
            CharKey        { id: slashKey; label: "/"; shifted: "/";     anchors.left: languageMenuButton.right; height: parent.height; }
 
87
            SpaceKey       { id: spaceKey;                               anchors.left: slashKey.right; anchors.right: urlKey.left; noMagnifier: true; height: parent.height; }
 
88
            UrlKey         { id: urlKey; label: ".nl"; extended: [".be", ".an", ".sx", ".sr", ".aw", ".cw"]; anchors.right: dotKey.left; height: parent.height; }
 
89
            CharKey        { id: dotKey;      label: "."; shifted: "."; extended: ["?", "!"]; extendedShifted: ["?", "!"]; anchors.right: enterKey.left; height: parent.height; }
 
90
            ReturnKey      { id: enterKey;                               anchors.right: parent.right; height: parent.height; }
90
91
        }
91
92
    } // column
92
93
}