Files
qt-creator/share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml
T

31 lines
629 B
QML
Raw Normal View History

import Qt 4.7
2010-01-07 12:14:35 +01:00
import Bauhaus 1.0
QScrollArea {
widgetResizable: true;
styleSheetFile: ":/qmldesigner/scrollbar.css";
horizontalScrollBarPolicy: "Qt::ScrollBarAlwaysOff";
id: layoutPane;
2010-01-07 12:14:35 +01:00
visible: false;
content: properyEditorLayout;
QFrame {
id: properyEditorLayout;
layout: QVBoxLayout {
topMargin: 0;
bottomMargin: 0;
leftMargin: 0;
rightMargin: 0;
spacing: 0
Geometry {
}
Layout {
2010-01-07 12:14:35 +01:00
id: layoutBox;
}
2010-01-07 12:14:35 +01:00
QScrollArea {
}
}
}
}