QtQuick - From bling bling to blink blink
-
That's the topic of my latest blog post over at "http://pysnippet.com":http://pysnippet.blogspot.com/2011/06/qtquick-from-bling-bling-to-blink-blink.html
It demonstrates how the declarative module can be used for other things than just amazing UIs.
Please take a look at the blog post for more information, reference to source code and a video clip.
Hope you enjoy it and get some ideas :)
-
Yes, it's really cool and I think there's a lot of opportunities with QtDeclarative.
I'm planning to try out using QML as a dependency injection container to setup applications. I don't think that typical containers, such as SpringFramework, supports property bindings but that might have changed since I last used it in the good old days :)
For example:
@
ServerSocket {
port: 8080handler: ClientHandler { dataBase: MySqlDb { url: "..." } }
}
@Sweet
-
-
A plan that was pitched by the Trolls at the contributors summit (nothing decided yet!) was that the declarative engine would end up in Qt Core, but the GUI related stuff would be left out. You certainly will not have to pull in the widgets module (which will be split off from QtGUI) to use it.