diff --git a/examples/quick/controls/gallery/content/Controls.qml b/examples/quick/controls/gallery/content/Controls.qml
index 310eee5956725bf5886a07ce8da6a4adfc86618a..c1403da58ead0202c36489b8c74ed0caa41ecf58 100644
--- a/examples/quick/controls/gallery/content/Controls.qml
+++ b/examples/quick/controls/gallery/content/Controls.qml
@@ -180,6 +180,14 @@ Item {
                 height: parent.height - group1.height - group2.height - 2 * parent.spacing
                 anchors { right: parent.right }
             }
+
+            MouseArea {
+                id: contextMenu
+                parent: area.viewport
+                anchors.fill: parent
+                acceptedButtons: Qt.RightButton
+                onPressed: editmenu.popup()
+            }
         }
     }
 }
diff --git a/examples/quick/controls/gallery/content/Layouts.qml b/examples/quick/controls/gallery/content/Layouts.qml
index 1251947ac0edc65dfc4f8a43cf66b14d0cbe280b..ac0a53a33dbb8d4440621e63645a8d94313fc8fc 100644
--- a/examples/quick/controls/gallery/content/Layouts.qml
+++ b/examples/quick/controls/gallery/content/Layouts.qml
@@ -76,7 +76,6 @@ Item {
             GridLayout {
                 id: gridLayout
                 anchors.fill: parent
-                anchors.margins: 4
                 rows: 3
                 flow: GridLayout.TopToBottom
 
diff --git a/examples/quick/controls/gallery/content/Styles.qml b/examples/quick/controls/gallery/content/Styles.qml
index 01b2646f49bfe3541569aa110f3c8a258c9ba560..97797f838f76474fbdfd885e0ca471dee36e9f3f 100644
--- a/examples/quick/controls/gallery/content/Styles.qml
+++ b/examples/quick/controls/gallery/content/Styles.qml
@@ -45,127 +45,132 @@
 import QtQuick 2.1
 import QtQuick.Controls 1.0
 import QtQuick.Controls.Styles 1.0
-import QtQuick.Dialogs 1.0
+import QtQuick.Layouts 1.0
 
 Item {
     id: root
     width: 300
     height: 200
 
-    ColorDialog {
-        id: colorDialog
-        color: "#afe"
-        property color last: "#afe"
-        onRejected: color = last
-        onVisibleChanged: if (visible) last = color
-    }
-
-    Column {
-        anchors.margins: 20
-        anchors.horizontalCenter: parent.horizontalCenter
+    property int columnWidth: 120
+    GridLayout {
+        rowSpacing: 12
+        columnSpacing: 30
         anchors.top: parent.top
-        spacing: 20
+        anchors.horizontalCenter: parent.horizontalCenter
+        anchors.margins: 30
 
-        Row {
-            spacing: 8
-            Button {
-                text: "Set color…"
-                style: ButtonStyle { }
-                onClicked: colorDialog.open()
-            }
-            Button {
-                text: "Push me"
-                style: ButtonStyle { }
-            }
-            Button {
-                text: "Push me"
-                style: buttonStyle
-            }
+        Button {
+            text: "Push me"
+            style: ButtonStyle { }
+            onClicked: colorDialog.open()
+            implicitWidth: columnWidth
         }
-        Row {
-            spacing: 8
-            TextField {
-                style: TextFieldStyle { }
-            }
-            TextField {
-                style: TextFieldStyle { }
-            }
-            TextField {
-                style: textfieldStyle
-            }
+        Button {
+            text: "Push me"
+            style: ButtonStyle { }
+            implicitWidth: columnWidth
+        }
+        Button {
+            text: "Push me"
+            style: buttonStyle
+            implicitWidth: columnWidth
         }
 
-        Row {
-            spacing: 8
-            Slider {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: SliderStyle { }
-            }
-            Slider {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: SliderStyle { }
-            }
-            Slider {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: sliderStyle
-            }
+        TextField {
+            Layout.row: 1
+            style: TextFieldStyle { }
+            implicitWidth: columnWidth
+        }
+        TextField {
+            style: TextFieldStyle { }
+            implicitWidth: columnWidth
+        }
+        TextField {
+            style: textfieldStyle
+            implicitWidth: columnWidth
         }
 
-        Row {
-            spacing: 8
-            ProgressBar {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: ProgressBarStyle{ }
-            }
-            ProgressBar {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: ProgressBarStyle{ }
-            }
-            ProgressBar {
-                value: 50
-                maximumValue: 100
-                width: 100
-                style: progressbarStyle
-            }
+        Slider {
+            Layout.row: 2
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: SliderStyle { }
+        }
+        Slider {
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: SliderStyle { }
+        }
+        Slider {
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: sliderStyle
         }
 
-        Row {
-            spacing: 8
-            CheckBox {
-                text: "CheckBox"
-                style: CheckBoxStyle{}
-            }
-            RadioButton {
-                style: RadioButtonStyle{}
-                text: "RadioButton"
-            }
+        ProgressBar {
+            Layout.row: 3
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: ProgressBarStyle{ }
+        }
+        ProgressBar {
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: ProgressBarStyle{ }
+        }
+        ProgressBar {
+            value: 50
+            maximumValue: 100
+            implicitWidth: columnWidth
+            style: progressbarStyle
+        }
 
-            ComboBox {
-                model: ["Paris", "Oslo", "New York"]
-                style: ComboBoxStyle{}
-            }
+        CheckBox {
+            text: "CheckBox"
+            style: CheckBoxStyle{}
+            Layout.row: 4
+            implicitWidth: columnWidth
+        }
+        RadioButton {
+            style: RadioButtonStyle{}
+            text: "RadioButton"
+            implicitWidth: columnWidth
         }
 
-        Row {
-            TabView {
-                width: 400
-                height: 30
-                Tab { title: "One" ; Item {}}
-                Tab { title: "Two" ; Item {}}
-                Tab { title: "Three" ; Item {}}
-                Tab { title: "Four" ; Item {}}
-                style: tabViewStyle
-            }
+        ComboBox {
+            model: ["Paris", "Oslo", "New York"]
+            style: ComboBoxStyle{}
+            implicitWidth: columnWidth
+        }
+
+        TabView {
+            Layout.row: 5
+            Layout.columnSpan: 3
+            Layout.fillWidth: true
+            implicitHeight: 30
+            Tab { title: "One" ; Item {}}
+            Tab { title: "Two" ; Item {}}
+            Tab { title: "Three" ; Item {}}
+            Tab { title: "Four" ; Item {}}
+            style: TabViewStyle {}
+        }
+
+        TabView {
+            Layout.row: 6
+            Layout.columnSpan: 3
+            Layout.fillWidth: true
+            implicitHeight: 30
+            Tab { title: "One" ; Item {}}
+            Tab { title: "Two" ; Item {}}
+            Tab { title: "Three" ; Item {}}
+            Tab { title: "Four" ; Item {}}
+            style: tabViewStyle
         }
     }
 
@@ -174,7 +179,7 @@ Item {
     property Component buttonStyle: ButtonStyle {
         background: Rectangle {
             implicitHeight: 20
-            implicitWidth: 100
+            implicitWidth: columnWidth
             color: control.pressed ? "darkGray" : "lightGray"
             antialiasing: true
             border.color: "gray"
@@ -184,7 +189,7 @@ Item {
 
     property Component textfieldStyle: TextFieldStyle {
         background: Rectangle {
-            implicitWidth: 100
+            implicitWidth: columnWidth
             implicitHeight: 20
             color: "#f0f0f0"
             antialiasing: true
@@ -205,7 +210,7 @@ Item {
 
         groove: Rectangle {
             height: 8
-            implicitWidth: 100
+            implicitWidth: columnWidth
             implicitHeight: 20
 
             antialiasing: true
@@ -217,7 +222,7 @@ Item {
 
     property Component progressbarStyle: ProgressBarStyle {
         background: Rectangle {
-            implicitWidth: 100
+            implicitWidth: columnWidth
             implicitHeight: 20
             color: "#f0f0f0"
             border.color: "gray"
@@ -225,7 +230,7 @@ Item {
             radius: height/2
         }
         progress: Rectangle {
-            implicitWidth: 100
+            implicitWidth: columnWidth
             implicitHeight: 20
             color: "#c0c0c0"
             border.color: "gray"
@@ -246,18 +251,18 @@ Item {
             }
             border.color: "#898989"
             Rectangle { anchors.fill: parent ; anchors.margins: 1 ; border.color: "white" ; color: "transparent" }
-
         }
         tab: Item {
-            implicitWidth: image.sourceSize.width
+            property int totalOverlap: tabOverlap * (control.count - 1)
+            implicitWidth: Math.min ((styleData.availableWidth + totalOverlap)/control.count - 4, image.sourceSize.width)
             implicitHeight: image.sourceSize.height
             BorderImage {
                 id: image
                 anchors.fill: parent
                 source: styleData.selected ? "../images/tab_selected.png" : "../images/tab.png"
-                border.left: 50
+                border.left: 30
                 smooth: false
-                border.right: 50
+                border.right: 30
             }
             Text {
                 text: styleData.title
diff --git a/examples/quick/controls/gallery/main.qml b/examples/quick/controls/gallery/main.qml
index e34858cd7b62a1ce1e43fa079a890fa9a9266f0c..86dddbe2f9014069679fae61f7c55dff90283bf2 100644
--- a/examples/quick/controls/gallery/main.qml
+++ b/examples/quick/controls/gallery/main.qml
@@ -51,10 +51,11 @@ import "content"
 ApplicationWindow {
     title: "Component Gallery"
 
-    width: 580
+    width: 600
     height: 400
     minimumHeight: 400
-    minimumWidth: 340
+    minimumWidth: 570
+
     property string loremIpsum:
             "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor "+
             "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor "+
@@ -69,150 +70,112 @@ ApplicationWindow {
         onAccepted: imageViewer.open(fileUrl)
     }
 
-    toolBar: ToolBar {
-        id: toolbar
-        RowLayout {
-            spacing: 2
-            anchors.verticalCenter: parent.verticalCenter
-            ToolButton {
-                iconSource: "images/window-new.png"
-                anchors.verticalCenter: parent.verticalCenter
-                onClicked: window1.visible = !window1.visible
-                Accessible.name: "New window"
-                tooltip: "Toggle visibility of the second window"
-            }
-            ToolButton {
-                action: openAction
-            }
-            ToolButton {
-                iconSource: "images/document-save-as.png"
-                anchors.verticalCenter: parent.verticalCenter
-                tooltip: "(Pretend to) save as..."
-            }
-        }
+    Action {
+        id: openAction
+        text: "&Open"
+        shortcut: "Ctrl+O"
+        iconSource: "images/document-open.png"
+        onTriggered: fileDialog.open()
+        tooltip: "open an image"
+    }
 
-        ChildWindow { id: window1 }
+    Action {
+        id: copyAction
+        text: "&Copy"
+        shortcut: "Ctrl+C"
+        iconName: "edit-copy"
+        enabled: (!!activeFocusItem && !!activeFocusItem["copy"])
+        onTriggered: activeFocusItem.copy()
+    }
 
-        Action {
-            id: openAction
-            text: "&Open"
-            shortcut: "Ctrl+O"
-            iconSource: "images/document-open.png"
-            onTriggered: fileDialog.open()
-            tooltip: "open an image"
-        }
+    Action {
+        id: cutAction
+        text: "Cu&t"
+        shortcut: "Ctrl+X"
+        iconName: "edit-cut"
+        enabled: (!!activeFocusItem && !!activeFocusItem["cut"])
+        onTriggered: activeFocusItem.cut()
+    }
+
+    Action {
+        id: pasteAction
+        text: "&Paste"
+        shortcut: "Ctrl+V"
+        iconName: "edit-paste"
+        enabled: (!!activeFocusItem && !!activeFocusItem["paste"])
+        onTriggered: activeFocusItem.paste()
+    }
+
+    ExclusiveGroup {
+        id: textFormatGroup
 
         Action {
-            id: copyAction
-            text: "&Copy"
-            shortcut: "Ctrl+C"
-            iconName: "edit-copy"
-            enabled: (!!activeFocusItem && !!activeFocusItem["copy"])
-            onTriggered: activeFocusItem.copy()
+            id: a1
+            text: "Align Left"
+            checkable: true
+            Component.onCompleted: checked = true
         }
 
         Action {
-            id: cutAction
-            text: "Cu&t"
-            shortcut: "Ctrl+X"
-            iconName: "edit-cut"
-            enabled: (!!activeFocusItem && !!activeFocusItem["cut"])
-            onTriggered: activeFocusItem.cut()
+            id: a2
+            text: "Center"
+            checkable: true
         }
 
         Action {
-            id: pasteAction
-            text: "&Paste"
-            shortcut: "Ctrl+V"
-            iconName: "edit-paste"
-            enabled: (!!activeFocusItem && !!activeFocusItem["paste"])
-            onTriggered: activeFocusItem.paste()
+            id: a3
+            text: "Align Right"
+            checkable: true
         }
+    }
 
-        ExclusiveGroup {
-            id: textFormatGroup
-
-            Action {
-                id: a1
-                text: "Align Left"
-                checkable: true
-                Component.onCompleted: checked = true
-            }
-
-            Action {
-                id: a2
-                text: "Center"
-                checkable: true
-            }
-
-            Action {
-                id: a3
-                text: "Align Right"
-                checkable: true
-            }
-        }
+    ChildWindow { id: window1 }
 
+    Menu {
+        id: editmenu
+        MenuItem { action: cutAction }
+        MenuItem { action: copyAction }
+        MenuItem { action: pasteAction }
+        MenuSeparator {}
         Menu {
-            id: editmenu
-            MenuItem { action: cutAction }
-            MenuItem { action: copyAction }
-            MenuItem { action: pasteAction }
-            MenuSeparator {}
-            Menu {
-                title: "Text Format"
-                MenuItem { action: a1 }
-                MenuItem { action: a2 }
-                MenuItem { action: a3 }
-                MenuSeparator { }
-                MenuItem { text: "Allow Hyphenation"; checkable: true }
-                MenuSeparator { }
-                Menu {
-                    title: "More Stuff"
-                    MenuItem { action: cutAction }
-                    MenuItem { action: copyAction }
-                    MenuItem { action: pasteAction }
-                    MenuSeparator { }
-                    Menu {
-                        title: "More Stuff"
-                        MenuItem { action: cutAction }
-                        MenuItem { action: copyAction }
-                        MenuItem { action: pasteAction }
-                        MenuSeparator { }
-                        Menu {
-                            title: "More Stuff"
-                            MenuItem { action: cutAction }
-                            MenuItem { action: copyAction }
-                            MenuItem { action: pasteAction }
-                            MenuSeparator { }
-                            Menu {
-                                title: "More Stuff"
-                                MenuItem { action: cutAction }
-                                MenuItem { action: copyAction }
-                                MenuItem { action: pasteAction }
-                            }
-                        }
-                    }
-                }
-            }
-            Menu {
-                title: "Font Style"
-                MenuItem { text: "Bold"; checkable: true }
-                MenuItem { text: "Italic"; checkable: true }
-                MenuItem { text: "Underline"; checkable: true }
-            }
+            title: "Text Format"
+            MenuItem { action: a1 }
+            MenuItem { action: a2 }
+            MenuItem { action: a3 }
+            MenuSeparator { }
+            MenuItem { text: "Allow Hyphenation"; checkable: true }
         }
-        MouseArea {
-            anchors.fill:  parent
-            acceptedButtons: Qt.RightButton
-            onPressed: editmenu.popup()
+        Menu {
+            title: "Font Style"
+            MenuItem { text: "Bold"; checkable: true }
+            MenuItem { text: "Italic"; checkable: true }
+            MenuItem { text: "Underline"; checkable: true }
         }
+    }
 
-        CheckBox {
-            id: enabledCheck
-            text: "Enabled"
-            checked: true
-            anchors.right: parent.right
-            anchors.verticalCenter: parent.verticalCenter
+    toolBar: ToolBar {
+        id: toolbar
+        RowLayout {
+            id: toolbarLayout
+            spacing: 0
+            width: parent.width
+            ToolButton {
+                iconSource: "images/window-new.png"
+                onClicked: window1.visible = !window1.visible
+                Accessible.name: "New window"
+                tooltip: "Toggle visibility of the second window"
+            }
+            ToolButton { action: openAction }
+            ToolButton {
+                iconSource: "images/document-save-as.png"
+                tooltip: "(Pretend to) save as..."
+            }
+            Item { Layout.fillWidth: true }
+            CheckBox {
+                id: enabledCheck
+                text: "Enabled"
+                checked: true
+            }
         }
     }
 
diff --git a/examples/quick/controls/splitview/main.qml b/examples/quick/controls/splitview/main.qml
index f035e64487bc672aabd95550a208b93c70bff987..4fa8504ab65c3fcab0eb9de471a76a0fc18d236a 100644
--- a/examples/quick/controls/splitview/main.qml
+++ b/examples/quick/controls/splitview/main.qml
@@ -61,14 +61,6 @@ ApplicationWindow {
             color: "lightsteelblue"
         }
 
-        Rectangle {
-            id: column1
-            width: 200
-            Layout.minimumWidth: 100
-            Layout.maximumWidth: 300
-            color: "lightsteelblue"
-        }
-
         SplitView {
             orientation: Qt.Vertical
             Layout.fillWidth: true
diff --git a/examples/quick/controls/text/qml/ToolBarSeparator.qml b/examples/quick/controls/text/qml/ToolBarSeparator.qml
new file mode 100644
index 0000000000000000000000000000000000000000..40a2bc580b079b51a6a80b0e929036d00b759d41
--- /dev/null
+++ b/examples/quick/controls/text/qml/ToolBarSeparator.qml
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Quick Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+**   * Redistributions of source code must retain the above copyright
+**     notice, this list of conditions and the following disclaimer.
+**   * Redistributions in binary form must reproduce the above copyright
+**     notice, this list of conditions and the following disclaimer in
+**     the documentation and/or other materials provided with the
+**     distribution.
+**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
+**     of its contributors may be used to endorse or promote products derived
+**     from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.1
+
+Item {
+    width: 8
+    anchors.top: parent.top
+    anchors.bottom: parent.bottom
+    anchors.margins: 6
+    Rectangle {
+        width: 1
+        height: parent.height
+        anchors.horizontalCenter: parent.horizontalCenter
+        color: "#22000000"
+    }
+    Rectangle {
+        width: 1
+        height: parent.height
+        anchors.horizontalCenterOffset: 1
+        anchors.horizontalCenter: parent.horizontalCenter
+        color: "#33ffffff"
+    }
+}
diff --git a/examples/quick/controls/text/qml/main.qml b/examples/quick/controls/text/qml/main.qml
index dd8b18489a4cc1dc207a6938c480161288759fa5..ec6bff7b06d7457bc9aa463c815877e8dd90b8da 100644
--- a/examples/quick/controls/text/qml/main.qml
+++ b/examples/quick/controls/text/qml/main.qml
@@ -42,6 +42,7 @@ import QtQuick 2.1
 import QtQuick.Controls 1.0
 import QtQuick.Layouts 1.0
 import QtQuick.Dialogs 1.0
+import QtQuick.Window 2.1
 import org.qtproject.example 1.0
 
 ApplicationWindow {
@@ -52,6 +53,37 @@ ApplicationWindow {
 
     title: document.documentTitle + " - Text Editor Example"
 
+    ApplicationWindow {
+        id: aboutBox
+
+        width: 280
+        height: 120
+        title: "About Text"
+
+        ColumnLayout {
+            anchors.fill: parent
+            anchors.margins: 8
+            Item {
+                Layout.fillWidth: true
+                Layout.fillHeight: true
+                Label {
+                    anchors.centerIn: parent
+                    horizontalAlignment: Text.AlignHCenter
+                    text: "This is a basic text editor \nwritten with Qt Quick Controls"
+                }
+            }
+            Button {
+                text: "Ok"
+                isDefault: true
+                anchors.horizontalCenter: parent.horizontalCenter
+                anchors.bottom: parent.bottom
+                onClicked: aboutBox.close()
+            }
+            Keys.onReturnPressed: aboutBox.close()
+            focus: true
+        }
+    }
+
     Action {
         id: cut
         text: "Cut"
@@ -142,12 +174,6 @@ ApplicationWindow {
         checkable: true
         checked: document.underline
     }
-    Action {
-        id: color
-        text: "&Color ..."
-        iconSource: "images/textcolor.png"
-        iconName: "format-text-color"
-    }
 
     FileDialog {
         id: file
@@ -185,13 +211,10 @@ ApplicationWindow {
             MenuItem { action: alignCenter }
             MenuItem { action: alignRight }
             MenuItem { action: alignJustify }
-            MenuSeparator {}
-            MenuItem { action: color }
         }
         Menu {
             title: "&Help"
-            MenuItem { text: "About..." }
-            MenuItem { text: "About Qt" }
+            MenuItem { text: "About..." ; onTriggered: aboutBox.show() }
         }
     }
 
@@ -200,19 +223,23 @@ ApplicationWindow {
         width: parent.width
         RowLayout {
             anchors.fill: parent
-            spacing: 1
+            spacing: 0
             ToolButton { action: fileOpen }
 
-            Item { width: 4 }
+            ToolBarSeparator {}
+
             ToolButton { action: copy }
             ToolButton { action: cut }
             ToolButton { action: paste }
-            Item { width: 4 }
+
+            ToolBarSeparator {}
+
             ToolButton { action: bold }
             ToolButton { action: italic }
             ToolButton { action: underline }
 
-            Item { width: 4 }
+            ToolBarSeparator {}
+
             ToolButton { action: alignLeft }
             ToolButton { action: alignCenter }
             ToolButton { action: alignRight }
@@ -220,28 +247,13 @@ ApplicationWindow {
             Item { Layout.fillWidth: true }
         }
     }
-    ToolBar {
-        id: secondaryToolBar
-        width: parent.width
-
-        RowLayout {
-            anchors.fill: parent
-            anchors.margins: 4
-            ComboBox {
-                model: document.defaultFontSizes
-                onCurrentTextChanged: document.fontSize = currentText
-                currentIndex: document.defaultFontSizes.indexOf(document.fontSize + "")
-            }
-            TextField { id: fontEdit; enabled: false }
-            Item { Layout.fillWidth: true }
-        }
-    }
 
     TextArea {
         Accessible.name: "document"
         id: textArea
+        frameVisible: false
         width: parent.width
-        anchors.top: secondaryToolBar.bottom
+        anchors.top: parent.top
         anchors.bottom: parent.bottom
         text: document.text
         textFormat: Qt.RichText
@@ -254,8 +266,5 @@ ApplicationWindow {
         cursorPosition: textArea.cursorPosition
         selectionStart: textArea.selectionStart
         selectionEnd: textArea.selectionEnd
-        onCurrentFontChanged: {
-            fontEdit.text = currentFont.family
-        }
     }
 }
diff --git a/examples/quick/controls/text/resources.qrc b/examples/quick/controls/text/resources.qrc
index e67fac6ad8b8d622ed4d87c678c79970ec3286e1..4d137ff797383d6933e3bd47fd142540489971a0 100644
--- a/examples/quick/controls/text/resources.qrc
+++ b/examples/quick/controls/text/resources.qrc
@@ -1,6 +1,7 @@
 <!DOCTYPE RCC><RCC version="1.0">
 <qresource prefix="/">
   <file>qml/main.qml</file>
+  <file>qml/ToolBarSeparator.qml</file>
   <file>qml/images/logo32.png</file>
   <file>qml/images/editcopy.png</file>
   <file>qml/images/editcut.png</file>
diff --git a/examples/quick/controls/text/src/documenthandler.cpp b/examples/quick/controls/text/src/documenthandler.cpp
index 48b6d033c394ebe22eedbafda570963f1c750b2e..81eb744b6e9b5d1b6cb2c9821ae76a5390610af5 100644
--- a/examples/quick/controls/text/src/documenthandler.cpp
+++ b/examples/quick/controls/text/src/documenthandler.cpp
@@ -166,13 +166,11 @@ void DocumentHandler::mergeFormatOnWordOrSelection(const QTextCharFormat &format
 void DocumentHandler::setSelectionStart(int position)
 {
     m_selectionStart = position;
-//    emit selectionStartChanged();
 }
 
 void DocumentHandler::setSelectionEnd(int position)
 {
     m_selectionEnd = position;
-//    emit selectionEndChanged();
 }
 
 void DocumentHandler::setAlignment(Qt::Alignment a)
@@ -188,10 +186,8 @@ void DocumentHandler::setAlignment(Qt::Alignment a)
 
 Qt::Alignment DocumentHandler::alignment() const
 {
-//    if (!m_doc || m_doc->isEmpty() || m_cursorPosition < 0)
-//        return Qt::AlignLeft;
     QTextCursor cursor = textCursor();
-    if (cursor.isNull() || cursor.blockNumber() == 0)
+    if (cursor.isNull())
         return Qt::AlignLeft;
     return textCursor().blockFormat().alignment();
 }
@@ -199,7 +195,7 @@ Qt::Alignment DocumentHandler::alignment() const
 bool DocumentHandler::bold() const
 {
     QTextCursor cursor = textCursor();
-    if (cursor.isNull() || cursor.blockNumber() == 0)
+    if (cursor.isNull())
         return false;
     return textCursor().charFormat().fontWeight() == QFont::Bold;
 }
@@ -207,7 +203,7 @@ bool DocumentHandler::bold() const
 bool DocumentHandler::italic() const
 {
     QTextCursor cursor = textCursor();
-    if (cursor.isNull() || cursor.blockNumber() == 0)
+    if (cursor.isNull())
         return false;
     return textCursor().charFormat().fontItalic();
 }
@@ -215,7 +211,7 @@ bool DocumentHandler::italic() const
 bool DocumentHandler::underline() const
 {
     QTextCursor cursor = textCursor();
-    if (cursor.isNull() || cursor.blockNumber() == 0)
+    if (cursor.isNull())
         return false;
     return textCursor().charFormat().fontUnderline();
 }
diff --git a/examples/quick/controls/text/text.pro b/examples/quick/controls/text/text.pro
index ce6d5f334cf3afe9d05248bb56a5e85819945d79..864ce0bb7c1161a045b75f74b02fa3abcf571152 100644
--- a/examples/quick/controls/text/text.pro
+++ b/examples/quick/controls/text/text.pro
@@ -7,7 +7,8 @@ qtHaveModule(widgets) {
 include(src/src.pri)
 
 OTHER_FILES += \
-    qml/main.qml
+    qml/main.qml \
+    qml/ToolBarSeparator.qml
 
 RESOURCES += \
     resources.qrc
diff --git a/examples/quick/controls/touch/content/ButtonPage.qml b/examples/quick/controls/touch/content/ButtonPage.qml
index 635ce3b9926d5e721de8405659e581120bf063c3..f431a52e89addef25517e35cb870203b5e9237cc 100644
--- a/examples/quick/controls/touch/content/ButtonPage.qml
+++ b/examples/quick/controls/touch/content/ButtonPage.qml
@@ -86,7 +86,7 @@ Item {
             anchors.margins: 20
             style: touchStyle
             text: "Dont press me"
-            onClicked: if (pageStack) pageStack.pop()
+            onClicked: if (stackView) stackView.pop()
         }
 
     }
diff --git a/examples/quick/controls/touch/main.qml b/examples/quick/controls/touch/main.qml
index 3058a0d3107eb2e6af03dc168a366609f5b9f2c6..9f93cb783eff0f2ff30a9bee7cc92089f741f77e 100644
--- a/examples/quick/controls/touch/main.qml
+++ b/examples/quick/controls/touch/main.qml
@@ -54,8 +54,8 @@ ApplicationWindow {
     // Implements back key navigation
     Keys.onReleased: {
         if (event.key === Qt.Key_Back) {
-            if (pageStack.depth > 1) {
-                pageStack.pop();
+            if (stackView.depth > 1) {
+                stackView.pop();
                 event.accepted = true;
             } else { Qt.quit(); }
         }
@@ -72,7 +72,7 @@ ApplicationWindow {
             width: opacity ? 60 : 0
             anchors.left: parent.left
             anchors.leftMargin: 20
-            opacity: pageStack.depth > 1 ? 1 : 0
+            opacity: stackView.depth > 1 ? 1 : 0
             anchors.verticalCenter: parent.verticalCenter
             antialiasing: true
             height: 60
@@ -87,7 +87,7 @@ ApplicationWindow {
                 id: backmouse
                 anchors.fill: parent
                 anchors.margins: -10
-                onClicked: pageStack.pop()
+                onClicked: stackView.pop()
             }
         }
 
@@ -126,7 +126,7 @@ ApplicationWindow {
     }
 
     StackView {
-        id: pageStack
+        id: stackView
         anchors.fill: parent
 
         initialItem: Item {
@@ -137,7 +137,7 @@ ApplicationWindow {
                 anchors.fill: parent
                 delegate: AndroidDelegate {
                     text: title
-                    onClicked: pageStack.push(Qt.resolvedUrl(page))
+                    onClicked: stackView.push(Qt.resolvedUrl(page))
                 }
             }
         }
diff --git a/src/controls/ComboBox.qml b/src/controls/ComboBox.qml
index 7b13bc8eb4a45239e03fcfd6ba511b62a3d54e2c..e5efb63cb6eac2766753978581f315840c936304 100644
--- a/src/controls/ComboBox.qml
+++ b/src/controls/ComboBox.qml
@@ -80,13 +80,19 @@ import QtQuick.Controls.Private 1.0
 Control {
     id: comboBox
 
-    /*! The model to populate the ComboBox from. */
+    /*! \qmlproperty model ComboBox::model
+        The model to populate the ComboBox from. */
     property alias model: popupItems.model
+
+    /*! The model role used for populating the ComboBox. */
     property string textRole: ""
 
-    /*! The index of the currently selected item in the ComboBox. */
+    /*! \qmlproperty int ComboBox::currentIndex
+        The index of the currently selected item in the ComboBox. */
     property alias currentIndex: popup.__selectedIndex
-    /*! The text of the currently selected item in the ComboBox. */
+
+    /*! \qmlproperty string ComboBox::currentText
+        The text of the currently selected item in the ComboBox. */
     readonly property alias currentText: popup.selectedText
 
     /*! This property specifies whether the combobox should gain active focus when pressed.
diff --git a/src/controls/GroupBox.qml b/src/controls/GroupBox.qml
index 9bf1c0cc5bdb88039e29fe4eafb0954d0264dbb7..4aa6a50f4463e511301acddc2324a24ffcd7dc2d 100644
--- a/src/controls/GroupBox.qml
+++ b/src/controls/GroupBox.qml
@@ -159,7 +159,8 @@ Item {
     /*! \internal */
     property alias __style: styleLoader.item
 
-    implicitWidth: (!anchors.fill ? container.calcWidth() : 0) + loader.leftMargin + loader.rightMargin
+    implicitWidth: Math.max((!anchors.fill ? container.calcWidth() : 0) + loader.leftMargin + loader.rightMargin,
+                            sizeHint.implicitWidth + (checkable ? 24 : 6))
     implicitHeight: (!anchors.fill ? container.calcHeight() : 0) + loader.topMargin + loader.bottomMargin
 
     Layout.minimumWidth: implicitWidth
@@ -181,6 +182,7 @@ Item {
             property int rightMargin: __style ? __style.padding.right : 0
             sourceComponent: styleLoader.item ? styleLoader.item.panel : null
             onLoaded: item.z = -1
+            Text { id: sizeHint ; visible: false ; text: title }
             Loader {
                 id: styleLoader
                 property alias __control: groupbox
diff --git a/src/controls/ProgressBar.qml b/src/controls/ProgressBar.qml
index 33e215142913eafe47e08b90bafae4e0a1bfb259..6d9f8be13363c0a759ab6cfab44c47414e8745fb 100644
--- a/src/controls/ProgressBar.qml
+++ b/src/controls/ProgressBar.qml
@@ -123,7 +123,7 @@ Control {
     implicitWidth:(__panel ? __panel.implicitWidth : 0)
     implicitHeight: (__panel ? __panel.implicitHeight: 0)
 
-    /* \internal */
+    /*! \internal */
     function setValue(v) {
         var newval = parseFloat(v)
         if (!isNaN(newval)) {
diff --git a/src/controls/ScrollView.qml b/src/controls/ScrollView.qml
index 3262648ebac3f93a44aa6cf1cbb90376b37ffe71..0af69a0ded9569f195975f9525d68fdab5e44c1f 100644
--- a/src/controls/ScrollView.qml
+++ b/src/controls/ScrollView.qml
@@ -146,8 +146,8 @@ FocusScope {
     /*! \internal */
     property Component style: Qt.createComponent(Settings.style + "/ScrollViewStyle.qml", root)
 
-    /* \internal */
-    property PaddedStyle __style: styleLoader.item
+    /*! \internal */
+    property Style __style: styleLoader.item
 
     activeFocusOnTab: true
 
diff --git a/src/controls/Slider.qml b/src/controls/Slider.qml
index 711c449bfeb8c5a3452f1d0fd179dcc0a10d6e67..b31d4f78d4aa1959a606fb56f245663b4c3ec70d 100644
--- a/src/controls/Slider.qml
+++ b/src/controls/Slider.qml
@@ -174,19 +174,6 @@ Control {
     Accessible.role: Accessible.Slider
     Accessible.name: value
 
-    /*!
-        \qmlmethod Slider::formatValue
-
-        This method returns the current slider value in a way that is more suitable
-        for user display, such as the \l value rounded to only two decimal places.
-
-        By default this function returns the nearest \c int value.
-    */
-
-    function formatValue(v) {
-        return Math.round(v);
-    }
-
     style: Qt.createComponent(Settings.style + "/SliderStyle.qml", slider)
 
     Keys.onRightPressed: value += (maximumValue - minimumValue)/10.0
diff --git a/src/controls/SpinBox.qml b/src/controls/SpinBox.qml
index 4db67c8d25bf44b5f0f1a91bd2090c6608f795e3..68f97e0a4ceb831e631a79b560b65f9aa3146e9e 100644
--- a/src/controls/SpinBox.qml
+++ b/src/controls/SpinBox.qml
@@ -75,6 +75,8 @@ Control {
     id: spinbox
 
     /*!
+        \qmlproperty real SpinBox::value
+
         The value of this SpinBox, clamped to \l minimumValue and \l maximumValue.
 
         The default value is \c{0.0}.
@@ -82,6 +84,8 @@ Control {
     property alias value: validator.value
 
     /*!
+        \qmlproperty real SpinBox::minimumValue
+
         The minimum value of the SpinBox range.
         The \l value is clamped to this value.
 
@@ -90,6 +94,8 @@ Control {
     property alias minimumValue: validator.minimumValue
 
     /*!
+        \qmlproperty real SpinBox::maximumValue
+
         The maximum value of the SpinBox range.
         The \l value is clamped to this value. If maximumValue is smaller than
         \l minimumValue, \l minimumValue will be enforced.
@@ -98,7 +104,7 @@ Control {
     */
     property alias maximumValue: validator.maximumValue
 
-    /*!
+    /*! \qmlproperty real SpinBox::stepSize
         The amount by which the \l value is incremented/decremented when a
         spin button is pressed.
 
@@ -106,13 +112,16 @@ Control {
     */
     property alias stepSize: validator.stepSize
 
-    /*! The suffix for the value. I.e "cm" */
+    /*! \qmlproperty string SpinBox::suffix
+        The suffix for the value. I.e "cm" */
     property alias suffix: validator.suffix
 
-    /*! The prefix for the value. I.e "$" */
+    /*! \qmlproperty string SpinBox::prefix
+        The prefix for the value. I.e "$" */
     property alias prefix: validator.prefix
 
-    /*! This property indicates the amount of decimals.
+    /*! \qmlproperty int SpinBox::decimals
+      This property indicates the amount of decimals.
       Note that if you enter more decimals than specified, they will
       be truncated to the specified amount of decimal places.
       The default value is \c{0}.
@@ -157,7 +166,7 @@ Control {
         readonly property alias downPressed: mouseDown.pressed
         readonly property alias downHovered: mouseDown.containsMouse
 
-        readonly property alias containsMouse: mouseArea.containsMouse
+        readonly property alias hovered: mouseArea.containsMouse
 
         readonly property int contentHeight: Math.max(input.implicitHeight, 16)
         readonly property int contentWidth: Math.max(maxSizeHint.implicitWidth, minSizeHint.implicitWidth)
diff --git a/src/controls/SplitView.qml b/src/controls/SplitView.qml
index fc43874ea79d1496cfd4bca060d5e12164c1a213..aba7809f8acaf6842a5879fd2dc65f7d7a56e6f0 100644
--- a/src/controls/SplitView.qml
+++ b/src/controls/SplitView.qml
@@ -53,13 +53,14 @@ import QtQuick.Controls.Private 1.0 as Private
     SplitView is a control that lays out items horizontally or
     vertically with a draggable splitter between each item.
 
-    There will always be one (and only one) item in the SplitView that has \l {Layout}{Layout.fillWidth}
-    set to \c true (or Layout.fillHeight, if orientation is Qt.Vertical). This means that the
+    There will always be one (and only one) item in the SplitView that has \l{Layout::fillWidth}{Layout.fillWidth}
+    set to \c true (or \l{Layout::fillHeight}{Layout.fillHeight}, if orientation is Qt.Vertical). This means that the
     item will get all leftover space when other items have been laid out.
     By default, the last visible child of the SplitView will have this set, but
     it can be changed by explicitly setting fillWidth to \c true on another item.
     As the fillWidth item will automatically be resized to fit the extra space, explicit assignments
-    to width and height will be ignored (but Layout.minimumWidth and Layout.maximumWidth will still be respected).
+    to width and height will be ignored (but \l{Layout::minimumWidth}{Layout.minimumWidth} and
+    \l{Layout::maximumWidth}{Layout.maximumWidth} will still be respected).
 
     A handle can belong to the item either on the left or top side, or on the right or bottom side:
     \list
@@ -69,9 +70,19 @@ import QtQuick.Controls.Private 1.0 as Private
 
     This will again control which item gets resized when the user drags a handle,
     and which handle gets hidden when an item is told to hide.
-    SplitView supports setting attached \l Layout properties on child items, which means that you
-    can control minimumWidth, minimumHeight, maximumWidth and maximumHeight (in addition
-    to fillWidth/fillHeight) for each child.
+
+    SplitView supports setting attached Layout properties on child items, which
+    means that you can set the following attached properties for each child:
+    \list
+        \li \l{Layout::minimumWidth}{Layout.minimumWidth}
+        \li \l{Layout::minimumHeight}{Layout.minimumHeight}
+        \li \l{Layout::preferredWidth}{Layout.preferredWidth}
+        \li \l{Layout::preferredHeight}{Layout.preferredHeight}
+        \li \l{Layout::maximumWidth}{Layout.maximumWidth}
+        \li \l{Layout::maximumHeight}{Layout.maximumHeight}
+        \li \l{Layout::fillWidth}{Layout.fillWidth} (\c true for only one child)
+        \li \l{Layout::fillHeight}{Layout.fillHeight} (\c true for only one child)
+    \endlist
 
     Example:
 
@@ -117,14 +128,17 @@ Item {
     /*!
         This property holds the delegate that will be instantiated between each
         child item. Inside the delegate the following properties are available:
-        \list
-        \li int \c handleIndex - specifies the index of the splitter handle. The handle
-                                 between the first and the second item will get index 0,
-                                 the next handle index 1 etc.
-        \li bool \c pressed: the handle is being pressed.
-        \li bool \c resizing: the handle is being dragged.
-        \endlist
-    */
+
+        \table
+            \li readonly property bool styleData.index - Specifies the index of the splitter handle. The handle
+                                                         between the first and the second item will get index 0,
+                                                         the next handle index 1 etc.
+            \li readonly property bool styleData.hovered - The handle is being hovered.
+            \li readonly property bool styleData.pressed - The handle is being pressed.
+            \li readonly property bool styleData.resizing - The handle is being dragged.
+        \endtable
+
+*/
     property Component handleDelegate: Rectangle {
         width: 1
         height: 1
@@ -176,7 +190,7 @@ Item {
                     continue
 
                 if (splitterItems.children.length > 0)
-                    handleLoader.createObject(splitterHandles, {"handleIndex":splitterItems.children.length - 1})
+                    handleLoader.createObject(splitterHandles, {"__handleIndex":splitterItems.children.length - 1})
                 item.parent = splitterItems
                 i-- // item was removed from list
                 item.widthChanged.connect(d.updateLayout)
@@ -319,18 +333,21 @@ Item {
         id: handleLoader
         Loader {
             id: itemHandle
-            property int handleIndex: -1
-            property alias containsMouse: mouseArea.containsMouse
-            property alias pressed: mouseArea.pressed
-            property bool resizing: mouseArea.drag.active
 
-            visible: __items[handleIndex + ((d.fillIndex >= handleIndex) ? 0 : 1)].visible
+            property int __handleIndex: -1
+            property QtObject styleData: QtObject {
+                readonly property int index: __handleIndex
+                readonly property alias hovered: mouseArea.containsMouse
+                readonly property alias pressed: mouseArea.pressed
+                readonly property bool resizing: mouseArea.drag.active
+                onResizingChanged: root.resizing = resizing
+            }
+            visible: __items[__handleIndex + ((d.fillIndex >= __handleIndex) ? 0 : 1)].visible
             sourceComponent: handleDelegate
             onWidthChanged: d.updateLayout()
             onHeightChanged: d.updateLayout()
             onXChanged: moveHandle()
             onYChanged: moveHandle()
-            onResizingChanged: root.resizing = resizing
 
             MouseArea {
                 id: mouseArea
@@ -357,12 +374,12 @@ Item {
                 var leftEdge, rightEdge, newWidth, leftStopX, rightStopX
                 var i
 
-                if (d.fillIndex > handleIndex) {
+                if (d.fillIndex > __handleIndex) {
                     // Resize item to the left.
                     // Ensure that the handle is not crossing other handles. So
                     // find the first visible handle to the left to determine the left edge:
                     leftEdge = 0
-                    for (i=handleIndex-1; i>=0; --i) {
+                    for (i=__handleIndex-1; i>=0; --i) {
                         leftHandle = __handles[i]
                         if (leftHandle.visible) {
                             leftEdge = leftHandle[d.offset] + leftHandle[d.size]
@@ -371,13 +388,13 @@ Item {
                     }
 
                     // Ensure: leftStopX >= itemHandle[d.offset] >= rightStopX
-                    var min = d.accumulatedSize(handleIndex+1, __items.length, true)
+                    var min = d.accumulatedSize(__handleIndex+1, __items.length, true)
                     rightStopX = root[d.size] - min - itemHandle[d.size]
                     leftStopX = Math.max(leftEdge, itemHandle[d.offset])
                     itemHandle[d.offset] = Math.min(rightStopX, Math.max(leftStopX, itemHandle[d.offset]))
 
                     newWidth = itemHandle[d.offset] - leftEdge
-                    leftItem = __items[handleIndex]
+                    leftItem = __items[__handleIndex]
                     // The next line will trigger 'updateLayout':
                     leftItem[d.size] = newWidth
                 } else {
@@ -385,7 +402,7 @@ Item {
                     // Ensure that the handle is not crossing other handles. So
                     // find the first visible handle to the right to determine the right edge:
                     rightEdge = root[d.size]
-                    for (i=handleIndex+1; i<__handles.length; ++i) {
+                    for (i=__handleIndex+1; i<__handles.length; ++i) {
                         rightHandle = __handles[i]
                         if (rightHandle.visible) {
                             rightEdge = rightHandle[d.offset]
@@ -394,13 +411,13 @@ Item {
                     }
 
                     // Ensure: leftStopX <= itemHandle[d.offset] <= rightStopX
-                    min = d.accumulatedSize(0, handleIndex+1, true)
+                    min = d.accumulatedSize(0, __handleIndex+1, true)
                     leftStopX = min - itemHandle[d.size]
                     rightStopX = Math.min((rightEdge - itemHandle[d.size]), itemHandle[d.offset])
                     itemHandle[d.offset] = Math.max(leftStopX, Math.min(itemHandle[d.offset], rightStopX))
 
                     newWidth = rightEdge - (itemHandle[d.offset] + itemHandle[d.size])
-                    rightItem = __items[handleIndex+1]
+                    rightItem = __items[__handleIndex+1]
                     // The next line will trigger 'updateLayout':
                     rightItem[d.size] = newWidth
                 }
diff --git a/src/controls/StackView.qml b/src/controls/StackView.qml
index c7b2366f2eb6b53a4115a62748ddc92a1fad0641..be1ddf062ac99d3a577553779497d1fe46ffb04e 100644
--- a/src/controls/StackView.qml
+++ b/src/controls/StackView.qml
@@ -65,6 +65,8 @@ import "Private/StackView.js" as JSArray
     The stack can then be used by invoking its navigation methods. The first item
     to show in the StackView is commonly loaded assigning it to \l initialItem.
 
+    \note Items pushed onto the stack view have \l{Supported Attached Properties}{Stack attached properties}.
+
     \section1 Basic Navigation
     There are three primary navigation operations in StackView: push(), pop() and
     replace (you replace by specifying argument \c replace to push()).
@@ -435,6 +437,15 @@ import "Private/StackView.js" as JSArray
         }
     }
     \endqml
+
+    \section1 Supported Attached Properties
+
+    Items in a StackView support these attached properties:
+    \list
+        \li \l{Stack::index}{Stack.index} - Contains the index of the item inside the StackView
+        \li \l{Stack::view}{Stack.view} - Contains the StackView the item is in
+        \li \l{Stack::status}{Stack.status} - Contains the status of the item
+    \endlist
 */
 
 Item {
@@ -797,7 +808,7 @@ Item {
         }
 
         element.item.Stack.__index = element.index
-        element.item.Stack.__stackView = root
+        element.item.Stack.__view = root
         // Let item fill all available space by default:
         element.item.width = Qt.binding(function() { return root.width })
         element.item.height = Qt.binding(function() { return root.height })
@@ -842,7 +853,7 @@ Item {
             // might reenter on pop if pushed several times:
             item.visible = false
             __setStatus(item, Stack.Inactive)
-            item.Stack.__stackView = null
+            item.Stack.__view = null
             item.Stack.__index = -1
             if (element.originalParent)
                 item.parent = element.originalParent
@@ -871,7 +882,7 @@ Item {
 
         // Since an item can be pushed several times, we need to update its properties:
         enterItem.parent = root
-        enterItem.Stack.__stackView = root
+        enterItem.Stack.__view = root
         enterItem.Stack.__index = transition.inElement.index
         __currentItem = enterItem
 
diff --git a/src/controls/StatusBar.qml b/src/controls/StatusBar.qml
index 13edc5eff4bcfef2d4efeaac0fc8b44423c73c1b..068b6b2002fd31dd9097d91b1a2d05f9d42f183b 100644
--- a/src/controls/StatusBar.qml
+++ b/src/controls/StatusBar.qml
@@ -52,14 +52,20 @@ import QtQuick.Controls.Private 1.0
     The common way of using StatusBar is in relation to \l ApplicationWindow.
 
     Note that the StatusBar does not provide a layout of its own, but requires
-    you to position its contents, for instance by creating a \l Row.
+    you to position its contents, for instance by creating a \l RowLayout.
+
+    If only a single item is used within the StatusBar, it will resize to fit the implicitHeight
+    of its contained item. This makes it particularly suitable for use together with layouts.
+    Otherwise the height is platform dependent.
 
     \code
+    import QtQuick.Controls 1.0
+    import QtQuick.Layouts 1.0
+
     ApplicationWindow {
         statusBar: StatusBar {
-            Label {
-                text: "Read Only"
-                anchors.centerIn: parent
+            RowLayout {
+                Label { text: "Read Only" }
             }
         }
     }
@@ -68,16 +74,68 @@ import QtQuick.Controls.Private 1.0
 
 Item {
     id: statusbar
+
     activeFocusOnTab: false
     Accessible.role: Accessible.StatusBar
+
     width: parent ? parent.width : implicitWidth
-    implicitWidth: loader.item.implicitHeight
-    implicitHeight: loader.item ? loader.item.implicitHeight : 0
+    implicitWidth:  loader.item ? loader.item.implicitWidth : 200
+    implicitHeight: Math.max(container.topMargin + container.bottomMargin + container.calcHeight(),
+                             loader.item ? loader.item.implicitHeight : 19)
+
+    /*! \internal */
     property Component style: Qt.createComponent(Settings.style + "/StatusBarStyle.qml", statusbar)
-    Loader {
-        id: loader
-        anchors.fill: parent
-        sourceComponent: style
-        property var __control: statusbar
-    }
+
+    /*! \internal */
+    property alias __style: styleLoader.item
+
+    /*! \internal */
+    default property alias __content: container.data
+
+    /*!
+        \qmlproperty Item StatusBar::contentItem
+
+        This property holds the content Item of the status bar.
+
+        Items declared as children of a StatusBar are automatically parented to the StatusBar's contentItem.
+        Items created dynamically need to be explicitly parented to the contentItem:
+
+        \note The implicit size of the StatusBar is calculated based on the size of its content. If you want to anchor
+        items inside the status bar, you must specify an explicit width and height on the StatusBar itself.
+    */
+    readonly property alias contentItem: container
+
+    data: [
+        Loader {
+            id: loader
+            anchors.fill: parent
+            sourceComponent: styleLoader.item ? styleLoader.item.panel : null
+            onLoaded: item.z = -1
+            Loader {
+                id: styleLoader
+                property alias __control: statusbar
+                sourceComponent: style
+            }
+        },
+        Item {
+            id: container
+            z: 1
+            focus: true
+            anchors.fill: parent
+
+            anchors.topMargin: topMargin
+            anchors.leftMargin: leftMargin
+            anchors.rightMargin: rightMargin
+            anchors.bottomMargin: bottomMargin
+
+            property int topMargin: __style ? __style.padding.top : 0
+            property int bottomMargin: __style ? __style.padding.bottom : 0
+            property int leftMargin: __style ? __style.padding.left : 0
+            property int rightMargin: __style ? __style.padding.right : 0
+
+            property Item layoutItem: container.children.length === 1 ? container.children[0] : null
+            function calcHeight () { return (layoutItem ? (layoutItem.implicitHeight || layoutItem.height) +
+                                                          (layoutItem.anchors.fill ? layoutItem.anchors.topMargin +
+                                                                                     layoutItem.anchors.bottomMargin : 0) : loader.item ? loader.item.implicitHeight : 0) }
+        }]
 }
diff --git a/src/controls/TabView.qml b/src/controls/TabView.qml
index d292ce05e307a16856b63cbe27720873009b7fe2..3273f8259fba95f9536b259a19d5d77c28e44fd4 100644
--- a/src/controls/TabView.qml
+++ b/src/controls/TabView.qml
@@ -133,7 +133,7 @@ FocusScope {
     }
 
     /*! Returns the \l Tab item at \a index. */
-    function tabAt(index) {
+    function getTab(index) {
         return __tabs.get(index).tab
     }
 
diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml
index 4cde5d3e37193c550243d9043f2db9f2f2397689..d0417bfa97be5d318de5ab5cc4db954812f2fe69 100644
--- a/src/controls/TableView.qml
+++ b/src/controls/TableView.qml
@@ -161,12 +161,6 @@ ScrollView {
     */
     property Component rowDelegate: __style ? __style.rowDelegate : null
 
-    /*! \qmlproperty color TableView::backgroundColor
-
-        This property sets the background color of the viewport.
-        The default value is the base color of the SystemPalette. */
-    property alias backgroundColor: colorRect.color
-
     /*! This property defines a delegate to draw a header.
 
     In the header delegate you have access to the following special properties:
@@ -200,9 +194,8 @@ ScrollView {
     */
     property int sortIndicatorOrder: Qt.AscendingOrder
 
-    /*! \qmlproperty list<TableViewColumn> TableView::columns
-    This property contains the TableViewColumn items */
-    default property alias columns: listView.columnheader
+    /*! \internal */
+    default property alias __columns: root.data
 
     /*! \qmlproperty Component TableView::contentHeader
     This is the content header of the TableView */
@@ -216,8 +209,9 @@ ScrollView {
     The current number of rows */
     readonly property alias rowCount: listView.count
 
-    /*! The current number of columns */
-    readonly property int columnCount: columns.length
+    /*! \qmlproperty int TableView::columnCount
+    The current number of columns */
+    readonly property alias columnCount: columnModel.count
 
     /*! \qmlproperty string TableView::section.property
         \qmlproperty enumeration TableView::section.criteria
@@ -288,6 +282,73 @@ ScrollView {
         return listView.indexAt(obj.x, obj.y)
     }
 
+    /*! Adds a \a column and returns the added column.
+
+        The \a column argument can be an instance of TableViewColumn,
+        or a Component. The component has to contain a TableViewColumn.
+        Otherwise  \c null is returned.
+    */
+    function addColumn(column) {
+        return insertColumn(columnCount, column)
+    }
+
+    /*! Inserts a \a column at the given \a index and returns the inserted column.
+
+        The \a column argument can be an instance of TableViewColumn,
+        or a Component. The component has to contain a TableViewColumn.
+        Otherwise  \c null is returned.
+    */
+    function insertColumn(index, column) {
+        var object = column
+        if (typeof column['createObject'] === 'function')
+            object = column.createObject(root)
+
+        if (index >= 0 && index <= columnCount && object.Accessible.role === Accessible.ColumnHeader) {
+            columnModel.insert(index, {columnItem: object})
+            return object
+        }
+
+        if (object !== column)
+            object.destroy()
+        console.warn("TableView::insertColumn(): invalid argument")
+        return null
+    }
+
+    /*! Removes and destroys a column at the given \a index. */
+    function removeColumn(index) {
+        if (index < 0 || index >= columnCount) {
+            console.warn("TableView::removeColumn(): invalid argument")
+            return
+        }
+        var column = columnModel.get(index).columnItem
+        columnModel.remove(index, 1)
+        column.destroy()
+    }
+
+    /*! Moves a column \a from index \a to another. */
+    function moveColumn(from, to) {
+        if (from < 0 || from >= columnCount || to < 0 || to >= columnCount) {
+            console.warn("TableView::moveColumn(): invalid argument")
+            return
+        }
+        columnModel.move(from, to, 1)
+    }
+
+    /*! Returns the column at the given \a index
+        or \c null if the \a index is invalid. */
+    function getColumn(index) {
+        if (index < 0 || index >= columnCount)
+            return null
+        return columnModel.get(index).columnItem
+    }
+
+    Component.onCompleted: {
+        for (var i = 0; i < __columns.length; ++i) {
+            var column = __columns[i]
+            if (column.Accessible.role === Accessible.ColumnHeader)
+                addColumn(column)
+        }
+    }
 
     style: Qt.createComponent(Settings.style + "/TableViewStyle.qml", root)
 
@@ -337,7 +398,7 @@ ScrollView {
             id: colorRect
             parent: viewport
             anchors.fill: parent
-            color: palette.base
+            color: __style ? __style.backgroundColor : palette.base
             z: -1
         }
 
@@ -429,7 +490,10 @@ ScrollView {
             }
         }
 
-        property list<TableViewColumn> columnheader
+        ListModel {
+            id: columnModel
+        }
+
         highlightFollowsCurrentItem: true
         model: root.model
 
@@ -483,7 +547,7 @@ ScrollView {
                 height: parent.height
                 Repeater {
                     id: repeater
-                    model: root.columnCount
+                    model: columnModel
 
                     Loader {
                         id: itemDelegateLoader
@@ -509,7 +573,7 @@ ScrollView {
                             readonly property string role: __column.role
                         }
 
-                        readonly property TableViewColumn __column: columns[index]
+                        readonly property TableViewColumn __column: columnItem
                         readonly property bool __hasModelRole: styleData.role && itemModel.hasOwnProperty(styleData.role)
                         readonly property bool __hasModelDataRole: styleData.role && modelData && modelData.hasOwnProperty(styleData.role)
                     }
@@ -548,12 +612,12 @@ ScrollView {
                     property int targetIndex: -1
                     property int dragIndex: -1
 
-                    model: columnCount
+                    model: columnModel
 
                     delegate: Item {
                         z:-index
-                        width: columns[index].width
-                        visible: columns[index].visible
+                        width: modelData.width
+                        visible: modelData.visible
                         height: headerVisible ? headerStyle.height : 0
 
                         Loader {
@@ -562,7 +626,7 @@ ScrollView {
                             anchors.left: parent.left
                             anchors.right: parent.right
                             property QtObject styleData: QtObject {
-                                readonly property string value: columns[index].title
+                                readonly property string value: modelData.title
                                 readonly property bool pressed: headerClickArea.pressed
                                 readonly property bool containsMouse: headerClickArea.containsMouse
                                 readonly property int column: index
@@ -608,13 +672,7 @@ ScrollView {
 
                             onReleased: {
                                 if (repeater.targetIndex >= 0 && repeater.targetIndex != index ) {
-                                    // Rearrange the header sections
-                                    var items = new Array
-                                    for (var i = 0 ; i< columnCount ; ++i)
-                                        items.push(columns[i])
-                                    items.splice(index, 1);
-                                    items.splice(repeater.targetIndex, 0, columns[index]);
-                                    columns = items
+                                    columnModel.move(index, repeater.targetIndex, 1)
                                     if (sortIndicatorColumn == index)
                                         sortIndicatorColumn = repeater.targetIndex
                                 }
@@ -628,14 +686,14 @@ ScrollView {
                         Loader {
                             id: draghandle
                             property QtObject styleData: QtObject{
-                                readonly property string value: columns[index].title
+                                readonly property string value: modelData.title
                                 readonly property bool pressed: headerClickArea.pressed
                                 readonly property bool containsMouse: headerClickArea.containsMouse
                                 readonly property int column: index
                             }
 
                             parent: tableHeader
-                            width: columns[index].width
+                            width: modelData.width
                             height: parent.height
                             sourceComponent: root.headerDelegate
                             visible: headerClickArea.pressed
@@ -651,8 +709,8 @@ ScrollView {
                             width: 16 ; height: parent.height
                             anchors.right: parent.right
                             onPositionChanged:  {
-                                var newHeaderWidth = columns[index].width + (mouseX - offset)
-                                columns[index].width = Math.max(minimumSize, newHeaderWidth)
+                                var newHeaderWidth = modelData.width + (mouseX - offset)
+                                modelData.width = Math.max(minimumSize, newHeaderWidth)
                             }
                             property bool found:false
 
@@ -667,7 +725,7 @@ ScrollView {
                                         minWidth = Math.max(minWidth, item.children[1].children[index].children[0].implicitWidth)
                                 }
                                 if (minWidth)
-                                    columns[index].width = minWidth
+                                    modelData.width = minWidth
                             }
                             onPressedChanged: if (pressed) offset=mouseX
                             cursorShape: Qt.SplitHCursor
diff --git a/src/controls/TableViewColumn.qml b/src/controls/TableViewColumn.qml
index 919f30de455787582dae7d93f06197f8ccc9df7c..2c629dfbdf9f7fc078b31a8eadafd71bba3ac054 100644
--- a/src/controls/TableViewColumn.qml
+++ b/src/controls/TableViewColumn.qml
@@ -89,4 +89,6 @@ QtObject {
     /*! The delegate of the column. This can be used to set the
     \l TableView::itemDelegate for a specific column. */
     property Component delegate
+
+    Accessible.role: Accessible.ColumnHeader
 }
diff --git a/src/controls/TextArea.qml b/src/controls/TextArea.qml
index 6dab90fd32d7cbbd5fc1e2f38c16c36261e55580..43cc347ce41c11a5f81a0583bfcca1b9a7e35c9a 100644
--- a/src/controls/TextArea.qml
+++ b/src/controls/TextArea.qml
@@ -621,7 +621,7 @@ ScrollView {
     Accessible.role: Accessible.EditableText
 
     /*!
-        \qmlproperty textDocument TextArea::textDocument
+        \qmlproperty TextDocument TextArea::textDocument
 
         This property exposes the \l QTextDocument of this TextArea.
         \sa TextEdit::textDocument
diff --git a/src/controls/ToolBar.qml b/src/controls/ToolBar.qml
index d2adea56a2d9a92ea4281b9288b8a27fed94f1e1..e5cc84191d0dbd8b113e96ed3f33407fe772e79d 100644
--- a/src/controls/ToolBar.qml
+++ b/src/controls/ToolBar.qml
@@ -53,13 +53,20 @@ import QtQuick.Controls.Private 1.0
     provides styling and is generally designed to work well with ToolButton as
     well as other controls.
 
-    Note that the ToolBar does not provide a layout of its own, but requires you
-    to position its contents, for instance by creating a Row.
+    Note that the ToolBar does not provide a layout of its own, but requires
+    you to position its contents, for instance by creating a \l RowLayout.
+
+    If only a single item is used within the ToolBar, it will resize to fit the implicitHeight
+    of its contained item. This makes it particularly suitable for use together with layouts.
+    Otherwise the height is platform dependent.
 
     \code
+    import QtQuick.Controls 1.0
+    import QtQuick.Layouts 1.0
+
     ApplicationWindow {
         toolBar: ToolBar {
-            Row {
+            RowLayout {
                 ToolButton { ... }
                 ToolButton { ... }
                 ToolButton { ... }
@@ -71,16 +78,68 @@ import QtQuick.Controls.Private 1.0
 
 Item {
     id: toolbar
+
     activeFocusOnTab: false
     Accessible.role: Accessible.ToolBar
+
     width: parent ? parent.width : implicitWidth
-    implicitWidth: loader.item ? loader.item.implicitWidth : 0
-    implicitHeight: loader.item ? loader.item.implicitHeight : 0
+    implicitWidth:  loader.item ? loader.item.implicitWidth : 200
+    implicitHeight: container.topMargin + container.bottomMargin + container.calcHeight()
+
+    /*! \internal */
     property Component style: Qt.createComponent(Settings.style + "/ToolBarStyle.qml", toolbar)
-    Loader {
-        id: loader
-        anchors.fill: parent
-        sourceComponent: style
-        property var __control: toolbar
-    }
+
+    /*! \internal */
+    property alias __style: styleLoader.item
+
+    /*! \internal */
+    default property alias __content: container.data
+
+    /*!
+        \qmlproperty Item ToolBar::contentItem
+
+        This property holds the content Item of the tool bar.
+
+        Items declared as children of a ToolBar are automatically parented to the ToolBar's contentItem.
+        Items created dynamically need to be explicitly parented to the contentItem:
+
+        \note The implicit size of the ToolBar is calculated based on the size of its content. If you want to anchor
+        items inside the tool bar, you must specify an explicit width and height on the ToolBar itself.
+    */
+    readonly property alias contentItem: container
+
+    data: [
+        Loader {
+            id: loader
+            anchors.fill: parent
+            sourceComponent: styleLoader.item ? styleLoader.item.panel : null
+            onLoaded: item.z = -1
+            Loader {
+                id: styleLoader
+                property alias __control: toolbar
+                sourceComponent: style
+            }
+        },
+        Item {
+            id: container
+            z: 1
+            focus: true
+            anchors.fill: parent
+
+            anchors.topMargin: topMargin
+            anchors.leftMargin: leftMargin
+            anchors.rightMargin: rightMargin
+            anchors.bottomMargin: bottomMargin
+
+            property int topMargin: __style ? __style.padding.top : 0
+            property int bottomMargin: __style ? __style.padding.bottom : 0
+            property int leftMargin: __style ? __style.padding.left : 0
+            property int rightMargin: __style ? __style.padding.right : 0
+
+            property Item layoutItem: container.children.length === 1 ? container.children[0] : null
+            function calcHeight () { return (layoutItem ? (layoutItem.implicitHeight || layoutItem.height) +
+                                                          (layoutItem.anchors.fill ? layoutItem.anchors.topMargin +
+                                                                                     layoutItem.anchors.bottomMargin : 0) :
+                                                          loader.item ? loader.item.implicitHeight : 0) }
+        }]
 }
diff --git a/src/controls/doc/images/qtquickcontrols-example-gallery.png b/src/controls/doc/images/qtquickcontrols-example-gallery.png
index d3b19bb58313ed5f6419066cc867708a40b44248..a88eab793eabb3f62b178e1a4d209c018f6e54e2 100644
Binary files a/src/controls/doc/images/qtquickcontrols-example-gallery.png and b/src/controls/doc/images/qtquickcontrols-example-gallery.png differ
diff --git a/src/controls/doc/qtquickcontrols.qdocconf b/src/controls/doc/qtquickcontrols.qdocconf
index c04bced2c4807ef2f30acedf4bdee562e24085f1..7cf1ee54e1853983a6ec19cd566850a76a7ae436 100644
--- a/src/controls/doc/qtquickcontrols.qdocconf
+++ b/src/controls/doc/qtquickcontrols.qdocconf
@@ -47,12 +47,11 @@ sources += ../../private/qstyleitem.cpp \
            ../../private/BasicButton.qml \
            ../../private/FocusFrame.qml \
            ../../private/ModalPopupBehavior.qml \
-           ../../private/PageSlideTransition.qml \
            ../../private/ScrollBar.qml \
            ../../private/TabBar.qml \
            ../../private/Control.qml \
            ../../private/Style.qml \
-           ../../private/qquickpaddedstyle.h \
-           ../../private/qquickpaddedstyle.cpp
+           ../../private/qquickabstractstyle.h \
+           ../../private/qquickabstractstyle.cpp
 
 imagedirs += images
diff --git a/src/controls/plugins.qmltypes b/src/controls/plugins.qmltypes
index 8997cecfa5915bcc195267a532d3db0139256134..bd8508da54e7fde2fae50010ab9929a83d6b8bd1 100644
--- a/src/controls/plugins.qmltypes
+++ b/src/controls/plugins.qmltypes
@@ -199,7 +199,7 @@ Module {
         Property { name: "__index"; type: "int" }
         Property { name: "status"; type: "Status"; isReadonly: true }
         Property { name: "__status"; type: "Status" }
-        Property { name: "pageStack"; type: "QQuickItem"; isReadonly: true; isPointer: true }
-        Property { name: "__stackView"; type: "QQuickItem"; isPointer: true }
+        Property { name: "view"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+        Property { name: "__view"; type: "QQuickItem"; isPointer: true }
     }
 }
diff --git a/src/controls/qquickmenuitem.cpp b/src/controls/qquickmenuitem.cpp
index 4ac7c7ff8a4a954f7dfd1cf4f676cb2118358db0..de215df1966453c53bb01ee3f5d909fb9e43003b 100644
--- a/src/controls/qquickmenuitem.cpp
+++ b/src/controls/qquickmenuitem.cpp
@@ -401,6 +401,7 @@ QQuickMenuItem::QQuickMenuItem(QObject *parent)
 {
     connect(this, SIGNAL(__textChanged()), this, SIGNAL(textChanged()));
 
+    connect(action(), SIGNAL(shortcutChanged(QString)), this, SLOT(updateShortcut()));
     connect(action(), SIGNAL(triggered()), this, SIGNAL(triggered()));
     connect(action(), SIGNAL(toggled(bool)), this, SLOT(updateChecked()));
     if (platformItem())
diff --git a/src/controls/qquickstack.cpp b/src/controls/qquickstack.cpp
index 1723ef72dd7a6cfe6f7e0e9d5a21061ab9c55fcb..ecf873d7ae4269e82c6e2351e2f64e5843b9a97e 100644
--- a/src/controls/qquickstack.cpp
+++ b/src/controls/qquickstack.cpp
@@ -50,12 +50,9 @@ QT_BEGIN_NAMESPACE
     \ingroup views
     \brief Provides attached properties for items pushed onto a StackView.
 
-    The Stack attached property provides information when an item becomes
-    active or inactive through the \l{Stack::status}{Stack.status} property.
-    Status will be \c Stack.Activating when an item is transitioning into
-    being the current item on the screen, and \c Stack.Active once the
-    transition stops. When it leaves the screen, it will be
-    \c Stack.Deactivating, and then \c Stack.Inactive.
+    The Stack type provides attached properties for items pushed onto a \l StackView.
+    It gives specific information about the item, such as its \l status and
+    \l index in the stack \l view the item is in.
 
     \sa StackView
 */
@@ -64,7 +61,7 @@ QQuickStack::QQuickStack(QObject *object)
     : QObject(object),
       m_index(-1),
       m_status(Inactive),
-      m_pageStack(0)
+      m_view(0)
 {
 }
 
@@ -75,11 +72,11 @@ QQuickStack *QQuickStack::qmlAttachedProperties(QObject *object)
 
 /*!
     \readonly
-    \qmlproperty int Stack::index
+    \qmlattachedproperty int Stack::index
 
-    This property holds the index of the item inside \l{pageStack}{StackView},
-    so that \l{StackView::get()}{pageStack.get(index)} will return the item itself.
-    If \l{Stack::pageStack}{pageStack} is \c null, \a index will be \c -1.
+    This property holds the index of the item inside \l{view}{StackView},
+    so that \l{StackView::get()}{StackView.get(index)} will return the item itself.
+    If \l{Stack::view}{view} is \c null, \a index will be \c -1.
 */
 int QQuickStack::index() const
 {
@@ -96,7 +93,7 @@ void QQuickStack::setIndex(int index)
 
 /*!
     \readonly
-    \qmlproperty enumeration Stack::status
+    \qmlattachedproperty enumeration Stack::status
 
     This property holds the status of the item. It can have one of the following values:
     \list
@@ -121,21 +118,21 @@ void QQuickStack::setStatus(Status status)
 
 /*!
     \readonly
-    \qmlproperty StackView Stack::pageStack
+    \qmlattachedproperty StackView Stack::view
 
     This property holds the StackView the item is in. If the item is not inside
-    a StackView, \a pageStack will be \c null.
+    a StackView, \a view will be \c null.
 */
-QQuickItem *QQuickStack::pageStack() const
+QQuickItem *QQuickStack::view() const
 {
-    return m_pageStack;
+    return m_view;
 }
 
-void QQuickStack::setStackView(QQuickItem *pageStack)
+void QQuickStack::setView(QQuickItem *view)
 {
-    if (m_pageStack != pageStack) {
-        m_pageStack = pageStack;
-        emit pageStackChanged();
+    if (m_view != view) {
+        m_view = view;
+        emit viewChanged();
     }
 }
 
diff --git a/src/controls/qquickstack_p.h b/src/controls/qquickstack_p.h
index a4b36644307f1f8ab152991f5b1c0e58d35ba191..c34dd1a3e55f990c53e92c57941b65f4dfe766a0 100644
--- a/src/controls/qquickstack_p.h
+++ b/src/controls/qquickstack_p.h
@@ -53,8 +53,8 @@ class QQuickStack : public QObject
     Q_PROPERTY(int __index READ index WRITE setIndex NOTIFY indexChanged)
     Q_PROPERTY(Status status READ status NOTIFY statusChanged)
     Q_PROPERTY(Status __status READ status WRITE setStatus NOTIFY statusChanged)
-    Q_PROPERTY(QQuickItem* pageStack READ pageStack NOTIFY pageStackChanged)
-    Q_PROPERTY(QQuickItem* __stackView READ pageStack WRITE setStackView NOTIFY pageStackChanged)
+    Q_PROPERTY(QQuickItem* view READ view NOTIFY viewChanged)
+    Q_PROPERTY(QQuickItem* __view READ view WRITE setView NOTIFY viewChanged)
     Q_ENUMS(Status)
 
 public:
@@ -75,18 +75,18 @@ public:
     Status status() const;
     void setStatus(Status status);
 
-    QQuickItem *pageStack() const;
-    void setStackView(QQuickItem *pageStack);
+    QQuickItem *view() const;
+    void setView(QQuickItem *view);
 
 signals:
     void statusChanged();
-    void pageStackChanged();
+    void viewChanged();
     void indexChanged();
 
 private:
     int m_index;
     Status m_status;
-    QQuickItem *m_pageStack;
+    QQuickItem *m_view;
 };
 
 QT_END_NAMESPACE
diff --git a/src/layouts/doc/qtquicklayouts.qdocconf b/src/layouts/doc/qtquicklayouts.qdocconf
index b564904466c50153c2a213635f09cec8dfb603ec..ad33416f8c53a3673bc77f4ce7f43f291dcdd7cc 100644
--- a/src/layouts/doc/qtquicklayouts.qdocconf
+++ b/src/layouts/doc/qtquicklayouts.qdocconf
@@ -5,31 +5,29 @@ description             = Qt Quick Layouts Reference Documentation
 url                     = http://qt-project.org/doc/qt-$QT_VER/qtquicklayouts/
 version                 = $QT_VERSION
 
-qhp.projects            = qtquicklayouts
+qhp.projects            = QtQuickLayouts
 
-qhp.qtquicklayouts.file           = qtquicklayouts.qhp
-qhp.qtquicklayouts.namespace      = org.qt-project.qtquicklayouts.$QT_VERSION_TAG
-qhp.qtquicklayouts.virtualFolder  = qtquicklayouts
-qhp.qtquicklayouts.indexTitle     = Qt Quick Layouts
-qhp.qtquicklayouts.indexRoot      =
+qhp.QtQuickLayouts.file           = qtquicklayouts.qhp
+qhp.QtQuickLayouts.namespace      = org.qt-project.qtquicklayouts.$QT_VERSION_TAG
+qhp.QtQuickLayouts.virtualFolder  = qtquicklayouts
+qhp.QtQuickLayouts.indexTitle     = Qt Quick Layouts
+qhp.QtQuickLayouts.indexRoot      =
 
-qhp.qtquicklayouts.filterAttributes    = qtquicklayouts $QT_VERSION qtrefdoc
-qhp.qtquicklayouts.customFilters.Qt.name = QtQuickLayouts $QT_VERSION
-qhp.qtquicklayouts.customFilters.Qt.filterAttributes = qtquicklayouts $QT_VERSION
+qhp.QtQuickLayouts.filterAttributes    = qtquicklayouts $QT_VERSION qtrefdoc
+qhp.QtQuickLayouts.customFilters.Qt.name = QtQuickLayouts $QT_VERSION
+qhp.QtQuickLayouts.customFilters.Qt.filterAttributes = qtquicklayouts $QT_VERSION
 
-qhp.qtquicklayouts.subprojects = qtquicklayoutsqmltypes
-qhp.qtquicklayouts.subprojects.qtquicklayoutsqmltypes.title = QML Types
-qhp.qtquicklayouts.subprojects.qtquicklayoutsqmltypes.indexTitle = Qt Quick Layouts
-qhp.qtquicklayouts.subprojects.qtquicklayoutsqmltypes.selectors = class fake:headerfile
-qhp.qtquicklayouts.subprojects.qtquicklayoutsqmltypes.sortPages = true
-qhp.qtquicklayouts.subprojects.qtquicklayoutsqmltypes.type = manual
+qhp.QtQuickLayouts.subprojects = qtquicklayoutsqmltypes
+qhp.QtQuickLayouts.subprojects.qtquicklayoutsqmltypes.title = QML Types
+qhp.QtQuickLayouts.subprojects.qtquicklayoutsqmltypes.indexTitle = Qt Quick Layouts
+qhp.QtQuickLayouts.subprojects.qtquicklayoutsqmltypes.selectors = class fake:qmlClass
+qhp.QtQuickLayouts.subprojects.qtquicklayoutsqmltypes.sortPages = true
+qhp.QtQuickLayouts.subprojects.qtquicklayoutsqmltypes.type = manual
 
 depends = qtqml qtquick qtwidgets qtdoc qtquickcontrols
 
-exampledirs += ../../../examples/quick/controls/
+headerdirs += ..
 
-headerdirs += ../
-
-sourcedirs += ../
+sourcedirs += ..
 
 imagedirs += images
diff --git a/src/layouts/doc/src/qtquicklayouts-index.qdoc b/src/layouts/doc/src/qtquicklayouts-index.qdoc
index 433de433fc3375e4e905bdcd6ff30ea47d4bbe44..c2280f5df638710f21747bc8053f7e1a077f3152 100644
--- a/src/layouts/doc/src/qtquicklayouts-index.qdoc
+++ b/src/layouts/doc/src/qtquicklayouts-index.qdoc
@@ -28,9 +28,15 @@
 /*!
     \page qtquicklayouts-index.html
     \title Qt Quick Layouts
-    \ingroup qmlmodules
 
-    \brief A module with a set of QML elements that arranges QML items in an user interface.
+    \brief A module with a set of QML elements that arrange QML items in a user interface.
+
+    Qt Quick Layouts are a set of QML types used to arrange items in a user interface. In contrast
+    to \l{Item Positioners}{positioners}, Qt Quick Layouts can also resize their items. This makes
+    them well suited for resizable user interfaces. Since layouts are items they can consequently
+    be nested.
+
+    The module is new in Qt 5.1 and requires \l{Qt Quick} 2.1.
 
     \section1 Getting started
 
@@ -41,10 +47,13 @@
     \endcode
 
     \section1 Layouts
-    Layouts are items that are used to arrange items in the user interface. The layout is dynamic -
-    when the layout changes geometry it will typically influence the arrangement of its child
-    items. Since a layout is an item, layouts can consequently be nested.
 
     \annotatedlist layouts
 
+    \section1 Related information
+
+    \section2 Reference
+     \list
+      \li \l{Qt Quick Layouts QML Types}{Qt Quick Layouts QML Types}
+     \endlist
 */
diff --git a/src/layouts/doc/src/qtquicklayouts.qdoc b/src/layouts/doc/src/qtquicklayouts.qdoc
new file mode 100644
index 0000000000000000000000000000000000000000..b03ff69b9dd6b037f5e9f7d7ad381dc065945f75
--- /dev/null
+++ b/src/layouts/doc/src/qtquicklayouts.qdoc
@@ -0,0 +1,46 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:FDL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.  For licensing terms and
+** conditions see http://qt.digia.com/licensing.  For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Free Documentation License Usage
+** Alternatively, this file may be used under the terms of the GNU Free
+** Documentation License version 1.3 as published by the Free Software
+** Foundation and appearing in the file included in the packaging of
+** this file.  Please review the following information to ensure
+** the GNU Free Documentation License version 1.3 requirements
+** will be met: http://www.gnu.org/copyleft/fdl.html.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+/*!
+    \qmlmodule QtQuick.Layouts 1
+    \title Qt Quick Layouts QML Types
+    \ingroup qmlmodules
+    \brief Provides QML types for arranging QML items in a user interface.
+
+    The \l{Qt Quick Layouts} module provides QML types for arranging
+    QML items in a user interface.
+    These QML types work in conjunction with \l{Qt Quick} and
+    \l{Qt Quick Controls}.
+
+    The QML types can be imported into your application using the
+    following import statement in your .qml file.
+
+    \code
+    import QtQuick.Layouts 1.0
+    \endcode
+
+*/
diff --git a/src/layouts/qquicklayout.cpp b/src/layouts/qquicklayout.cpp
index 48b8025516a62053aa250d4721de2b6cb5333771..86eac072e80b4d58a67721741f67cc45214c1c82 100644
--- a/src/layouts/qquicklayout.cpp
+++ b/src/layouts/qquicklayout.cpp
@@ -60,11 +60,33 @@
     For instance, you can specify \l minimumWidth, \l preferredWidth, and
     \l maximumWidth if the default values are not satisfactory.
 
-    \l fillWidth and \l fillHeight allows you to specify whether an item should
-    fill the cell(s) it occupies. This allows it to stretch between \l minimumWidth
-    and \l maximumWidth (or \l minimumHeight and \l maximumHeight if \l fillHeight is \c true).
+    When a layout is resized, items may grow or shrink. Due to this, items have a
+    \l{Layout::minimumWidth}{minimum size}, \l{Layout::preferredWidth}{preferred size} and a
+    \l{Layout::maximumWidth}{maximum size}.
+
+    For each item, preferred size may come from one of several sources. It can be specified with
+    the \l preferredWidth and \l preferredHeight properties. If these properties are not
+    specified, it will use the item's \l{Item::implicitWidth}{implicitWidth} or
+    \l{Item::implicitHeight}{implicitHeight} as the preferred size.
+    Finally, if neither of these properties are set, it will use the \l{Item::width}{width} and
+    \l{Item::height}{height} properties of the item. Note that is provided only as a final
+    fallback. If you want to override the preferred size, you should use
+    \l preferredWidth or \l preferredHeight.
+
+    If minimum size have not been explicitly specified on an item, the size is set to \c 0.
+    If maximum size have not been explicitly specified on an item, the size is set to
+    \c Number.POSITIVE_INFINITY.
+
+    For layouts, the implicit minimum and maximum size depends on the content of the layouts.
+
+    The \l fillWidth and \l fillHeight properties can either be \c true or \c false. If it is \c
+    false, the item's size will be fixed to its preferred size. Otherwise, it will grow or shrink
+    between its minimum and maximum size as the layout is resized.
+
+    \note It is not recommended to have bindings to the x, y, width, or height properties of items
+    in a layout, since this would conflict with the goal of the Layout, and also cause binding
+    loops.
 
-    If \l fillWidth or \l fillHeight is \c false, the items' size will be fixed to its preferred size.
 
     \sa GridLayout
     \sa RowLayout
@@ -100,7 +122,7 @@ QQuickLayoutAttached::QQuickLayoutAttached(QObject *parent)
 }
 
 /*!
-    \qmlproperty real Layout::minimumWidth
+    \qmlattachedproperty real Layout::minimumWidth
 
     This property holds the maximum width of an item in a layout.
     The default value is the items implicit minimum width.
@@ -129,7 +151,7 @@ void QQuickLayoutAttached::setMinimumWidth(qreal width)
 }
 
 /*!
-    \qmlproperty real Layout::minimumHeight
+    \qmlattachedproperty real Layout::minimumHeight
 
     The default value is the items implicit minimum height.
 
@@ -156,7 +178,7 @@ void QQuickLayoutAttached::setMinimumHeight(qreal height)
 }
 
 /*!
-    \qmlproperty real Layout::preferredWidth
+    \qmlattachedproperty real Layout::preferredWidth
 
     This property holds the preferred width of an item in a layout.
     If the preferred width is -1 it will be ignored, and the layout
@@ -177,7 +199,7 @@ void QQuickLayoutAttached::setPreferredWidth(qreal width)
 }
 
 /*!
-    \qmlproperty real Layout::preferredHeight
+    \qmlattachedproperty real Layout::preferredHeight
 
     This property holds the preferred height of an item in a layout.
     If the preferred height is -1 it will be ignored, and the layout
@@ -198,14 +220,14 @@ void QQuickLayoutAttached::setPreferredHeight(qreal height)
 }
 
 /*!
-    \qmlproperty real Layout::maximumWidth
+    \qmlattachedproperty real Layout::maximumWidth
 
     This property holds the maximum width of an item in a layout.
     The default value is the items implicit maximum width.
 
     If the item is a layout, the implicit maximum width will be the maximum width the layout can
     have without any of its items grow beyond their maximum width.
-    The implicit maximum width for any other item is \c Number.POSITIVE_INFINITE.
+    The implicit maximum width for any other item is \c Number.POSITIVE_INFINITY.
 
     Setting this value to -1 will reset the width back to its implicit maximum width.
 
@@ -226,13 +248,13 @@ void QQuickLayoutAttached::setMaximumWidth(qreal width)
 }
 
 /*!
-    \qmlproperty real Layout::maximumHeight
+    \qmlattachedproperty real Layout::maximumHeight
 
     The default value is the items implicit maximum height.
 
     If the item is a layout, the implicit maximum height will be the maximum height the layout can
     have without any of its items grow beyond their maximum height.
-    The implicit maximum height for any other item is \c Number.POSITIVE_INFINITE.
+    The implicit maximum height for any other item is \c Number.POSITIVE_INFINITY.
 
     Setting this value to -1 will reset the height back to its implicit maximum height.
 
@@ -299,7 +321,7 @@ void QQuickLayoutAttached::setMaximumImplicitSize(const QSizeF &sz)
 }
 
 /*!
-    \qmlproperty bool Layout::fillWidth
+    \qmlattachedproperty bool Layout::fillWidth
 
     If this property is \c true, the item will be as wide as possible while respecting
     the given constraints. If the property is \c false, the item will have a fixed width
@@ -319,7 +341,7 @@ void QQuickLayoutAttached::setFillWidth(bool fill)
 }
 
 /*!
-    \qmlproperty bool Layout::fillHeight
+    \qmlattachedproperty bool Layout::fillHeight
 
     If this property is \c true, the item will be as tall as possible while respecting
     the given constraints. If the property is \c false, the item will have a fixed height
@@ -339,7 +361,7 @@ void QQuickLayoutAttached::setFillHeight(bool fill)
 }
 
 /*!
-    \qmlproperty int Layout::row
+    \qmlattachedproperty int Layout::row
 
     This property allows you to specify the row position of an item in a \l GridLayout.
 
@@ -357,7 +379,7 @@ void QQuickLayoutAttached::setRow(int row)
 }
 
 /*!
-    \qmlproperty int Layout::column
+    \qmlattachedproperty int Layout::column
 
     This property allows you to specify the column position of an item in a \l GridLayout.
 
@@ -376,7 +398,7 @@ void QQuickLayoutAttached::setColumn(int column)
 
 
 /*!
-    \qmlproperty Qt.Alignment Layout::alignment
+    \qmlattachedproperty Qt.Alignment Layout::alignment
 
     This property allows you to specify the alignment of an item within the cell(s) it occupies.
 
@@ -385,7 +407,7 @@ void QQuickLayoutAttached::setColumn(int column)
 
 
 /*!
-    \qmlproperty int Layout::rowSpan
+    \qmlattachedproperty int Layout::rowSpan
 
     This property allows you to specify the row span of an item in a \l GridLayout.
 
@@ -397,7 +419,7 @@ void QQuickLayoutAttached::setColumn(int column)
 
 
 /*!
-    \qmlproperty int Layout::columnSpan
+    \qmlattachedproperty int Layout::columnSpan
 
     This property allows you to specify the column span of an item in a \l GridLayout.
 
diff --git a/src/layouts/qquicklinearlayout.cpp b/src/layouts/qquicklinearlayout.cpp
index 541e4aca1b880ea28ce5acdce51e9891a11e8c13..7c48248bb85440c437adfd1951237198a520542f 100644
--- a/src/layouts/qquicklinearlayout.cpp
+++ b/src/layouts/qquicklinearlayout.cpp
@@ -48,33 +48,63 @@
 /*!
     \qmltype RowLayout
     \instantiates QQuickRowLayout
+    \inherits Item
     \inqmlmodule QtQuick.Layouts 1.0
     \ingroup layouts
     \brief Identical to \l GridLayout, but having only one row.
 
     It is available as a convenience for developers, as it offers a cleaner API.
 
+    Items in a RowLayout support these attached properties:
+    \list
+        \li \l{Layout::minimumWidth}{Layout.minimumWidth}
+        \li \l{Layout::minimumHeight}{Layout.minimumHeight}
+        \li \l{Layout::preferredWidth}{Layout.preferredWidth}
+        \li \l{Layout::preferredHeight}{Layout.preferredHeight}
+        \li \l{Layout::maximumWidth}{Layout.maximumWidth}
+        \li \l{Layout::maximumHeight}{Layout.maximumHeight}
+        \li \l{Layout::fillWidth}{Layout.fillWidth}
+        \li \l{Layout::fillHeight}{Layout.fillHeight}
+        \li \l{Layout::alignment}{Layout.alignment}
+    \endlist
     \sa ColumnLayout
     \sa GridLayout
+    \sa Row
 */
 
 /*!
     \qmltype ColumnLayout
     \instantiates QQuickColumnLayout
+    \inherits Item
     \inqmlmodule QtQuick.Layouts 1.0
     \ingroup layouts
     \brief Identical to \l GridLayout, but having only one column.
 
     It is available as a convenience for developers, as it offers a cleaner API.
 
+    Items in a ColumnLayout support these attached properties:
+    \list
+        \li \l{Layout::minimumWidth}{Layout.minimumWidth}
+        \li \l{Layout::minimumHeight}{Layout.minimumHeight}
+        \li \l{Layout::preferredWidth}{Layout.preferredWidth}
+        \li \l{Layout::preferredHeight}{Layout.preferredHeight}
+        \li \l{Layout::maximumWidth}{Layout.maximumWidth}
+        \li \l{Layout::maximumHeight}{Layout.maximumHeight}
+        \li \l{Layout::fillWidth}{Layout.fillWidth}
+        \li \l{Layout::fillHeight}{Layout.fillHeight}
+        \li \l{Layout::alignment}{Layout.alignment}
+    \endlist
+
     \sa RowLayout
     \sa GridLayout
+    \sa Column
 */
 
 
 /*!
     \qmltype GridLayout
     \instantiates QQuickGridLayout
+    \inherits Item
     \inqmlmodule QtQuick.Layouts 1.0
     \ingroup layouts
     \brief Provides a way of dynamically arranging items in a grid.
@@ -112,39 +142,42 @@
     specify the row span or column span by setting the \l{Layout::rowSpan}{Layout.rowSpan} or
     \l{Layout::columnSpan}{Layout.columnSpan} properties.
 
-    When the layout is resized, items may grow or shrink. Due to this, items have a
-    \l{Layout::minimumWidth}{minimum size}, \l{Layout::preferredWidth}{preferred size} and a
-    \l{Layout::maximumWidth}{maximum size}.
-
-    Preferred size may come from one of several sources. It can be specified with the
-    \l{Layout::preferredWidth}{Layout.preferredWidth} and
-    \l{Layout::preferredHeight}{Layout.preferredHeight} properties. If these properties are not
-    specified, it will use the items' \l{Item::implicitWidth}{implicitWidth} or
-    \l{Item::implicitHeight}{implicitHeight} as the preferred size.
-    Finally, if neither of these properties are set, it will use the \l{Item::width}{width} and
-    \l{Item::height}{height} properties of the item. Note that is provided only as a final
-    fallback. If you want to override the preferred size, you should use
-    \l{Layout::preferredWidth}{Layout.preferredWidth} or
-    \l{Layout::preferredHeight}{Layout.preferredHeight}.
 
-    The \l{Layout::fillWidth}{Layout.fillWidth} and \l{Layout::fillHeight}{Layout.fillHeight} can
-    either be \c true or \c false. If it is \c false, the items size will be fixed to its preferred
-    size. Otherwise, it will grow or shrink between its minimum and maximum size.
-
-    \note It is not recommended to have bindings to the width and height properties of items in a
-    GridLayout, since this would conflict with the goal of the GridLayout.
+    Items in a GridLayout support these attached properties:
+    \list
+        \li \l{Layout::row}{Layout.row}
+        \li \l{Layout::column}{Layout.column}
+        \li \l{Layout::rowSpan}{Layout.rowSpan}
+        \li \l{Layout::columnSpan}{Layout.columnSpan}
+        \li \l{Layout::minimumWidth}{Layout.minimumWidth}
+        \li \l{Layout::minimumHeight}{Layout.minimumHeight}
+        \li \l{Layout::preferredWidth}{Layout.preferredWidth}
+        \li \l{Layout::preferredHeight}{Layout.preferredHeight}
+        \li \l{Layout::maximumWidth}{Layout.maximumWidth}
+        \li \l{Layout::maximumHeight}{Layout.maximumHeight}
+        \li \l{Layout::fillWidth}{Layout.fillWidth}
+        \li \l{Layout::fillHeight}{Layout.fillHeight}
+        \li \l{Layout::alignment}{Layout.alignment}
+    \endlist
 
     \sa RowLayout
     \sa ColumnLayout
-
+    \sa Grid
 */
 
 
 
 QT_BEGIN_NAMESPACE
 
-static const qreal q_declarativeLayoutDefaultSpacing = 4.0;
-
+static qreal quickLayoutDefaultSpacing()
+{
+    qreal spacing = 5.0;
+#ifndef Q_OS_MAC
+    // On mac the DPI is always 72 so we should not scale it
+    spacing = qRound(spacing * (qreal(qt_defaultDpiX()) / 96.0));
+#endif
+    return spacing;
+}
 
 QQuickGridLayoutBase::QQuickGridLayoutBase(QQuickGridLayoutBasePrivate &dd,
                                            Qt::Orientation orientation,
@@ -177,12 +210,18 @@ QSizeF QQuickGridLayoutBase::sizeHint(Qt::SizeHint whichSizeHint) const
     return d->engine.sizeHint(whichSizeHint, QSizeF());
 }
 
+QQuickGridLayoutBase::~QQuickGridLayoutBase()
+{
+    d_func()->m_isReady = false;
+}
+
 void QQuickGridLayoutBase::componentComplete()
 {
     Q_D(QQuickGridLayoutBase);
     quickLayoutDebug() << objectName() << "QQuickGridLayoutBase::componentComplete()" << parent();
     d->m_disableRearrange = true;
     QQuickLayout::componentComplete();    // will call our geometryChange(), (where isComponentComplete() == true)
+    d->m_isReady = true;
     d->m_disableRearrange = false;
     updateLayoutItems();
 
@@ -228,7 +267,7 @@ void QQuickGridLayoutBase::componentComplete()
 void QQuickGridLayoutBase::invalidate(QQuickItem *childItem)
 {
     Q_D(QQuickGridLayoutBase);
-    if (!isComponentComplete())
+    if (!isReady())
         return;
     quickLayoutDebug() << "QQuickGridLayoutBase::invalidate()";
 
@@ -267,7 +306,7 @@ void QQuickGridLayoutBase::invalidate(QQuickItem *childItem)
 void QQuickGridLayoutBase::updateLayoutItems()
 {
     Q_D(QQuickGridLayoutBase);
-    if (!isComponentComplete() || !isVisible())
+    if (!isReady() || !isVisible())
         return;
     quickLayoutDebug() << "QQuickGridLayoutBase::updateLayoutItems";
     d->engine.deleteItems();
@@ -287,7 +326,7 @@ void QQuickGridLayoutBase::itemChange(ItemChange change, const ItemChangeData &v
         QObject::connect(item, SIGNAL(implicitWidthChanged()), this, SLOT(onItemImplicitSizeChanged()));
         QObject::connect(item, SIGNAL(implicitHeightChanged()), this, SLOT(onItemImplicitSizeChanged()));
 
-        if (isComponentComplete() && isVisible())
+        if (isReady() && isVisible())
             updateLayoutItems();
     } else if (change == ItemChildRemovedChange) {
         quickLayoutDebug() << "ItemChildRemovedChange";
@@ -296,7 +335,7 @@ void QQuickGridLayoutBase::itemChange(ItemChange change, const ItemChangeData &v
         QObject::disconnect(item, SIGNAL(visibleChanged()), this, SLOT(onItemVisibleChanged()));
         QObject::disconnect(item, SIGNAL(implicitWidthChanged()), this, SLOT(onItemImplicitSizeChanged()));
         QObject::disconnect(item, SIGNAL(implicitHeightChanged()), this, SLOT(onItemImplicitSizeChanged()));
-        if (isComponentComplete() && isVisible())
+        if (isReady() && isVisible())
             updateLayoutItems();
     }
 
@@ -307,7 +346,7 @@ void QQuickGridLayoutBase::geometryChanged(const QRectF &newGeometry, const QRec
 {
     Q_D(QQuickGridLayoutBase);
     QQuickLayout::geometryChanged(newGeometry, oldGeometry);
-    if (d->m_disableRearrange || !isComponentComplete() || !newGeometry.isValid())
+    if (d->m_disableRearrange || !isReady() || !newGeometry.isValid())
         return;
     quickLayoutDebug() << "QQuickGridLayoutBase::geometryChanged" << newGeometry << oldGeometry;
     rearrange(newGeometry.size());
@@ -321,6 +360,11 @@ void QQuickGridLayoutBase::removeGridItem(QGridLayoutItem *gridItem)
     d->engine.removeRows(index, 1, d->orientation);
 }
 
+bool QQuickGridLayoutBase::isReady() const
+{
+    return d_func()->m_isReady;
+}
+
 void QQuickGridLayoutBase::removeLayoutItem(QQuickItem *item)
 {
     Q_D(QQuickGridLayoutBase);
@@ -334,7 +378,7 @@ void QQuickGridLayoutBase::removeLayoutItem(QQuickItem *item)
 
 void QQuickGridLayoutBase::onItemVisibleChanged()
 {
-    if (!isComponentComplete())
+    if (!isReady())
         return;
     quickLayoutDebug() << "QQuickGridLayoutBase::onItemVisibleChanged";
     updateLayoutItems();
@@ -342,6 +386,8 @@ void QQuickGridLayoutBase::onItemVisibleChanged()
 
 void QQuickGridLayoutBase::onItemDestroyed()
 {
+    if (!isReady())
+        return;
     Q_D(QQuickGridLayoutBase);
     quickLayoutDebug() << "QQuickGridLayoutBase::onItemDestroyed";
     QQuickItem *inDestruction = static_cast<QQuickItem *>(sender());
@@ -354,6 +400,8 @@ void QQuickGridLayoutBase::onItemDestroyed()
 
 void QQuickGridLayoutBase::onItemImplicitSizeChanged()
 {
+    if (!isReady())
+        return;
     QQuickItem *item = static_cast<QQuickItem *>(sender());
     Q_ASSERT(item);
     invalidate(item);
@@ -362,7 +410,7 @@ void QQuickGridLayoutBase::onItemImplicitSizeChanged()
 void QQuickGridLayoutBase::rearrange(const QSizeF &size)
 {
     Q_D(QQuickGridLayoutBase);
-    if (!isComponentComplete())
+    if (!isReady())
         return;
 
     quickLayoutDebug() << objectName() << "QQuickGridLayoutBase::rearrange()" << size;
@@ -412,9 +460,10 @@ QQuickGridLayout::QQuickGridLayout(QQuickItem *parent /* = 0*/)
     : QQuickGridLayoutBase(*new QQuickGridLayoutPrivate, Qt::Horizontal, parent)
 {
     Q_D(QQuickGridLayout);
-    d->columnSpacing = q_declarativeLayoutDefaultSpacing;
-    d->rowSpacing = q_declarativeLayoutDefaultSpacing;
-    d->engine.setSpacing(q_declarativeLayoutDefaultSpacing, Qt::Horizontal | Qt::Vertical);
+    const qreal defaultSpacing = quickLayoutDefaultSpacing();
+    d->columnSpacing = defaultSpacing;
+    d->rowSpacing = defaultSpacing;
+    d->engine.setSpacing(defaultSpacing, Qt::Horizontal | Qt::Vertical);
 }
 
 /*!
@@ -672,7 +721,7 @@ QQuickLinearLayout::QQuickLinearLayout(Qt::Orientation orientation,
     : QQuickGridLayoutBase(*new QQuickLinearLayoutPrivate, orientation, parent)
 {
     Q_D(QQuickLinearLayout);
-    d->spacing = q_declarativeLayoutDefaultSpacing;
+    d->spacing = quickLayoutDefaultSpacing();
     d->engine.setSpacing(d->spacing, Qt::Horizontal | Qt::Vertical);
 }
 
diff --git a/src/layouts/qquicklinearlayout_p.h b/src/layouts/qquicklinearlayout_p.h
index 76cc206b9c3e29a60eaf709b8ac35e6edecd8271..b38bd97f78d9a2a348c898195ad37f2a3ca320ea 100644
--- a/src/layouts/qquicklinearlayout_p.h
+++ b/src/layouts/qquicklinearlayout_p.h
@@ -62,8 +62,7 @@ public:
     explicit QQuickGridLayoutBase(QQuickGridLayoutBasePrivate &dd,
                                   Qt::Orientation orientation,
                                   QQuickItem *parent = 0);
-    ~QQuickGridLayoutBase() {}
-
+    ~QQuickGridLayoutBase();
     void componentComplete();
     void invalidate(QQuickItem *childItem = 0);
     Qt::Orientation orientation() const;
@@ -86,6 +85,7 @@ protected slots:
 
 private:
     void removeGridItem(QGridLayoutItem *gridItem);
+    bool isReady() const;
     Q_DECLARE_PRIVATE(QQuickGridLayoutBase)
 };
 
@@ -95,10 +95,11 @@ class QQuickGridLayoutBasePrivate : public QQuickLayoutPrivate
     Q_DECLARE_PUBLIC(QQuickGridLayoutBase)
 
 public:
-    QQuickGridLayoutBasePrivate() : m_disableRearrange(true) { }
+    QQuickGridLayoutBasePrivate() : m_disableRearrange(true), m_isReady(false) { }
     QQuickGridLayoutEngine engine;
     Qt::Orientation orientation;
     bool m_disableRearrange;
+    bool m_isReady;
     QSet<QQuickItem *> m_ignoredItems;
 };
 
diff --git a/src/private/Control.qml b/src/private/Control.qml
index 109e37ed7417a405acf9ca1562f03cde6f9b1e78..05916c0a7df42e2b50496d08d418275fc0f1372a 100644
--- a/src/private/Control.qml
+++ b/src/private/Control.qml
@@ -64,7 +64,7 @@ FocusScope {
     property Item __panel: panelLoader.item
 
     /*! \internal */
-    property var styleHints: []
+    property var styleHints
 
     implicitWidth: __panel ? __panel.implicitWidth: 0
     implicitHeight: __panel ? __panel.implicitHeight: 0
diff --git a/src/private/Style.qml b/src/private/Style.qml
index 990f61dd7b46c71a6b7a86c320ba94d594606558..6b4c08ef7dd471880b4c5de459eb49c4137479bc 100644
--- a/src/private/Style.qml
+++ b/src/private/Style.qml
@@ -39,6 +39,7 @@
 ****************************************************************************/
 import QtQuick 2.1
 import QtQuick.Controls 1.0
+import QtQuick.Controls.Private 1.0
 
 /*!
     \qmltype Style
@@ -46,7 +47,7 @@ import QtQuick.Controls 1.0
     \inqmlmodule QtQuick.Controls.Private 1.0
 */
 
-QtObject {
+AbstractStyle {
     /*! The control attached to this style */
     readonly property Item control: __control
 
diff --git a/src/private/TabBar.qml b/src/private/TabBar.qml
index aa1f919bebca4217af50b7ef15c15ea3fb4567ab..6bcf795cc96ad39b21d378069efeec8ecf9b8f9a 100644
--- a/src/private/TabBar.qml
+++ b/src/private/TabBar.qml
@@ -170,7 +170,6 @@ FocusScope {
 
             property int tabindex: index
             property bool selected : tabView.currentIndex === index
-            property bool hover: containsMouse
             property string title: modelData.title
             property bool nextSelected: tabView.currentIndex === index + 1
             property bool previousSelected: tabView.currentIndex === index - 1
@@ -182,7 +181,7 @@ FocusScope {
             onPressed: {
                 tabView.currentIndex = index;
                 var next = tabbar.nextItemInFocusChain(true);
-                if (__isAncestorOf(tabView.tabAt(currentIndex), next))
+                if (__isAncestorOf(tabView.getTab(currentIndex), next))
                     next.forceActiveFocus();
                 else
                     tabitem.forceActiveFocus();
@@ -193,7 +192,6 @@ FocusScope {
 
                 property Item control: tabView
                 property int index: tabindex
-                property real availableWidth: tabbar.availableWidth
 
                 property QtObject styleData: QtObject {
                     readonly property alias index: tabitem.tabindex
@@ -201,8 +199,9 @@ FocusScope {
                     readonly property alias title: tabitem.title
                     readonly property alias nextSelected: tabitem.nextSelected
                     readonly property alias previsousSelected: tabitem.previousSelected
-                    readonly property alias hovered: tabitem.hover
+                    readonly property alias hovered: tabitem.containsMouse
                     readonly property bool activeFocus: tabbar.activeFocus
+                    readonly property real availableWidth: tabbar.availableWidth
                 }
 
                 sourceComponent: loader.item ? loader.item.tab : null
diff --git a/src/private/plugin.cpp b/src/private/plugin.cpp
index 17bfed07fb8d9577b44dd4bc764e6ca183023bb9..e33c2d375dcf87d1222756986e32d26241c1e93e 100644
--- a/src/private/plugin.cpp
+++ b/src/private/plugin.cpp
@@ -45,7 +45,7 @@
 #include "qquicktooltip_p.h"
 #include "qquickcontrolsettings_p.h"
 #include "qquickspinboxvalidator_p.h"
-#include "qquickpaddedstyle_p.h"
+#include "qquickabstractstyle_p.h"
 
 #ifndef QT_NO_WIDGETS
 #include "qquickstyleitem_p.h"
@@ -81,7 +81,7 @@ public:
 
 void QtQuickControlsPrivatePlugin::registerTypes(const char *uri)
 {
-    qmlRegisterType<QQuickPaddedStyle>(uri, 1, 0, "PaddedStyle");
+    qmlRegisterType<QQuickAbstractStyle>(uri, 1, 0, "AbstractStyle");
     qmlRegisterType<QQuickPadding>();
     qmlRegisterType<QQuickRangeModel>(uri, 1, 0, "RangeModel");
     qmlRegisterType<QQuickWheelArea>(uri, 1, 0, "WheelArea");
diff --git a/src/private/private.pro b/src/private/private.pro
index cbb08a80a87f5f0328ad16d651faa5b02928a36c..803b703f4a9569ed1862c0a506bee52a7c69f586 100644
--- a/src/private/private.pro
+++ b/src/private/private.pro
@@ -10,7 +10,7 @@ HEADERS += \
     $$PWD/qquickrangemodel_p_p.h \
     $$PWD/qquickcontrolsettings_p.h \
     $$PWD/qquickwheelarea_p.h \
-    $$PWD/qquickpaddedstyle_p.h \
+    $$PWD/qquickabstractstyle_p.h \
     $$PWD/qquickpadding_p.h
 
 SOURCES += \
@@ -20,7 +20,7 @@ SOURCES += \
     $$PWD/qquickrangemodel.cpp \
     $$PWD/qquickcontrolsettings.cpp \
     $$PWD/qquickwheelarea.cpp \
-    $$PWD/qquickpaddedstyle.cpp
+    $$PWD/qquickabstractstyle.cpp
 
 # private qml files
 QML_FILES += \
diff --git a/src/private/qquickpaddedstyle.cpp b/src/private/qquickabstractstyle.cpp
similarity index 58%
rename from src/private/qquickpaddedstyle.cpp
rename to src/private/qquickabstractstyle.cpp
index 320a3f535426c805e8124fd64003b1fbfbaf79ed..eba57b03b2d6f717af32d34b4bf360ed68ca7a28 100644
--- a/src/private/qquickpaddedstyle.cpp
+++ b/src/private/qquickabstractstyle.cpp
@@ -39,30 +39,60 @@
 **
 ****************************************************************************/
 
-#include "qquickpaddedstyle_p.h"
-#include "qquickpadding_p.h"
+#include "qquickabstractstyle_p.h"
+
+QT_BEGIN_NAMESPACE
 
 /*!
-    \qmltype PaddedStyle
-    \instantiates QQuickPaddedStyle
+    \qmltype AbstractStyle
+    \instantiates QQuickAbstractStyle
     \qmlabstract
     \internal
 */
 
-QT_BEGIN_NAMESPACE
+/*!
+    \qmlproperty int AbstractStyle::padding.top
+    \qmlproperty int AbstractStyle::padding.left
+    \qmlproperty int AbstractStyle::padding.right
+    \qmlproperty int AbstractStyle::padding.bottom
+
+    This grouped property holds the \c top, \c left, \c right and \c bottom padding.
+*/
 
-QQuickPaddedStyle::QQuickPaddedStyle(QQuickItem *parent) :
-    QQuickItem(parent)
+QQuickAbstractStyle::QQuickAbstractStyle(QObject *parent) : QObject(parent)
 {
 }
 
-/*!
-    \qmlproperty int PaddedStyle::padding.top
-    \qmlproperty int PaddedStyle::padding.left
-    \qmlproperty int PaddedStyle::padding.right
-    \qmlproperty int PaddedStyle::padding.bottom
+QQmlListProperty<QObject> QQuickAbstractStyle::data()
+{
+    return QQmlListProperty<QObject>(this, 0, &QQuickAbstractStyle::data_append, &QQuickAbstractStyle::data_count,
+                                     &QQuickAbstractStyle::data_at, &QQuickAbstractStyle::data_clear);
+}
 
-    This grouped property holds the \c top, \c left, \c right and \c bottom padding.
-*/
+void QQuickAbstractStyle::data_append(QQmlListProperty<QObject> *list, QObject *object)
+{
+    if (QQuickAbstractStyle *style = qobject_cast<QQuickAbstractStyle *>(list->object))
+        style->m_data.append(object);
+}
+
+int QQuickAbstractStyle::data_count(QQmlListProperty<QObject> *list)
+{
+    if (QQuickAbstractStyle *style = qobject_cast<QQuickAbstractStyle *>(list->object))
+        return style->m_data.count();
+    return 0;
+}
+
+QObject *QQuickAbstractStyle::data_at(QQmlListProperty<QObject> *list, int index)
+{
+    if (QQuickAbstractStyle *style = qobject_cast<QQuickAbstractStyle *>(list->object))
+        return style->m_data.at(index);
+    return 0;
+}
+
+void QQuickAbstractStyle::data_clear(QQmlListProperty<QObject> *list)
+{
+    if (QQuickAbstractStyle *style = qobject_cast<QQuickAbstractStyle *>(list->object))
+        style->m_data.clear();
+}
 
 QT_END_NAMESPACE
diff --git a/src/private/qquickpaddedstyle_p.h b/src/private/qquickabstractstyle_p.h
similarity index 76%
rename from src/private/qquickpaddedstyle_p.h
rename to src/private/qquickabstractstyle_p.h
index 1a5a3c95d378ee20d0e363da5b067107f770ea70..137640535c5661144c723dfe42b09554079def55 100644
--- a/src/private/qquickpaddedstyle_p.h
+++ b/src/private/qquickabstractstyle_p.h
@@ -39,29 +39,40 @@
 **
 ****************************************************************************/
 
-#ifndef QQUICKPADDEDSTYLE_H
-#define QQUICKPADDEDSTYLE_H
+#ifndef QQUICKABSTRACTSTYLE_H
+#define QQUICKABSTRACTSTYLE_H
 
-#include <QtQuick/QQuickItem>
-#include <QtQml/QQmlListProperty>
+#include <QtCore/qobject.h>
+#include <QtQml/qqmllist.h>
 #include "qquickpadding_p.h"
 
 QT_BEGIN_NAMESPACE
 
-class QQuickPaddedStyle : public QQuickItem
+class QQuickAbstractStyle : public QObject
 {
     Q_OBJECT
 
     Q_PROPERTY(QQuickPadding* padding READ padding CONSTANT)
+    Q_PROPERTY(QQmlListProperty<QObject> data READ data DESIGNABLE false)
+    Q_CLASSINFO("DefaultProperty", "data")
 
 public:
-    QQuickPaddedStyle(QQuickItem *parent = 0);
+    QQuickAbstractStyle(QObject *parent = 0);
+
     QQuickPadding* padding() { return &m_padding; }
 
+    QQmlListProperty<QObject> data();
+
 private:
+    static void data_append(QQmlListProperty<QObject> *list, QObject *object);
+    static int data_count(QQmlListProperty<QObject> *list);
+    static QObject *data_at(QQmlListProperty<QObject> *list, int index);
+    static void data_clear(QQmlListProperty<QObject> *list);
+
     QQuickPadding m_padding;
+    QList<QObject *> m_data;
 };
 
 QT_END_NAMESPACE
 
-#endif // QQUICKPADDEDSTYLE_H
+#endif // QQUICKABSTRACTSTYLE_H
diff --git a/src/private/qquickcontrolsettings.cpp b/src/private/qquickcontrolsettings.cpp
index 44db49c209c1fe5e5f82491d14bdff41f0810897..e2daa17fa450d022c1fa3daf655bb127a33edef5 100644
--- a/src/private/qquickcontrolsettings.cpp
+++ b/src/private/qquickcontrolsettings.cpp
@@ -133,4 +133,15 @@ QString QQuickControlSettings::styleFilePath() const
     return m_path + QLatin1Char('/') + m_name;
 }
 
+extern Q_GUI_EXPORT int qt_defaultDpiX();
+
+qreal QQuickControlSettings::dpiScaleFactor() const
+{
+#ifndef Q_OS_MAC
+    return (qreal(qt_defaultDpiX()) / 96.0);
+#endif
+    return 1.0;
+}
+
+
 QT_END_NAMESPACE
diff --git a/src/private/qquickcontrolsettings_p.h b/src/private/qquickcontrolsettings_p.h
index 98e8515124805c1d57fb77b13ca89331b421c594..8ff0ecbf5ca53abf65e4167a4475c00cc57cffb1 100644
--- a/src/private/qquickcontrolsettings_p.h
+++ b/src/private/qquickcontrolsettings_p.h
@@ -55,6 +55,7 @@ class QQuickControlSettings : public QObject
     Q_PROPERTY(QUrl style READ style NOTIFY styleChanged)
     Q_PROPERTY(QString styleName READ styleName WRITE setStyleName NOTIFY styleNameChanged)
     Q_PROPERTY(QString stylePath READ stylePath WRITE setStylePath NOTIFY stylePathChanged)
+    Q_PROPERTY(qreal dpiScaleFactor READ dpiScaleFactor CONSTANT)
 
 public:
     QQuickControlSettings(QQmlEngine *engine);
@@ -67,6 +68,8 @@ public:
     QString stylePath() const;
     void setStylePath(const QString &path);
 
+    qreal dpiScaleFactor() const;
+
 signals:
     void styleChanged();
     void styleNameChanged();
diff --git a/src/private/qquickstyleitem.cpp b/src/private/qquickstyleitem.cpp
index 422d9a8e5385550942146be3dd08a10949958ee2..115841adf04076c8998e56a867c1f62ca4d603f6 100644
--- a/src/private/qquickstyleitem.cpp
+++ b/src/private/qquickstyleitem.cpp
@@ -177,8 +177,9 @@ void QQuickStyleItem::initStyleOption()
     if (m_styleoption)
         m_styleoption->state = 0;
 
-    QPlatformTheme::Font platformFont = (m_hints.indexOf("mini") != -1) ? QPlatformTheme::MiniFont :
-                                        (m_hints.indexOf("small") != -1) ? QPlatformTheme::SmallFont :
+    QString sizeHint = m_hints.value("size").toString();
+    QPlatformTheme::Font platformFont = (sizeHint == "mini") ? QPlatformTheme::MiniFont :
+                                        (sizeHint == "small") ? QPlatformTheme::SmallFont :
                                         QPlatformTheme::SystemFont;
 
     switch (m_itemType) {
@@ -266,11 +267,12 @@ void QQuickStyleItem::initStyleOption()
                     QStyleOptionHeader::SortDown
                   : activeControl() == "up" ?
                         QStyleOptionHeader::SortUp : QStyleOptionHeader::None;
-        if (hints().contains("beginning"))
+        QString headerpos = m_properties.value("headerpos").toString();
+        if (headerpos == "beginning")
             opt->position = QStyleOptionHeader::Beginning;
-        else if (hints().contains("end"))
+        else if (headerpos == "end")
             opt->position = QStyleOptionHeader::End;
-        else if (hints().contains("only"))
+        else if (headerpos == "only")
             opt->position = QStyleOptionHeader::OnlyOneSection;
         else
             opt->position = QStyleOptionHeader::Middle;
@@ -318,32 +320,30 @@ void QQuickStyleItem::initStyleOption()
         QStyleOptionTab *opt = qstyleoption_cast<QStyleOptionTab*>(m_styleoption);
         opt->text = text();
 
-        if (m_properties["hasFrame"].toBool())
+        if (m_properties.value("hasFrame").toBool())
             opt->features |= QStyleOptionTab::HasFrame;
 
-        if (hints().length() > 2) {
-            QString orientation = hints()[0];
-            QString position = hints()[1];
-            QString selectedPosition = hints()[2];
+        QString orientation = m_properties.value("orientation").toString();
+        QString position = m_properties.value("tabpos").toString();
+        QString selectedPosition = m_properties.value("selectedpos").toString();
+
+        opt->shape = (orientation == "Bottom") ? QTabBar::RoundedSouth : QTabBar::RoundedNorth;
+        if (position == QLatin1String("beginning"))
+            opt->position = QStyleOptionTab::Beginning;
+        else if (position == QLatin1String("end"))
+            opt->position = QStyleOptionTab::End;
+        else if (position == QLatin1String("only"))
+            opt->position = QStyleOptionTab::OnlyOneTab;
+        else
+            opt->position = QStyleOptionTab::Middle;
 
-            opt->shape = (orientation == "Bottom") ? QTabBar::RoundedSouth : QTabBar::RoundedNorth;
+        if (selectedPosition == QLatin1String("next"))
+            opt->selectedPosition = QStyleOptionTab::NextIsSelected;
+        else if (selectedPosition == QLatin1String("previous"))
+            opt->selectedPosition = QStyleOptionTab::PreviousIsSelected;
+        else
+            opt->selectedPosition = QStyleOptionTab::NotAdjacent;
 
-            if (position == QLatin1String("beginning"))
-                opt->position = QStyleOptionTab::Beginning;
-            else if (position == QLatin1String("end"))
-                opt->position = QStyleOptionTab::End;
-            else if (position == QLatin1String("only"))
-                opt->position = QStyleOptionTab::OnlyOneTab;
-            else
-                opt->position = QStyleOptionTab::Middle;
-
-            if (selectedPosition == QLatin1String("next"))
-                opt->selectedPosition = QStyleOptionTab::NextIsSelected;
-            else if (selectedPosition == QLatin1String("previous"))
-                opt->selectedPosition = QStyleOptionTab::PreviousIsSelected;
-            else
-                opt->selectedPosition = QStyleOptionTab::NotAdjacent;
-        }
 
     } break;
 
@@ -459,7 +459,7 @@ void QQuickStyleItem::initStyleOption()
         QStyleOptionButton *opt = qstyleoption_cast<QStyleOptionButton*>(m_styleoption);
         if (!on())
             opt->state |= QStyle::State_Off;
-        if (m_hints.contains("partiallyChecked"))
+        if (m_properties.value("partiallyChecked").toBool())
             opt->state |= QStyle::State_NoChange;
         opt->text = text();
     }
@@ -643,9 +643,9 @@ void QQuickStyleItem::initStyleOption()
     if (m_horizontal)
         m_styleoption->state |= QStyle::State_Horizontal;
 
-    if (m_hints.indexOf("mini") != -1) {
+    if (sizeHint == "mini") {
         m_styleoption->state |= QStyle::State_Mini;
-    } else if (m_hints.indexOf("small") != -1) {
+    } else if (sizeHint == "small") {
         m_styleoption->state |= QStyle::State_Small;
     }
 
@@ -734,7 +734,7 @@ QSize QQuickStyleItem::sizeFromContents(int width, int height)
         size =  qApp->style()->sizeFromContents(QStyle::CT_CheckBox, m_styleoption, QSize(width,height));
         break;
     case ToolBar:
-        size = QSize(200, 40);
+        size = QSize(200, style().contains("windows") ? 30 : 42);
         break;
     case ToolButton: {
         QStyleOptionToolButton *btn = qstyleoption_cast<QStyleOptionToolButton*>(m_styleoption);
@@ -801,10 +801,14 @@ QSize QQuickStyleItem::sizeFromContents(int width, int height)
     case Edit:
 #ifdef Q_OS_MAC
         if (style() =="mac") {
-            if (m_hints.indexOf("small") != -1 || m_hints.indexOf("mini") != -1)
+            QString sizeHint = m_hints.value("size").toString();
+            if ((sizeHint == "small") || (sizeHint == "mini"))
                 size = QSize(width, 19);
             else
                 size = QSize(width, 22);
+            if (style() == "mac" && hints().value("rounded").toBool())
+                size += QSize(4, 4);
+
         } else
 #endif
         {
@@ -965,7 +969,7 @@ QVariant QQuickStyleItem::styleHint(const QString &metric)
     // Add SH_Menu_SpaceActivatesItem, SH_Menu_SubMenuPopupDelay
 }
 
-void QQuickStyleItem::setHints(const QStringList &str)
+void QQuickStyleItem::setHints(const QVariantMap &str)
 {
     if (m_hints != str) {
         m_hints = str;
@@ -983,6 +987,11 @@ void QQuickStyleItem::setHints(const QStringList &str)
     }
 }
 
+void QQuickStyleItem::resetHints()
+{
+    m_hints.clear();
+}
+
 
 void QQuickStyleItem::setElementType(const QString &str)
 {
@@ -1211,7 +1220,7 @@ void QQuickStyleItem::paint(QPainter *painter)
     case ToolButton:
 
 #ifdef Q_OS_MAC
-        if (style() == "mac" && hints().indexOf("segmented") != -1) {
+        if (style() == "mac" && hints().value("segmented").toBool()) {
             const QPaintDevice *target = painter->device();
              HIThemeSegmentDrawInfo sgi;
             sgi.version = 0;
@@ -1227,9 +1236,10 @@ void QQuickStyleItem::paint(QPainter *painter)
             }
             SInt32 button_height;
             GetThemeMetric(kThemeMetricButtonRoundedHeight, &button_height);
-            sgi.position = hints().contains("leftmost") ? kHIThemeSegmentPositionFirst:
-                           hints().contains("rightmost") ? kHIThemeSegmentPositionLast :
-                           hints().contains("h_middle") ? kHIThemeSegmentPositionMiddle :
+            QString buttonPos = m_properties.value("position").toString();
+            sgi.position = buttonPos == "leftmost" ? kHIThemeSegmentPositionFirst :
+                           buttonPos == "rightmost" ? kHIThemeSegmentPositionLast :
+                           buttonPos == "h_middle" ? kHIThemeSegmentPositionMiddle :
                            kHIThemeSegmentPositionOnly;
             QRect centered = m_styleoption->rect;
             centered.setHeight(button_height);
@@ -1257,12 +1267,7 @@ void QQuickStyleItem::paint(QPainter *painter)
         qApp->style()->drawControl(QStyle::CE_ShapedFrame, m_styleoption, painter);
         break;
     case FocusFrame:
-#ifdef Q_OS_MAC
-        if (style() == "mac" && hints().indexOf("rounded") != -1)
-            break; // embedded in the line itself
-        else
-#endif
-            qApp->style()->drawControl(QStyle::CE_FocusFrame, m_styleoption, painter);
+        qApp->style()->drawControl(QStyle::CE_FocusFrame, m_styleoption, painter);
         break;
     case FocusRect:
         qApp->style()->drawPrimitive(QStyle::PE_FrameFocusRect, m_styleoption, painter);
@@ -1288,7 +1293,7 @@ void QQuickStyleItem::paint(QPainter *painter)
         break;
     case Edit: {
 #ifdef Q_OS_MAC
-        if (style() == "mac" && hints().indexOf("rounded") != -1) {
+        if (style() == "mac" && hints().value("rounded").toBool()) {
             const QPaintDevice *target = painter->device();
             HIThemeFrameDrawInfo fdi;
             fdi.version = 0;
@@ -1299,9 +1304,7 @@ void QQuickStyleItem::paint(QPainter *painter)
             if ((m_styleoption->state & QStyle::State_ReadOnly) || !(m_styleoption->state & QStyle::State_Enabled))
                 fdi.state = kThemeStateInactive;
             fdi.isFocused = hasFocus();
-            HIRect hirect = qt_hirectForQRect(m_styleoption->rect,
-                                              QRect(frame_size, frame_size,
-                                                    frame_size * 2, frame_size * 2));
+            HIRect hirect = qt_hirectForQRect(m_styleoption->rect.adjusted(2, 2, -2, 2), QRect(0, 0, 0, 0));
             HIThemeDrawFrame(&hirect, &fdi, qt_mac_cg_context(target), kHIThemeOrientationNormal);
         } else
 #endif
diff --git a/src/private/qquickstyleitem_p.h b/src/private/qquickstyleitem_p.h
index 6deaeb1622133a5d5452cc42ed20811f3ba86c24..eee9e6e51f78fc20f6e66697f2ffefc2a0a775f0 100644
--- a/src/private/qquickstyleitem_p.h
+++ b/src/private/qquickstyleitem_p.h
@@ -67,7 +67,7 @@ class QQuickStyleItem: public QQuickItem
     Q_PROPERTY( QString text READ text WRITE setText NOTIFY textChanged)
     Q_PROPERTY( QString activeControl READ activeControl WRITE setActiveControl NOTIFY activeControlChanged)
     Q_PROPERTY( QString style READ style NOTIFY styleChanged)
-    Q_PROPERTY( QStringList hints READ hints WRITE setHints NOTIFY hintChanged)
+    Q_PROPERTY( QVariantMap hints READ hints WRITE setHints NOTIFY hintChanged RESET resetHints)
     Q_PROPERTY( QVariantMap properties READ properties WRITE setProperties NOTIFY propertiesChanged)
     Q_PROPERTY( QFont font READ font NOTIFY fontChanged)
 
@@ -140,7 +140,7 @@ public:
     QString elementType() const { return m_type; }
     QString text() const { return m_text; }
     QString activeControl() const { return m_activeControl; }
-    QStringList hints() const { return m_hints; }
+    QVariantMap hints() const { return m_hints; }
     QVariantMap properties() const { return m_properties; }
     QFont font() const { return m_font;}
     QString style() const;
@@ -161,8 +161,9 @@ public:
     void setElementType(const QString &str);
     void setText(const QString &str) { if (m_text != str) {m_text = str; emit textChanged();}}
     void setActiveControl(const QString &str) { if (m_activeControl != str) {m_activeControl = str; emit activeControlChanged();}}
-    void setHints(const QStringList &str);
+    void setHints(const QVariantMap &str);
     void setProperties(const QVariantMap &props) { if (m_properties != props) { m_properties = props; emit propertiesChanged(); } }
+    void resetHints();
 
     int contentWidth() const { return m_contentWidth; }
     void setContentWidth(int arg);
@@ -228,7 +229,7 @@ protected:
     QString m_type;
     QString m_text;
     QString m_activeControl;
-    QStringList m_hints;
+    QVariantMap m_hints;
     QVariantMap m_properties;
     QFont m_font;
 
diff --git a/src/styles/Base/ButtonStyle.qml b/src/styles/Base/ButtonStyle.qml
index e668b042207273e812308ba785863ab0d7318eec..b1fabb866ee8ef5b2247f82ff29ff86b849be00e 100644
--- a/src/styles/Base/ButtonStyle.qml
+++ b/src/styles/Base/ButtonStyle.qml
@@ -72,7 +72,7 @@ import QtQuick.Controls.Private 1.0
     If you need a custom label, you can replace the label item.
 */
 
-PaddedStyle {
+Style {
     id: buttonstyle
 
     /*! The \l Button attached to this style. */
@@ -96,7 +96,7 @@ PaddedStyle {
         properties of \c control, the following state properties are available:
 
         \table
-            \li readonly property bool styleData.hovered - The button is currently hovered.
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
         \endtable
     */
     property Component background: Item {
@@ -139,7 +139,7 @@ PaddedStyle {
         properties of \c control, the following state properties are available:
 
         \table
-            \li readonly property bool styleData.hovered - The button is currently hovered.
+            \row \li readonly property bool \b styleData.hovered  \li The control is being hovered.
         \endtable
     */
     property Component label: Text {
diff --git a/src/styles/Base/CheckBoxStyle.qml b/src/styles/Base/CheckBoxStyle.qml
index 1323aa85a94a4a117dc0388f8a584eb3d690d598..65b5450b294530a42880c0556a04d26f1b07438b 100644
--- a/src/styles/Base/CheckBoxStyle.qml
+++ b/src/styles/Base/CheckBoxStyle.qml
@@ -72,7 +72,7 @@ import QtQuick.Controls.Private 1.0
     }
     \endqml
 */
-PaddedStyle {
+Style {
     id: checkboxStyle
 
     /*! The \l CheckBox attached to this style. */
@@ -83,7 +83,13 @@ PaddedStyle {
                         SystemPalette.Active : SystemPalette.Disabled
     }
 
-    /*! The text label. */
+    /*! This defines the text label. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component label: Text {
         text: control.text
         color: __syspal.text
@@ -102,7 +108,13 @@ PaddedStyle {
     /*! The spacing between indicator and label. */
     property int spacing: 4
 
-    /*! The indicator button. */
+    /*! This defines the indicator button. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component indicator:  Item {
         implicitWidth: 18
         implicitHeight: 18
@@ -163,12 +175,14 @@ PaddedStyle {
                 id: indicatorLoader
                 sourceComponent: indicator
                 anchors.verticalCenter: parent.verticalCenter
+                property QtObject styleData: QtObject { readonly property bool hovered: control.__containsMouse }
             }
             Loader {
                 id: labelLoader
                 sourceComponent: label
                 anchors.top: parent.top
                 anchors.bottom: parent.bottom
+                property QtObject styleData: QtObject { readonly property bool hovered: control.__containsMouse }
             }
         }
     }
diff --git a/src/styles/Base/ComboBoxStyle.qml b/src/styles/Base/ComboBoxStyle.qml
index 9795d1a84f72f8f16483f09f1a0e8e27e1a39259..982ce00efc7d1c258213e6c5778f5e3a55a61a13 100644
--- a/src/styles/Base/ComboBoxStyle.qml
+++ b/src/styles/Base/ComboBoxStyle.qml
@@ -49,7 +49,7 @@ import QtQuick.Controls.Private 1.0
     \brief Provides custom styling for ComboBox
 */
 
-PaddedStyle {
+Style {
 
     /*! \internal */
     property var __syspal: SystemPalette {
@@ -62,7 +62,13 @@ PaddedStyle {
     /*! The padding between the background and the label components. */
     padding { top: 4 ; left: 6 ; right: 6 ; bottom:4 }
 
-    /*! The background of the button. */
+    /*! This defines the background of the button. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component background: Item {
         implicitWidth: 100
         implicitHeight: 25
@@ -98,7 +104,13 @@ PaddedStyle {
         }
     }
 
-    /*! The label of the button. */
+    /*! This defines the label of the button. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component label: Item {
         implicitWidth: textitem.implicitWidth + 20
         Text {
@@ -124,6 +136,9 @@ PaddedStyle {
             id: backgroundLoader
             anchors.fill: parent
             sourceComponent: background
+            property QtObject styleData: QtObject {
+                readonly property bool hovered: control.__containsMouse
+            }
         }
 
         Loader {
@@ -134,6 +149,9 @@ PaddedStyle {
             anchors.topMargin: padding.top
             anchors.rightMargin: padding.right
             anchors.bottomMargin: padding.bottom
+            property QtObject styleData: QtObject {
+                readonly property bool hovered: control.__containsMouse
+            }
         }
     }
 
diff --git a/src/styles/Base/GroupBoxStyle.qml b/src/styles/Base/GroupBoxStyle.qml
index 86fc83fe26d2368309ebd71da8af05a58e70bf19..db0c3bf6d3a4cb631833e324fedb4aa85c97d868 100644
--- a/src/styles/Base/GroupBoxStyle.qml
+++ b/src/styles/Base/GroupBoxStyle.qml
@@ -47,7 +47,7 @@ import QtQuick.Controls.Private 1.0
     \inqmlmodule QtQuick.Controls.Styles 1.0
     \since QtQuick.Controls.Styles 1.0
 */
-PaddedStyle {
+Style {
 
     /*! \internal */
     property var __syspal: SystemPalette {
diff --git a/src/styles/Base/ProgressBarStyle.qml b/src/styles/Base/ProgressBarStyle.qml
index c93a63565fc86c1234122cf2b7c43e34b2a92b3a..eab286f09d50dd89b824c4cfeb952a051247bdd2 100644
--- a/src/styles/Base/ProgressBarStyle.qml
+++ b/src/styles/Base/ProgressBarStyle.qml
@@ -71,7 +71,7 @@ import QtQuick.Controls.Private 1.0
     \endqml
 */
 
-PaddedStyle {
+Style {
     id: progressBarStyle
 
     /*! \internal */
diff --git a/src/styles/Base/RadioButtonStyle.qml b/src/styles/Base/RadioButtonStyle.qml
index 49d15e3d3ff9dc8056aacda48f932c9107915e8c..d87f57c7c9a2d2b5347a2490cc60dabb08645a51 100644
--- a/src/styles/Base/RadioButtonStyle.qml
+++ b/src/styles/Base/RadioButtonStyle.qml
@@ -72,7 +72,7 @@ import QtQuick.Controls.Private 1.0
     \endqml
 */
 
-PaddedStyle {
+Style {
     id: radiobuttonStyle
 
     /*! \internal */
@@ -83,7 +83,13 @@ PaddedStyle {
     /*! The \l RadioButton attached to this style. */
     readonly property RadioButton control: __control
 
-    /*! The text label. */
+    /*! This defines the text label. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component label: Text {
         text: control.text
         renderType: Text.NativeRendering
@@ -97,7 +103,13 @@ PaddedStyle {
     /*! The spacing between indicator and label. */
     property int spacing: 4
 
-    /*! The indicator button. */
+    /*! This defines the indicator button. In addition to the public
+        properties of \c control, the following state properties are available:
+
+        \table
+            \row \li readonly property bool \b styleData.hovered \li The control is being hovered.
+        \endtable
+    */
     property Component indicator: Rectangle {
         width: 17
         height: 17
@@ -133,12 +145,14 @@ PaddedStyle {
                 id: indicatorLoader
                 sourceComponent: indicator
                 anchors.verticalCenter: parent.verticalCenter
+                property QtObject styleData: QtObject { readonly property bool hovered: control.__containsMouse }
             }
             Loader {
                 id: labelLoader
                 sourceComponent: label
                 anchors.top: parent.top
                 anchors.bottom: parent.bottom
+                property QtObject styleData: QtObject { readonly property bool hovered: control.__containsMouse }
             }
         }
     }
diff --git a/src/styles/Base/ScrollViewStyle.qml b/src/styles/Base/ScrollViewStyle.qml
index b1fe789f16bc3939e14eaf584816aca13ba68dc2..3d1f8d26d2656878c4daa3ec49d4472ed8b16881 100644
--- a/src/styles/Base/ScrollViewStyle.qml
+++ b/src/styles/Base/ScrollViewStyle.qml
@@ -47,7 +47,7 @@ import QtQuick.Controls.Private 1.0
     \since QtQuick.Controls.Styles 1.0
     \brief Provides custom styling for ScrollView
 */
-PaddedStyle {
+Style {
     id: root
 
     /*! \internal */
@@ -97,10 +97,10 @@ PaddedStyle {
 
         You can access the following state properties:
 
-        \list
-        \li property bool styleData.hovered
-        \li property bool styleData.horizontal
-        \endlist
+        \table
+            \row \li property bool \b styleData.hovered
+            \row \li property bool \b styleData.horizontal
+        \endtable
     */
 
     property Component scrollBarBackground: Item {
@@ -123,11 +123,11 @@ PaddedStyle {
 
         You can access the following state properties:
 
-        \list
-        \li property bool styleData.hovered
-        \li property bool styleData.pressed
-        \li property bool styleData.horizontal
-        \endlist
+        \table
+            \row \li property bool \b styleData.hovered
+            \row \li property bool \b styleData.pressed
+            \row \li property bool \b styleData.horizontal
+        \endtable
     */
 
     property Component handle: BorderImage{
@@ -144,11 +144,11 @@ PaddedStyle {
 
         You can access the following state properties:
 
-        \list
-        \li property bool styleData.hovered
-        \li property bool styleData.pressed
-        \li property bool styleData.horizontal
-        \endlist
+        \table
+            \row \li property bool \b styleData.hovered
+            \row \li property bool \b styleData.pressed
+            \row \li property bool \b styleData.horizontal
+        \endtable
     */
     property Component incrementControl: Rectangle {
         implicitWidth: 16
@@ -181,11 +181,11 @@ PaddedStyle {
 
         You can access the following state properties:
 
-        \list
-        \li property bool styleData.hovered
-        \li property bool styleData.pressed
-        \li property bool styleData.horizontal
-        \endlist
+        \table
+            \row \li property bool \b styleData.hovered
+            \row \li property bool \b styleData.pressed
+            \row \li property bool \b styleData.horizontal
+        \endtable
     */
     property Component decrementControl: Rectangle {
         implicitWidth: 16
diff --git a/src/styles/Base/SliderStyle.qml b/src/styles/Base/SliderStyle.qml
index 7870e2f2af67a2755593498a760aebbdfb765ae8..a17de0a1fda88de976a3c3c87bfd44907b63468c 100644
--- a/src/styles/Base/SliderStyle.qml
+++ b/src/styles/Base/SliderStyle.qml
@@ -78,7 +78,7 @@ import QtQuick.Controls.Private 1.0
     }
     \endqml
 */
-PaddedStyle {
+Style {
     id: styleitem
 
     /*! \internal */
diff --git a/src/styles/Base/SpinBoxStyle.qml b/src/styles/Base/SpinBoxStyle.qml
index 6280ea93ed8a632407f3fe9a1708c17c79746150..c239483e2feac9a1c65a1a148839495803d7d6dd 100644
--- a/src/styles/Base/SpinBoxStyle.qml
+++ b/src/styles/Base/SpinBoxStyle.qml
@@ -49,7 +49,7 @@ import QtQuick.Controls.Private 1.0
     \brief Provides custom styling for SpinBox
 */
 
-PaddedStyle {
+Style {
     id: spinboxStyle
 
     /*! The \l SpinBox attached to this style. */
diff --git a/src/styles/Base/StatusBarStyle.qml b/src/styles/Base/StatusBarStyle.qml
index 049b15f20618485f21ee09143f7a8ae502493ed6..e8abe19ba273d37f199e2aa8b7283d4fd5cf6788 100644
--- a/src/styles/Base/StatusBarStyle.qml
+++ b/src/styles/Base/StatusBarStyle.qml
@@ -47,13 +47,16 @@ import QtQuick.Controls.Private 1.0
     \inqmlmodule QtQuick.Controls.Styles 1.0
     \since QtQuick.Controls.Styles 1.0
 */
-Item {
-    implicitHeight: 22
-    implicitWidth: 200
+Style {
 
-    Rectangle {
+    padding.left: 3
+    padding.right: 3
+    padding.top: 3
+    padding.bottom: 2
 
-        anchors.fill: parent
+    property Component panel: Rectangle {
+        implicitHeight: 16
+        implicitWidth: 200
 
         gradient: Gradient{
             GradientStop{color: "#eee" ; position: 0}
diff --git a/src/styles/Base/TabViewStyle.qml b/src/styles/Base/TabViewStyle.qml
index 91750ba9cf72aa16d8863aa7fd08ff4d49b6b60a..04e34d4c92fa8b9dfd3a211e95bb745afaf8416e 100644
--- a/src/styles/Base/TabViewStyle.qml
+++ b/src/styles/Base/TabViewStyle.qml
@@ -122,20 +122,21 @@ Style {
         \c styleData property, with the following properties:
 
         \table
-            \li readonly property int styleData.index - This is the current tab index.
-            \li readonly property bool styleData.selected - This is the active tab.
-            \li readonly property string styleData.title - Tab title text.
-            \li readonly property bool styleData.nextSelected - The next tab is selected.
-            \li readonly property bool styleData.previousSelected - The previous tab is selected.
-            \li readonly property bool styleData.hovered - The tab is currently under the mouse.
-            \li readonly property bool styleData.activeFocus - The tab button has keyboard focus.
+            \row \li readonly property int \b styleData.index \li This is the current tab index.
+            \row \li readonly property bool \b styleData.selected \li This is the active tab.
+            \row \li readonly property string \b styleData.title \li Tab title text.
+            \row \li readonly property bool \b styleData.nextSelected \li The next tab is selected.
+            \row \li readonly property bool \b styleData.previousSelected \li The previous tab is selected.
+            \row \li readonly property bool \b styleData.hovered \li The tab is being hovered.
+            \row \li readonly property bool \b styleData.activeFocus \li The tab button has keyboard focus.
+            \row \li readonly property bool \b styleData.availableWidth \li The available width for the tabs.
         \endtable
     */
     property Component tab: Item {
         scale: control.tabPosition === Qt.TopEdge ? 1 : -1
 
         property int totalOverlap: tabOverlap * (control.count - 1)
-        property real maxTabWidth: (availableWidth + totalOverlap) / control.count
+        property real maxTabWidth: (styleData.availableWidth + totalOverlap) / control.count
 
         implicitWidth: Math.round(Math.min(maxTabWidth, textitem.implicitWidth + 20))
         implicitHeight: Math.round(textitem.implicitHeight + 10)
diff --git a/src/styles/Base/TableViewStyle.qml b/src/styles/Base/TableViewStyle.qml
index 6d4f9feb935961e900e0efb7d8c1d804a169ede4..a7b3ba491921636cd788cef95975b1d3ce3a314a 100644
--- a/src/styles/Base/TableViewStyle.qml
+++ b/src/styles/Base/TableViewStyle.qml
@@ -59,7 +59,13 @@ ScrollViewStyle {
     /*! The text color. */
     property color textColor: __syspal.text
 
-    /*! The text highlight color, used behind selections. */
+    /*! The background color. */
+    property color backgroundColor: __syspal.base
+
+    /*! The alternate background color. */
+    property color alternateBackgroundColor: Qt.darker(__syspal.base, 1.06)
+
+    /*! The text highlight color, used within selections. */
     property color highlightedTextColor: "white"
 
     /*! Activates items on single click. */
@@ -75,8 +81,9 @@ ScrollViewStyle {
             anchors.fill: parent
             verticalAlignment: Text.AlignVCenter
             horizontalAlignment: Text.AlignLeft
-            anchors.leftMargin: 4
+            anchors.leftMargin: 12
             text: styleData.value
+            elide: Text.ElideRight
             color: textColor
             renderType: Text.NativeRendering
         }
@@ -92,36 +99,43 @@ ScrollViewStyle {
 
     /* Delegate for header. This delegate is described in \l TableView::rowDelegate */
     property Component rowDelegate: Rectangle {
-        implicitHeight: 20
-        implicitWidth: 80
+        height: 20
         property color selectedColor: styleData.hasActiveFocus ? "#38d" : "#999"
         gradient: Gradient {
-            GradientStop { color: styleData.selected ? Qt.lighter(selectedColor, 1.3)  : styleData.alternate ? "#f2f2f2" : "white" ; position: 0 }
-            GradientStop { color: styleData.selected ? Qt.lighter(selectedColor, 1.0)  : styleData.alternate ? "#f2f2f2" : "white" ; position: 1 }
+            GradientStop {
+                color: styleData.selected ? Qt.lighter(selectedColor, 1.3) :
+                                            styleData.alternate ? alternateBackgroundColor : backgroundColor
+                position: 0
+            }
+            GradientStop {
+                color: styleData.selected ? Qt.lighter(selectedColor, 1.0) :
+                                            styleData.alternate ? alternateBackgroundColor : backgroundColor
+                position: 1
+            }
         }
         Rectangle {
             anchors.bottom: parent.bottom
             width: parent.width
             height: 1
-            color: styleData.elected ? Qt.darker(selectedColor, 1.4) : "transparent"
+            color: styleData.selected ? Qt.darker(selectedColor, 1.4) : "transparent"
         }
         Rectangle {
             anchors.top: parent.top
             width: parent.width ; height: 1
-            color: styleData.elected ? Qt.darker(selectedColor, 1.1) : "transparent"
+            color: styleData.selected ? Qt.darker(selectedColor, 1.1) : "transparent"
         }
     }
 
     /* Delegate for header. This delegate is described in \l TableView::itemDelegate */
     property Component itemDelegate: Item {
         height: Math.max(16, label.implicitHeight)
-        property int implicitWidth: sizehint.paintedWidth + 4
+        property int implicitWidth: sizehint.paintedWidth + 20
 
         Text {
             id: label
             objectName: "label"
             width: parent.width
-            anchors.margins: 6
+            anchors.leftMargin: 12
             anchors.left: parent.left
             anchors.right: parent.right
             horizontalAlignment: styleData.textAlignment
diff --git a/src/styles/Base/TextFieldStyle.qml b/src/styles/Base/TextFieldStyle.qml
index 3c1a10a6906733d30d99a51e6cada29ba17c73bf..7b0ba6b2ad9930986c27391213e206106fc2881e 100644
--- a/src/styles/Base/TextFieldStyle.qml
+++ b/src/styles/Base/TextFieldStyle.qml
@@ -64,7 +64,7 @@ import QtQuick.Controls.Private 1.0
     \endqml
 */
 
-PaddedStyle {
+Style {
     id: style
 
     /*! \internal */
diff --git a/src/styles/Base/ToolBarStyle.qml b/src/styles/Base/ToolBarStyle.qml
index aa21195acf923a09589c48549e53fb10a1d030d6..835f821965b4ea08dd37d9860126caec036e36c3 100644
--- a/src/styles/Base/ToolBarStyle.qml
+++ b/src/styles/Base/ToolBarStyle.qml
@@ -39,26 +39,35 @@
 ****************************************************************************/
 import QtQuick 2.1
 import QtQuick.Controls 1.0
+import QtQuick.Controls.Private 1.0
 
 /*!
     \qmltype ToolBarStyle
     \internal
     \inqmlmodule QtQuick.Controls.Styles 1.0
 */
-Item {
-    implicitHeight: 42
-    implicitWidth: 200
-    Rectangle {
-        anchors.fill: parent
-        gradient: Gradient{
-            GradientStop{color: "#eee" ; position: 0}
-            GradientStop{color: "#ccc" ; position: 1}
-        }
+Style {
+
+    padding.left: 6
+    padding.right: 6
+    padding.top: 3
+    padding.bottom: 3
+
+    property Component panel: Item {
+        implicitHeight: 40
+        implicitWidth: 200
         Rectangle {
-            anchors.bottom: parent.bottom
-            width: parent.width
-            height: 1
-            color: "#999"
+            anchors.fill: parent
+            gradient: Gradient{
+                GradientStop{color: "#eee" ; position: 0}
+                GradientStop{color: "#ccc" ; position: 1}
+            }
+            Rectangle {
+                anchors.bottom: parent.bottom
+                width: parent.width
+                height: 1
+                color: "#999"
+            }
         }
     }
 }
diff --git a/src/styles/Desktop/CheckBoxStyle.qml b/src/styles/Desktop/CheckBoxStyle.qml
index 65c517ba322ab16275e23f056a698e00323de393..d85a2cb308a3fd269a6aa560e02451c4aa621772 100644
--- a/src/styles/Desktop/CheckBoxStyle.qml
+++ b/src/styles/Desktop/CheckBoxStyle.qml
@@ -55,16 +55,8 @@ Style {
             hover: control.__containsMouse
             enabled: control.enabled
             hasFocus: control.activeFocus && styleitem.style == "mac"
-            hints: {
-                if (control.checkedState === Qt.PartiallyChecked)
-                    control.styleHints.push("partiallyChecked");
-                else {
-                    var index = control.styleHints.indexOf("partiallyChecked");
-                    if (index !== -1)
-                        control.styleHints.splice(index, 1);
-                }
-                control.styleHints;
-            }
+            hints: control.styleHints
+            properties: {"partiallyChecked": (control.checkedState === Qt.PartiallyChecked) }
             contentHeight: textitem.implicitHeight
             contentWidth: textitem.implicitWidth + indicatorWidth
             property int indicatorWidth: pixelMetric("indicatorwidth") + (macStyle ? 2 : 4)
diff --git a/src/styles/Desktop/GroupBoxStyle.qml b/src/styles/Desktop/GroupBoxStyle.qml
index 3c4bfc43e119fc65acf66dd3618d86a219e0ae9a..81d6de86f44da8a75c956e9ddec45ae7319bf4b8 100644
--- a/src/styles/Desktop/GroupBoxStyle.qml
+++ b/src/styles/Desktop/GroupBoxStyle.qml
@@ -42,7 +42,7 @@ import QtQuick.Controls 1.0
 import QtQuick.Controls.Private 1.0
 
 
-PaddedStyle {
+Style {
     readonly property GroupBox control: __control
 
     property var __style: StyleItem { id: style }
@@ -55,10 +55,10 @@ PaddedStyle {
     }
 
     padding {
-        top: (control.title.length > 0 || control.checkable ? titleHeight : 0) + 6
-        left: 8
-        right: 8
-        bottom: 6
+        top: Math.round(Settings.dpiScaleFactor * (control.title.length > 0 || control.checkable ? titleHeight : 0) + (style.style == "mac" ? 9 : 6))
+        left: Math.round(Settings.dpiScaleFactor * 8)
+        right: Math.round(Settings.dpiScaleFactor * 8)
+        bottom: Math.round(Settings.dpiScaleFactor * 7 + (style.style.indexOf("windows") > -1 ? 2 : 0))
     }
 
     property Component panel: StyleItem {
diff --git a/src/styles/Desktop/ScrollViewStyle.qml b/src/styles/Desktop/ScrollViewStyle.qml
index d504c59b6915183751ede9bfcd23ae4df33211ca..deddc354a6ea940322f02e5cfcd1372b98ac6256 100644
--- a/src/styles/Desktop/ScrollViewStyle.qml
+++ b/src/styles/Desktop/ScrollViewStyle.qml
@@ -42,7 +42,7 @@ import QtQuick.Controls 1.0
 import QtQuick.Controls.Private 1.0
 import "." as Desktop
 
-PaddedStyle {
+Style {
     id: root
 
     padding {
diff --git a/src/styles/Desktop/SliderStyle.qml b/src/styles/Desktop/SliderStyle.qml
index 1c89d21c1502febcfbe94f40c4836804c20ccf77..fbe2cfb6d8a337232697d90fe9843c6f6dfc604c 100644
--- a/src/styles/Desktop/SliderStyle.qml
+++ b/src/styles/Desktop/SliderStyle.qml
@@ -40,7 +40,7 @@
 import QtQuick 2.1
 import QtQuick.Controls.Private 1.0
 
-PaddedStyle {
+Style {
     readonly property Item control: __control
     property Component panel: StyleItem {
         elementType: "slider"
diff --git a/src/styles/Desktop/SpinBoxStyle.qml b/src/styles/Desktop/SpinBoxStyle.qml
index e8012a69069000d268d37c0d00fdc850474ea6bf..d43a26301189f128482a9af3601338e90c6da28d 100644
--- a/src/styles/Desktop/SpinBoxStyle.qml
+++ b/src/styles/Desktop/SpinBoxStyle.qml
@@ -41,7 +41,7 @@ import QtQuick 2.1
 import QtQuick.Controls 1.0
 import QtQuick.Controls.Private 1.0
 
-PaddedStyle {
+Style {
     readonly property SpinBox control: __control
 
     property var __syspal: SystemPalette {
@@ -50,11 +50,12 @@ PaddedStyle {
     }
 
     padding {
-       top: control.__panel ? control.__panel.topPadding + (control.__panel.style === "mac" ? 1 : 0) : 0
+       top: control.__panel ? control.__panel.topPadding + (styleitem.style === "mac" ? 2 : 0) : 0
        left: control.__panel ? control.__panel.leftPadding : 0
        right: control.__panel ? control.__panel.rightPadding : 0
        bottom: control.__panel ? control.__panel.bottomPadding : 0
    }
+    StyleItem {id: styleitem ; visible: false}
 
     property Component panel: Item {
         id: style
@@ -115,7 +116,7 @@ PaddedStyle {
             elementType: "spinbox"
             anchors.fill: parent
             sunken: (styleData.downEnabled && styleData.downPressed) || (styleData.upEnabled && styleData.upPressed)
-            hover: styleData.containsMouse
+            hover: styleData.hovered
             hints: control.styleHints
             hasFocus: control.activeFocus
             enabled: control.enabled
diff --git a/src/styles/Desktop/StatusBarStyle.qml b/src/styles/Desktop/StatusBarStyle.qml
index 6921a2fe5f0397c2944afce3d50542bdbfbaf663..930ca773c17dd1018c35e8ffa50fab8ffb964555 100644
--- a/src/styles/Desktop/StatusBarStyle.qml
+++ b/src/styles/Desktop/StatusBarStyle.qml
@@ -46,11 +46,16 @@ import QtQuick.Controls.Private 1.0
     \internal
     \inqmlmodule QtQuick.Controls.Styles 1.0
 */
-Item {
-    implicitHeight: 20
-    implicitWidth: parent ? parent.width : style.implicitWidth
-    StyleItem {
-        id: style
+Style {
+
+    padding.left: 4
+    padding.right: 4
+    padding.top: 3
+    padding.bottom: 2
+
+    property Component panel: StyleItem {
+        implicitHeight: 16
+        implicitWidth: 200
         anchors.fill: parent
         elementType: "statusbar"
     }
diff --git a/src/styles/Desktop/TabViewStyle.qml b/src/styles/Desktop/TabViewStyle.qml
index b28300e2e90c6710dd7bfec7f3b1d6720a66fd0e..51b70ea4dd62292032876cf3b3ce389d2973ce57 100644
--- a/src/styles/Desktop/TabViewStyle.qml
+++ b/src/styles/Desktop/TabViewStyle.qml
@@ -51,7 +51,7 @@ Style {
 
     property StyleItem __barstyle: StyleItem {
         elementType: "tab"
-        hints: [control.tabPosition === Qt.TopEdge ? "Top" : "Bottom"]
+        properties: { "tabposition" : (control.tabPosition === Qt.TopEdge ? "Top" : "Bottom") }
         visible: false
     }
 
@@ -65,6 +65,7 @@ Style {
         minimum: tabbarItem && tabsVisible && tabbarItem.tab(currentIndex) ? tabbarItem.tab(currentIndex).width : 0
         maximum: tabbarItem && tabsVisible ? tabbarItem.width : width
         properties: { "selectedTabRect" : tabbarItem.__selectedTabRect, "orientation" : control.tabPosition }
+        hints: control.styleHints
         Component.onCompleted: {
             stack.frameWidth = styleitem.pixelMetric("defaultframewidth");
             stack.style = style;
@@ -94,8 +95,8 @@ Style {
             anchors.rightMargin: -paintMargins
             anchors.bottomMargin: -1
             anchors.leftMargin: -paintMargins + (style === "mac" && selected ? -1 : 0)
-            properties: { "hasFrame" : true }
-            hints: [orientation, tabpos, selectedpos]
+            properties: { "hasFrame" : true, "orientation": orientation, "tabpos": tabpos, "selectedpos": selectedpos }
+            hints: control.styleHints
 
             selected: styleData.selected
             text: elidedText(styleData.title, tabbarItem.elide, item.width - item.tabHSpace)
diff --git a/src/styles/Desktop/TableViewStyle.qml b/src/styles/Desktop/TableViewStyle.qml
index c8eac3c627a46a74769909fcc0316af64de8925a..171678a3fa37b14e312f6622854141fedb6379df 100644
--- a/src/styles/Desktop/TableViewStyle.qml
+++ b/src/styles/Desktop/TableViewStyle.qml
@@ -44,9 +44,14 @@ import QtQuick.Controls.Private 1.0
 ScrollViewStyle {
     id: root
 
+    property var __syspal: SystemPalette {
+        colorGroup: control.enabled ?
+                        SystemPalette.Active : SystemPalette.Disabled
+    }
     readonly property TableView control: __control
     property bool activateItemOnSingleClick: __styleitem.styleHint("activateItemOnSingleClick")
     property color textColor: __styleitem.textColor
+    property color backgroundColor: __syspal.base
     property color highlightedTextColor: __styleitem.highlightedTextColor
 
     property StyleItem __styleitem: StyleItem{
@@ -68,7 +73,8 @@ ScrollViewStyle {
         sunken: styleData.pressed
         text: styleData.value
         hover: styleData.containsMouse
-        hints: headerPosition
+        hints: control.styleHints
+        properties: {"headerpos": headerPosition}
         property string itemSort:  (control.sortIndicatorVisible && styleData.column === control.sortIndicatorColumn) ? (control.sortIndicatorOrder == Qt.AscendingOrder ? "up" : "down") : "";
         property string headerPosition: control.columnCount === 1 ? "only" :
                                                           styleData.column === control.columnCount-1 ? "end" :
@@ -86,13 +92,13 @@ ScrollViewStyle {
 
     property Component itemDelegate: Item {
         height: Math.max(16, label.implicitHeight)
-        property int implicitWidth: sizehint.paintedWidth + 4
+        property int implicitWidth: sizehint.paintedWidth + 16
 
         Text {
             id: label
             objectName: "label"
             width: parent.width
-            anchors.margins: 6
+            anchors.leftMargin: 8
             font: __styleitem.font
             anchors.left: parent.left
             anchors.right: parent.right
diff --git a/src/styles/Desktop/TextFieldStyle.qml b/src/styles/Desktop/TextFieldStyle.qml
index 9a093d2a36d2d3538258eca4be0144fe13a7f4a0..ee6779ebd05d53ef34fd6edd3174a3b5400e06a9 100644
--- a/src/styles/Desktop/TextFieldStyle.qml
+++ b/src/styles/Desktop/TextFieldStyle.qml
@@ -64,9 +64,9 @@ Style {
         property color selectedTextColor: syspal.highlightedText
 
 
-        property bool rounded: hints.indexOf("rounded") > -1
+        property bool rounded: !!hints["rounded"]
         property int topMargin: style === "mac" ? 3 : 2
-        property int leftMargin: rounded ? 8 : 4
+        property int leftMargin: rounded ? 12 : 4
         property int rightMargin: leftMargin
         property int bottomMargin: 2
 
@@ -76,7 +76,7 @@ Style {
 
         FocusFrame {
             anchors.fill: parent
-            visible: textfield.activeFocus && textfieldstyle.styleHint("focuswidget")
+            visible: textfield.activeFocus && textfieldstyle.styleHint("focuswidget") && !rounded
         }
     }
 }
diff --git a/src/styles/Desktop/ToolBarStyle.qml b/src/styles/Desktop/ToolBarStyle.qml
index 4c7e036ec36dea8dd80c05cb54468f4aca9f633c..56dfbce38a37f961afef9c3ba06729a734721e86 100644
--- a/src/styles/Desktop/ToolBarStyle.qml
+++ b/src/styles/Desktop/ToolBarStyle.qml
@@ -46,10 +46,16 @@ import QtQuick.Controls.Private 1.0
     \internal
     \inqmlmodule QtQuick.Controls.Styles 1.0
 */
-Item {
-    implicitHeight: Math.max(childrenRect.height, toolbar.implicitHeight)
-    implicitWidth: parent ? parent.width : toolbar.implicitWidth
-    StyleItem {
+Style {
+
+    padding.left: 6
+    padding.right: 6
+    padding.top: 1
+    padding.bottom: style.style == "mac" ? 1 : 2
+
+    StyleItem { id: style ; visible: false}
+
+    property Component panel: StyleItem {
         id: toolbar
         anchors.fill: parent
         elementType: "toolbar"
diff --git a/src/styles/Desktop/ToolButtonStyle.qml b/src/styles/Desktop/ToolButtonStyle.qml
index b54eeee2d525665b41bca044ad392cff0bb46b3b..b5b260e627d7fe8b2dee62ec3d41f2fd46ea7bbd 100644
--- a/src/styles/Desktop/ToolButtonStyle.qml
+++ b/src/styles/Desktop/ToolButtonStyle.qml
@@ -46,16 +46,17 @@ Style {
 
         anchors.fill: parent
         elementType: "toolbutton"
-        on: control.pressed || (control.checkable && control.checked)
-        sunken: control.pressed || (control.checkable && control.checked)
+        on: control.checkable && control.checked
+        sunken: control.pressed
         raised: !(control.checkable && control.checked) && control.__containsMouse
         hover: control.__containsMouse
         hasFocus: control.activeFocus
-        hints: control.styleHints.concat([control.__position])
+        hints: control.styleHints
         text: control.text
 
         properties: {
-            "icon": control.__action.__icon
+            "icon": control.__action.__icon,
+            "position": control.__position
         }
     }
 }
diff --git a/tests/auto/controls/data/tableview/table_dynamiccolumns.qml b/tests/auto/controls/data/tableview/table_dynamiccolumns.qml
new file mode 100644
index 0000000000000000000000000000000000000000..ce2cb93c4ce9964339f0b348caed1005260472c2
--- /dev/null
+++ b/tests/auto/controls/data/tableview/table_dynamiccolumns.qml
@@ -0,0 +1,65 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Quick Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+**   * Redistributions of source code must retain the above copyright
+**     notice, this list of conditions and the following disclaimer.
+**   * Redistributions in binary form must reproduce the above copyright
+**     notice, this list of conditions and the following disclaimer in
+**     the documentation and/or other materials provided with the
+**     distribution.
+**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
+**     of its contributors may be used to endorse or promote products derived
+**     from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.1
+import QtQuick.Controls 1.0
+
+TableView {
+    id: tableView
+
+    TableViewColumn { title: "static" }
+
+    Component {
+        id: component
+        TableViewColumn { }
+    }
+
+    Component.onCompleted: {
+        addColumn(component.createObject(tableView, {title: "added item"}))
+
+        var col1 = addColumn(component)
+        col1.title = "added component"
+
+        insertColumn(0, component.createObject(tableView, {title: "inserted item"}))
+
+        var col2 = insertColumn(0, component)
+        col2.title = "inserted component"
+    }
+}
diff --git a/tests/auto/controls/data/tst_rowlayout.qml b/tests/auto/controls/data/tst_rowlayout.qml
index fd21f47560de6215bcf4b039bbb3d08c40cc6058..458a2885f2604a453faf400f039d904982e978a2 100644
--- a/tests/auto/controls/data/tst_rowlayout.qml
+++ b/tests/auto/controls/data/tst_rowlayout.qml
@@ -633,5 +633,25 @@ Item {
             compare(r1.y, 6) // 5.5
             layout.destroy();
         }
+
+
+        Component {
+            id: layout_deleteLayout
+            ColumnLayout {
+                property int dummyproperty: 0   // yes really - its needed
+                RowLayout {
+                    Text { text: "label1" }     // yes, both are needed
+                    Text { text: "label2" }
+                }
+            }
+        }
+
+        function test_destroyLayout()
+        {
+            var layout = layout_deleteLayout.createObject(container)
+            layout.children[0].children[0].visible = true
+            layout.visible = false
+            layout.destroy()    // Do not crash
+        }
     }
 }
diff --git a/tests/auto/controls/data/tst_spinbox.qml b/tests/auto/controls/data/tst_spinbox.qml
index 4e701cc06f2330d46dd119f5c10b8b594a59c5ab..a00544b85d466f886e79878a08b879bb40b24e8f 100644
--- a/tests/auto/controls/data/tst_spinbox.qml
+++ b/tests/auto/controls/data/tst_spinbox.qml
@@ -178,7 +178,7 @@ Item {
             setCoordinates(spinbox)
 
             mouseMove(spinbox, mainCoord.x, mainCoord.y)
-            compare(spinbox.__styleData.containsMouse, true)
+            compare(spinbox.__styleData.hovered, true)
             compare(spinbox.__styleData.upHovered, false)
             compare(spinbox.__styleData.downHovered, false)
 
@@ -191,7 +191,7 @@ Item {
             compare(spinbox.__styleData.downHovered, true)
 
             mouseMove(spinbox, mainCoord.x - 2, mainCoord.y - 2)
-            compare(spinbox.__styleData.containsMouse, false)
+            compare(spinbox.__styleData.hovered, false)
             compare(spinbox.__styleData.upHovered, false)
             compare(spinbox.__styleData.downHovered, false)
             spinbox.destroy()
diff --git a/tests/auto/controls/data/tst_stack.qml b/tests/auto/controls/data/tst_stack.qml
index fa833680f649c984f224fda68e72d52e48b2db12..a7363de7a67ef943b272c94cfb6323ccdf53cca6 100644
--- a/tests/auto/controls/data/tst_stack.qml
+++ b/tests/auto/controls/data/tst_stack.qml
@@ -58,8 +58,8 @@ TestCase {
         compare(item.status, 0); // Stack.Inactive
     }
 
-    function test_pageStack() {
-        var item = Qt.createQmlObject('import QtQuick 2.0; import QtQuick.Controls 1.0; Item { property StackView pageStack: Stack.pageStack }', testCase, '');
-        compare(item.pageStack, null);
+    function test_view() {
+        var item = Qt.createQmlObject('import QtQuick 2.0; import QtQuick.Controls 1.0; Item { property StackView view: Stack.view }', testCase, '');
+        compare(item.view, null);
     }
 }
diff --git a/tests/auto/controls/data/tst_pagestack.qml b/tests/auto/controls/data/tst_stackview.qml
similarity index 96%
rename from tests/auto/controls/data/tst_pagestack.qml
rename to tests/auto/controls/data/tst_stackview.qml
index b20556fbd8d6a0d5a9ca2a810cac9c7b2ce7941e..3daac7855ec0355cb1951ec9c010bebc5e694fea 100644
--- a/tests/auto/controls/data/tst_pagestack.qml
+++ b/tests/auto/controls/data/tst_stackview.qml
@@ -60,10 +60,10 @@ TestCase {
         StackView {}
     }
 
-    function test_pagestack() {
+    function test_stackview() {
         var component = stackComponent
         var stack = component.createObject(testCase);
-        verify (stack !== null, "pagestack created is null")
+        verify (stack !== null, "stackview created is null")
         verify (stack.depth === 0)
         stack.push(anItem)
         verify (stack.depth === 1)
diff --git a/tests/auto/controls/data/tst_tableview.qml b/tests/auto/controls/data/tst_tableview.qml
index 6de8d57791a119852603d9412626d4bb1cdcdcff..d092ae9d599c20f2365c1abce60a571d0b28e457 100644
--- a/tests/auto/controls/data/tst_tableview.qml
+++ b/tests/auto/controls/data/tst_tableview.qml
@@ -55,6 +55,11 @@ TestCase {
     width:400
     height:400
 
+    Component {
+        id: newColumn
+        TableViewColumn { }
+    }
+
     function test_usingqmlmodel_data() {
         return [
                     {tag: "listmodel", a: "tableview/table5_listmodel.qml", expected: "A"},
@@ -173,7 +178,14 @@ TestCase {
         compare(component.status, Component.Ready)
         var table =  component.createObject(container);
         verify(table !== null, "table created is null")
-        table.forceActiveFocus();
+
+        // wait for items to be created
+        var timeout = 2000
+        while (timeout >= 0 && table.rowAt(15, 55) === -1) {
+            timeout -= 50
+            wait(50)
+        }
+
         compare(table.test, 0)
         mouseClick(table, 15 , 55, Qt.LeftButton)
         compare(table.test, 1)
@@ -228,6 +240,128 @@ TestCase {
         table.destroy()
     }
 
+    function test_dynamicColumns() {
+        var component = Qt.createComponent("tableview/table_dynamiccolumns.qml")
+        compare(component.status, Component.Ready)
+        var table = component.createObject(container)
+
+        // insertColumn(component), insertColumn(item),
+        // addColumn(component), addColumn(item), and static TableViewColumn {}
+        compare(table.columnCount, 5)
+        compare(table.getColumn(0).title, "inserted component")
+        compare(table.getColumn(1).title, "inserted item")
+        table.destroy()
+    }
+
+    function test_addRemoveColumn() {
+        var tableView = Qt.createQmlObject('import QtQuick 2.1; import QtQuick.Controls 1.0; TableView { }', testCase, '');
+        compare(tableView.columnCount, 0)
+        tableView.addColumn(newColumn.createObject(testCase, {title: "title 1"}))
+        compare(tableView.columnCount, 1)
+        tableView.addColumn(newColumn.createObject(testCase, {title: "title 2"}))
+        compare(tableView.columnCount, 2)
+        compare(tableView.getColumn(0).title, "title 1")
+        compare(tableView.getColumn(1).title, "title 2")
+
+        tableView.insertColumn(1, newColumn.createObject(testCase, {title: "title 3"}))
+        compare(tableView.columnCount, 3)
+        compare(tableView.getColumn(0).title, "title 1")
+        compare(tableView.getColumn(1).title, "title 3")
+        compare(tableView.getColumn(2).title, "title 2")
+
+        tableView.insertColumn(0, newColumn.createObject(testCase, {title: "title 4"}))
+        compare(tableView.columnCount, 4)
+        compare(tableView.getColumn(0).title, "title 4")
+        compare(tableView.getColumn(1).title, "title 1")
+        compare(tableView.getColumn(2).title, "title 3")
+        compare(tableView.getColumn(3).title, "title 2")
+
+        tableView.removeColumn(0)
+        compare(tableView.columnCount, 3)
+        compare(tableView.getColumn(0).title, "title 1")
+        compare(tableView.getColumn(1).title, "title 3")
+        compare(tableView.getColumn(2).title, "title 2")
+
+        tableView.removeColumn(1)
+        compare(tableView.columnCount, 2)
+        compare(tableView.getColumn(0).title, "title 1")
+        compare(tableView.getColumn(1).title, "title 2")
+
+        tableView.removeColumn(1)
+        compare(tableView.columnCount, 1)
+        compare(tableView.getColumn(0).title, "title 1")
+
+        tableView.removeColumn(0)
+        compare(tableView.columnCount, 0)
+        tableView.destroy()
+    }
+
+    function test_moveColumn_data() {
+        return [
+            {tag:"0->1 (0)", from: 0, to: 1},
+            {tag:"0->1 (1)", from: 0, to: 1},
+            {tag:"0->1 (2)", from: 0, to: 1},
+
+            {tag:"0->2 (0)", from: 0, to: 2},
+            {tag:"0->2 (1)", from: 0, to: 2},
+            {tag:"0->2 (2)", from: 0, to: 2},
+
+            {tag:"1->0 (0)", from: 1, to: 0},
+            {tag:"1->0 (1)", from: 1, to: 0},
+            {tag:"1->0 (2)", from: 1, to: 0},
+
+            {tag:"1->2 (0)", from: 1, to: 2},
+            {tag:"1->2 (1)", from: 1, to: 2},
+            {tag:"1->2 (2)", from: 1, to: 2},
+
+            {tag:"2->0 (0)", from: 2, to: 0},
+            {tag:"2->0 (1)", from: 2, to: 0},
+            {tag:"2->0 (2)", from: 2, to: 0},
+
+            {tag:"2->1 (0)", from: 2, to: 1},
+            {tag:"2->1 (1)", from: 2, to: 1},
+            {tag:"2->1 (2)", from: 2, to: 1},
+
+            {tag:"0->0", from: 0, to: 0},
+            {tag:"-1->0", from: -1, to: 0},
+            {tag:"0->-1", from: 0, to: -1},
+            {tag:"1->10", from: 1, to: 10},
+            {tag:"10->2", from: 10, to: 2},
+            {tag:"10->-1", from: 10, to: -1}
+        ]
+    }
+
+    function test_moveColumn(data) {
+        var tableView = Qt.createQmlObject('import QtQuick 2.1; import QtQuick.Controls 1.0; TableView { }', testCase, '');
+        compare(tableView.columnCount, 0)
+
+        var titles = ["title 1", "title 2", "title 3"]
+
+        var i = 0;
+        for (i = 0; i < titles.length; ++i)
+            tableView.addColumn(newColumn.createObject(testCase, {title: titles[i]}))
+
+        compare(tableView.columnCount, titles.length)
+        for (i = 0; i < tableView.columnCount; ++i)
+            compare(tableView.getColumn(i).title, titles[i])
+
+        tableView.moveColumn(data.from, data.to)
+
+        compare(tableView.columnCount, titles.length)
+
+        if (data.from >= 0 && data.from < tableView.columnCount && data.to >= 0 && data.to < tableView.columnCount) {
+            var title = titles[data.from]
+            titles.splice(data.from, 1)
+            titles.splice(data.to, 0, title)
+        }
+
+        compare(tableView.columnCount, titles.length)
+        for (i = 0; i < tableView.columnCount; ++i)
+            compare(tableView.getColumn(i).title, titles[i])
+
+        tableView.destroy()
+    }
+
     // In TableView, drawn text = table.__currentRowItem.children[1].children[1].itemAt(0).children[0].children[0].text
 
     function findAChild(item, name)
diff --git a/tests/auto/controls/data/tst_tabview.qml b/tests/auto/controls/data/tst_tabview.qml
index 992baf22183980c7129ae29849060b38c4b0ffd1..85ad4346b670f9b4ae4010e51e862c0448d536c6 100644
--- a/tests/auto/controls/data/tst_tabview.qml
+++ b/tests/auto/controls/data/tst_tabview.qml
@@ -72,12 +72,12 @@ TestCase {
     function test_changeIndex() {
         var tabView = Qt.createQmlObject('import QtQuick 2.1; import QtQuick.Controls 1.0; TabView { Repeater { model: 3; Tab { Text { text: index } } } }', testCase, '');
         compare(tabView.count, 3)
-        verify(tabView.tabAt(1).item == undefined)
+        verify(tabView.getTab(1).item == undefined)
         tabView.currentIndex = 1
-        verify(tabView.tabAt(1).item !== undefined)
-        verify(tabView.tabAt(2).item == undefined)
+        verify(tabView.getTab(1).item !== undefined)
+        verify(tabView.getTab(2).item == undefined)
         tabView.currentIndex = 1
-        verify(tabView.tabAt(2).item !== undefined)
+        verify(tabView.getTab(2).item !== undefined)
         tabView.destroy()
     }
 
@@ -89,36 +89,36 @@ TestCase {
         compare(tabView.count, 1)
         tabView.addTab("title 2", newTab)
         compare(tabView.count, 2)
-        compare(tabView.tabAt(0).title, "title 1")
-        compare(tabView.tabAt(1).title, "title 2")
+        compare(tabView.getTab(0).title, "title 1")
+        compare(tabView.getTab(1).title, "title 2")
 
         tabView.insertTab(1, "title 3")
         compare(tabView.count, 3)
-        compare(tabView.tabAt(0).title, "title 1")
-        compare(tabView.tabAt(1).title, "title 3")
-        compare(tabView.tabAt(2).title, "title 2")
+        compare(tabView.getTab(0).title, "title 1")
+        compare(tabView.getTab(1).title, "title 3")
+        compare(tabView.getTab(2).title, "title 2")
 
         tabView.insertTab(0, "title 4")
         compare(tabView.count, 4)
-        compare(tabView.tabAt(0).title, "title 4")
-        compare(tabView.tabAt(1).title, "title 1")
-        compare(tabView.tabAt(2).title, "title 3")
-        compare(tabView.tabAt(3).title, "title 2")
+        compare(tabView.getTab(0).title, "title 4")
+        compare(tabView.getTab(1).title, "title 1")
+        compare(tabView.getTab(2).title, "title 3")
+        compare(tabView.getTab(3).title, "title 2")
 
         tabView.removeTab(0)
         compare(tabView.count, 3)
-        compare(tabView.tabAt(0).title, "title 1")
-        compare(tabView.tabAt(1).title, "title 3")
-        compare(tabView.tabAt(2).title, "title 2")
+        compare(tabView.getTab(0).title, "title 1")
+        compare(tabView.getTab(1).title, "title 3")
+        compare(tabView.getTab(2).title, "title 2")
 
         tabView.removeTab(1)
         compare(tabView.count, 2)
-        compare(tabView.tabAt(0).title, "title 1")
-        compare(tabView.tabAt(1).title, "title 2")
+        compare(tabView.getTab(0).title, "title 1")
+        compare(tabView.getTab(1).title, "title 2")
 
         tabView.removeTab(1)
         compare(tabView.count, 1)
-        compare(tabView.tabAt(0).title, "title 1")
+        compare(tabView.getTab(0).title, "title 1")
 
         tabView.removeTab(0)
         compare(tabView.count, 0)
@@ -172,7 +172,7 @@ TestCase {
 
         compare(tabView.count, titles.length)
         for (i = 0; i < tabView.count; ++i)
-            compare(tabView.tabAt(i).title, titles[i])
+            compare(tabView.getTab(i).title, titles[i])
 
         tabView.currentIndex = data.currentBefore
         tabView.moveTab(data.from, data.to)
@@ -186,7 +186,7 @@ TestCase {
 
         compare(tabView.count, titles.length)
         for (i = 0; i < tabView.count; ++i)
-            compare(tabView.tabAt(i).title, titles[i])
+            compare(tabView.getTab(i).title, titles[i])
 
         tabView.destroy()
     }
@@ -212,11 +212,11 @@ TestCase {
         var tabView = Qt.createQmlObject(test_tabView, testCase, '')
         // insertTab(), addTab(), createObject() and static Tab {}
         compare(tabView.count, 4)
-        compare(tabView.tabAt(0).title, "inserted")
+        compare(tabView.getTab(0).title, "inserted")
 
         var tab = tabView.tabComponent.createObject(tabView)
         compare(tabView.count, 5)
-        compare(tabView.tabAt(4).title, "dynamic")
+        compare(tabView.getTab(4).title, "dynamic")
         tab.destroy()
         wait(0)
         compare(tabView.count, 4)