Initial Project Commit
[retroconv] / bak / testother.py
diff --git a/bak/testother.py b/bak/testother.py
new file mode 100644 (file)
index 0000000..7c0f766
--- /dev/null
@@ -0,0 +1,48 @@
+import sys
+from PyQt4.QtCore import * 
+from PyQt4.QtGui import * 
+
+#################################################################### 
+def main(): 
+    app = QApplication(sys.argv) 
+    w = MyWindow() 
+    w.show() 
+    sys.exit(app.exec_()) 
+
+#################################################################### 
+class MyWindow(QWidget): 
+    def __init__(self, *args): 
+        QWidget.__init__(self, *args) 
+
+        # create table
+        list_data = ["Tarek","Ehab","Galal"]
+        lm = MyListModel(list_data, self)
+        lv = QListView()
+        lv.setViewMode(QListView.IconMode)
+        lv.setModel(lm)
+
+        # layout
+        layout = QVBoxLayout()
+        layout.addWidget(lv) 
+        self.setLayout(layout)
+
+#################################################################### 
+class MyListModel(QAbstractListModel): 
+    def __init__(self, datain, parent=None, *args): 
+        """ datain: a list where each item is a row
+        """
+        QAbstractListModel.__init__(self, parent, *args) 
+        self.listdata = datain
+    def rowCount(self, parent=QModelIndex()): 
+        return len(self.listdata) 
+    def data(self, index, role): 
+        if index.isValid() and role == Qt.DisplayRole:
+            return QVariant(self.listdata[index.row()])
+        else: 
+            return QVariant()
+
+####################################################################
+if __name__ == "__main__": 
+    main()