MessageBubble.qml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 QtWebEngine 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.5
  40. Item {
  41. id: bubble
  42. width: 1
  43. height: 1
  44. property int maxWidth: 0
  45. property string mainText: "";
  46. property string subText: "";
  47. property int border: 1
  48. property int arrowWidth: 18
  49. property int arrowHeight: 18
  50. property int arrowOffset: 18
  51. property int marginLeft: border + 8
  52. property int marginTop: border + arrowHeight + 6
  53. property int marginRight: border + 8
  54. property int marginBottom: border + 6
  55. Column {
  56. id: messageColumn
  57. x: bubble.marginLeft
  58. y: bubble.marginTop
  59. z: 1
  60. spacing: 5
  61. Text {
  62. id: message
  63. width: bubble.maxWidth
  64. wrapMode: Text.WordWrap
  65. elide: Text.ElideNone
  66. clip: true
  67. font.pointSize: subMessage.font.pointSize + 4
  68. text: bubble.mainText
  69. }
  70. Text {
  71. id: subMessage
  72. width: bubble.maxWidth
  73. wrapMode: Text.WordWrap
  74. elide: Text.ElideNone
  75. clip: true
  76. text: bubble.subText
  77. }
  78. }
  79. Canvas {
  80. id: bubbleCanvas
  81. property int textWidth: Math.min(bubble.maxWidth, Math.max(message.paintedWidth, subMessage.paintedWidth))
  82. property int textHeight: message.paintedHeight + (subMessage.paintedWidth > 0 ? (messageColumn.spacing + subMessage.paintedHeight) : 0)
  83. width: textWidth + bubble.marginLeft + bubble.marginRight
  84. height: textHeight + bubble.marginTop + bubble.marginBottom
  85. property int cornerRadius: 7
  86. property int messageBoxLeft: 0
  87. property int messageBoxTop: bubble.arrowHeight
  88. property int messageBoxRight: width - border
  89. property int messageBoxBottom: height - border
  90. onPaint: {
  91. var ctx = getContext("2d")
  92. ctx.lineWidth = bubble.border
  93. ctx.strokeStyle = "#555"
  94. ctx.fillStyle = "#ffffe1"
  95. ctx.beginPath()
  96. ctx.moveTo(messageBoxLeft + cornerRadius, messageBoxTop)
  97. // Arrow
  98. ctx.lineTo(messageBoxLeft + bubble.arrowOffset, messageBoxTop)
  99. ctx.lineTo(messageBoxLeft + bubble.arrowOffset, messageBoxTop - bubble.arrowHeight)
  100. ctx.lineTo(messageBoxLeft + bubble.arrowOffset + bubble.arrowWidth, messageBoxTop)
  101. // Message Box
  102. ctx.lineTo(messageBoxRight - cornerRadius, messageBoxTop)
  103. ctx.quadraticCurveTo(messageBoxRight, messageBoxTop, messageBoxRight, messageBoxTop + cornerRadius)
  104. ctx.lineTo(messageBoxRight, messageBoxBottom - cornerRadius)
  105. ctx.quadraticCurveTo(messageBoxRight, messageBoxBottom, messageBoxRight - cornerRadius, messageBoxBottom)
  106. ctx.lineTo(messageBoxLeft + cornerRadius, messageBoxBottom)
  107. ctx.quadraticCurveTo(messageBoxLeft, messageBoxBottom, messageBoxLeft, messageBoxBottom - cornerRadius)
  108. ctx.lineTo(messageBoxLeft, messageBoxTop + cornerRadius)
  109. ctx.quadraticCurveTo(messageBoxLeft, messageBoxTop, messageBoxLeft + cornerRadius, messageBoxTop)
  110. ctx.closePath()
  111. ctx.fill()
  112. ctx.stroke()
  113. }
  114. onPainted: {
  115. bubble.width = bubbleCanvas.width
  116. bubble.height = bubbleCanvas.height
  117. }
  118. }
  119. }