1234567891011121314151617181920212223242526272829 |
- /**
- * Copyright (c) 2012 Nokia Corporation.
- */
- import QtQuick 1.1
- import com.nokia.symbian 1.1
- ToolBarLayout {
- property bool itemsEnabled
- ToolButton {
- platformInverted: window.platformInverted
- flat: true
- iconSource: "toolbar-back"
- onClicked: window.pageStack.depth <= 1 ? Qt.quit() : window.pageStack.pop()
- }
- ToolButton {
- platformInverted: window.platformInverted
- iconSource: platformInverted ? "../../Images/Icons/play_w.svg" : "../../Images/Icons/play.svg"
- checkable: true
- }
- ToolButton {
- visible: false
- }
- }
|