ConferenceManagerStyle.qml 504 Bytes
Newer Older
1
pragma Singleton
2
import QtQml 2.2
3

4
import Colors 1.0
5 6 7 8 9 10 11

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

QtObject {
  property int height: 420
  property int leftMargin: 35
  property int rightMargin: 35
12
  property int width: 740
13 14 15 16 17 18 19 20 21 22 23 24

  property QtObject columns: QtObject {
    property QtObject selector: QtObject {
      property int spacing: 10
    }

    property QtObject separator: QtObject {
      property color color: Colors.c
      property int width: 1
    }
  }
}