1

我必须使用错误的术语进行谷歌搜索,因为我找不到我要找的东西。任何帮助表示赞赏。

如何写入 textctrl 中的特定行?

目前我的程序处理文件,处理后的文件列在文本 ctrl 中。我想要达到的就是这个。列出 textctrl 中的文件,并在其名称后进行文字处理。处理后,我需要重新写入完全相同的位置,但这次用完成的单词替换文字处理。我还需要记住哪个文件打印在哪一行。我正在线程化,因此文件不一定按照打开的顺序完成,因为它们的大小不同。

谢谢你的帮助!

# This function opens files for processing.
def Encrypt(self, event):
    """
    Runs the thread
    """
    self.file2process = ""
    dlg = wx.FileDialog(self, "Select files", self.file2process, "", "*.*", wx.OPEN |wx.MULTIPLE | wx.CHANGE_DIR)

    if dlg.ShowModal() == wx.ID_OK:
        self.file2process = dlg.GetPaths()

    for fname in self.file2process:
        EncryptThread(fname)

# This is one of two functions that I would need to modify but same prociple would   apply to both so only including this one.

def run(self):
    """Run Worker Thread."""
    # This is the code executing in the new thread.

    keys = {char: chr(i) for i, char in enumerate(self.key)}

    with open(self.fname,'r') as f:
        with open(self.fname + '.tmp', 'w') as temp:        
            for data in f:
                match = ''.join([keys[char] for char in data if char in keys])
                temp.write(match)

    os.remove(self.fname)
    os.rename(self.fname + '.tmp', self.fname)

    msg = self.fname
    wx.CallAfter(Publisher().sendMessage, "update", msg)

# This function updates the textctrl.
def updateDisplay(self, msg):
    """
    Receives data from thread and updates the display
    """
    data = msg.data + "\n"
    self.updateText.WriteText(data)
4

2 回答 2

1

听起来您混淆了两个不同的过程:一个是写入 TextCtrl,另一个是保存和操作字符串。为了您自己的理智,您应该在 GUI 设计中将这两个过程分开。

我的建议是在将文件附加到 TextCtrl 的同时将处理的文件列表保存到列表中。re然后,您可以使用列表推导和模块非常轻松地对该列表进行操作。所有这些添加的操作都将使您的 TextCtrl 小部件中的文本不受干扰,这正是 wxPython 之神所希望的方式。

如果您可以提供一些显示您正在做什么的代码,我可以提供一些更清晰的示例。

于 2013-09-10T18:04:27.407 回答
0

文本控件由一个字符缓冲区组织,该缓冲区可能包含新行而不是基于行可寻址 - 要么使用 wx.Grid 控件,要么因为您需要记住名称位置,所以还要记住该位置的字符数 - 我建议制作等待和完成标志的长度相同。

于 2013-09-10T18:05:54.437 回答