~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/manual/scenegraph_lancelot/data/text/textedit_selection_color.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Item {
 
4
    width: 320
 
5
    height: 480
 
6
 
 
7
    TextEdit {
 
8
        id: textEdit
 
9
        anchors.centerIn: parent
 
10
        width: parent.width
 
11
        font.pixelSize: 14
 
12
        text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nibh"
 
13
        wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
 
14
 
 
15
        selectionColor: "red"
 
16
        selectedTextColor: "blue"
 
17
 
 
18
        Component.onCompleted: {
 
19
            textEdit.select(6, 17)
 
20
        }
 
21
    }
 
22
}