Difference between revisions of "ECE497 Notes on Qt"

From eLinux.org
Jump to: navigation, search
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 10:51, 10 June 2011


Here are some notes on using Qt on the Beagle.

Useful Links

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
            }
        }
    ]