summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/FontStyleButtons.qml
blob: 0abd7f7e89ff88f5ac3b112daf4a5379b24ef54b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import Qt 4.7
import Bauhaus 1.0

QGroupBox {
    id: fontStyleButtons

    property int buttonWidth: 46
    layout: HorizontalLayout {

        QWidget {
            fixedHeight: 32

            FlagedButton {
                checkable: true
                iconSize.width: 24;
                iconSize.height: 24;
                fixedWidth: buttonWidth
                width: fixedWidth
                fixedHeight: 28
                height: fixedHeight
                styleSheetFile: "styledbuttonleft.css";
                checked: backendValues.font_bold.value;
                backendValue: backendValues.font_bold;

                iconFromFile: flagActive ? "images/bold-h-icon.png" : "images/bold-icon.png"

                onClicked: {
                    backendValues.font_bold.value = checked;
                }

                ExtendedFunctionButton {
                    backendValue:   backendValues.font_bold;
                    y: 7
                    x: 2
                }
            }
            FlagedButton {
                x: buttonWidth
                checkable: true
                fixedWidth: buttonWidth
                width: fixedWidth
                fixedHeight: 28
                iconSize.width: 24;
                iconSize.height: 24;
                height: fixedHeight
                iconFromFile: flagActive ? "images/italic-h-icon.png" : "images/italic-icon.png"

                styleSheetFile: "styledbuttonmiddle.css";
                checked: backendValues.font_italic.value;
                backendValue: backendValues.font_italic;

                onClicked: {
                    backendValues.font_italic.value = checked;
                }

                ExtendedFunctionButton {
                    backendValue:   backendValues.font_italic
                    y: 7
                    x: 2
                }
            }
            FlagedButton {
                x: buttonWidth * 2
                checkable: true
                fixedWidth: buttonWidth
                width: fixedWidth
                fixedHeight: 28
                iconSize.width: 24;
                iconSize.height: 24;
                height: fixedHeight
                iconFromFile:  flagActive ? "images/underline-h-icon.png" : "images/underline-icon.png"

                styleSheetFile: "styledbuttonmiddle.css";
                checked: backendValues.font_underline.value;
                backendValue: backendValues.font_underline;

                onClicked: {
                    backendValues.font_underline.value = checked;
                }

                ExtendedFunctionButton {
                    backendValue:   backendValues.font_underline;
                    y: 7
                    x: 2
                }
            }
            FlagedButton {
                x: buttonWidth * 3
                checkable: true
                fixedWidth: buttonWidth
                width: fixedWidth
                fixedHeight: 28
                iconSize.width: 24;
                iconSize.height: 24;
                height: fixedHeight
                iconFromFile: flagActive ? "images/strikeout-h-icon.png" : "images/strikeout-icon.png"

                styleSheetFile: "styledbuttonright.css";
                checked: backendValues.font_strikeout.value;
                backendValue: backendValues.font_strikeout;

                onClicked: {
                    backendValues.font_strikeout.value = checked;
                }

                ExtendedFunctionButton {
                    backendValue:   backendValues.font_strikeout;
                    y: 7
                    x: 2
                }
            }
        }
    }
}