I implemented this class in my project:
class ScriptEditorTextBox(QsciScintilla):
def __init__(self, parent):
QsciScintilla.__init__(self)
#Lexer
lexer = QsciLexerPython()
#AutoCompletion
api = Qsci.QsciAPIs(lexer)
…
I cannot found how to use autocomplete for methods/properties from class.
I'm using add() for add string, but I cannot think how it can work with classes. Any one know?
Edit 1
I'm using it for funciontion
api =…
I want to know why marker number is used and how from 1 to 31 marker numbers are different from each other.
And how to add a custom marker symbol like with gradient,Pix map or an image etc for example these Blue glittery Dots in the given…
I install Eric IDE on Windows 7, and it requires QScintilla2 library. I tried to build that library using qmake and MinGW's make and got a make error:
make -f Makefile.Release
make[1]: Entering directory…
I am trying to install QScintilla-gpl-2.7.1 on Linux
2.6.32-279. #1 SMP 2012 x86_64 x86_64 x86_64 GNU/Linux
I have solved the problem in my previous post. But, I got a new problem of linker error:
It cost me a week but still cannot find the reason.…
I'm using Antlr4 to create an interpreter, lexer and parser. The GUI it will be used in contains QScintilla2.
As QScintilla does not need a parser and has a CustomLexer module will the (Antlr4 built, Python3 target) interpreter be enough?
I'm not…
This is the effect which i want :
this is actual effect.
//follow is code i code:
SendScintilla(QsciScintillaBase::SCI_INDICSETSTYLE,0, INDIC_ROUNDBOX);
SendScintilla(QsciScintillaBase::SCI_INDICSETFORE,0, QColor(Qt::yellow));