The simplest way to do this is probably using QLabel(s) for text and images and laying them out in a QGridLayout. You'll have to use 2 QLabels if you want to display both an image and text (since QLabel shows an image or text but not both). In that case, you'll need to place your image and text inside a QVBoxLayout and then add that layout to the grid. Then you can wrap the grid layout inside a QScrollArea.
Another (more flexible) way to solve this is using Qt's Graphics View framework <http://qt-project.org/doc/qt-4.8/graphicsview.html>. Take a look at QGraphicsPixmapItem and QGraphicsSimpleTextItem On Monday, August 20, 2012 3:54:08 AM UTC-7, Panupat wrote: > > If I have a list of full path + image file names, how do I populate them > as square thumbnails with text label into scrollable area? What class > should I look at? Should I use QScrollArea for the wrapper? Something > similar to sunday pipeline's > http://www.3dg.dk/2011/08/12/sunday-pipeline-maya-public/ > > Thanks! > -- view archives: http://groups.google.com/group/python_inside_maya change your subscription settings: http://groups.google.com/group/python_inside_maya/subscribe
