-
Notifications
You must be signed in to change notification settings - Fork 44
QML Module
Marcus Ottosson edited this page Apr 14, 2015
·
2 revisions
Pyblish QML provides a custom QML module called Pyblish
.
import Pyblish 0.1
This module contains generic graphical elements used throughout the UI, such as buttons and labels.
Available components
- Action
- ActionBar
- AwesomeIcon
- AwesomeButton
- Button
- CheckBox
- Ink
- Icon
- IconButton
- Label
- Object
- ProgressBar
- SpinBox
- View
- TabBar
- TabView
- TextArea
- TextField
- Tooltip
- Theme
- Utils
See the /tests directory for examples on usage.
Ink.qml
import QtQuick 2.3
import Pyblish 0.1
Rectangle {
color: "brown"
Ink {
anchors.fill: parent
}
}