linphone-desktop/linphone-app/ui/modules/Common/Styles/Indicators/RoundProgressBarStyle.qml
Julien Wadel 571ef7b79c Add a new progress bar in the form of spinner.
Allow to cancel a file transfer.
Open folder if the file cannot be directly open (don't work if the system accept but reject it).
2022-06-17 16:36:46 +02:00

18 lines
603 B
QML

pragma Singleton
import QtQml 2.2
import ColorsList 1.0
import Units 1.0
// =============================================================================
QtObject {
property string sectionName: 'RoundProgressBar'
property color backgroundColor: ColorsList.add(sectionName+'_bg', 'progress_bg').color
property color progressRemainColor: ColorsList.add(sectionName+'_remaining_fg', 'progress_remaining_fg').color
property color progressColor: ColorsList.add(sectionName+'_fg', 'i').color
property int progressionWidth : 3
property int borderWidth: 2
property int pointSize: Units.dp * 7
}