[Solved]QML - Making menus
-
Hello! Is it possible to make an accordion-like menu using QML? Thanks! :D
-
Certainly you can make one or see if "qt-quick-components":http://developer.qt.nokia.com/wiki/Qt_Quick_Components already has one.
-
I'm quite new in Qt so I really can't make one by myself yet :(. I saw the accordion tutorial here but it uses WRT.
-
Just thinking off the top of my head using the MouseArea is where you would do this from. You could use OnEntered while hoverEnabled is on, or OnClicked to make different areas appear or disappear. That would be the way to go about this I believe. Check this link to see what I am talking about. http://doc.qt.nokia.com/4.7-snapshot/qml-mousearea.html
Maybe I will make one for you real quick tonight. I need a post for blog in the QML area anyway and this seems like a great one. I will let you know if I get it done. http://blogofmu.com
-
[quote author="shullw" date="1309522771"]Just thinking off the top of my head using the MouseArea is where you would do this from. You could use OnEntered while hoverEnabled is on, or OnClicked to make different areas appear or disappear. That would be the way to go about this I believe. Check this link to see what I am talking about. http://doc.qt.nokia.com/4.7-snapshot/qml-mousearea.html
Maybe I will make one for you real quick tonight. I need a post for blog in the QML area anyway and this seems like a great one. I will let you know if I get it done. http://blogofmu.com [/quote]
Thank you, thank you, thank you! I'll study this right now. :D.
I hope you do! Goodluck, and great blog btw. Cheers!
-
-
[quote author="paulo" date="1309529752"]Check QML Templates on "Forum Nokia":http://projects.developer.nokia.com/QMLTemplates/wiki/WikiStart#accordionlist
Duuuuuuuuuude! Thanks! This is definitely what I've been looking for. :D.
Edit:
How do I make the listelements clickable?