a Widget Management App can run on Win/Linux/Mac.
Uses QT5.7.1's "QML + Javascript Engine" for widgets.
import QtQuick 2.5
// Widget's root object
Item {
width: 70
height: 30
// A Text element
Text {
x: 20
y: 5
text: "Hey!"
}
}
Visit the Wiki =>> How to Create a Widget
Download the project:
git clone https://github.com/eminfedar/widgetci.git
Requirements:
- Qt 5.7.1 (or >=)
- QtCreator (optional, you can build it from qtcreator just by opening the project on it and building it)
cd widgetci/widgetci/ #path of the .pro file
mkdir buildFolder
cd buildFolder
qmake ../
make
./widgetci