TableView.qml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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.3
  41. import QtQuick.Controls.Private 1.0
  42. import QtQuick.Controls.Styles 1.1
  43. import QtQuick.Window 2.1
  44. BasicTableView {
  45. id: root
  46. property var model
  47. readonly property int rowCount: __listView.count
  48. property alias currentRow: root.__currentRow
  49. signal activated(int row)
  50. signal clicked(int row)
  51. signal doubleClicked(int row)
  52. signal pressAndHold(int row)
  53. function positionViewAtRow(row, mode) {
  54. __listView.positionViewAtIndex(row, mode)
  55. }
  56. function rowAt(x, y) {
  57. var obj = root.mapToItem(__listView.contentItem, x, y)
  58. return __listView.indexAt(obj.x, obj.y)
  59. }
  60. readonly property alias selection: selectionObject
  61. style: Settings.styleComponent(Settings.style, "TableViewStyle.qml", root)
  62. Accessible.role: Accessible.Table
  63. // Internal stuff. Do not look
  64. onModelChanged: selection.clear()
  65. __viewTypeName: "TableView"
  66. __model: model
  67. __itemDelegateLoader: TableViewItemDelegateLoader {
  68. __style: root.__style
  69. __itemDelegate: root.itemDelegate
  70. __mouseArea: mousearea
  71. }
  72. __mouseArea: MouseArea {
  73. id: mousearea
  74. parent: __listView
  75. width: __listView.width
  76. height: __listView.height
  77. z: -1
  78. propagateComposedEvents: true
  79. focus: true
  80. property bool autoincrement: false
  81. property bool autodecrement: false
  82. property int previousRow: 0
  83. property int clickedRow: -1
  84. property int dragRow: -1
  85. property int firstKeyRow: -1
  86. property int pressedRow: -1
  87. property int pressedColumn: -1
  88. TableViewSelection {
  89. id: selectionObject
  90. }
  91. function selected(rowIndex) {
  92. if (dragRow > -1 && (rowIndex >= clickedRow && rowIndex <= dragRow
  93. || rowIndex <= clickedRow && rowIndex >= dragRow))
  94. return selection.contains(clickedRow)
  95. return selection.count && selection.contains(rowIndex)
  96. }
  97. onReleased: {
  98. pressedRow = -1
  99. pressedColumn = -1
  100. autoincrement = false
  101. autodecrement = false
  102. var clickIndex = __listView.indexAt(0, mouseY + __listView.contentY)
  103. if (clickIndex > -1) {
  104. if (Settings.hasTouchScreen) {
  105. __listView.currentIndex = clickIndex
  106. mouseSelect(clickIndex, mouse.modifiers)
  107. }
  108. previousRow = clickIndex
  109. }
  110. if (mousearea.dragRow >= 0) {
  111. selection.__select(selection.contains(mousearea.clickedRow), mousearea.clickedRow, mousearea.dragRow)
  112. mousearea.dragRow = -1
  113. }
  114. }
  115. function decrementCurrentIndex() {
  116. __listView.decrementCurrentIndexBlocking();
  117. var newIndex = __listView.indexAt(0, __listView.contentY)
  118. if (newIndex !== -1) {
  119. if (selectionMode > SelectionMode.SingleSelection)
  120. mousearea.dragRow = newIndex
  121. else if (selectionMode === SelectionMode.SingleSelection)
  122. selection.__selectOne(newIndex)
  123. }
  124. }
  125. function incrementCurrentIndex() {
  126. __listView.incrementCurrentIndexBlocking();
  127. var newIndex = Math.max(0, __listView.indexAt(0, __listView.height + __listView.contentY))
  128. if (newIndex !== -1) {
  129. if (selectionMode > SelectionMode.SingleSelection)
  130. mousearea.dragRow = newIndex
  131. else if (selectionMode === SelectionMode.SingleSelection)
  132. selection.__selectOne(newIndex)
  133. }
  134. }
  135. // Handle vertical scrolling whem dragging mouse outside boundraries
  136. Timer {
  137. running: mousearea.autoincrement && __verticalScrollBar.visible
  138. repeat: true
  139. interval: 20
  140. onTriggered: mousearea.incrementCurrentIndex()
  141. }
  142. Timer {
  143. running: mousearea.autodecrement && __verticalScrollBar.visible
  144. repeat: true
  145. interval: 20
  146. onTriggered: mousearea.decrementCurrentIndex()
  147. }
  148. onPositionChanged: {
  149. if (mouseY > __listView.height && pressed) {
  150. if (autoincrement) return;
  151. autodecrement = false;
  152. autoincrement = true;
  153. } else if (mouseY < 0 && pressed) {
  154. if (autodecrement) return;
  155. autoincrement = false;
  156. autodecrement = true;
  157. } else {
  158. autoincrement = false;
  159. autodecrement = false;
  160. }
  161. if (pressed && containsMouse) {
  162. pressedRow = Math.max(0, __listView.indexAt(0, mouseY + __listView.contentY))
  163. pressedColumn = __listView.columnAt(mouseX)
  164. if (!Settings.hasTouchScreen) {
  165. if (pressedRow >= 0 && pressedRow !== currentRow) {
  166. __listView.currentIndex = pressedRow;
  167. if (selectionMode === SelectionMode.SingleSelection) {
  168. selection.__selectOne(pressedRow)
  169. } else if (selectionMode > 1) {
  170. dragRow = pressedRow
  171. }
  172. }
  173. }
  174. }
  175. }
  176. onClicked: {
  177. var clickIndex = __listView.indexAt(0, mouseY + __listView.contentY)
  178. if (clickIndex > -1) {
  179. if (root.__activateItemOnSingleClick)
  180. root.activated(clickIndex)
  181. root.clicked(clickIndex)
  182. }
  183. }
  184. onPressed: {
  185. pressedRow = __listView.indexAt(0, mouseY + __listView.contentY)
  186. pressedColumn = __listView.columnAt(mouseX)
  187. __listView.forceActiveFocus()
  188. if (pressedRow > -1 && !Settings.hasTouchScreen) {
  189. __listView.currentIndex = pressedRow
  190. mouseSelect(pressedRow, mouse.modifiers)
  191. mousearea.clickedRow = pressedRow
  192. }
  193. }
  194. onExited: {
  195. mousearea.pressedRow = -1
  196. mousearea.pressedColumn = -1
  197. }
  198. onCanceled: {
  199. mousearea.pressedRow = -1
  200. mousearea.pressedColumn = -1
  201. }
  202. function mouseSelect(index, modifiers) {
  203. if (selectionMode) {
  204. if (modifiers & Qt.ShiftModifier && (selectionMode === SelectionMode.ExtendedSelection)) {
  205. selection.select(previousRow, index)
  206. } else if (selectionMode === SelectionMode.MultiSelection ||
  207. (selectionMode === SelectionMode.ExtendedSelection && modifiers & Qt.ControlModifier)) {
  208. selection.__select(!selection.contains(index) , index)
  209. } else {
  210. selection.__selectOne(index)
  211. }
  212. }
  213. }
  214. onDoubleClicked: {
  215. var clickIndex = __listView.indexAt(0, mouseY + __listView.contentY)
  216. if (clickIndex > -1) {
  217. if (!root.__activateItemOnSingleClick)
  218. root.activated(clickIndex)
  219. root.doubleClicked(clickIndex)
  220. }
  221. }
  222. onPressAndHold: {
  223. var pressIndex = __listView.indexAt(0, mouseY + __listView.contentY)
  224. if (pressIndex > -1)
  225. root.pressAndHold(pressIndex)
  226. }
  227. // Note: with boolean preventStealing we are keeping the flickable from
  228. // eating our mouse press events
  229. preventStealing: !Settings.hasTouchScreen
  230. function keySelect(shiftPressed, row) {
  231. if (row < 0 || row > rowCount - 1)
  232. return
  233. if (shiftPressed && (selectionMode >= SelectionMode.ExtendedSelection)) {
  234. selection.__ranges = new Array()
  235. selection.select(mousearea.firstKeyRow, row)
  236. } else {
  237. selection.__selectOne(row)
  238. }
  239. }
  240. Keys.forwardTo: [root]
  241. Keys.onUpPressed: {
  242. event.accepted = __listView.decrementCurrentIndexBlocking()
  243. if (selectionMode)
  244. keySelect(event.modifiers & Qt.ShiftModifier, currentRow)
  245. }
  246. Keys.onDownPressed: {
  247. event.accepted = __listView.incrementCurrentIndexBlocking()
  248. if (selectionMode)
  249. keySelect(event.modifiers & Qt.ShiftModifier, currentRow)
  250. }
  251. Keys.onPressed: {
  252. __listView.scrollIfNeeded(event.key)
  253. if (event.key === Qt.Key_Shift) {
  254. firstKeyRow = currentRow
  255. }
  256. if (event.key === Qt.Key_A && event.modifiers & Qt.ControlModifier) {
  257. if (selectionMode > 1)
  258. selection.selectAll()
  259. }
  260. }
  261. Keys.onReleased: {
  262. if (event.key === Qt.Key_Shift)
  263. firstKeyRow = -1
  264. }
  265. Keys.onReturnPressed: {
  266. if (currentRow > -1)
  267. root.activated(currentRow);
  268. else
  269. event.accepted = false
  270. }
  271. }
  272. }