9 lines
165 B
QML
9 lines
165 B
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
property bool visible: false
|
|
property string text: ""
|
|
property real itemX: 0
|
|
property var screen: null
|
|
}
|