New documentation from Doxygen. Added comment for function songsBell().
This commit is contained in:
@@ -48,7 +48,9 @@ CoverBackground {
|
||||
|
||||
font.pixelSize: Theme.fontSizeHuge
|
||||
text: boxingTimer.remainingTimeToString
|
||||
color: boxingTimer.status === BoxingTimer.Rest ? Theme.secondaryColor : Theme.primaryColor
|
||||
color: boxingTimer.status === BoxingTimer.Rest ?
|
||||
Theme.secondaryColor :
|
||||
Theme.primaryColor
|
||||
}
|
||||
|
||||
Item { width: 25; height: 25 }
|
||||
|
@@ -31,6 +31,7 @@
|
||||
import QtQuick 2.0
|
||||
import Sailfish.Silica 1.0
|
||||
import Pw.Unitoo.Backend 1.0
|
||||
|
||||
import "pages"
|
||||
|
||||
ApplicationWindow {
|
||||
|
@@ -53,7 +53,9 @@ Page {
|
||||
Label {
|
||||
text: name
|
||||
|
||||
color: highlighted ? Theme.highlightColor : Theme.primaryColor
|
||||
color: highlighted ?
|
||||
Theme.highlightColor :
|
||||
Theme.primaryColor
|
||||
|
||||
anchors {
|
||||
left: parent.left
|
||||
|
@@ -101,7 +101,9 @@ Page {
|
||||
|
||||
width: parent.width
|
||||
|
||||
minimumValue: Converter.sToMs(30); maximumValue: Converter.sToMs(300); stepSize: Converter.sToMs(10)
|
||||
minimumValue: Converter.sToMs(30)
|
||||
maximumValue: Converter.sToMs(300)
|
||||
stepSize: Converter.sToMs(10)
|
||||
|
||||
value: mRoundMs
|
||||
valueText: Converter.msToTime(value)
|
||||
|
@@ -31,6 +31,7 @@
|
||||
import QtQuick 2.0
|
||||
import Sailfish.Silica 1.0
|
||||
import Pw.Unitoo.Backend 1.0
|
||||
|
||||
import "js/helpers.js" as Helper
|
||||
|
||||
Page {
|
||||
@@ -85,7 +86,9 @@ Page {
|
||||
|
||||
font.pixelSize: Theme.fontSizeHuge * 3.3
|
||||
text: boxingTimer.remainingTimeToString
|
||||
color: boxingTimer.status == BoxingTimer.Rest ? Theme.secondaryColor : Theme.primaryColor
|
||||
color: boxingTimer.status == BoxingTimer.Rest ?
|
||||
Theme.secondaryColor :
|
||||
Theme.primaryColor
|
||||
}
|
||||
|
||||
Button {
|
||||
|
Reference in New Issue
Block a user