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
fc578939
Commit
fc578939
authored
Feb 24, 2010
by
Kai Koehne
Browse files
QmlDesigner: Add a couple of example .qml files for manual testing
parent
324f64b9
Changes
4
Hide whitespace changes
Inline
Side-by-side
tests/manual/qml/testfiles/helloworld.qml
0 → 100644
View file @
fc578939
import
Qt
4.6
Rectangle
{
width
:
200
height
:
200
Text
{
x
:
66
y
:
93
text
:
"
Hello World
"
}
}
tests/manual/qml/testfiles/helloworld_inverted.qml
0 → 100644
View file @
fc578939
import
Qt
4.6
Rectangle
{
width
:
200
height
:
200
color
:
"
black
"
Text
{
x
:
66
y
:
93
text
:
"
Hello World
"
color
:
"
white
"
}
}
tests/manual/qml/testfiles/states.qml
0 → 100644
View file @
fc578939
import
Qt
4.6
Rectangle
{
id
:
rect
width
:
200
height
:
200
Text
{
x
:
66
y
:
93
text
:
"
Base State
"
}
states
:
[
State
{
name
:
"
State1
"
PropertyChanges
{
target
:
rect
color
:
"
blue
"
}
PropertyChanges
{
target
:
text
text
:
"
State1
"
}
},
State
{
name
:
"
State2
"
PropertyChanges
{
target
:
rect
color
:
"
gray
"
}
PropertyChanges
{
target
:
text
text
:
"
State2
"
}
}
]
}
tests/manual/qml/testfiles/testfiles.qmlproject
0 → 100644
View file @
fc578939
// File generated by QtCreator
import QmlProject 1.0
Project {
// Scan current directory for .qml, .js, and image files
QmlFiles {
directory: "."
}
JavaScriptFiles {
directory: "."
}
ImageFiles {
directory: "."
}
}
Write
Preview
Supports
Markdown
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