Is it possible to implement a 'hole' component which would make color of
its parent control transparent? For example:

Rectangle {
    width: 100
    height: 100

    color: 'blue'

    Rectangle {
        width: 50
        height: 50

        color: 'green'

        Hole {
           anchors.fill: parent
            width: 25
            height: 50
        }
    }
}

Expected result: area 100x100, filled with blue and 25x50 (not 50x50 as we
erased half of area with 'Hole') area of green on top.
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to