Added Dozens bets.
This commit is contained in:
parent
b28ff9bb39
commit
0787bccdb8
3 changed files with 40 additions and 1 deletions
|
@ -40,6 +40,7 @@ qt_add_qml_module(roulette-payout
|
||||||
Roulette.qml
|
Roulette.qml
|
||||||
StreetBetsView.qml
|
StreetBetsView.qml
|
||||||
Columns.qml
|
Columns.qml
|
||||||
|
Dozens.qml
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
36
Dozens.qml
Normal file
36
Dozens.qml
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
|
import roulette
|
||||||
|
|
||||||
|
Item {
|
||||||
|
RowLayout {
|
||||||
|
|
||||||
|
anchors {
|
||||||
|
left: parent.left
|
||||||
|
leftMargin: 90
|
||||||
|
top: parent.top
|
||||||
|
topMargin: 204
|
||||||
|
}
|
||||||
|
|
||||||
|
spacing: 2
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: 3
|
||||||
|
|
||||||
|
Item {
|
||||||
|
height: 26
|
||||||
|
width: 145
|
||||||
|
|
||||||
|
BetButton {
|
||||||
|
index_: index
|
||||||
|
betType: 7
|
||||||
|
height: parent.height
|
||||||
|
width: parent.width
|
||||||
|
offsetX: 110
|
||||||
|
offsetY: 110
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,11 +20,13 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
StreetBetsView {
|
StreetBetsView {
|
||||||
id: streetBets
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Columns {
|
Columns {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Dozens {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function destroyOnClose(obj) {
|
function destroyOnClose(obj) {
|
||||||
|
|
Loading…
Reference in a new issue