ToolBar1LatchFunction.qml 637 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. import QtQuick 1.1
  5. import com.nokia.symbian 1.1
  6. ToolBarLayout {
  7. property bool itemsEnabled
  8. ToolButton {
  9. platformInverted: window.platformInverted
  10. flat: true
  11. iconSource: "toolbar-back"
  12. onClicked: window.pageStack.depth <= 1 ? Qt.quit() : window.pageStack.pop()
  13. }
  14. ToolButton {
  15. platformInverted: window.platformInverted
  16. iconSource: platformInverted ? "../../Images/Icons/play_w.svg" : "../../Images/Icons/play.svg"
  17. checkable: true
  18. }
  19. ToolButton {
  20. visible: false
  21. }
  22. }