File: ActionTypes.qml

package info (click to toggle)
quickflux 1.1.3%2Bgit20201110.2a37acf-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,036 kB
  • sloc: cpp: 2,874; makefile: 26
file content (21 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pragma Singleton
import QtQuick 2.0
import QuickFlux 1.0

KeyTable {

    property string value1;

    property int value2 : 2;

    property real value3: 3.3

    property bool value4: true

    property bool value4b: false

    property point value5 : Qt.point(5,6)

    property rect value6 : Qt.rect(6,7,8,9)

}