brmbar/brmbar3/brmbar-gui-qt4/Management.qml
2012-09-23 23:43:57 +02:00

35 lines
577 B
QML

// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
import QtQuick 1.1
import QtQuick 1.0
Item {
id: page
anchors.fill: parent
BarButton {
id: stock_manager
x: 65
y: 430
width: 360
text: "Stock Mgmt"
}
BarButton {
id: user_manager
x: 599
y: 430
width: 360
text: "User Mgmt"
}
BarButton {
id: cancel
x: 599
y: 582
width: 360
text: "Cancel"
onButtonClick: {
loadPage("MainPage")
}
}
}