SplitView.qml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.2
  40. import QtQuick.Controls 1.2
  41. import QtQuick.Layouts 1.0
  42. import QtQuick.Controls.Private 1.0 as Private
  43. import QtQuick.Window 2.1
  44. /*!
  45. \qmltype SplitView
  46. \inqmlmodule QtQuick.Controls
  47. \since 5.1
  48. \ingroup views
  49. \ingroup controls
  50. \brief Lays out items with a draggable splitter between each item.
  51. \image splitview.png
  52. SplitView is a control that lays out items horizontally or
  53. vertically with a draggable splitter between each item.
  54. There will always be one (and only one) item in the SplitView that has \l{Layout::fillWidth}{Layout.fillWidth}
  55. set to \c true (or \l{Layout::fillHeight}{Layout.fillHeight}, if orientation is Qt.Vertical). This means that the
  56. item will get all leftover space when other items have been laid out.
  57. By default, the last visible child of the SplitView will have this set, but
  58. it can be changed by explicitly setting fillWidth to \c true on another item.
  59. As the fillWidth item will automatically be resized to fit the extra space, explicit assignments
  60. to its width and height properties will be ignored (but \l{Layout::minimumWidth}{Layout.minimumWidth} and
  61. \l{Layout::maximumWidth}{Layout.maximumWidth} will still be respected).
  62. The initial sizes of other items should be set via their width and height properties.
  63. Any binding assignment to an item's width or height will be broken as soon as the user
  64. drags that item's splitter handle.
  65. A handle can belong to the item either on the left or top side, or on the right or bottom side:
  66. \list
  67. \li If the fillWidth item is to the right: the handle belongs to the left item.
  68. \li if the fillWidth item is on the left: the handle belongs to the right item.
  69. \endlist
  70. This will again control which item gets resized when the user drags a handle,
  71. and which handle gets hidden when an item is told to hide.
  72. SplitView supports setting attached Layout properties on child items, which
  73. means that you can set the following attached properties for each child:
  74. \list
  75. \li \l{Layout::minimumWidth}{Layout.minimumWidth}
  76. \li \l{Layout::minimumHeight}{Layout.minimumHeight}
  77. \li \l{Layout::maximumWidth}{Layout.maximumWidth}
  78. \li \l{Layout::maximumHeight}{Layout.maximumHeight}
  79. \li \l{Layout::fillWidth}{Layout.fillWidth} (\c true for only one child)
  80. \li \l{Layout::fillHeight}{Layout.fillHeight} (\c true for only one child)
  81. \endlist
  82. \note import QtQuick.Layouts 1.0 in your QML file in order to use the Layout
  83. attached properties inside SplitView.
  84. Example:
  85. To create a SplitView with three items, and let the center item get superfluous space, one
  86. could do the following:
  87. \qml
  88. SplitView {
  89. anchors.fill: parent
  90. orientation: Qt.Horizontal
  91. Rectangle {
  92. width: 200
  93. Layout.maximumWidth: 400
  94. color: "lightblue"
  95. Text {
  96. text: "View 1"
  97. anchors.centerIn: parent
  98. }
  99. }
  100. Rectangle {
  101. id: centerItem
  102. Layout.minimumWidth: 50
  103. Layout.fillWidth: true
  104. color: "lightgray"
  105. Text {
  106. text: "View 2"
  107. anchors.centerIn: parent
  108. }
  109. }
  110. Rectangle {
  111. width: 200
  112. color: "lightgreen"
  113. Text {
  114. text: "View 3"
  115. anchors.centerIn: parent
  116. }
  117. }
  118. }
  119. \endqml
  120. */
  121. Item {
  122. id: root
  123. /*!
  124. \qmlproperty enumeration SplitView::orientation
  125. This property holds the orientation of the SplitView.
  126. The value can be either \c Qt.Horizontal or \c Qt.Vertical.
  127. The default value is \c Qt.Horizontal.
  128. */
  129. property int orientation: Qt.Horizontal
  130. /*!
  131. This property holds the delegate that will be instantiated between each
  132. child item. Inside the delegate the following properties are available:
  133. \table
  134. \row \li readonly property bool styleData.index \li Specifies the index of the splitter handle. The handle
  135. between the first and the second item will get index 0,
  136. the next handle index 1 etc.
  137. \row \li readonly property bool styleData.hovered \li The handle is being hovered.
  138. \row \li readonly property bool styleData.pressed \li The handle is being pressed.
  139. \row \li readonly property bool styleData.resizing \li The handle is being dragged.
  140. \endtable
  141. */
  142. property Component handleDelegate: Rectangle {
  143. width: 1
  144. height: 1
  145. color: Qt.darker(pal.window, 1.5)
  146. }
  147. /*!
  148. This propery is \c true when the user is resizing any of the items by
  149. dragging on the splitter handles.
  150. */
  151. property bool resizing: false
  152. /*! \internal */
  153. default property alias __contents: contents.data
  154. /*! \internal */
  155. property alias __items: splitterItems.children
  156. /*! \internal */
  157. property alias __handles: splitterHandles.children
  158. clip: true
  159. Component.onCompleted: d.init()
  160. onWidthChanged: d.updateLayout()
  161. onHeightChanged: d.updateLayout()
  162. onOrientationChanged: d.changeOrientation()
  163. /*! \qmlmethod void SplitView::addItem(Item item)
  164. Add an item to the end of the view.
  165. \since QtQuick.Controls 1.3 */
  166. function addItem(item) {
  167. d.updateLayoutGuard = true
  168. d.addItem_impl(item)
  169. d.calculateImplicitSize()
  170. d.updateLayoutGuard = false
  171. d.updateFillIndex()
  172. }
  173. /*! \qmlmethod void SplitView::removeItem(Item item)
  174. Remove \a item from the view.
  175. \since QtQuick.Controls 1.4 */
  176. function removeItem(item) {
  177. d.updateLayoutGuard = true
  178. var result = d.removeItem_impl(item)
  179. if (result !== null) {
  180. d.calculateImplicitSize()
  181. d.updateLayoutGuard = false
  182. d.updateFillIndex()
  183. }
  184. else {
  185. d.updateLayoutGuard = false
  186. }
  187. }
  188. SystemPalette { id: pal }
  189. QtObject {
  190. id: d
  191. readonly property string leftMargin: horizontal ? "leftMargin" : "topMargin"
  192. readonly property string topMargin: horizontal ? "topMargin" : "leftMargin"
  193. readonly property string rightMargin: horizontal ? "rightMargin" : "bottomMargin"
  194. property bool horizontal: orientation == Qt.Horizontal
  195. readonly property string minimum: horizontal ? "minimumWidth" : "minimumHeight"
  196. readonly property string maximum: horizontal ? "maximumWidth" : "maximumHeight"
  197. readonly property string otherMinimum: horizontal ? "minimumHeight" : "minimumWidth"
  198. readonly property string otherMaximum: horizontal ? "maximumHeight" : "maximumWidth"
  199. readonly property string offset: horizontal ? "x" : "y"
  200. readonly property string otherOffset: horizontal ? "y" : "x"
  201. readonly property string size: horizontal ? "width" : "height"
  202. readonly property string otherSize: horizontal ? "height" : "width"
  203. readonly property string implicitSize: horizontal ? "implicitWidth" : "implicitHeight"
  204. readonly property string implicitOtherSize: horizontal ? "implicitHeight" : "implicitWidth"
  205. property int fillIndex: -1
  206. property bool updateLayoutGuard: true
  207. function extraMarginSize(item, other) {
  208. if (typeof(other) === 'undefined')
  209. other = false;
  210. if (other === horizontal)
  211. // vertical
  212. return item.Layout.topMargin + item.Layout.bottomMargin
  213. return item.Layout.leftMargin + item.Layout.rightMargin
  214. }
  215. function addItem_impl(item)
  216. {
  217. // temporarily set fillIndex to new item
  218. fillIndex = __items.length
  219. if (splitterItems.children.length > 0)
  220. handleLoader.createObject(splitterHandles, {"__handleIndex":splitterItems.children.length - 1})
  221. item.parent = splitterItems
  222. d.initItemConnections(item)
  223. }
  224. function initItemConnections(item)
  225. {
  226. // should match disconnections in terminateItemConnections
  227. item.widthChanged.connect(d.updateLayout)
  228. item.heightChanged.connect(d.updateLayout)
  229. item.Layout.maximumWidthChanged.connect(d.updateLayout)
  230. item.Layout.minimumWidthChanged.connect(d.updateLayout)
  231. item.Layout.maximumHeightChanged.connect(d.updateLayout)
  232. item.Layout.minimumHeightChanged.connect(d.updateLayout)
  233. item.Layout.leftMarginChanged.connect(d.updateLayout)
  234. item.Layout.topMarginChanged.connect(d.updateLayout)
  235. item.Layout.rightMarginChanged.connect(d.updateLayout)
  236. item.Layout.bottomMarginChanged.connect(d.updateLayout)
  237. item.visibleChanged.connect(d.updateFillIndex)
  238. item.Layout.fillWidthChanged.connect(d.updateFillIndex)
  239. item.Layout.fillHeightChanged.connect(d.updateFillIndex)
  240. }
  241. function terminateItemConnections(item)
  242. {
  243. // should match connections in initItemConnections
  244. item.widthChanged.disconnect(d.updateLayout)
  245. item.heightChanged.disconnect(d.updateLayout)
  246. item.Layout.maximumWidthChanged.disconnect(d.updateLayout)
  247. item.Layout.minimumWidthChanged.disconnect(d.updateLayout)
  248. item.Layout.maximumHeightChanged.disconnect(d.updateLayout)
  249. item.Layout.minimumHeightChanged.disconnect(d.updateLayout)
  250. item.visibleChanged.disconnect(d.updateFillIndex)
  251. item.Layout.fillWidthChanged.disconnect(d.updateFillIndex)
  252. item.Layout.fillHeightChanged.disconnect(d.updateFillIndex)
  253. }
  254. function removeItem_impl(item)
  255. {
  256. var pos = itemPos(item)
  257. // Check pos range
  258. if (pos < 0 || pos >= __items.length)
  259. return null
  260. // Temporary unset the fillIndex
  261. fillIndex = __items.length - 1
  262. // Remove the handle at the left/right of the item that
  263. // is going to be removed
  264. var handlePos = -1
  265. var hasPrevious = pos > 0
  266. var hasNext = (pos + 1) < __items.length
  267. if (hasPrevious)
  268. handlePos = pos-1
  269. else if (hasNext)
  270. handlePos = pos
  271. if (handlePos >= 0) {
  272. var handle = __handles[handlePos]
  273. handle.visible = false
  274. handle.parent = null
  275. handle.destroy()
  276. for (var i = handlePos; i < __handles.length; ++i)
  277. __handles[i].__handleIndex = i
  278. }
  279. // Remove the item.
  280. // Disconnect the item to be removed
  281. terminateItemConnections(item)
  282. item.parent = null
  283. return item
  284. }
  285. function itemPos(item)
  286. {
  287. for (var i = 0; i < __items.length; ++i)
  288. if (item === __items[i])
  289. return i
  290. return -1
  291. }
  292. function init()
  293. {
  294. for (var i=0; i<__contents.length; ++i) {
  295. var item = __contents[i];
  296. if (!item.hasOwnProperty("x"))
  297. continue
  298. addItem_impl(item)
  299. i-- // item was removed from list
  300. }
  301. d.calculateImplicitSize()
  302. d.updateLayoutGuard = false
  303. d.updateFillIndex()
  304. }
  305. function updateFillIndex()
  306. {
  307. if (lastItem.visible !== root.visible)
  308. return
  309. var policy = (root.orientation === Qt.Horizontal) ? "fillWidth" : "fillHeight"
  310. for (var i=0; i<__items.length-1; ++i) {
  311. if (__items[i].Layout[policy] === true)
  312. break;
  313. }
  314. d.fillIndex = i
  315. d.updateLayout()
  316. }
  317. function changeOrientation()
  318. {
  319. if (__items.length == 0)
  320. return;
  321. d.updateLayoutGuard = true
  322. // Swap width/height for items and handles:
  323. for (var i=0; i<__items.length; ++i) {
  324. var item = __items[i]
  325. var tmp = item.x
  326. item.x = item.y
  327. item.y = tmp
  328. tmp = item.width
  329. item.width = item.height
  330. item.height = tmp
  331. var handle = __handles[i]
  332. if (handle) {
  333. tmp = handle.x
  334. handle.x = handle.y
  335. handle.y = handle.x
  336. tmp = handle.width
  337. handle.width = handle.height
  338. handle.height = tmp
  339. }
  340. }
  341. // Change d.horizontal explicit, since the binding will change too late:
  342. d.horizontal = orientation == Qt.Horizontal
  343. d.updateLayoutGuard = false
  344. d.updateFillIndex()
  345. }
  346. function calculateImplicitSize()
  347. {
  348. var implicitSize = 0
  349. var implicitOtherSize = 0
  350. for (var i=0; i<__items.length; ++i) {
  351. var item = __items[i];
  352. implicitSize += clampedMinMax(item[d.size], item.Layout[minimum], item.Layout[maximum]) + extraMarginSize(item)
  353. var os = clampedMinMax(item[otherSize], item.Layout[otherMinimum], item.Layout[otherMaximum]) + extraMarginSize(item, true)
  354. implicitOtherSize = Math.max(implicitOtherSize, os)
  355. var handle = __handles[i]
  356. if (handle)
  357. implicitSize += handle[d.size] //### Can handles have margins??
  358. }
  359. root[d.implicitSize] = implicitSize
  360. root[d.implicitOtherSize] = implicitOtherSize
  361. }
  362. function clampedMinMax(value, minimum, maximum)
  363. {
  364. if (value < minimum)
  365. value = minimum
  366. if (value > maximum)
  367. value = maximum
  368. return value
  369. }
  370. function accumulatedSize(firstIndex, lastIndex, includeFillItemMinimum)
  371. {
  372. // Go through items and handles, and
  373. // calculate their accummulated width.
  374. var w = 0
  375. for (var i=firstIndex; i<lastIndex; ++i) {
  376. var item = __items[i]
  377. if (item.visible || i == d.fillIndex) {
  378. if (i !== d.fillIndex)
  379. w += item[d.size] + extraMarginSize(item)
  380. else if (includeFillItemMinimum && item.Layout[minimum] !== undefined)
  381. w += item.Layout[minimum] + extraMarginSize(item)
  382. }
  383. var handle = __handles[i]
  384. if (handle && handle.visible)
  385. w += handle[d.size]
  386. }
  387. return w
  388. }
  389. function updateLayout()
  390. {
  391. // This function will reposition both handles and
  392. // items according to the their width/height:
  393. if (__items.length === 0)
  394. return;
  395. if (!lastItem.visible)
  396. return;
  397. if (d.updateLayoutGuard === true)
  398. return
  399. d.updateLayoutGuard = true
  400. // Ensure all items within their min/max:
  401. for (var i=0; i<__items.length; ++i) {
  402. if (i !== d.fillIndex) {
  403. var item = __items[i];
  404. var clampedSize = clampedMinMax(item[d.size], item.Layout[d.minimum], item.Layout[d.maximum])
  405. if (clampedSize != item[d.size])
  406. item[d.size] = clampedSize
  407. }
  408. }
  409. // Set size of fillItem to remaining available space.
  410. // Special case: If SplitView size is zero, we leave fillItem with the size
  411. // it already got, and assume that SplitView ends up with implicit size as size:
  412. if (root[d.size] != 0) {
  413. var fillItem = __items[fillIndex]
  414. var superfluous = root[d.size] - d.accumulatedSize(0, __items.length, false)
  415. fillItem[d.size] = clampedMinMax(superfluous - extraMarginSize(fillItem), fillItem.Layout[minimum], fillItem.Layout[maximum]);
  416. }
  417. // Position items and handles according to their width:
  418. var lastVisibleItem, lastVisibleHandle, handle
  419. var pos = 0;
  420. for (i=0; i<__items.length; ++i) {
  421. // Position item to the right of the previous visible handle:
  422. item = __items[i];
  423. if (item.visible || i == d.fillIndex) {
  424. pos += item.Layout[leftMargin]
  425. item[d.offset] = pos
  426. item[d.otherOffset] = item.Layout[topMargin]
  427. item[d.otherSize] = clampedMinMax(root[otherSize], item.Layout[otherMinimum], item.Layout[otherMaximum]) - extraMarginSize(item, true)
  428. lastVisibleItem = item
  429. pos += Math.max(0, item[d.size]) + item.Layout[rightMargin]
  430. }
  431. handle = __handles[i]
  432. if (handle && handle.visible) {
  433. handle[d.offset] = pos
  434. handle[d.otherOffset] = 0 //### can handles have margins?
  435. handle[d.otherSize] = root[d.otherSize]
  436. lastVisibleHandle = handle
  437. pos += handle[d.size]
  438. }
  439. }
  440. d.updateLayoutGuard = false
  441. }
  442. }
  443. Component {
  444. id: handleLoader
  445. Loader {
  446. id: itemHandle
  447. property int __handleIndex: -1
  448. property QtObject styleData: QtObject {
  449. readonly property int index: __handleIndex
  450. readonly property alias hovered: mouseArea.containsMouse
  451. readonly property alias pressed: mouseArea.pressed
  452. readonly property bool resizing: mouseArea.drag.active
  453. onResizingChanged: root.resizing = resizing
  454. }
  455. property bool resizeLeftItem: (d.fillIndex > __handleIndex)
  456. visible: __items[__handleIndex + (resizeLeftItem ? 0 : 1)].visible
  457. sourceComponent: handleDelegate
  458. onWidthChanged: d.updateLayout()
  459. onHeightChanged: d.updateLayout()
  460. onXChanged: moveHandle()
  461. onYChanged: moveHandle()
  462. MouseArea {
  463. id: mouseArea
  464. anchors.fill: parent
  465. property real defaultMargin: Private.Settings.hasTouchScreen ? Screen.pixelDensity * 3.5 : 2
  466. anchors.leftMargin: (parent.width <= 1) ? -defaultMargin : 0
  467. anchors.rightMargin: (parent.width <= 1) ? -defaultMargin : 0
  468. anchors.topMargin: (parent.height <= 1) ? -defaultMargin : 0
  469. anchors.bottomMargin: (parent.height <= 1) ? -defaultMargin : 0
  470. hoverEnabled: Private.Settings.hoverEnabled
  471. drag.threshold: 0
  472. drag.target: parent
  473. drag.axis: root.orientation === Qt.Horizontal ? Drag.XAxis : Drag.YAxis
  474. cursorShape: root.orientation === Qt.Horizontal ? Qt.SplitHCursor : Qt.SplitVCursor
  475. }
  476. function moveHandle() {
  477. // Moving the handle means resizing an item. Which one,
  478. // left or right, depends on where the fillItem is.
  479. // 'updateLayout' will be overridden in case new width violates max/min.
  480. // 'updateLayout' will be triggered when an item changes width.
  481. if (d.updateLayoutGuard)
  482. return
  483. var leftHandle, leftItem, rightItem, rightHandle
  484. var leftEdge, rightEdge, newWidth, leftStopX, rightStopX
  485. var i
  486. if (resizeLeftItem) {
  487. // Ensure that the handle is not crossing other handles. So
  488. // find the first visible handle to the left to determine the left edge:
  489. leftEdge = 0
  490. for (i=__handleIndex-1; i>=0; --i) {
  491. leftHandle = __handles[i]
  492. if (leftHandle.visible) {
  493. leftEdge = leftHandle[d.offset] + leftHandle[d.size]
  494. break;
  495. }
  496. }
  497. // Ensure: leftStopX >= itemHandle[d.offset] >= rightStopX
  498. var min = d.accumulatedSize(__handleIndex+1, __items.length, true)
  499. rightStopX = root[d.size] - min - itemHandle[d.size]
  500. leftStopX = Math.max(leftEdge, itemHandle[d.offset])
  501. itemHandle[d.offset] = Math.min(rightStopX, Math.max(leftStopX, itemHandle[d.offset]))
  502. newWidth = itemHandle[d.offset] - leftEdge
  503. leftItem = __items[__handleIndex]
  504. // The next line will trigger 'updateLayout':
  505. leftItem[d.size] = newWidth
  506. } else {
  507. // Resize item to the right.
  508. // Ensure that the handle is not crossing other handles. So
  509. // find the first visible handle to the right to determine the right edge:
  510. rightEdge = root[d.size]
  511. for (i=__handleIndex+1; i<__handles.length; ++i) {
  512. rightHandle = __handles[i]
  513. if (rightHandle.visible) {
  514. rightEdge = rightHandle[d.offset]
  515. break;
  516. }
  517. }
  518. // Ensure: leftStopX <= itemHandle[d.offset] <= rightStopX
  519. min = d.accumulatedSize(0, __handleIndex+1, true)
  520. leftStopX = min - itemHandle[d.size]
  521. rightStopX = Math.min((rightEdge - itemHandle[d.size]), itemHandle[d.offset])
  522. itemHandle[d.offset] = Math.max(leftStopX, Math.min(itemHandle[d.offset], rightStopX))
  523. newWidth = rightEdge - (itemHandle[d.offset] + itemHandle[d.size])
  524. rightItem = __items[__handleIndex+1]
  525. // The next line will trigger 'updateLayout':
  526. rightItem[d.size] = newWidth
  527. }
  528. }
  529. }
  530. }
  531. Item {
  532. id: contents
  533. visible: false
  534. anchors.fill: parent
  535. }
  536. Item {
  537. id: splitterItems
  538. anchors.fill: parent
  539. }
  540. Item {
  541. id: splitterHandles
  542. anchors.fill: parent
  543. }
  544. Item {
  545. id: lastItem
  546. onVisibleChanged: d.updateFillIndex()
  547. }
  548. Component.onDestruction: {
  549. for (var i=0; i<splitterItems.children.length; ++i) {
  550. var item = splitterItems.children[i];
  551. d.terminateItemConnections(item)
  552. }
  553. }
  554. }