DButton.qml 474 B

123456789101112131415161718192021222324252627282930
  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. height: 20
  5. width: _text.width + 20
  6. radius: 3
  7. property alias text: _text.text
  8. signal click()
  9. color: _mouse.containsPress? "#404040" : (_mouse.containsMouse? "#303030" : "#262626")
  10. DText {
  11. id: _text
  12. anchors.centerIn: parent
  13. text: "Скачать"
  14. }
  15. MouseArea {
  16. id: _mouse
  17. anchors.fill: parent
  18. hoverEnabled: true
  19. cursorShape: Qt.PointingHandCursor
  20. onClicked: root.click()
  21. }
  22. }