brmbar v3: Add Management view

This commit is contained in:
Petr Baudis 2012-09-23 23:43:57 +02:00
parent 0a496a3911
commit 3a89082d31
3 changed files with 48 additions and 11 deletions

View file

@ -0,0 +1,35 @@
// 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")
}
}
}