forked from qt-creator/qt-creator
11 lines
211 B
QML
11 lines
211 B
QML
|
|
import QtQuick 1.0
|
||
|
|
|
||
|
|
Item {
|
||
|
|
property int width: 200
|
||
|
|
property int height: 200
|
||
|
|
property string name
|
||
|
|
property color someColor
|
||
|
|
property Rectangle someRectangle
|
||
|
|
default property list<QtObject> foo
|
||
|
|
}
|