paysages3d/src/interface/modeler/quickapp/qml/Toolbar.qml

26 lines
536 B
QML
Raw Normal View History

2014-08-27 15:23:59 +00:00
import QtQuick 2.0
BaseRectangle {
2014-08-27 15:23:59 +00:00
default property alias children : inner_space.children
width: 70
height: parent.height
2014-08-28 08:29:12 +00:00
color: "#50888888"
2014-08-27 15:23:59 +00:00
Column {
id: inner_space
spacing: (parent.height - children.length * tool_terrain.height) / (children.length + 1)
anchors.centerIn: parent
}
2014-08-28 13:09:47 +00:00
onEnabledChanged: {
if (!enabled)
{
for (var i = 0; i < children.length; i++)
{
children[i].selected = false;
}
}
}
2014-08-27 15:23:59 +00:00
}