VuMeterStyle.qml 830 Bytes
Newer Older
1
pragma Singleton
2
import QtQml 2.2
3

4
import Colors 1.0
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

// =============================================================================

QtObject {
  property int height: 40
  property int width: 5

  property QtObject high: QtObject {
    property QtObject background: QtObject {
      property QtObject color: QtObject {
        property color disabled: Colors.y
        property color enabled: Colors.x
      }
    }

    property QtObject contentItem: QtObject {
      property color color: Colors.s
    }
  }

  property QtObject low: QtObject {
    property QtObject background: QtObject {
      property QtObject color: QtObject {
        property color disabled: Colors.y
        property color enabled: Colors.x
      }
    }

    property QtObject contentItem: QtObject {
      property color color: Colors.j
    }
  }
}