Difference between revisions of "ECE497 Notes on Qt"
From eLinux.org
m (→Useful Links) |
m (→Useful Links) |
||
| Line 13: | Line 13: | ||
I'm working through [http://doc.trolltech.com/qtcreator-2.2/creator-qml-application.html this] example. I can't change '''mousearea1''' to '''MouseArea''' to match the figure. I think something is missing in the instructions. | I'm working through [http://doc.trolltech.com/qtcreator-2.2/creator-qml-application.html this] example. I can't change '''mousearea1''' to '''MouseArea''' to match the figure. I think something is missing in the instructions. | ||
| + | |||
| + | The Transitions section has some details missing: | ||
| + | <pre> | ||
| + | |||
| + | transitions: [ | ||
| + | Transition { | ||
| + | from: "*"; to: "State1" | ||
| + | NumberAnimation { | ||
| + | properties: "x,y"; | ||
| + | duration: 1000 | ||
| + | } | ||
| + | } | ||
| + | ] | ||
| + | </pre> | ||
Revision as of 17:51, 10 June 2011
Here are some notes on using Qt on the Beagle.
Useful Links
- The Qt site
- Setting Up Qt Development Environment for BeagleBoard-xM has some nice instructions on getting QT going on the Beagle.
- This looks like a nice reference.]
- Building Qt to make use of the Beagle board’s SGX GPU
- Building Qt from TI's site
- Embedded Linux Qt
I'm working through this example. I can't change mousearea1 to MouseArea to match the figure. I think something is missing in the instructions.
The Transitions section has some details missing:
transitions: [
Transition {
from: "*"; to: "State1"
NumberAnimation {
properties: "x,y";
duration: 1000
}
}
]