PyQt4:其中哪一个更好/更正确?(记事本++克隆)



我正在Python/PyQt4中制作一个超级简单的Notepad++克隆,我想知道以下哪些选项存储编辑器选项卡数据:

选项 1:我有一个名为 QQCodeTab 的类,它存储当前选项卡的当前 Qsci.QsciScintilla 实例、文件路径、当前语言等。它们通过字典映射到选项卡索引。

选项

2:与选项 1 相同,但删除类并将所有内容存储在字典中(例如:{1: {"scintilla": <blah>, "filepath": "C:/File/whatevs.py"}, "language": "python"}

我的代码注释可以更好地解释它。

from PyQt4 import QtGui, Qsci
class QQCodeEditor(QtGui.QTabWidget):
    def __init__(self, parent=None):
        QtGui.QTabWidget.__init__(self, parent)
        self.new_tab()
        self.new_tab()
        # Option 1: Maps index to tab object
        # Option 2: Maps index to dict of options
        self.tab_info = {}
    def new_tab(self):
        scin = Qsci.QsciScintilla()
        index = self.addTab(scin, "New Tab")
    def get_tab_info(self, index):
        # Returns QQCodeTab object
        return self.tab_info[index]
    def save(self, index):
        # Option 2: Save dialog boc and file system stuff goes here
        pass
class QQCodeTab(object):
    def __init__(self, scintilla, editor):
        self.scintilla = scintilla
        self.editor = editor
    def save(self):
        # Option 1: Save dialog box and file system stuff goes here
        pass

如果您想知道是否使用字典类,您可能需要一个namedtuple。这为您提供了具有类属性语法的dict的简单性:

from collections import namedtuple
FooBar = namedtuple("FooBar", ["these", "are", "the", "attributes"])
FooBar(123, 324, the=12, attributes=656).these
#>>> 123

相关内容

  • 没有找到相关文章

最新更新