码迷,mamicode.com
首页 > 其他好文 > 详细

PYQT4.12

时间:2014-12-15 00:00:28      阅读:413      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   on   2014   art   log   

from PyQt4 import QtGui

from PyQt4 import QtCore

 

from PyQt4.QtCore import (QDate, QFile, QFileInfo, QIODevice, QString, QStringList, QDir, QTextStream, Qt, SIGNAL)

 

 

 

 

if __name__ == ‘__main__‘:

 

    import sys

 

    app = QtGui.QApplication(sys.argv)

 

    startDir = QString("")

    startDir = "C:/library/stuff"

 

    filter = QStringList("")

    filter = ("JPG (*.jpg)");

 

 

    model = QtGui.QDirModel()

    model = QtGui.QFileSystemModel()

    model.setFilter(QDir.AllDirs | QDir.NoDotAndDotDot | QDir.AllEntries)

    model.setNameFilters(filter)

    model.setNameFilterDisables(0)

    model.setRootPath(startDir)

 

    tree = QtGui.QTreeView()

    tree.setModel(model)

 

 

    setDir= QtCore.QDir(startDir)

    setDir.setNameFilters(filter)

    tree.setRootIndex(model.index(QtCore.QDir.path(setDir), 0 ))

 

 

    tree.setAnimated(False)

    tree.setIndentation(20)

    tree.setSortingEnabled(True)

 

    tree.setWindowTitle("Dir View")

    tree.resize(640, 480)

    tree.show()

 

    sys.exit(app.exec_())

 bubuko.com,布布扣

PYQT4.12

标签:blog   http   io   ar   sp   on   2014   art   log   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4163155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!