summaryrefslogtreecommitdiff
path: root/cad/src/experimental/basic-qt-app/see-icons.py
blob: 5bcc74ae8b1b3a0255579912331c47047388fb94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/python

# Copyright 2006-2007 Nanorex, Inc.  See LICENSE file for details.
from PyQt4.Qt import *
from PyQt4 import QtCore, QtGui

# Hunt for the icons directory
icons = 'icons'
for i in range(3):
    import os
    if os.path.exists(icons + '/MainWindowUI_image1.png'):
        break
    icons = '../' + icons

iconlist = map(lambda x: x[:-1],
               os.popen("/bin/ls " + icons + " | grep -v CVS").readlines())

#iconlist = filter(lambda x: x.startswith("MainWindowUI"), iconlist)

iconlist.sort()

n = len(iconlist)
numRows = int((n ** 0.5) + 1)

class MainWindow(QMainWindow):
    def __init__(self):
        QMainWindow.__init__(self)

        #centralwidget = QScrollArea()
        #w = QWidget(self)
        #centralwidget.setWidget(w)
        #self.setCentralWidget(centralwidget)
        #self.layout = QGridLayout(w)

        centralwidget = QWidget(self)
        self.layout = QGridLayout(centralwidget)

        if False:
            scroller = QScrollArea()
            scroller.setWidget(centralwidget)
            scroller.show()
            scroller.setFocus()
            scroller.ensureVisible(640,480,10,10)
            centralwidget = scroller

        self.setCentralWidget(centralwidget)

        self.layout.setMargin(0)
        self.layout.setSpacing(0)

        row, col = 0, 0
        for icon in iconlist:
            w = QWidget()
            lo = QVBoxLayout(w)
            lbl = QLabel(w)
            lbl.setPixmap(QPixmap(icons + '/' + icon))
            lo.addWidget(lbl)
            lbl = QLabel(w)
            lbl.setText(icon)
            lo.addWidget(lbl)
            self.layout.addWidget(w, row, col)
            col += 1
            if col == 5:
                row += 1
                col = 0

if __name__ == "__main__":
    import sys
    app = QtGui.QApplication(sys.argv)
    mainWin = MainWindow()
    #mainWin = ScanList()
    mainWin.show()
    sys.exit(app.exec_())