Advertisement
Guest User

Untitled

a guest
Jan 11th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. import QtQuick 2.0
  2. import Sailfish.Silica 1.0
  3. import "../pages"
  4.  
  5. CoverBackground {
  6.  
  7. Label {
  8. id: label
  9. anchors.centerIn: parent
  10. text: "VLC Remote"
  11. }
  12.  
  13. CoverActionList {
  14. id: coverAction
  15.  
  16. CoverAction {
  17. iconSource: "image://theme/icon-cover-play"
  18. onTrigered: console.log("Hi")//FirstPage.passCommands("pl_play")
  19. }
  20.  
  21. CoverAction {
  22. iconSource: "image://theme/icon-cover-pause"
  23. onTrigered: console.log("Hi") //FirstPage.passCommands("pl_pause")
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement