当前位置:   article > 正文

QTreeView+QFileSystemModel显示没有后缀的文件_qfilesystemmodel不显示扩展名

qfilesystemmodel不显示扩展名
通过QSortFilterProxyModel的setFilterRegExp方法,设置指定的正则表达式
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
********************************************************************************************
@作者: Aaron.Ma
@文件: view.py
@时间: 2022/8/15 16:12
********************************************************************************************
"""
import sys
import typing

from PyQt5 import QtCore, QtWidgets
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *


class _SortFilterProxyModel(QtCore.QSortFilterProxyModel):

    def headerData(self, section: int, orientation: QtCore.Qt.Orientation, role: int = ...) -> typing.Any:
        if orientation == QtCore.Qt.Horizontal:
            if role == QtCore.Qt.TextAlignmentRole:
                return QtCore.Qt.AlignCenter
        return super(_SortFilterProxyModel, self).headerData(section, orientation, role)


class App(QTreeView):
    def __init__(self, parent=None):
        super().__init__(parent)

        self.resize(640, 480)
        self.setWindowTitle("Dir View")
        # 这里得到目录结构
        self.fileSystemModel = QtWidgets.QFileSystemModel()
        self.fileSystemModel.setRootPath(QDir.currentPath())

        # 1、显示所有,包含目录和文件
        self.fileSystemModel.setNameFilters(['*'])

        # 2、二次过滤,只显示出文件
        self.fileSystemModel.setFilter(QDir.Files | QDir.NoDotAndDotDot | QDir.NoSymLinks)
        self.fileSystemModel.setNameFilterDisables(False)

        self.proxyModel = _SortFilterProxyModel()
        # 3、三次过滤,显示没有后缀的文件
        self.proxyModel.setFilterRegExp(QRegExp("^([^.]+)$", Qt.CaseInsensitive))
        self.proxyModel.setSourceModel(self.fileSystemModel)

        # 这里做展示
        self.setModel(self.proxyModel)
        sourceIndex = self.fileSystemModel.index(QDir.currentPath())
        self.setRootIndex(self.proxyModel.mapFromSource(sourceIndex))
        self.doubleClicked.connect(self.tree_cilcked)

        # 名字缩进
        self.setIndentation(10)

    def tree_cilcked(self, index):
        print(self.fileSystemModel.fileName(index))


if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = App()
    ex.show()
    sys.exit(app.exec_())

  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/764751
推荐阅读
相关标签
  

闽ICP备14008679号