aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>2015-07-28 13:00:48 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>2015-08-04 11:34:57 +0000
commitd296ebfe6585010a38db0e3043ef5ceaa6a30883 (patch)
tree079babe8fe7ea17443c33e3f117c15216be37034 /tests/manual/scenegraph_lancelot/data
parent3efe416da236828010a446f415583a9777e4712d (diff)
Fix selections in tables that span over several cells
In the code that converts text layouts to subtrees in the scene graph specifically for TextEdit, there was a cutoff to treat text tables as single nodes in the graph (for simplicity). However, this breaks selections, since the ranges spanned by each cell will be interpreted as overlapping, messing up the selection merging logic. We need the same approach here as for any other text frame where we check frame boundaries. [ChangeLog][TextEdit] Fixed issues with selections that spanned several cells in a table. Change-Id: I789041d84b5d163e209488f8f2f1f83a6471389f Task-number: QTBUG-46928 Reviewed-by: Pierre Rossi <pierre.rossi@theqtcompany.com>
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data')
-rw-r--r--tests/manual/scenegraph_lancelot/data/text/textedit_table_selected.qml40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/text/textedit_table_selected.qml b/tests/manual/scenegraph_lancelot/data/text/textedit_table_selected.qml
new file mode 100644
index 0000000000..749c37904e
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/text/textedit_table_selected.qml
@@ -0,0 +1,40 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ TextEdit {
+ id: textEdit
+ anchors.centerIn: parent
+ verticalAlignment: Text.AlignBottom
+ font.family: "Arial"
+ font.pixelSize: 16
+ textFormat: Text.RichText
+ Component.onCompleted: textEdit.selectAll()
+ text:
+ "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n" +
+ "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n" +
+ "<body >\n" +
+ "<table >\n" +
+ "<tr >\n" +
+ "<td >\n" +
+ "Cell 1\n" +
+ "</td>\n" +
+ "</tr>\n" +
+ "<tr >\n" +
+ "<td >\n" +
+ "Cell 2\n" +
+ "</td>\n" +
+ "</tr>\n" +
+ "<tr >\n" +
+ "<td >\n" +
+ "Cell 3\n" +
+ "</td>\n" +
+ "</tr>\n" +
+ "</table>\n" +
+ "</body>\n" +
+ "</html>\n"
+
+ }
+}