19

考虑下面的 mcve:

import sys
import textwrap

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


if __name__ == '__main__':

    app = QApplication(sys.argv)
    view = QsciScintilla()

    view.SendScintilla(view.SCI_SETMULTIPLESELECTION, True)
    view.SendScintilla(view.SCI_SETMULTIPASTE, 1)
    view.SendScintilla(view.SCI_SETADDITIONALSELECTIONTYPING, True)

    view.setAutoIndent(True)
    view.setTabWidth(4)
    view.setIndentationGuides(True)
    view.setIndentationsUseTabs(False)
    view.setBackspaceUnindents(True)

    view.setText(textwrap.dedent("""\
        def foo(a,b):
            print('hello')
    """))

    view.show()
    app.exec_()

与SublimeTextCodeMirror等编辑器进行比较时,上述代码段的自动缩进行为非常糟糕。首先让我们看看 SublimeText 中的自动缩进功能在单选或多选时会有多好的表现。

在此处输入图像描述

现在让我们看看自动缩进如何与上面的代码片段一起工作:

在此处输入图像描述

与 SublimeText 相比,当单选/多选启用自动缩进时,QScintilla 的工作方式很糟糕,而且非常糟糕/无法使用。

使小部件更像 SublimeText/Codemirror 的第一步是断开使自动缩进表现不佳的当前插槽,我们可以通过这样做来实现:

print(view.receivers(view.SCN_CHARADDED))
view.SCN_CHARADDED.disconnect()
print(view.receivers(view.SCN_CHARADDED))

在这一点上,您已经准备好SCN_CHARADDED与您的自定义插槽连接做所有的魔法:)

问题:您将如何修改上述代码段,以便保留所有选择,并且自动缩进的行为与 SublimeText、Codemirror 或任何严肃的文本编辑器完全一样?

参考:

qsciscintilla.h

class QSCINTILLA_EXPORT QsciScintilla : public QsciScintillaBase
{
    Q_OBJECT

public:
    ...
    private slots:
        void handleCharAdded(int charadded);
    ...
    private:
        void autoIndentation(char ch, long pos);

qsciscintilla.cpp

connect(this,SIGNAL(SCN_CHARADDED(int)),
         SLOT(handleCharAdded(int)));

...

// Handle the addition of a character.
void QsciScintilla::handleCharAdded(int ch)
{
    // Ignore if there is a selection.
    long pos = SendScintilla(SCI_GETSELECTIONSTART);

    if (pos != SendScintilla(SCI_GETSELECTIONEND) || pos == 0)
        return;

    // If auto-completion is already active then see if this character is a
    // start character.  If it is then create a new list which will be a subset
    // of the current one.  The case where it isn't a start character seems to
    // be handled correctly elsewhere.
    if (isListActive() && isStartChar(ch))
    {
        cancelList();
        startAutoCompletion(acSource, false, use_single == AcusAlways);

        return;
    }

    // Handle call tips.
    if (call_tips_style != CallTipsNone && !lex.isNull() && strchr("(),", ch) != NULL)
        callTip();

    // Handle auto-indentation.
    if (autoInd)
    {
        if (lex.isNull() || (lex->autoIndentStyle() & AiMaintain))
            maintainIndentation(ch, pos);
        else
            autoIndentation(ch, pos);
    }

    // See if we might want to start auto-completion.
    if (!isCallTipActive() && acSource != AcsNone)
    {
        if (isStartChar(ch))
            startAutoCompletion(acSource, false, use_single == AcusAlways);
        else if (acThresh >= 1 && isWordCharacter(ch))
            startAutoCompletion(acSource, true, use_single == AcusAlways);
    }
}

重要提示:我决定发布相关的 c++ 位,以便您了解更多关于如何在内部实现缩进的背景知识,以提供更多关于可能替代的线索......这个线程的目标是尝试找到一个纯 python解决方案。我想避免修改 QScintilla 源代码(如果可能的话),因此维护/升级将保持尽可能简单,并且 QScintilla dep 仍然可以被视为一个黑匣子。

4

2 回答 2

1

看起来您必须编写自己的版本,文档在安装一章中已经提到了最重要的一点:

提供的 QScintilla 将构建为共享库/DLL,并安装在与 Qt 库和包含文件相同的目录中。

如果您希望构建库的静态版本,请在 qmake 命令行上传递 CONFIG+=staticlib。

如果您想对配置进行更重大的更改,请编辑 Qt4Qt5 目录中的文件 qscintilla.pro。

如果您确实进行了更改,特别是安装目录的名称或库的名称,那么您可能还需要更新 Qt4Qt5/features/qscintilla2.prf 文件。*

那里也解释了进一步的步骤。

于 2019-04-27T14:54:14.830 回答
0

没有集成的方法可以使自动缩进工作QScintilla(尤其是在 中SublimeText)。此行为是特定于语言和用户的。Native Scintilla文档包括如何触发自动缩进的示例。抱歉,它是用C#编写的。我还没有发现它是用 Python 编写的。

这是一个代码(我知道 QScintilla 是 Qt 的一个端口,这个面向 Scintilla 的代码也应该与 QScintilla 一起使用,或者在最坏的情况下你可以将它用于 C++):

private void Scintilla_InsertCheck(object sender, InsertCheckEventArgs e) {

    if ((e.Text.EndsWith("" + Constants.vbCr) || e.Text.EndsWith("" + Constants.vbLf))) {
        int startPos = Scintilla.Lines(Scintilla.LineFromPosition(Scintilla.CurrentPosition)).Position;
        int endPos = e.Position;
        string curLineText = Scintilla.GetTextRange(startPos, (endPos - startPos)); 
        // Text until the caret so that the whitespace is always
        // equal in every line.

        Match indent = Regex.Match(curLineText, "^[ \\t]*");
        e.Text = (e.Text + indent.Value);
        if (Regex.IsMatch(curLineText, "{\\s*$")) {
            e.Text = (e.Text + Constants.vbTab);
        }
    }
}

private void Scintilla_CharAdded(object sender, CharAddedEventArgs e) {

    //The '}' char.
    if (e.Char == 125) {
        int curLine = Scintilla.LineFromPosition(Scintilla.CurrentPosition);

        if (Scintilla.Lines(curLine).Text.Trim() == "}") { 
        //Check whether the bracket is the only thing on the line. 
        //For cases like "if() { }".
            SetIndent(Scintilla, curLine, GetIndent(Scintilla, curLine) - 4);
        }
    }
}

//Codes for the handling the Indention of the lines.
//They are manually added here until they get officially 
//added to the Scintilla control.

#region "CodeIndent Handlers"
    const int SCI_SETLINEINDENTATION = 2126;
    const int SCI_GETLINEINDENTATION = 2127;
    private void SetIndent(ScintillaNET.Scintilla scin, int line, int indent) {
        scin.DirectMessage(SCI_SETLINEINDENTATION, new IntPtr(line), new IntPtr(indent));
    }
    private int GetIndent(ScintillaNET.Scintilla scin, int line) {
        return (scin.DirectMessage(SCI_GETLINEINDENTATION, new IntPtr(line), null).ToInt32);
    }
#endregion

希望这可以帮助。

于 2019-05-02T18:00:48.137 回答