~dandrader/unity8/pixelAlignedWindow

« back to all changes in this revision

Viewing changes to tests/plugins/Cursor/TextEntry.qml

  • Committer: Daniel d'Andrada
  • Date: 2016-05-19 19:44:37 UTC
  • Revision ID: daniel.dandrada@canonical.com-20160519194437-c6yx7w7872eu4z7i
SupportĀ animatedĀ cursors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
import QtQuick 2.4
 
18
 
 
19
Column {
 
20
    property alias name: entryText.text
 
21
    property alias value: textInput.text
 
22
    Text { id: entryText }
 
23
    Rectangle {
 
24
        color: "white"
 
25
        width: parent.width - 20
 
26
        height: 40
 
27
        TextInput {
 
28
            id: textInput
 
29
            anchors.fill: parent
 
30
            verticalAlignment: TextInput.AlignVCenter
 
31
            selectByMouse: true
 
32
        }
 
33
    }
 
34
}