mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 19:38:09 +00:00
73 lines
1.8 KiB
QML
73 lines
1.8 KiB
QML
pragma Singleton
|
|
import QtQml
|
|
|
|
import Linphone
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName : 'FileView'
|
|
|
|
property int height: 120
|
|
property int heightbetter: 200
|
|
property int iconSize: 18
|
|
property int margins: 8
|
|
property int spacing: 8
|
|
property int width: 100
|
|
|
|
property QtObject name: QtObject{
|
|
property int pointSize: Math.round(DefaultStyle.dp * 7)
|
|
}
|
|
|
|
property QtObject download: QtObject{
|
|
property string icon: AppIcons.download
|
|
property int height: 20
|
|
property int pointSize: Math.round(DefaultStyle.dp * 8)
|
|
property int iconSize: 30
|
|
}
|
|
property QtObject thumbnailVideoIcon: QtObject {
|
|
property int iconSize: 40
|
|
property string name : 'play'
|
|
property string icon : AppIcons.playFill
|
|
}
|
|
property QtObject animation: QtObject {
|
|
property int duration: 300
|
|
property real to: 1.7
|
|
property real thumbnailTo: 2
|
|
}
|
|
|
|
property QtObject extension: QtObject {
|
|
property string icon: AppIcons.file
|
|
property string imageIcon: AppIcons.fileImage
|
|
property int iconSize: 60
|
|
property int internalSize: 37
|
|
property int radius: Math.round(5 * DefaultStyle.dp)
|
|
|
|
property QtObject background: QtObject {
|
|
property var color: DefaultStyle.grey_0
|
|
property var borderColor: DefaultStyle.grey_0
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property var color: DefaultStyle.grey_0
|
|
property int pointSize: Math.round(DefaultStyle.dp * 9)
|
|
}
|
|
}
|
|
|
|
property QtObject status: QtObject {
|
|
property int spacing: 4
|
|
|
|
property QtObject bar: QtObject {
|
|
property int height: 6
|
|
property int radius: 3
|
|
|
|
property QtObject background: QtObject {
|
|
property var color: DefaultStyle.grey_0
|
|
}
|
|
|
|
property QtObject contentItem: QtObject {
|
|
property var color: DefaultStyle.grey_0
|
|
}
|
|
}
|
|
}
|
|
}
|