mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 16:59:21 +00:00
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).
18 lines
603 B
QML
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
|
|
}
|