forked from qt-creator/qt-creator
QmlDesigner: Remove old properties
Removed and replaced old properties for ListView and GridView Change-Id: Ifbf2aae2958c5f67616d8f6a4acad6646b34c18c Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
@@ -1425,9 +1425,9 @@ Module {
|
||||
Property { name: "highlight"; type: "QDeclarativeComponent"; isPointer: true }
|
||||
Property { name: "highlightItem"; type: "QDeclarativeItem"; isReadonly: true; isPointer: true }
|
||||
Property { name: "highlightFollowsCurrentItem"; type: "bool" }
|
||||
Property { name: "highlightMoveSpeed"; type: "qreal" }
|
||||
Property { name: "highlightMoveVelocity"; type: "qreal" }
|
||||
Property { name: "highlightMoveDuration"; type: "int" }
|
||||
Property { name: "highlightResizeSpeed"; type: "qreal" }
|
||||
Property { name: "highlightResizeVelocity"; type: "qreal" }
|
||||
Property { name: "highlightResizeDuration"; type: "int" }
|
||||
Property { name: "preferredHighlightBegin"; type: "qreal" }
|
||||
Property { name: "preferredHighlightEnd"; type: "qreal" }
|
||||
@@ -1448,9 +1448,9 @@ Module {
|
||||
Signal { name: "layoutDirectionChanged"; revision: 1 }
|
||||
Signal { name: "currentIndexChanged" }
|
||||
Signal { name: "currentSectionChanged" }
|
||||
Signal { name: "highlightMoveSpeedChanged" }
|
||||
Signal { name: "highlightMoveVelocityChanged" }
|
||||
Signal { name: "highlightMoveDurationChanged" }
|
||||
Signal { name: "highlightResizeSpeedChanged" }
|
||||
Signal { name: "highlightResizeVelocityChanged" }
|
||||
Signal { name: "highlightResizeDurationChanged" }
|
||||
Signal { name: "highlightChanged" }
|
||||
Signal { name: "highlightItemChanged" }
|
||||
|
@@ -197,22 +197,6 @@ Column {
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
text: qsTr("Move speed")
|
||||
tooltip: qsTr("Move animation speed of the highlight delegate.")
|
||||
}
|
||||
|
||||
SectionLayout {
|
||||
SpinBox {
|
||||
backendValue: backendValues.highlightMoveSpeed
|
||||
minimumValue: 0
|
||||
maximumValue: 1000
|
||||
decimals: 0
|
||||
}
|
||||
ExpandingSpacer {
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
text: qsTr("Preferred begin")
|
||||
tooltip: qsTr("Preferred highlight begin - must be smaller than Preferred end.")
|
||||
|
@@ -173,7 +173,7 @@ Column {
|
||||
SectionLayout {
|
||||
SpinBox {
|
||||
backendValue: backendValues.highlightMoveDuration
|
||||
minimumValue: 0
|
||||
minimumValue: -1
|
||||
maximumValue: 1000
|
||||
decimals: 0
|
||||
}
|
||||
@@ -182,14 +182,14 @@ Column {
|
||||
}
|
||||
|
||||
Label {
|
||||
text: qsTr("Move speed")
|
||||
tooltip: qsTr("Move animation speed of the highlight delegate.")
|
||||
text: qsTr("Move velocity")
|
||||
tooltip: qsTr("Move animation velocity of the highlight delegate.")
|
||||
}
|
||||
|
||||
SectionLayout {
|
||||
SpinBox {
|
||||
backendValue: backendValues.highlightMoveSpeed
|
||||
minimumValue: 0
|
||||
backendValue: backendValues.highlightMoveVelocity
|
||||
minimumValue: -1
|
||||
maximumValue: 1000
|
||||
decimals: 0
|
||||
}
|
||||
@@ -205,7 +205,23 @@ Column {
|
||||
SectionLayout {
|
||||
SpinBox {
|
||||
backendValue: backendValues.highlightResizeDuration
|
||||
minimumValue: 0
|
||||
minimumValue: -1
|
||||
maximumValue: 1000
|
||||
decimals: 0
|
||||
}
|
||||
ExpandingSpacer {
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
text: qsTr("Resize velocity")
|
||||
tooltip: qsTr("Resize animation velocity of the highlight delegate.")
|
||||
}
|
||||
|
||||
SectionLayout {
|
||||
SpinBox {
|
||||
backendValue: backendValues.highlightResizeVelocity
|
||||
minimumValue: -1
|
||||
maximumValue: 1000
|
||||
decimals: 0
|
||||
}
|
||||
|
Reference in New Issue
Block a user