Questions tagged [qscintilla]

QScintilla is a Qt port of Scintilla, a source code editing component.

Official documentation: https://riverbankcomputing.com/software/qscintilla/intro

98 questions
0
votes
1 answer

Qscintilla2 AutoCompletion and AutoIdentation

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) …
0
votes
1 answer

How to use autocomplete with method of class

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 =…
0
votes
2 answers

Pyqt4: Use of Marker Numbers in Qscintilla

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…
rock
  • 167
  • 9
0
votes
1 answer

QT QsciScintilla crash

I'm using QScintilla 2.8. I have properly build the qscintilla2.dll. I put it in my c:\Qt\Qt5.2.1\mingw48_32\bin folder My path is the setup that Qt…
adviner
  • 3,295
  • 10
  • 35
  • 64
0
votes
0 answers

Make: missed separator in implicit rules definition

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…
visa
  • 300
  • 2
  • 10
0
votes
1 answer

C++ Linker error undefined reference to a class definition and its member functions on Linux

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.…
Jack Bryan
  • 1
  • 1
  • 3
-1
votes
1 answer

What does an Interpreter contain?

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…
hsc1000
  • 63
  • 1
  • 8
-2
votes
1 answer

I want to really hightlight all word that i find in editor use QScintilla

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));
lip
  • 31
  • 4
1 2 3 4 5 6
7