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.
29 lines
735 B
29 lines
735 B
pragma Singleton
|
|
import QtQuick 2.0
|
|
|
|
QtObject {
|
|
|
|
function absoluteSize(rel)
|
|
{
|
|
return systemPointSize + rel;
|
|
}
|
|
|
|
property QtObject generic: QtObject {
|
|
property QtObject layout: QtObject {
|
|
property string backgroundColor: "#f7f7f7"
|
|
property string borderColor: "#5391d8"
|
|
property int borderWidth: 1
|
|
property int headerHeight: 35
|
|
property int headerButtonSpacing: 5
|
|
property int leftMargin: 10
|
|
property int headerButtonHeight: 30
|
|
property string logLabelColor: "#5391d8"
|
|
property string logLabelFont: "sans serif"
|
|
property int headerInputWidth: 200
|
|
property int dateWidth: 150
|
|
property int typeWidth: 80
|
|
property int contentWidth: 700
|
|
property string logAlternateColor: "#f0f0f0"
|
|
}
|
|
}
|
|
}
|
|
|