Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tobias Hunger
qt-creator
Commits
e32cf192
Commit
e32cf192
authored
Feb 22, 2011
by
Leandro Melo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Snippets: Rename a few QML snippets variables
Task-number: QTCREATORBUG-3803
parent
ba073b96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
share/qtcreator/snippets/qml.xml
share/qtcreator/snippets/qml.xml
+11
-11
No files found.
share/qtcreator/snippets/qml.xml
View file @
e32cf192
...
...
@@ -23,7 +23,7 @@
State {
name: "$name$"
PropertyChanges {
target: $
name
$
target: $
object
$
$$
}
}
...
...
@@ -31,30 +31,30 @@
<snippet
group=
"QML"
trigger=
"State"
id=
"qml_state"
>
State {
name: "$name$"
PropertyChanges {
target: $
name
$
target: $
object
$
$$
}
}
</snippet>
<snippet
group=
"QML"
trigger=
"transitions"
id=
"qml_transitions"
>
transitions: [
Transition {
from: "$
nam
e$"
to: "$
nam
e$"
from: "$
fromStat
e$"
to: "$
toStat
e$"
$$
}
]
</snippet>
<snippet
group=
"QML"
trigger=
"Transition"
id=
"qml_transition"
>
Transition {
from: "$
nam
e$"
to: "$
nam
e$"
from: "$
fromStat
e$"
to: "$
toStat
e$"
$$
}
</snippet>
<snippet
group=
"QML"
trigger=
"PropertyChanges"
id=
"qml_propertychanges"
>
PropertyChanges {
target: $
name
$
target: $
object
$
$$
}
</snippet>
<snippet
group=
"QML"
trigger=
"NumberAnimation"
id=
"qml_numberanimationwithtargets"
complement=
"with targets"
>
NumberAnimation { targets: [$
name
$]; properties: "$name$"; duration: $200$ }
</snippet>
<snippet
group=
"QML"
trigger=
"NumberAnimation"
id=
"qml_numberanimationwithtarget"
complement=
"with target"
>
NumberAnimation { target: $
name
$; property: "$name$"; to: $value$; duration: $200$ }
</snippet>
<snippet
group=
"QML"
trigger=
"PropertyAction"
id=
"qml_propertyactionwithtargets"
complement=
"with targets"
>
PropertyAction { targets: [$
name
$]; properties: "$name$" }
</snippet>
<snippet
group=
"QML"
trigger=
"PropertyAction"
id=
"qml_propertyactionwithtarget"
complement=
"with target"
>
PropertyAction { target: $
name
$; property: "$name$"; value: $value$ }
</snippet>
<snippet
group=
"QML"
trigger=
"NumberAnimation"
id=
"qml_numberanimationwithtargets"
complement=
"with targets"
>
NumberAnimation { targets: [$
object
$]; properties: "$name$"; duration: $200$ }
</snippet>
<snippet
group=
"QML"
trigger=
"NumberAnimation"
id=
"qml_numberanimationwithtarget"
complement=
"with target"
>
NumberAnimation { target: $
object
$; property: "$name$"; to: $value$; duration: $200$ }
</snippet>
<snippet
group=
"QML"
trigger=
"PropertyAction"
id=
"qml_propertyactionwithtargets"
complement=
"with targets"
>
PropertyAction { targets: [$
object
$]; properties: "$name$" }
</snippet>
<snippet
group=
"QML"
trigger=
"PropertyAction"
id=
"qml_propertyactionwithtarget"
complement=
"with target"
>
PropertyAction { target: $
object
$; property: "$name$"; value: $value$ }
</snippet>
<snippet
group=
"QML"
trigger=
"PauseAnimation"
id=
"qml_pauseanimation"
>
PauseAnimation { duration: $200$ }
</snippet>
<snippet
group=
"QML"
trigger=
"ColorAnimation"
id=
"qml_coloranimation"
>
ColorAnimation { from: $"white"$; to: $"black"$; duration: $200$ }
</snippet>
</snippets>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment