使用QScintilla setText时如何撤消?

时间:2019-02-09 15:15:09

标签: python sublimetext3 pyqt5 scintilla qscintilla

让我首先发布一些小辅助函数,我将用它们来表达我的问题:

import textwrap
import sys
from pathlib import Path

from PyQt5.Qsci import QsciScintilla
from PyQt5.Qt import *  # noqa


def set_style(sci):
    # Set default font
    sci.font = QFont()
    sci.font.setFamily('Consolas')
    sci.font.setFixedPitch(True)
    sci.font.setPointSize(8)
    sci.font.setBold(True)
    sci.setFont(sci.font)
    sci.setMarginsFont(sci.font)
    sci.setUtf8(True)

    # Set paper
    sci.setPaper(QColor(39, 40, 34))

    # Set margin defaults
    fontmetrics = QFontMetrics(sci.font)
    sci.setMarginsFont(sci.font)
    sci.setMarginWidth(0, fontmetrics.width("000") + 6)
    sci.setMarginLineNumbers(0, True)
    sci.setMarginsForegroundColor(QColor(128, 128, 128))
    sci.setMarginsBackgroundColor(QColor(39, 40, 34))
    sci.setMarginType(1, sci.SymbolMargin)
    sci.setMarginWidth(1, 12)

    # Set indentation defaults
    sci.setIndentationsUseTabs(False)
    sci.setIndentationWidth(4)
    sci.setBackspaceUnindents(True)
    sci.setIndentationGuides(True)
    sci.setFoldMarginColors(QColor(39, 40, 34), QColor(39, 40, 34))

    # Set caret defaults
    sci.setCaretForegroundColor(QColor(247, 247, 241))
    sci.setCaretWidth(2)

    # Set edge defaults
    sci.setEdgeColumn(80)
    sci.setEdgeColor(QColor(221, 221, 221))
    sci.setEdgeMode(sci.EdgeLine)

    # Set folding defaults (http://www.scintilla.org/ScintillaDoc.html#Folding)
    sci.setFolding(QsciScintilla.CircledFoldStyle)

    # Set wrapping
    sci.setWrapMode(sci.WrapNone)

    # Set selection color defaults
    sci.setSelectionBackgroundColor(QColor(61, 61, 52))
    sci.resetSelectionForegroundColor()

    # Set scrollwidth defaults
    sci.SendScintilla(QsciScintilla.SCI_SETSCROLLWIDTHTRACKING, 1)

    # Current line visible with special background color
    sci.setCaretLineBackgroundColor(QColor(255, 255, 224))

    # Set multiselection defaults
    sci.SendScintilla(QsciScintilla.SCI_SETMULTIPLESELECTION, True)
    sci.SendScintilla(QsciScintilla.SCI_SETMULTIPASTE, 1)
    sci.SendScintilla(QsciScintilla.SCI_SETADDITIONALSELECTIONTYPING, True)


def set_state1(sci):
    sci.clear_selections()
    base = "line{} state1"
    view.setText("\n".join([base.format(i) for i in range(10)]))
    for i in range(0, 10, 2):
        region = (len(base) * i, len(base) * (i + 1) - 1)
        if i == 0:
            view.set_selection(region)
        else:
            view.add_selection(region)


def set_state2(sci):
    base = "line{} state2"
    view.setText("\n".join([base.format(i) for i in range(10)]))
    for i in range(1, 10, 2):
        region = (len(base) * i, len(base) * (i + 1) - 1)
        if i == 1:
            view.set_selection(region)
        else:
            view.add_selection(region)


class Editor(QsciScintilla):

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        set_style(self)

    def clear_selections(self):
        sci = self
        sci.SendScintilla(sci.SCI_CLEARSELECTIONS)

    def set_selection(self, r):
        sci = self
        sci.SendScintilla(sci.SCI_SETSELECTION, r[1], r[0])

    def add_selection(self, r):
        sci = self
        sci.SendScintilla(sci.SCI_ADDSELECTION, r[1], r[0])

    def sel(self):
        sci = self
        regions = []

        for i in range(sci.SendScintilla(sci.SCI_GETSELECTIONS)):
            regions.append(
                sci.SendScintilla(sci.SCI_GETSELECTIONNSTART, i),
                sci.SendScintilla(sci.SCI_GETSELECTIONNEND, i)
            )

        return sorted(regions)

我实际上有几个问题:

问题1)

if __name__ == '__main__':
    app = QApplication(sys.argv)

    view = Editor()
    set_state1(view)
    view.move(1000, 100)
    view.resize(800, 300)
    view.show()
    app.exec_()

我会得到这个(您可以在下面的快照中看到问题):

enter image description here

问题2)

if __name__ == '__main__':
    app = QApplication(sys.argv)

    view = Editor()
    set_state1(view)
    set_state2(view)
    view.move(1000, 100)
    view.resize(800, 300)
    view.show()
    app.exec_()

如何修改代码,以便在按ctrl + z时可以恢复state1?

现在,当使用ctrl + z时,您将无法获得state1:​​

enter image description here

主要是因为setText的行为方式:

  

将所有当前文本替换为text。注意撤消/重做   此功能清除了历史记录。

我已经尝试过undo and redo文档中发布的一些功能,但到目前为止还没有运气。

例如,我的尝试之一是首先选择所有文本,然后使用replaceSelectedText,最后手动从以前的状态还原选择,结果很丑陋(我不想让编辑器滚动到乱七八糟的样子)撤消/重做时)...基本上,我希望得到与SublimeText相同的感觉。

顺便说一句,这是一个最小的示例,但是在实际情况下,我将积累很多操作,而不必经常执行scintilla…这就是为什么我有兴趣弄清楚如何回滚到以前的版本的原因使用可撤消setText时的状态...否则,我想避免使用Scintilla函数,例如insertAt,replaceSelectedText或类似函数...因为我正在使用python内置函数在内部修改缓冲区。

编辑:

我很确定beginUndoAction和endUndoAction不会帮助我回答问题2,但是... SCI_ADDUNDOACTION呢?尽管docs确实令人困惑...:/

1 个答案:

答案 0 :(得分:1)

问题1 : 添加的最后一个选择将自动设置为"C:\Windows\Temp"选择。要删除它,请在"C:\users\myuser\appdata\local\temp"函数的末尾添加Main行。

问题2

  • 通过存储选择,使用sci.SendScintilla(sci.SCI_SETMAINSELECTION, -1),然后使用set_state1 / replaceSelectedTextsetCursorPosition来恢复滚动位置的方式是一种去。
  • 查看reselecting all selections函数的C ++源代码:
setFirstVisibleLine

您可以尝试使用setText设置文本,这不会重置撤消/重做缓冲区。