import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 import QtGraphicalEffects 1.0 import QtQuick.Particles 2.0 ApplicationWindow { id: main_window visible: true height: Screen.height / 1.85 width: Screen.width / 2 title: qsTr("test monitor 1.0") minimumHeight: Screen.height / 3 minimumWidth: Screen.width / 3 Rectangle { width: parent.width height: 30 color: "#d0d0ff" x: 30 y: 89 id: energyGridBar ParticleSystem { id: particlesItemPlus anchors.fill: energyGridBar ImageParticle { source: "qrc:/particle.png" color: "#f9f9f9" colorVariation: 0.1 rotationVariation: 0.1 } Emitter { width: 10 height: 20 y: 3 emitRate: 1000 //group: "grid_plus" lifeSpan: 1900 size: 5 velocity: PointDirection { x: 500 } } } } }