mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:08:25 +00:00
21 lines
466 B
QML
21 lines
466 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'InviteFriends'
|
|
property color color: ColorsList.add(sectionName+'_bg', 'k').color
|
|
property int width: 400
|
|
|
|
property QtObject message: QtObject {
|
|
property int height: 140
|
|
}
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int bottomMargin: 35
|
|
property int spacing: 10
|
|
}
|
|
}
|