[SOLVED] Android's Gallery like widget in Qt
-
Nothing like it in Qt library, maybe you can find something at qt-apps.org or somewhere also in web.
Also such thing (don't know much about it, only quick googling now) I think can be created not hardly using graphicsview or qml.
-
Yes, QGraphicsView is the way to go. See examples/graphicsview for examples on how to use it.
Essentially, you need to create a subclass of QGraphicsWidget that will paint the picture and send signals when the user clicks it. And then, add a couple of those to the graphics scene and layout them.