Skip to content
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

See the /tests directory for examples on usage.




Example

Ink.qml

import QtQuick 2.3
import Pyblish 0.1


Rectangle {
    color: "brown"

    Ink {
        anchors.fill: parent
    }
}
Clone this wiki locally