ExpandablePopup.qml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. // Copyright (c) 2018 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import QtQuick.Controls 2.3
  5. import UM 1.2 as UM
  6. import Cura 1.0 as Cura
  7. // The expandable component has 2 major sub components:
  8. // * The headerItem; Always visible and should hold some info about what happens if the component is expanded
  9. // * The contentItem; The content that needs to be shown if the component is expanded.
  10. Item
  11. {
  12. id: base
  13. // Enumeration with the different possible alignments of the content with respect of the headerItem
  14. enum ContentAlignment
  15. {
  16. AlignLeft,
  17. AlignRight
  18. }
  19. // The headerItem holds the QML item that is always displayed.
  20. property alias headerItem: headerItemLoader.sourceComponent
  21. // The contentItem holds the QML item that is shown when the "open" button is pressed
  22. property alias contentItem: content.contentItem
  23. property color contentBackgroundColor: UM.Theme.getColor("action_button")
  24. property color headerBackgroundColor: UM.Theme.getColor("action_button")
  25. property color headerActiveColor: UM.Theme.getColor("secondary")
  26. property color headerHoverColor: UM.Theme.getColor("action_button_hovered")
  27. property alias mouseArea: headerMouseArea
  28. property alias enabled: headerMouseArea.enabled
  29. // Text to show when this component is disabled
  30. property alias disabledText: disabledLabel.text
  31. // Defines the alignment of the content with respect of the headerItem, by default to the right
  32. property int contentAlignment: ExpandablePopup.ContentAlignment.AlignRight
  33. // How much spacing is needed around the contentItem
  34. property alias contentPadding: content.padding
  35. // How much padding is needed around the header & button
  36. property alias headerPadding: background.padding
  37. property alias headerBackgroundBorder: background.border
  38. // Whether or not to show the background border
  39. property bool enableHeaderBackgroundBorder: true
  40. // What icon should be displayed on the right.
  41. property alias iconSource: collapseButton.source
  42. property alias iconColor: collapseButton.color
  43. // The icon size (it's always drawn as a square)
  44. property alias iconSize: collapseButton.height
  45. // Is the "drawer" open?
  46. readonly property alias expanded: content.visible
  47. property alias expandedHighlightColor: expandedHighlight.color
  48. // What should the radius of the header be. This is also influenced by the headerCornerSide
  49. property alias headerRadius: background.radius
  50. // On what side should the header corners be shown? 1 is down, 2 is left, 3 is up and 4 is right.
  51. property alias headerCornerSide: background.cornerSide
  52. // Change the contentItem close behaviour
  53. property alias contentClosePolicy : content.closePolicy
  54. property int popupOffset: 2
  55. onEnabledChanged:
  56. {
  57. if (!base.enabled && expanded)
  58. {
  59. toggleContent()
  60. }
  61. }
  62. function toggleContent()
  63. {
  64. if (content.visible)
  65. {
  66. content.close()
  67. }
  68. else
  69. {
  70. content.open()
  71. }
  72. }
  73. // Add this binding since the background color is not updated otherwise
  74. Binding
  75. {
  76. target: background
  77. property: "color"
  78. value: base.enabled ? headerBackgroundColor : UM.Theme.getColor("disabled")
  79. }
  80. implicitHeight: 100 * screenScaleFactor
  81. implicitWidth: 400 * screenScaleFactor
  82. RoundedRectangle
  83. {
  84. id: background
  85. property real padding: UM.Theme.getSize("default_margin").width
  86. border.width: base.enableHeaderBackgroundBorder ? UM.Theme.getSize("default_lining").width : 0
  87. border.color: UM.Theme.getColor("lining")
  88. color: base.enabled ? headerBackgroundColor : UM.Theme.getColor("disabled")
  89. anchors.fill: parent
  90. Label
  91. {
  92. id: disabledLabel
  93. visible: !base.enabled
  94. leftPadding: background.padding
  95. text: ""
  96. font: UM.Theme.getFont("default")
  97. renderType: Text.NativeRendering
  98. verticalAlignment: Text.AlignVCenter
  99. color: UM.Theme.getColor("text")
  100. height: parent.height
  101. }
  102. Item
  103. {
  104. anchors.fill: parent
  105. visible: base.enabled
  106. MouseArea
  107. {
  108. id: headerMouseArea
  109. anchors.fill: parent
  110. onClicked: toggleContent()
  111. hoverEnabled: true
  112. onEntered: background.color = headerHoverColor
  113. onExited: background.color = base.enabled ? headerBackgroundColor : UM.Theme.getColor("disabled")
  114. }
  115. Loader
  116. {
  117. id: headerItemLoader
  118. anchors
  119. {
  120. left: parent.left
  121. right: collapseButton.visible ? collapseButton.left : parent.right
  122. top: parent.top
  123. bottom: parent.bottom
  124. margins: background.padding
  125. }
  126. }
  127. // A highlight that is shown when the content is expanded
  128. Rectangle
  129. {
  130. id: expandedHighlight
  131. width: parent.width
  132. height: UM.Theme.getSize("thick_lining").height
  133. color: UM.Theme.getColor("primary")
  134. visible: expanded
  135. anchors.bottom: parent.bottom
  136. }
  137. UM.RecolorImage
  138. {
  139. id: collapseButton
  140. anchors
  141. {
  142. right: parent.right
  143. verticalCenter: parent.verticalCenter
  144. margins: background.padding
  145. }
  146. source: UM.Theme.getIcon("ChevronSingleDown")
  147. visible: source != ""
  148. width: UM.Theme.getSize("standard_arrow").width
  149. height: UM.Theme.getSize("standard_arrow").height
  150. color: UM.Theme.getColor("small_button_text")
  151. }
  152. }
  153. }
  154. Popup
  155. {
  156. id: content
  157. // Ensure that the content is located directly below the headerItem
  158. y: background.height + base.popupOffset
  159. // Make the content aligned with the rest, using the property contentAlignment to decide whether is right or left.
  160. // In case of right alignment, the 3x padding is due to left, right and padding between the button & text.
  161. x: contentAlignment == ExpandablePopup.ContentAlignment.AlignRight ? -width + collapseButton.width + headerItemLoader.width + 3 * background.padding : 0
  162. padding: UM.Theme.getSize("default_margin").width
  163. closePolicy: Popup.CloseOnPressOutsideParent
  164. background: Cura.RoundedRectangle
  165. {
  166. cornerSide: Cura.RoundedRectangle.Direction.Down
  167. color: contentBackgroundColor
  168. border.width: UM.Theme.getSize("default_lining").width
  169. border.color: UM.Theme.getColor("lining")
  170. radius: UM.Theme.getSize("default_radius").width
  171. height: contentItem.implicitHeight || content.height
  172. }
  173. contentItem: Item {}
  174. onContentItemChanged:
  175. {
  176. // Since we want the size of the content to be set by the size of the content,
  177. // we need to do it like this.
  178. content.width = contentItem.width + 2 * content.padding
  179. content.height = contentItem.height + 2 * content.padding
  180. }
  181. }
  182. // DO NOT MOVE UP IN THE CODE: This connection has to be here, after the definition of the content item.
  183. // Apparently the order in which these are handled matters and so the height is correctly updated if this is here.
  184. Connections
  185. {
  186. // Since it could be that the content is dynamically populated, we should also take these changes into account.
  187. target: content.contentItem
  188. function onWidthChanged() { content.width = content.contentItem.width + 2 * content.padding }
  189. function onHeightChanged() { content.height = content.contentItem.height + 2 * content.padding }
  190. }
  191. }