Pascaldietz (Talk | contribs) (created TimePicker API Snapshot page) |
Pascaldietz (Talk | contribs) (removed private properties) |
||
| Line 15: | Line 15: | ||
;''int'' minutesIncrement | ;''int'' minutesIncrement | ||
:Sets the step width used to select minutes | :Sets the step width used to select minutes | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
=Signals= | =Signals= | ||
See [[ModalFog API Snapshot|ModalFog]] signals. | See [[ModalFog API Snapshot|ModalFog]] signals. | ||
Contents |
Offers controls to select time by hours and minutes. 12 and 24 hours systems supported. If OK is clicked, the selected hours and minutes are stored and can be accessed through the properties.
See ModalFog signals.
-
//a button labeled with the selected time
Button {
id: timeButton
text: timePicker.time
TimePicker {
id: timePicker
hr24: true
}
onClicked: {
timePicker.show()
}
}