You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
772 B
32 lines
772 B
import QtQuick 2.0
|
|
|
|
QtObject {
|
|
|
|
function absoluteSize(rel)
|
|
{
|
|
return systemPointSize + rel;
|
|
}
|
|
|
|
property QtObject general: QtObject {
|
|
property int leftMargin: 45
|
|
}
|
|
|
|
property QtObject title: QtObject {
|
|
property string color: "#808080"
|
|
property string background: "#f0f0f0"
|
|
property int height: 55
|
|
property int fontSize: absoluteSize(7);// 18
|
|
}
|
|
|
|
property QtObject documentsList: QtObject {
|
|
property string background: "#f7f7f7"
|
|
property string color: "#4d4d4d"
|
|
property string sectionColor: "#808080"
|
|
property string selectedColor: "white"
|
|
property string highlightColor: "#4a90e2"
|
|
property int height: 35
|
|
property int fileNameHeight: 30
|
|
property int fontSize: absoluteSize(2)// 13
|
|
property int sectionFontSize: absoluteSize(2)// 13
|
|
}
|
|
}
|
|
|