Qscintilla2 AutoCompletion和AutoIdentation

时间:2015-02-27 13:01:26

标签: python qt pyqt qscintilla

我在我的项目中实现了这个类:

class ScriptEditorTextBox(QsciScintilla):

def __init__(self, parent):
    QsciScintilla.__init__(self)

    #Lexer
    lexer = QsciLexerPython()

    #AutoCompletion
    api = Qsci.QsciAPIs(lexer)
    api.add('aLongString')
    api.add('aLongerString')
    api.add('aDifferentString')
    api.add('sOmethingElse')
    api.prepare()

    self.setLexer(lexer)
    self.setAutoCompletionThreshold(1)
    self.setAutoCompletionSource(QsciScintilla.AcsAPIs)

    #LineHighlight
    self.setCaretLineVisible(True)
    self.setCaretLineBackgroundColor(QColor("gainsboro"))

    #AutoIndentation
    self.setAutoIndent(True)
    self.setIndentationGuides(True)
    self.setIndentationsUseTabs(True)
    self.setIndentationWidth(4)

    #Margins
    self.setMarginsBackgroundColor(QColor("gainsboro"))
    self.setMarginsFont(QFont("Consolas", 9, 87)) 
    self.setMarginLineNumbers(1, True)
    self.setMarginLineNumbers(2, False)
    self.setMarginWidth(1, QString().setNum(10))
    self.setMarginWidth(2, 10)
    self.connect(self, SIGNAL("linesChanged()"), self._linesChanged)

def _linesChanged(self):
    width = QString().setNum(self.lines() * 10)
    self.setMarginWidth(1, width)

一切都很顺利,但是当我按下后输入时:它不会自动缩进。并且,也没有自动完成(但我甚至不知道应该自动完成什么)。

我会非常感谢任何建议。

1 个答案:

答案 0 :(得分:1)

这两个问题都是由于未能保持对词法分析器的正确引用而引起的。

如果您执行此操作,示例代码将起作用:

    lexer = QsciLexerPython(self)

或者这个:

    self.lexer = QsciLexerPython()
    ...
    api = Qsci.QsciAPIs(self.lexer)
    ...
    self.setLexer(self.lexer)