Any idea what widgets to use to create this image?
-
Hi,
I am not sure what widgets to use to recreate the image at (go to the bottom of page and it is the last image of a view of an app in the Iphone and the view has titlye "Style")http://www.pcworld.com/appguide/app.html?id=82441&expand=false
It seems to me that a table with two columns would do it, but Qt's QTableWidget is only suited for desktop applications because the style shows a table in the fashion of excel.
Then I was thinking maybe I could use a QListWidget and place the contents of each QListWidgetItem individually, but how can I make the left part of the QListWidgetItem have a transparent background, like the example.Any ideas?
thank you!
-Malena
-
i think you can just use :
http://doc.qt.nokia.com/4.7/qcommandlinkbutton.html
http://doc.qt.nokia.com/4.7/qpushbutton.html -
Have you considered using QML to do the interface? It would give you a lot more flexibility in your design options. A ListView with an appropriate delegate component would be appropriate.
EDIT: rephrased my statement. I need to remember to hit Preview instead of Update.