ToolBar1LatchButton.qml 575 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. text: "Radio"
  17. checkable: true
  18. //flat:true
  19. }
  20. ToolButton {
  21. visible: false
  22. }
  23. }