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.

36 lines
980 B

pragma Singleton
import QtQuick 2.13
QtObject {
/**************************************************************************/
// General
property var widthRatio: 1
property var heightRatio: 1
property var ratio: Math.min(widthRatio , heightRatio)
property var windowAspectRatio: 16 / 6
property var windowWidth: 1920 // Do Not Change This Property
property var windowHeight: 860 // Do Not Change This Property
property var lightButton: 64
property var microButton: 32
property var macroButton: 64
property var margin: 6
property var microLightThickness: 10
property var macroLightThickness: 10
property var imageScale: 0.75
property var imageScalePressed: 0.65
property var rotateStep: 45
property var radiusLong: 44
property var radiusShort: 24
property var sliderWidth: 250
property var sliderHeight: 50
property var sliderThickness: 20
property var textWidth: 250
property var textHeight: 30
}