Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
e8ec38c1
Commit
e8ec38c1
authored
Feb 05, 2010
by
Bea Lam
Browse files
Fix ids that start with uppercase letters that were missed
previously.
parent
e0e5d94b
Changes
45
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorBox.qml
View file @
e8ec38c1
...
...
@@ -26,7 +26,7 @@ QWidget {
x
:
0
;
y
:
0
;
width
:
200
;
fixedWidth
:
width
;
id
:
Q
PushButton1
;
id
:
q
PushButton1
;
onReleased
:
fill
();
}
...
...
@@ -36,7 +36,7 @@ QWidget {
height
:
20
;
fixedHeight
:
height
;
width
:
200
;
fixedWidth
:
width
;
x
:
0
;
id
:
Q
PushButton3
;
id
:
q
PushButton3
;
onReleased
:
breakLayout
();
}
...
...
@@ -48,7 +48,7 @@ QWidget {
y
:
60
;
//styleSheet: "border-radius:5px; background-color: #ffda82";
width
:
30
;
fixedWidth
:
width
;
id
:
Q
PushButton5
;
id
:
q
PushButton5
;
checkable
:
true
;
checked
:
anchorBackend
.
leftAnchored
;
onReleased
:
{
...
...
@@ -69,7 +69,7 @@ QWidget {
width
:
100
;
fixedWidth
:
100
;
x
:
49
;
y
:
30
;
id
:
Q
PushButton6
;
id
:
q
PushButton6
;
checkable
:
true
;
checked
:
anchorBackend
.
topAnchored
;
onReleased
:
{
...
...
@@ -90,7 +90,7 @@ QWidget {
//styleSheet: "border-radius:5px; background-color: #ffda82";
width
:
30
;
fixedWidth
:
width
;
height
:
100
;
fixedHeight
:
height
;
id
:
Q
PushButton7
;
id
:
q
PushButton7
;
checkable
:
true
;
checked
:
anchorBackend
.
rightAnchored
;
onReleased
:
{
...
...
@@ -111,7 +111,7 @@ QWidget {
x
:
49
;
y
:
164
;
height
:
27
;
fixedHeight
:
height
;
id
:
Q
PushButton8
;
id
:
q
PushButton8
;
checkable
:
true
;
checked
:
anchorBackend
.
bottomAnchored
;
onReleased
:
{
...
...
@@ -130,7 +130,7 @@ QWidget {
x
:
49
;
y
:
60
;
height
:
100
;
fixedHeight
:
height
;
id
:
Q
PushButton9
;
id
:
q
PushButton9
;
QPushButton
{
width
:
24
;
fixedWidth
:
width
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/CheckBox.qml
View file @
e8ec38c1
import
Qt
4.6
import
Bauhaus
1.0
QWidget
{
//This is a special
C
heckBox that does color coding for states
QWidget
{
//This is a special
c
heckBox that does color coding for states
id
:
C
heckBox
;
id
:
c
heckBox
;
property
var
backendValue
;
property
var
baseStateFlag
;
property
alias
checkable
:
L
ocalCheckBox
.
checkable
property
alias
text
:
L
ocalLabel
.
text
property
alias
checkable
:
l
ocalCheckBox
.
checkable
property
alias
text
:
l
ocalLabel
.
text
onBaseStateFlagChanged
:
{
evaluate
();
...
...
@@ -36,14 +36,14 @@ QWidget { //This is a special CheckBox that does color coding for states
function
evaluate
()
{
if
(
baseStateFlag
)
{
if
(
backendValue
!=
null
&&
backendValue
.
isInModel
)
L
ocalLabel
.
setStyleSheet
(
"
color: white;
"
);
l
ocalLabel
.
setStyleSheet
(
"
color: white;
"
);
else
L
ocalLabel
.
setStyleSheet
(
"
color: gray;
"
);
l
ocalLabel
.
setStyleSheet
(
"
color: gray;
"
);
}
else
{
if
(
backendValue
!=
null
&&
backendValue
.
isInSubState
)
L
ocalLabel
.
setStyleSheet
(
"
color: #7799FF;
"
);
l
ocalLabel
.
setStyleSheet
(
"
color: #7799FF;
"
);
else
L
ocalLabel
.
setStyleSheet
(
"
color: gray;
"
);
l
ocalLabel
.
setStyleSheet
(
"
color: gray;
"
);
}
}
}
...
...
@@ -54,7 +54,7 @@ QWidget { //This is a special CheckBox that does color coding for states
spacing
:
4
QCheckBox
{
id
:
L
ocalCheckBox
id
:
l
ocalCheckBox
checkable
:
true
;
checked
:
(
backendValue
===
undefined
||
backendValue
===
null
)
?
false
:
backendValue
.
value
;
onToggled
:
{
...
...
@@ -63,7 +63,7 @@ QWidget { //This is a special CheckBox that does color coding for states
}
QLabel
{
id
:
L
ocalLabel
id
:
l
ocalLabel
font.bold
:
true
;
alignment
:
"
Qt::AlignLeft | Qt::AlignVCenter
"
}
...
...
@@ -72,9 +72,9 @@ QWidget { //This is a special CheckBox that does color coding for states
ExtendedFunctionButton
{
backendValue
:
C
heckBox
.
backendValue
backendValue
:
c
heckBox
.
backendValue
y
:
4
x
:
L
ocalCheckBox
.
x
+
18
;
x
:
l
ocalCheckBox
.
x
+
18
;
}
}
share/qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml
View file @
e8ec38c1
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
import
Bauhaus
1.0
QExtGroupBox
{
id
:
C
olorGroupBox
id
:
c
olorGroupBox
property
var
finished
;
...
...
@@ -23,7 +23,7 @@ QExtGroupBox {
QWidget
{
id
:
colorButtonWidget
height
:
32
width
:
C
olorGroupBox
.
width
width
:
c
olorGroupBox
.
width
layout
:
HorizontalLayout
{
topMargin
:
4
rightMargin
:
10
;
...
...
@@ -33,11 +33,11 @@ QExtGroupBox {
}
LineEdit
{
backendValue
:
C
olorGroupBox
.
backendColor
backendValue
:
c
olorGroupBox
.
backendColor
}
ColorButton
{
color
:
C
olorGroupBox
.
backendColor
.
value
;
color
:
c
olorGroupBox
.
backendColor
.
value
;
checkable
:
true
;
checked
:
false
;
minimumHeight
:
18
;
...
...
@@ -45,10 +45,10 @@ QExtGroupBox {
onClicked
:
{
if
(
checked
)
{
C
olorGroupBox
.
collapsed
=
false
;
c
olorGroupBox
.
collapsed
=
false
;
colorButtonWidget
.
visible
=
true
;
}
else
{
C
olorGroupBox
.
collapsed
=
true
;
c
olorGroupBox
.
collapsed
=
true
;
colorButtonWidget
.
visible
=
true
;
}
}
...
...
@@ -69,18 +69,18 @@ QExtGroupBox {
layout
:
HorizontalLayout
{
ColorBox
{
color
:
C
olorGroupBox
.
backendColor
.
value
;
color
:
c
olorGroupBox
.
backendColor
.
value
;
onColorChanged
:
{
C
olorGroupBox
.
backendColor
.
value
=
color
;
c
olorGroupBox
.
backendColor
.
value
=
color
;
}
hue
:
hueControl
.
hue
;
}
HueControl
{
id
:
hueControl
;
color
:
C
olorGroupBox
.
backendColor
.
value
;
color
:
c
olorGroupBox
.
backendColor
.
value
;
onColorChanged
:
{
C
olorGroupBox
.
backendColor
.
value
=
color
;
c
olorGroupBox
.
backendColor
.
value
=
color
;
}
}
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/ColorLabel.qml
View file @
e8ec38c1
...
...
@@ -2,8 +2,8 @@ import Qt 4.6
import
Bauhaus
1.0
Label
{
id
:
C
olorLabel
id
:
c
olorLabel
styleSheet
:
"
color: #ffffff;
"
alignment
:
"
Qt::AlignLeft | Qt::AlignVCenter
"
minimumHeight
:
18
}
\ No newline at end of file
}
share/qtcreator/qmldesigner/propertyeditor/Qt/ColorTypeButtons.qml
View file @
e8ec38c1
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
import
Bauhaus
1.0
QGroupBox
{
id
:
C
olorTypeButtons
id
:
c
olorTypeButtons
layout
:
HorizontalLayout
{
topMargin
:
6
rightMargin
:
10
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/ColumnSpecifics.qml
View file @
e8ec38c1
...
...
@@ -6,7 +6,7 @@ GroupBox {
finished
:
finishedNotify
;
caption
:
"
Grid
"
;
id
:
G
ridSpecifics
;
id
:
g
ridSpecifics
;
layout
:
QVBoxLayout
{
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/ComboBox.qml
View file @
e8ec38c1
...
...
@@ -2,13 +2,13 @@ import Qt 4.6
import
Bauhaus
1.0
QComboBox
{
id
:
C
omboBox
id
:
c
omboBox
property
var
backendValue
ExtendedFunctionButton
{
backendValue
:
(
C
omboBox
.
backendValue
===
undefined
||
C
omboBox
.
backendValue
===
null
)
?
null
:
C
omboBox
.
backendValue
;
backendValue
:
(
c
omboBox
.
backendValue
===
undefined
||
c
omboBox
.
backendValue
===
null
)
?
null
:
c
omboBox
.
backendValue
;
y
:
3
x
:
3
}
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/DoubleSpinBox.qml
View file @
e8ec38c1
import
Qt
4.6
import
Bauhaus
1.0
QWidget
{
//This is a special
D
oubleSpinBox that does color coding for states
id
:
D
oubleSpinBox
;
QWidget
{
//This is a special
d
oubleSpinBox that does color coding for states
id
:
d
oubleSpinBox
;
property
var
backendValue
;
property
var
baseStateFlag
;
property
alias
singleStep
:
box
.
singleStep
property
alias
minimum
:
box
.
minimum
property
alias
maximum
:
box
.
maximum
property
alias
spacing
:
L
ayoutH
.
spacing
property
alias
spacing
:
l
ayoutH
.
spacing
property
alias
text
:
label
.
text
property
bool
alignRight
:
true
property
bool
enabled
:
true
...
...
@@ -53,28 +53,28 @@ QWidget { //This is a special DoubleSpinBox that does color coding for states
}
layout
:
HorizontalLayout
{
id
:
L
ayoutH
;
id
:
l
ayoutH
;
QLabel
{
id
:
label
;
font.bold
:
true
;
alignment
:
D
oubleSpinBox
.
alignRight
?
"
Qt::AlignRight | Qt::AlignVCenter
"
:
"
Qt::AlignLeft | Qt::AlignVCenter
"
;
alignment
:
d
oubleSpinBox
.
alignRight
?
"
Qt::AlignRight | Qt::AlignVCenter
"
:
"
Qt::AlignLeft | Qt::AlignVCenter
"
;
maximumWidth
:
40
visible
:
D
oubleSpinBox
.
text
!=
""
;
visible
:
d
oubleSpinBox
.
text
!=
""
;
}
QDoubleSpinBox
{
id
:
box
;
decimals
:
1
;
keyboardTracking
:
false
;
enabled
:
(
D
oubleSpinBox
.
backendValue
===
undefined
||
D
oubleSpinBox
.
backendValue
===
null
)
?
true
:
!
backendValue
.
isBound
&&
D
oubleSpinBox
.
enabled
;
enabled
:
(
d
oubleSpinBox
.
backendValue
===
undefined
||
d
oubleSpinBox
.
backendValue
===
null
)
?
true
:
!
backendValue
.
isBound
&&
d
oubleSpinBox
.
enabled
;
property
bool
readingFromBackend
:
false
;
property
real
valueFromBackend
:
(
D
oubleSpinBox
.
backendValue
===
undefined
||
D
oubleSpinBox
.
backendValue
===
null
||
D
oubleSpinBox
.
backendValue
.
value
===
undefined
)
?
.
0
:
D
oubleSpinBox
.
backendValue
.
value
;
property
real
valueFromBackend
:
(
d
oubleSpinBox
.
backendValue
===
undefined
||
d
oubleSpinBox
.
backendValue
===
null
||
d
oubleSpinBox
.
backendValue
.
value
===
undefined
)
?
.
0
:
d
oubleSpinBox
.
backendValue
.
value
;
onValueFromBackendChanged
:
{
readingFromBackend
=
true
;
...
...
@@ -83,8 +83,8 @@ QWidget { //This is a special DoubleSpinBox that does color coding for states
}
onValueChanged
:
{
if
(
D
oubleSpinBox
.
backendValue
!=
null
&&
readingFromBackend
==
false
)
D
oubleSpinBox
.
backendValue
.
value
=
value
;
if
(
d
oubleSpinBox
.
backendValue
!=
null
&&
readingFromBackend
==
false
)
d
oubleSpinBox
.
backendValue
.
value
=
value
;
}
onMouseOverChanged
:
{
...
...
@@ -94,11 +94,11 @@ QWidget { //This is a special DoubleSpinBox that does color coding for states
}
ExtendedFunctionButton
{
backendValue
:
(
D
oubleSpinBox
.
backendValue
===
undefined
||
D
oubleSpinBox
.
backendValue
===
null
)
?
null
:
D
oubleSpinBox
.
backendValue
;
backendValue
:
(
d
oubleSpinBox
.
backendValue
===
undefined
||
d
oubleSpinBox
.
backendValue
===
null
)
?
null
:
d
oubleSpinBox
.
backendValue
;
y
:
box
.
y
+
4
x
:
box
.
x
+
2
visible
:
D
oubleSpinBox
.
enabled
visible
:
d
oubleSpinBox
.
enabled
}
}
share/qtcreator/qmldesigner/propertyeditor/Qt/ExpressionEditor.qml
View file @
e8ec38c1
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
import
Bauhaus
1.0
QWidget
{
id
:
E
xpressionEditor
;
id
:
e
xpressionEditor
;
x
:
6
y
:
-
400
width
:
frame
.
width
-
22
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/Extended.qml
View file @
e8ec38c1
...
...
@@ -3,7 +3,7 @@ import Bauhaus 1.0
GroupBox
{
caption
:
"
Effect
"
id
:
E
xtended
;
id
:
e
xtended
;
maximumHeight
:
260
;
layout
:
VerticalLayout
{
...
...
@@ -89,8 +89,8 @@ GroupBox {
visible
:
effectComboBox
.
currentText
==
"
Opacity
"
;
layout
:
QVBoxLayout
{
DoubleSpinBox
{
id
:
O
pcacityEffectSpinBox
;
objectName
:
"
O
pcacityEffectSpinBox
"
;
id
:
o
pcacityEffectSpinBox
;
objectName
:
"
o
pcacityEffectSpinBox
"
;
backendValue
:
backendValues
.
effect
.
complexNode
.
exists
?
backendValues
.
effect
.
complexNode
.
properties
.
opacity
:
null
;
minimum
:
0
;
maximum
:
1
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/ExtendedFunctionButton.qml
View file @
e8ec38c1
...
...
@@ -2,21 +2,21 @@ import Qt 4.6
import
Bauhaus
1.0
QToolButton
{
id
:
E
xtendedFunctionButton
id
:
e
xtendedFunctionButton
property
var
backendValue
Script
{
function
setIcon
()
{
if
(
backendValue
==
null
)
E
xtendedFunctionButton
.
iconFromFile
=
"
images/placeholder.png
"
e
xtendedFunctionButton
.
iconFromFile
=
"
images/placeholder.png
"
else
if
(
backendValue
.
isBound
)
{
E
xtendedFunctionButton
.
iconFromFile
=
"
images/expression.png
"
e
xtendedFunctionButton
.
iconFromFile
=
"
images/expression.png
"
}
else
{
if
(
backendValue
.
complexNode
!=
null
&&
backendValue
.
complexNode
.
exists
)
{
E
xtendedFunctionButton
.
iconFromFile
=
"
images/behaivour.png
"
e
xtendedFunctionButton
.
iconFromFile
=
"
images/behaivour.png
"
}
else
{
E
xtendedFunctionButton
.
iconFromFile
=
"
images/placeholder.png
"
e
xtendedFunctionButton
.
iconFromFile
=
"
images/placeholder.png
"
}
}
}
...
...
@@ -73,8 +73,8 @@ QToolButton {
QAction
{
text
:
"
Set Expression
"
;
onTriggered
:
{
expressionEdit
.
globalY
=
E
xtendedFunctionButton
.
globalY
;
expressionEdit
.
backendValue
=
E
xtendedFunctionButton
.
backendValue
expressionEdit
.
globalY
=
e
xtendedFunctionButton
.
globalY
;
expressionEdit
.
backendValue
=
e
xtendedFunctionButton
.
backendValue
expressionEdit
.
show
();
expressionEdit
.
raise
();
expressionEdit
.
active
=
true
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/ExtendedPane.qml
View file @
e8ec38c1
...
...
@@ -5,13 +5,13 @@ QScrollArea {
widgetResizable
:
true
;
styleSheetFile
:
"
:/qmldesigner/scrollbar.css
"
;
horizontalScrollBarPolicy
:
"
Qt::ScrollBarAlwaysOff
"
;
id
:
E
xtendedPane
;
id
:
e
xtendedPane
;
visible
:
false
;
visible
:
false
;
content
:
P
roperyEditorExtended
;
content
:
p
roperyEditorExtended
;
QFrame
{
minimumHeight
:
440
;
id
:
P
roperyEditorExtended
id
:
p
roperyEditorExtended
layout
:
QVBoxLayout
{
topMargin
:
0
;
bottomMargin
:
0
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/FlickableSpecifics.qml
View file @
e8ec38c1
...
...
@@ -63,8 +63,8 @@ GroupBox {
DoubleSpinBox
{
id
:
H
orizontalVelocitySpinBox
;
objectName
:
"
H
orizontalVelocitySpinBox
"
;
id
:
h
orizontalVelocitySpinBox
;
objectName
:
"
h
orizontalVelocitySpinBox
"
;
backendValue
:
backendValues
.
horizontalVelocity
;
minimumWidth
:
30
;
minimum
:
0.1
...
...
@@ -74,8 +74,8 @@ GroupBox {
}
DoubleSpinBox
{
id
:
V
erticalVelocitySpinBox
;
objectName
:
"
V
erticalVelocitySpinBox
"
;
id
:
v
erticalVelocitySpinBox
;
objectName
:
"
v
erticalVelocitySpinBox
"
;
backendValue
:
backendValues
.
verticalVelocity
;
minimumWidth
:
30
;
minimum
:
0.1
...
...
@@ -85,8 +85,8 @@ GroupBox {
}
DoubleSpinBox
{
id
:
M
aximumVelocitySpinBox
;
objectName
:
"
M
aximumVelocitySpinBox
"
;
id
:
m
aximumVelocitySpinBox
;
objectName
:
"
m
aximumVelocitySpinBox
"
;
backendValue
:
backendValues
.
maximumFlickVelocity
;
minimumWidth
:
30
;
minimum
:
0.1
...
...
@@ -96,7 +96,7 @@ GroupBox {
}
CheckBox
{
id
:
O
vershootCheckBox
;
id
:
o
vershootCheckBox
;
text
:
"
overshoot
"
;
backendValue
:
backendValues
.
overShoot
;
baseStateFlag
:
isBaseState
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/FontGroupBox.qml
View file @
e8ec38c1
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
import
Bauhaus
1.0
GroupBox
{
id
:
F
ontGroupBox
id
:
f
ontGroupBox
caption
:
"
Font
"
;
layout
:
VerticalLayout
{
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml
View file @
e8ec38c1
...
...
@@ -3,8 +3,8 @@ import Bauhaus 1.0
GroupBox
{
finished
:
finishedNotify
;
id
:
G
eometry
;
caption
:
"
G
eometry
"
;
id
:
g
eometry
;
caption
:
"
g
eometry
"
;
layout
:
VerticalLayout
{
...
...
@@ -16,12 +16,12 @@ GroupBox {
}
DoubleSpinBox
{
id
:
X
SpinBox
;
id
:
x
SpinBox
;
text
:
"
X
"
alignRight
:
false
spacing
:
4
singleStep
:
1
;
objectName
:
"
X
SpinBox
"
;
objectName
:
"
x
SpinBox
"
;
enabled
:
anchorBackend
.
hasParent
;
backendValue
:
backendValues
.
x
minimum
:
-
2000
;
...
...
@@ -30,12 +30,12 @@ GroupBox {
}
DoubleSpinBox
{
id
:
Y
SpinBox
;
id
:
y
SpinBox
;
singleStep
:
1
;
text
:
"
Y
"
alignRight
:
false
spacing
:
4
objectName
:
"
Y
SpinBox
"
;
objectName
:
"
y
SpinBox
"
;
backendValue
:
backendValues
.
y
enabled
:
anchorBackend
.
hasParent
;
minimum
:
-
2000
;
...
...
@@ -55,12 +55,12 @@ GroupBox {
}
DoubleSpinBox
{
id
:
W
idthSpinBox
;
id
:
w
idthSpinBox
;
text
:
"
W
"
alignRight
:
false
spacing
:
4
singleStep
:
1
;
objectName
:
"
W
idthSpinBox
"
;
objectName
:
"
w
idthSpinBox
"
;
backendValue
:
backendValues
.
width
minimum
:
-
2000
;
maximum
:
2000
;
...
...
@@ -68,12 +68,12 @@ GroupBox {
}
DoubleSpinBox
{
id
:
H
eightSpinBox
;
id
:
h
eightSpinBox
;
text
:
"
H
"
alignRight
:
false
spacing
:
4
singleStep
:
1
;
objectName
:
"
H
eightSpinBox
"
;
objectName
:
"
h
eightSpinBox
"
;
backendValue
:
backendValues
.
height
minimum
:
-
2000
;
maximum
:
2000
;
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/GridSpecifics.qml
View file @
e8ec38c1
...
...
@@ -6,7 +6,7 @@ GroupBox {
finished
:
finishedNotify
;
caption
:
"
Grid
"
;
id
:
G
ridSpecifics
;
id
:
g
ridSpecifics
;
layout
:
QVBoxLayout
{
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/GroupBox.qml
View file @
e8ec38c1
...
...
@@ -2,7 +2,7 @@ import Qt 4.6
import
Bauhaus
1.0
QExtGroupBox
{
id
:
G
roupBox
;
id
:
g
roupBox
;
property
var
finished
;
...
...
@@ -11,7 +11,7 @@ QExtGroupBox {
property
var
oldMaximumHeight
;
onFinishedChanged
:
{
C
heckBox
.
raise
();
c
heckBox
.
raise
();
maximumHeight
=
height
;
oldMaximumHeight
=
maximumHeight
;
visible
=
false
;
...
...
@@ -21,14 +21,14 @@ QExtGroupBox {
QToolButton
{
//QCheckBox {
id
:
C
heckBox
;
text
:
G
roupBox
.
caption
;
id
:
c
heckBox
;
text
:
g
roupBox
.
caption
;
focusPolicy
:
"
Qt::NoFocus
"
;
styleSheetFile
:
"
special
C
heckBox.css
"
;
styleSheetFile
:
"
special
c
heckBox.css
"
;
y
:
0
;
x
:
0
;
fixedHeight
:
17
fixedWidth
:
G
roupBox
.
width
;
fixedWidth
:
g
roupBox
.
width
;
arrowType
:
"
Qt::DownArrow
"
;
toolButtonStyle
:
"
Qt::ToolButtonTextBesideIcon
"
;
checkable
:
true
;
...
...
@@ -36,7 +36,7 @@ QExtGroupBox {
font.bold
:
true
;
onClicked
:
{
if
(
checked
)
{
//
G
roupBox.maximumHeight = oldMaximumHeight;
//
g
roupBox.maximumHeight = oldMaximumHeight;
collapsed
=
false
;
//text = "";
//width = 12;
...
...
@@ -44,10 +44,10 @@ QExtGroupBox {
arrowType
=
"
Qt::DownArrow
"
;
visible
=
true
;
}
else
{