TableViewColumn.qml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. /*!
  41. \qmltype TableViewColumn
  42. \inqmlmodule QtQuick.Controls
  43. \since 5.1
  44. \ingroup viewitems
  45. \ingroup controls
  46. \brief Used to define columns in a \l TableView or in a \l TreeView.
  47. \image tableview.png
  48. TableViewColumn represents a column within a TableView or a TreeView. It provides
  49. properties to decide how the data in that column is presented.
  50. \qml
  51. TableView {
  52. TableViewColumn { role: "title"; title: "Title"; width: 100 }
  53. TableViewColumn { role: "author"; title: "Author"; width: 200 }
  54. model: libraryModel
  55. }
  56. \endqml
  57. \sa TableView, TreeView
  58. */
  59. QtObject {
  60. /*! \internal */
  61. property Item __view: null
  62. /*! \internal */
  63. property int __index: -1
  64. /*! The title text of the column. */
  65. property string title
  66. /*! The model \c role of the column. */
  67. property string role
  68. /*! The current width of the column.
  69. The default value depends on platform. If only one
  70. column is defined, the width expands to the viewport.
  71. */
  72. property int width: (__view && __view.columnCount === 1) ? __view.viewport.width : 160
  73. /*! The visible status of the column. */
  74. property bool visible: true
  75. /*! Determines if the column should be resizable.
  76. \since QtQuick.Controls 1.1 */
  77. property bool resizable: true
  78. /*! Determines if the column should be movable.
  79. The default value is \c true.
  80. \note A non-movable column may get indirectly moved if adjacent columns are movable.
  81. \since QtQuick.Controls 1.1 */
  82. property bool movable: true
  83. /*! \qmlproperty enumeration TableViewColumn::elideMode
  84. The text elide mode of the column.
  85. Allowed values are:
  86. \list
  87. \li Text.ElideNone
  88. \li Text.ElideLeft
  89. \li Text.ElideMiddle
  90. \li Text.ElideRight - the default
  91. \endlist
  92. \sa {Text::elide}{elide} */
  93. property int elideMode: Text.ElideRight
  94. /*! \qmlproperty enumeration TableViewColumn::horizontalAlignment
  95. The horizontal text alignment of the column.
  96. Allowed values are:
  97. \list
  98. \li Text.AlignLeft - the default
  99. \li Text.AlignRight
  100. \li Text.AlignHCenter
  101. \li Text.AlignJustify
  102. \endlist
  103. \sa {Text::horizontalAlignment}{horizontalAlignment} */
  104. property int horizontalAlignment: Text.AlignLeft
  105. /*! The delegate of the column. This can be used to set the itemDelagate
  106. of a \l TableView or \l TreeView for a specific column.
  107. In the delegate you have access to the following special properties:
  108. \list
  109. \li styleData.selected - if the item is currently selected
  110. \li styleData.value - the value or text for this item
  111. \li styleData.textColor - the default text color for an item
  112. \li styleData.row - the index of the row
  113. \li styleData.column - the index of the column
  114. \li styleData.elideMode - the elide mode of the column
  115. \li styleData.textAlignment - the horizontal text alignment of the column
  116. \endlist
  117. */
  118. property Component delegate
  119. Accessible.role: Accessible.ColumnHeader
  120. /*! \qmlmethod void TableViewColumn::resizeToContents()
  121. Resizes the column so that the implicitWidth of the contents on every row will fit.
  122. \since QtQuick.Controls 1.2 */
  123. function resizeToContents() {
  124. var minWidth = 0
  125. var listdata = __view.__listView.children[0]
  126. for (var i = 0; __index === -1 && i < __view.__columns.length; ++i) {
  127. if (__view.__columns[i] === this)
  128. __index = i
  129. }
  130. // ### HACK We don't have direct access to the instantiated item,
  131. // so we go spelunking. Each 'item' variable check is annotated
  132. // with the expected object it should point to in BasicTableView.
  133. for (var row = 0 ; row < listdata.children.length ; ++row) {
  134. var item = listdata.children[row] ? listdata.children[row].rowItem : undefined
  135. if (item) { // FocusScope { id: rowitem }
  136. item = item.children[1]
  137. if (item) { // Row { id: itemrow }
  138. item = item.children[__index]
  139. if (item) { // Repeater.delegate a.k.a. __view.__itemDelegateLoader
  140. var indent = __view.__isTreeView && __index === 0 ? item.__itemIndentation : 0
  141. item = item.item
  142. if (item && item.hasOwnProperty("implicitWidth")) {
  143. minWidth = Math.max(minWidth, item.implicitWidth + indent)
  144. }
  145. }
  146. }
  147. }
  148. }
  149. if (minWidth)
  150. width = minWidth
  151. }
  152. }