summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/quick/controls/texteditor/qml/images/qt-logo.pngbin3960 -> 3531 bytes
-rw-r--r--examples/quick/controls/texteditor/src/documenthandler.cpp1
-rw-r--r--examples/quick/extras/dashboard/images/fuel-icon.pngbin666 -> 409 bytes
-rw-r--r--examples/quick/extras/gallery/images/center.pngbin2392 -> 2260 bytes
-rw-r--r--src/controls/Private/ScrollViewHelper.qml4
-rw-r--r--src/controls/SpinBox.qml4
-rw-r--r--src/controls/Styles/Base/SliderStyle.qml5
-rw-r--r--src/controls/doc/images/applicationwindow.pngbin4576 -> 3390 bytes
-rw-r--r--src/controls/doc/images/qtquickcontrols-example-applicationtemplate.pngbin11536 -> 11465 bytes
-rw-r--r--src/controls/doc/images/qtquickcontrols-example-basiclayouts.pngbin24795 -> 24761 bytes
-rw-r--r--src/controls/doc/images/qtquickcontrols-example-text.pngbin76249 -> 76178 bytes
-rw-r--r--src/controls/doc/images/qtquickcontrols-example-touch.pngbin14347 -> 14276 bytes
-rw-r--r--src/controls/qquickmenu.cpp5
-rw-r--r--src/dialogs/images/checkers.pngbin149 -> 80 bytes
-rw-r--r--src/dialogs/images/window_border.pngbin588 -> 371 bytes
-rw-r--r--src/extras/doc/images/circulargauge.pngbin26247 -> 18984 bytes
-rw-r--r--src/extras/doc/images/delaybutton-activated.pngbin18460 -> 16620 bytes
-rw-r--r--src/extras/doc/images/delaybutton-progress.pngbin15558 -> 13870 bytes
-rw-r--r--src/extras/doc/images/delaybutton.pngbin8354 -> 4406 bytes
-rw-r--r--src/extras/doc/images/dial.pngbin14815 -> 8282 bytes
-rw-r--r--src/extras/doc/images/piemenu.pngbin17205 -> 13641 bytes
-rw-r--r--src/extras/doc/images/statusindicator-active.pngbin3434 -> 2678 bytes
-rw-r--r--src/extras/doc/images/statusindicator-green.pngbin3753 -> 2996 bytes
-rw-r--r--src/extras/doc/images/statusindicator-inactive.pngbin1702 -> 730 bytes
-rw-r--r--src/extras/doc/images/togglebutton-checked.pngbin11014 -> 9642 bytes
-rw-r--r--src/extras/doc/images/togglebutton-unchecked.pngbin10717 -> 9194 bytes
-rw-r--r--tests/auto/activeFocusOnTab/data/images/testIcon.pngbin3826 -> 3755 bytes
-rw-r--r--tests/manual/images/checkered.pngbin258 -> 113 bytes
-rw-r--r--tests/manual/images/testIcon.pngbin3826 -> 3755 bytes
29 files changed, 10 insertions, 9 deletions
diff --git a/examples/quick/controls/texteditor/qml/images/qt-logo.png b/examples/quick/controls/texteditor/qml/images/qt-logo.png
index 6dedc8bf..be1bb106 100644
--- a/examples/quick/controls/texteditor/qml/images/qt-logo.png
+++ b/examples/quick/controls/texteditor/qml/images/qt-logo.png
Binary files differ
diff --git a/examples/quick/controls/texteditor/src/documenthandler.cpp b/examples/quick/controls/texteditor/src/documenthandler.cpp
index 9ce73dbc..bdecf5ba 100644
--- a/examples/quick/controls/texteditor/src/documenthandler.cpp
+++ b/examples/quick/controls/texteditor/src/documenthandler.cpp
@@ -143,7 +143,6 @@ void DocumentHandler::saveAs(const QUrl &arg, const QString &fileType)
}
f.write((isHtml ? m_doc->toHtml() : m_doc->toPlainText()).toLocal8Bit());
f.close();
- qDebug() << "saved to" << localPath;
setFileUrl(QUrl::fromLocalFile(localPath));
}
diff --git a/examples/quick/extras/dashboard/images/fuel-icon.png b/examples/quick/extras/dashboard/images/fuel-icon.png
index f521e905..70da758c 100644
--- a/examples/quick/extras/dashboard/images/fuel-icon.png
+++ b/examples/quick/extras/dashboard/images/fuel-icon.png
Binary files differ
diff --git a/examples/quick/extras/gallery/images/center.png b/examples/quick/extras/gallery/images/center.png
index b18a5fa8..fd369640 100644
--- a/examples/quick/extras/gallery/images/center.png
+++ b/examples/quick/extras/gallery/images/center.png
Binary files differ
diff --git a/src/controls/Private/ScrollViewHelper.qml b/src/controls/Private/ScrollViewHelper.qml
index 9e4f97e7..4841eace 100644
--- a/src/controls/Private/ScrollViewHelper.qml
+++ b/src/controls/Private/ScrollViewHelper.qml
@@ -73,10 +73,10 @@ Item {
function doLayout() {
if (!recursionGuard) {
recursionGuard = true
- scrollHelper.availableWidth = viewport.width
- scrollHelper.availableHeight = viewport.height
scrollHelper.contentWidth = flickableItem !== null ? flickableItem.contentWidth : 0
scrollHelper.contentHeight = flickableItem !== null ? flickableItem.contentHeight : 0
+ scrollHelper.availableWidth = viewport.width
+ scrollHelper.availableHeight = viewport.height
recursionGuard = false
}
}
diff --git a/src/controls/SpinBox.qml b/src/controls/SpinBox.qml
index ea997209..999649b0 100644
--- a/src/controls/SpinBox.qml
+++ b/src/controls/SpinBox.qml
@@ -180,9 +180,7 @@ Control {
\since QtQuick.Controls 1.1
This signal is emitted when the Return or Enter key is pressed or
- the control loses focus. Note that if there is a validator
- set on the control and enter/return is pressed, this signal will
- only be emitted if the validator returns an acceptable state.
+ the control loses focus.
The corresponding handler is \c onEditingFinished.
*/
diff --git a/src/controls/Styles/Base/SliderStyle.qml b/src/controls/Styles/Base/SliderStyle.qml
index 8e4102c7..085fa56e 100644
--- a/src/controls/Styles/Base/SliderStyle.qml
+++ b/src/controls/Styles/Base/SliderStyle.qml
@@ -162,9 +162,12 @@ Style {
}
}
- /*! This property holds the tick mark labels
+ /*! This property holds the tick mark labels.
\since QtQuick.Controls.Styles 1.1
+ Every tickmark that should be drawn must be defined within this
+ component, so it is common to use a \l Repeater, for example.
+
You can access the handle width through the \c styleData.handleWidth property.
*/
property Component tickmarks: Repeater {
diff --git a/src/controls/doc/images/applicationwindow.png b/src/controls/doc/images/applicationwindow.png
index 90111f72..478cdda5 100644
--- a/src/controls/doc/images/applicationwindow.png
+++ b/src/controls/doc/images/applicationwindow.png
Binary files differ
diff --git a/src/controls/doc/images/qtquickcontrols-example-applicationtemplate.png b/src/controls/doc/images/qtquickcontrols-example-applicationtemplate.png
index b8e1faab..0c54d62b 100644
--- a/src/controls/doc/images/qtquickcontrols-example-applicationtemplate.png
+++ b/src/controls/doc/images/qtquickcontrols-example-applicationtemplate.png
Binary files differ
diff --git a/src/controls/doc/images/qtquickcontrols-example-basiclayouts.png b/src/controls/doc/images/qtquickcontrols-example-basiclayouts.png
index 94619bae..cfea7771 100644
--- a/src/controls/doc/images/qtquickcontrols-example-basiclayouts.png
+++ b/src/controls/doc/images/qtquickcontrols-example-basiclayouts.png
Binary files differ
diff --git a/src/controls/doc/images/qtquickcontrols-example-text.png b/src/controls/doc/images/qtquickcontrols-example-text.png
index 36aab4d5..94813412 100644
--- a/src/controls/doc/images/qtquickcontrols-example-text.png
+++ b/src/controls/doc/images/qtquickcontrols-example-text.png
Binary files differ
diff --git a/src/controls/doc/images/qtquickcontrols-example-touch.png b/src/controls/doc/images/qtquickcontrols-example-touch.png
index e33455bc..d4f26589 100644
--- a/src/controls/doc/images/qtquickcontrols-example-touch.png
+++ b/src/controls/doc/images/qtquickcontrols-example-touch.png
Binary files differ
diff --git a/src/controls/qquickmenu.cpp b/src/controls/qquickmenu.cpp
index aa316c9f..ddb25790 100644
--- a/src/controls/qquickmenu.cpp
+++ b/src/controls/qquickmenu.cpp
@@ -75,7 +75,7 @@ QT_BEGIN_NAMESPACE
as children. It also supports \l Instantiator objects as long as the insertion is
being done manually using \l insertItem().
- \code
+ \qml
Menu {
id: recentFilesMenu
@@ -97,7 +97,8 @@ QT_BEGIN_NAMESPACE
enabled: recentFilesModel.count > 0
onTriggered: recentFilesModel.clear()
}
- \endcode
+ }
+ \endqml
Note that in this case, the \c index parameter passed to \l insertItem() is relative
to the position of the \l Instantiator in the menu, as opposed to absolute position
diff --git a/src/dialogs/images/checkers.png b/src/dialogs/images/checkers.png
index 458d33de..72cb9f03 100644
--- a/src/dialogs/images/checkers.png
+++ b/src/dialogs/images/checkers.png
Binary files differ
diff --git a/src/dialogs/images/window_border.png b/src/dialogs/images/window_border.png
index 431af854..23c011d0 100644
--- a/src/dialogs/images/window_border.png
+++ b/src/dialogs/images/window_border.png
Binary files differ
diff --git a/src/extras/doc/images/circulargauge.png b/src/extras/doc/images/circulargauge.png
index f88aa01f..b3957fe0 100644
--- a/src/extras/doc/images/circulargauge.png
+++ b/src/extras/doc/images/circulargauge.png
Binary files differ
diff --git a/src/extras/doc/images/delaybutton-activated.png b/src/extras/doc/images/delaybutton-activated.png
index d78d7738..ddb48ba0 100644
--- a/src/extras/doc/images/delaybutton-activated.png
+++ b/src/extras/doc/images/delaybutton-activated.png
Binary files differ
diff --git a/src/extras/doc/images/delaybutton-progress.png b/src/extras/doc/images/delaybutton-progress.png
index 07a13256..211af3df 100644
--- a/src/extras/doc/images/delaybutton-progress.png
+++ b/src/extras/doc/images/delaybutton-progress.png
Binary files differ
diff --git a/src/extras/doc/images/delaybutton.png b/src/extras/doc/images/delaybutton.png
index 510abc0b..39d243dc 100644
--- a/src/extras/doc/images/delaybutton.png
+++ b/src/extras/doc/images/delaybutton.png
Binary files differ
diff --git a/src/extras/doc/images/dial.png b/src/extras/doc/images/dial.png
index d0e4d5ac..248b60bc 100644
--- a/src/extras/doc/images/dial.png
+++ b/src/extras/doc/images/dial.png
Binary files differ
diff --git a/src/extras/doc/images/piemenu.png b/src/extras/doc/images/piemenu.png
index 95078eae..442e341c 100644
--- a/src/extras/doc/images/piemenu.png
+++ b/src/extras/doc/images/piemenu.png
Binary files differ
diff --git a/src/extras/doc/images/statusindicator-active.png b/src/extras/doc/images/statusindicator-active.png
index c5ebc09d..4bd7864f 100644
--- a/src/extras/doc/images/statusindicator-active.png
+++ b/src/extras/doc/images/statusindicator-active.png
Binary files differ
diff --git a/src/extras/doc/images/statusindicator-green.png b/src/extras/doc/images/statusindicator-green.png
index 88dcb1ed..a9fbceb8 100644
--- a/src/extras/doc/images/statusindicator-green.png
+++ b/src/extras/doc/images/statusindicator-green.png
Binary files differ
diff --git a/src/extras/doc/images/statusindicator-inactive.png b/src/extras/doc/images/statusindicator-inactive.png
index 27488d5e..e5205979 100644
--- a/src/extras/doc/images/statusindicator-inactive.png
+++ b/src/extras/doc/images/statusindicator-inactive.png
Binary files differ
diff --git a/src/extras/doc/images/togglebutton-checked.png b/src/extras/doc/images/togglebutton-checked.png
index d40b382b..0891d493 100644
--- a/src/extras/doc/images/togglebutton-checked.png
+++ b/src/extras/doc/images/togglebutton-checked.png
Binary files differ
diff --git a/src/extras/doc/images/togglebutton-unchecked.png b/src/extras/doc/images/togglebutton-unchecked.png
index 7db5b84b..ee27c038 100644
--- a/src/extras/doc/images/togglebutton-unchecked.png
+++ b/src/extras/doc/images/togglebutton-unchecked.png
Binary files differ
diff --git a/tests/auto/activeFocusOnTab/data/images/testIcon.png b/tests/auto/activeFocusOnTab/data/images/testIcon.png
index 7ac5f840..82e429dd 100644
--- a/tests/auto/activeFocusOnTab/data/images/testIcon.png
+++ b/tests/auto/activeFocusOnTab/data/images/testIcon.png
Binary files differ
diff --git a/tests/manual/images/checkered.png b/tests/manual/images/checkered.png
index 12c8b54b..c34d5260 100644
--- a/tests/manual/images/checkered.png
+++ b/tests/manual/images/checkered.png
Binary files differ
diff --git a/tests/manual/images/testIcon.png b/tests/manual/images/testIcon.png
index 7ac5f840..82e429dd 100644
--- a/tests/manual/images/testIcon.png
+++ b/tests/manual/images/testIcon.png
Binary files differ