2017-06-22 11:03:47 -04:00
|
|
|
import QtQuick 2.0
|
2017-06-22 11:04:25 -04:00
|
|
|
pragma Singleton
|
2017-06-22 11:03:47 -04:00
|
|
|
|
2017-06-22 11:04:25 -04:00
|
|
|
QtObject {
|
|
|
|
|
|
|
|
property var width: 1.5
|
|
|
|
|
|
|
|
property QtObject item: QtObject
|
|
|
|
{
|
2017-06-22 12:05:04 -04:00
|
|
|
property var height: 40
|
2017-06-22 11:04:25 -04:00
|
|
|
|
|
|
|
property string hoverColor: "lightgrey"
|
|
|
|
property string defaultColor: "white"
|
|
|
|
property string pressColor: "slategrey"
|
2017-06-22 11:32:59 -04:00
|
|
|
}
|
|
|
|
property QtObject header: QtObject
|
|
|
|
{
|
|
|
|
property var color: "#0398d5"
|
2017-06-22 13:28:14 -04:00
|
|
|
property var avatarHeight: 50
|
|
|
|
property var avatarMargins: 15
|
|
|
|
property var textColor: "white"
|
|
|
|
property var textNickSize: 14
|
|
|
|
property var textGxsidSize: 11
|
|
|
|
}
|
|
|
|
property QtObject footer: QtObject
|
|
|
|
{
|
|
|
|
property var color: "white"
|
|
|
|
property var textColor: "grey"
|
|
|
|
property var margins: 8
|
2017-06-22 11:04:25 -04:00
|
|
|
}
|
2017-06-22 11:03:47 -04:00
|
|
|
|
|
|
|
}
|