Hi,
I am trying to create the default Nokia options menu using qml. I have searched the forum for a while but could not find any posts relating to this. Can some one point me to the right direction of how to implement this. Thanks in advance.
Hi,
I am trying to create the default Nokia options menu using qml. I have searched the forum for a while but could not find any posts relating to this. Can some one point me to the right direction of how to implement this. Thanks in advance.
AFAIK in qml thr is no way for default options. you can create a list and can display as option menu on tap of option area. options area also needs to be created in qml only.
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
you can create a list with "show open applications" text item and call the same functionality which you might be having in ur qt code from qml.
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
Actually in qt, we don't write any functionality. It becomes available by default
what it does when u select "show open applications"?
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
It displays a popup which contains the icons of all current open applications. When an icon is clicked the corresponding application is opened
does this implementation is required in your application. You can also find the same by simulating long menu key press.
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
Hi, show open applications was not a necessity to my application, so I have left that and started to develop my own menu using QML
thanks for your support