summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/GroupBoxOption.qml
blob: 5a753f8e62934f11d9e9dc4ebee67eba5814dedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Qt 4.7
import Bauhaus 1.0

QExtGroupBox {
    id: groupBoxOption;

    property variant finished;

    property variant caption;

    property variant oldMaximumHeight;

    onFinishedChanged: {
        CheckBox.raise();
        maximumHeight = height;
        oldMaximumHeight = maximumHeight;
        minimumHeight = height;
        x = 6;
        visible = false;
    }
}