summaryrefslogtreecommitdiffstats
path: root/src/controls/SplitView.qml
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename properties Layout.{vertical}SizePolicyJan Arve Saether2013-03-221-9/+9
| | | | | | | | | | | | | ..to Layout.fill{Width,Height} This property now takes a bool, which enables you to write Layout.fillWidth: true instead of Layout.horizontalSizePolicy: Layout.Expanding Change-Id: Icf2e0dc4757938489908b8997d6c4e80c8be1c50 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* SplitView: add property 'resizing'Richard Moe Gustavsen2013-03-141-2/+9
| | | | | | | | This will be set to 'true' when any of the splitter handles are being dragged Change-Id: I715f8107ff1844b97df27d649f2d48785476adf9 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* Change imports from QtQuick 2.0 to QtQuick 2.1Caroline Chao2013-03-141-1/+1
| | | | | | Change-Id: If9df032c76e36f385aacd30cc31d6f02574c6f11 Reviewed-by: J-P Nurmi <jpnurmi@digia.com> Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
* SplitView: Disconnect items connections on destructionCaroline Chao2013-03-131-0/+9
| | | | | | | | Those connections are sometimes called after the SplitView has been destructed and it causes warnings (i.e. tst_splitview autotests). Change-Id: I42ae333e72c01edba78f69bb1e9de8b4f85dea2c Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
* Fix incorrect size reported for SplitViewJens Bache-Wiig2013-03-131-0/+1
| | | | | | | | | | Found this bug while replicating the Creator layout. Aparently the content item is the parent of children so it should fill the contents of the SplitView, otherwise it will report a width and height of 0. Change-Id: I47a8e6cbecf8642e2d133a0be0dce0305a167c0c Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
* Doc: Add SplitView to the ingroup viewsCaroline Chao2013-03-071-0/+1
| | | | | Change-Id: Ifa95b8db73b78c3b46d7d18bc55aa06d2569c89e Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
* Change the layout engine of RowLayout and ColumnLayout.Jan Arve Saether2013-03-061-0/+1
| | | | | | | | | It now uses the gridlayoutengine from graphicsview, which also gives us a well tested grid layout engine almost for free. Change-Id: I939ae4d2b321c8079935ff3374e8e5d10d02384b Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* SplitView: Fix bug when showing SplitView lateRichard Moe Gustavsen2013-03-011-56/+47
| | | | | | | | | If the SplitView was initially hidden, and told to show later, the handles ended up at wrong positions. This patch will fix this. Change-Id: Ia21fa1efcf30c36bf18e0d4f3ab0813c6b79afcc Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
* Make containsMouse property private.Mitch Curtis2013-02-261-1/+0
| | | | | | | | | | | Also removes the RangeTab from the Gallery example, since its controls use containsMouse and are no longer different from the same set of sliders on the control tab. Adding MouseAreas to each control in RangeTab to achieve the same animation would clutter the example with boilerplate code. Change-Id: I80d6f3bbf1b73229f4d0ae99dd2a65bc083e7099 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* Update SplitView docsJ-P Nurmi2013-02-251-69/+76
| | | | | | | Most of the documentation was there already, just not using proper qdoc format. Change-Id: Ia28a0da3b20151202cafdbc1b535a1921a48b1a6 Reviewed-by: Caroline Chao <caroline.chao@digia.com>
* Rename Splitter to SplitViewJ-P Nurmi2013-02-221-0/+401
Change-Id: I1db05195ada0b798a632da04fb256f030c894560 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>