如何隐藏QFileSystemModel上的文件扩展名

2024-06-16 16:55:58 发布

您现在位置:Python中文网/ 问答频道 /正文

我已将QFileSystemModel绑定到QTreeView。 如何隐藏文件扩展名以保持重命名功能?同时,在重命名模式下隐藏扩展名,以避免错误的扩展名

谢谢

我的代码如下:

import sys
from PyQt5.QtCore import *
from PyQt5.QtWidgets import * 
class FileTree(QWidget): 
    def __init__(self):
        super().__init__()
        self.title = 'PyQt5 file system view'
        self.initUI()     
    def initUI(self):
        self.setWindowTitle(self.title)
        self.model = QFileSystemModel()
        self.model.setRootPath('')
        self.model.setReadOnly(False)        
        
        self.tree = QTreeView()        
        self.tree.setModel(self.model)
        self.tree.setColumnWidth(0,300)         
        self.tree.setAnimated(False)
        self.tree.setIndentation(20)
        self.tree.setSortingEnabled(True)

        self.tree.setColumnHidden(1,True)
        self.tree.setColumnHidden(2,True)
        self.tree.setColumnHidden(3,True)
        self.model.sort(0,Qt.AscendingOrder)

        self.tree.setWindowTitle("Dir View")
        self.tree.resize(640, 480)         
        self.windowLayout = QVBoxLayout()
        self.windowLayout.addWidget(self.tree)
        self.windowLayout.setContentsMargins(0,0,0,0)
        self.setLayout(self.windowLayout)
        self.setContentsMargins(0,0,0,0)

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

Tags: fromimportselftruetreemodeldefsys
1条回答
网友
1楼 · 发布于 2024-06-16 16:55:58

解决方案是使用委托:

class NameDelegate(QStyledItemDelegate):
    def initStyleOption(self, option, index):
        super().initStyleOption(option, index)
        if isinstance(index.model(), QFileSystemModel):
            if not index.model().isDir(index):
                option.text = index.model().fileInfo(index).baseName()

    def setEditorData(self, editor, index):
        if isinstance(index.model(), QFileSystemModel):
            if not index.model().isDir(index):
                editor.setText(index.model().fileInfo(index).baseName())
            else:
                super().setEditorData(editor, index)

    def setModelData(self, editor, model, index):
        if isinstance(model, QFileSystemModel):
            fi = model.fileInfo(index)
            if not model.isDir(index):
                model.setData(index, editor.text() + "." + fi.suffix())
            else:
                super().setModelData(editor, model.index)
delegate = NameDelegate(self.tree)
self.tree.setItemDelegate(delegate)

相关问题 更多 >