| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Remove unnecessary QtQuick 1.1 effectiveLayoutDirection, effectiveHorizontalAlignment and anchors.mirror properties
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
effectiveHorizontalAlignment and anchors.mirror properties
* these properties are seldomly used
* they confuse developers that do not care about right-to-left user interfaces
* LayoutMirroring.enabled property can be used instead to determine if mirroring is enabled
* if needed, you can easily determine the effective layout directions and alignments
with a little bit of JavaScript:
function effectiveLayoutDirection() {
if (LayoutMirroring.enabled)
return (listView.layoutDirection == Qt.LeftToRight) ? Qt.RightToLeft : Qt.LeftToRight;
else
return listView.layoutDirection;
}
Task-number: QTBUG-11042
Reviewed-by: Martin Jones
|
|/
|
|
|
|
|
| |
Updated version of LGPL and FDL licenseheaders.
Apply release phase licenseheaders for all source files.
Reviewed-by: Trust Me
|
|
|
|
|
|
| |
Task-number: QTBUG-15880
Reviewed-by: Martin Jones
Change-Id: Ie9cebd7bc6d40f5f555bfd83ddc3a24a55c6cb4d
|
|
|
|
|
|
|
| |
Task-number: QTBUG-17490
Reviewed-by: Martin Jones
Change-Id: I3dd3854f820860d32e822605ed547150d5f17eb2
|
|\
| |
| |
| |
| |
| |
| | |
Conflicts:
src/declarative/graphicsitems/qdeclarativelistview.cpp
Change-Id: Ic21311365c6139520ae337a379bdedb6ffe497db
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Allows input handling to be disabled or changed while an input method
is active. This might be used to allow mouse events through to the element
or in conjunction with the cursor position to determine whether a click
occurred on the preedit text.
Change-Id: I35e148691920579c1d7c6f27b7e805d9551beadd
Task-number: QTBUG-17835
Reviewed-by: Martin Jones
|
|/
|
|
|
|
|
|
|
|
|
| |
alignment
Also, implicit empty text alignment now follows the Application's default layout direction traditionally
set by the locale.
Task-number: QTBUG-15880
Reviewed-by: Martin Jones
Change-Id: I88340513d489290bafd393072786a19731097b77
|
|
|
|
|
|
|
|
|
|
|
| |
Adds an option to do per word selection when selectByMouse is true.
Also changes the selection behavior so that the first word selected
remains selected when the direction of the selection changes which
is more consistent with other implementations including the existing
per word selection in QTextEdit.
Task-number: QTBUG-16283
Reviewed-by: Martin Jones
|
|
|
|
|
| |
Task-number: QTBUG-15279
Reviewed-by: Michael Brasser
|
|
|
|
|
|
|
|
| |
Overridden as readonly for elements that have an inherent implicit size
such as Text, TextEdit, TextInput, positioners, Loader.
Task-number: QTBUG-14957
Reviewed-by: Michael Brasser
|
|\ |
|
| |
| |
| |
| | |
Reviewed-by: Trust Me
|
| |
| |
| |
| | |
Reverted a commit 2eee49127b80b5b56c605f76ccea004b03d89577 "Remove active selection when TextEdit loses focus". Contrary to TextInput, by default TextEdit keeps the selection visible when the editor loses active focus. If this is not wanted, a property called persistentSelection can be set false to make selection dependant on the focus.
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-15341
Reviewed-by: Yann Bodson
|
| | |
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-16190
Reviewed-by: Martin Jones
|
| |
| |
| |
| |
| |
| |
| |
| | |
The lineCount property should return the number of lines contained
in textEdit. Also corrected minor documentation in Text
Task-number: QTBUG-12305
Reviewed-by: Michael Brasser
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-16059
Reviewed-by: Martin Jones
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add an overload for moveCursorSelection which takes a parameter
specifying whether to update the selection with individual characters
or whole words.
Task-number: QTBUG-16283
Reviewed-by: Martin Jones
|
| |
| |
| |
| |
| |
| |
| |
| | |
Since TextEdit can also contain rich text with anchors, it should also
have a linkActivated signal like Text does.
Task-number: QTBUG-15283
Reviewed-by: Martin Jones
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-16059
Reviewed-by: Christopher Ham
|
|/
|
|
|
| |
Task-number: QTBUG-13242
Reviewed-by: Michael Brasser
|
|
|
|
|
|
|
|
|
| |
The wantsFocus property has been renamed to activeFocus, to better
reflect its value. Reading and writing the focus property is also now
consistent -- this property represents focus within a scope. Other small
changes were made to keep things consistent with the new naming.
Reviewed-by: Aaron Kennedy
|
|
|
|
|
| |
Those required by creator are still exported. Everything else is
no longer exported.
|
|
|
|
|
|
| |
Various clipping and refresh bugs.
Task-number: QTBUG-11492
|
|
|
|
|
|
|
| |
TextInput has lost focus
Task-number:
Reviewed-by: Warwick Allison
|
|
|
|
|
| |
Merge-request: 658
Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
|
|
|
|
|
| |
Task-number:
Reviewed-by: Warwick Allison
|
|
|
|
|
|
| |
By making selectionStart/End read-only, and adding adding select().
Task-number: QTBUG-11056
|
|
|
|
|
|
|
|
| |
Sufficient to allow different selection look and feel (see whacky example)
Task-number: QTBUG-10968
Reviewed-by: Michael Brasser
Reviewed-by: Alan Alpert
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
TextEdit elements
Task-number: QTBUG-10841
Reviewed-by: Warwick Allison
|
|/ |
|
|
|
|
| |
Task-number: QTBUG-10940
|
|
|
|
|
|
|
|
| |
Can still be turned back on, if people only want to target platforms
where the behaviour is acceptable.
Task-number: QTBUG-10684
Reviewed-by: Michael Brasser
|
| |
|
|
|
|
|
|
|
|
| |
WrapAnywhere - Text can be wrapped at any point on a line, even if it
occurs in the middle of a word.
WrapAtWordBoundaryOrAnywhere - If possible, wrapping occurs at a word
boundary; otherwise it will occur at the appropriate point on the line,
even in the middle of a word.
|
| |
|
|
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
|
|
|
|
| |
Task-number: QTBUG-7193
Reviewed-by: akennedy
|
|
QDeclarativeXXX.
|