summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/TextSpecifics.qml
blob: 666c5091c47029bfc75173f100a6ea1128a65931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Qt 4.7
import Bauhaus 1.0

QWidget {
    id: textSpecifics;

    layout: QVBoxLayout {
        topMargin: 0
        bottomMargin: 0
        leftMargin: 0
        rightMargin: 0
        spacing: 0


        StandardTextColorGroupBox {
            showStyleColor: true
            finished: finishedNotify;
        }
		
		    StandardTextGroupBox {
            showIsWrapping: true
            showVerticalAlignment: true
            finished: finishedNotify;
        }

        FontGroupBox {
            finished: finishedNotify;
            showStyle: true
        }

        QScrollArea {
        }
    }
}