Advertisement
Guest User

Untitled

a guest
Jan 11th, 2014
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. CoverBackground {
  2.  
  3. Label {
  4. id: label
  5. anchors.centerIn: parent
  6. text: "VLC Remote"
  7. }
  8.  
  9. CoverActionList {
  10. id: coverAction
  11. property bool playing
  12.  
  13. CoverAction {
  14. iconSource: "image://theme/icon-cover-play"
  15. onTriggered: passCommands("pl_play")
  16. }
  17.  
  18. CoverAction {
  19. iconSource: "image://theme/icon-cover-pause"
  20. onTriggered: passCommands("pl_pause")
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement