Update after rename QScintilla => TQScintilla.

This relates to issue TDE/tqscintilla#2.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/5/head
Slávek Banko 2 years ago
parent 8e8bdb86cb
commit cfaa762ca7
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -174,12 +174,12 @@ def checkTQScintilla():
"""See if TQScintilla can be found and what its version is. """See if TQScintilla can be found and what its version is.
""" """
# Find the TQScintilla header files. # Find the TQScintilla header files.
sciglobal = os.path.join(sciIncDir, "qextscintillaglobal.h") sciglobal = os.path.join(sciIncDir, "tqextscintillaglobal.h")
if os.access(sciglobal,os.F_OK): if os.access(sciglobal,os.F_OK):
config.patches["@PYQT_QSCINTILLA_INC@"] = sciIncDir config.patches["@PYQT_QSCINTILLA_INC@"] = sciIncDir
sipconfig.inform("%s contains qextscintillaglobal.h." % (sciIncDir)) sipconfig.inform("%s contains tqextscintillaglobal.h." % (sciIncDir))
# Get the TQScintilla version number. # Get the TQScintilla version number.
global sciVersion global sciVersion
@ -195,9 +195,9 @@ def checkTQScintilla():
# Find the TQScintilla library. # Find the TQScintilla library.
if sys.platform == "win32": if sys.platform == "win32":
lpatt = "qscintilla.lib" lpatt = "tqscintilla.lib"
else: else:
lpatt = "libqscintilla.*" lpatt = "libtqscintilla.*"
if len(glob.glob(os.path.join(sciLibDir, lpatt))): if len(glob.glob(os.path.join(sciLibDir, lpatt))):
sipconfig.inform("%s contains the TQScintilla library." % sciLibDir) sipconfig.inform("%s contains the TQScintilla library." % sciLibDir)
@ -205,9 +205,9 @@ def checkTQScintilla():
global sciLib global sciLib
if sys.platform == "win32": if sys.platform == "win32":
sciLib = sipconfig.escape(os.path.join(sciLibDir, "qscintilla.lib")) sciLib = sipconfig.escape(os.path.join(sciLibDir, "tqscintilla.lib"))
else: else:
sciLib = sipconfig.escape("-L" + sciLibDir) + " -lqscintilla" sciLib = sipconfig.escape("-L" + sciLibDir) + " -ltqscintilla"
config.patches["@PYQT_QSCINTILLA_LIB@"] = sciLib config.patches["@PYQT_QSCINTILLA_LIB@"] = sciLib
else: else:
@ -215,7 +215,7 @@ def checkTQScintilla():
sciVersion = -1 sciVersion = -1
else: else:
sipconfig.inform("qextscintillaglobal.h could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -n argument to explicitly specify the correct directory." % sciIncDir) sipconfig.inform("tqextscintillaglobal.h could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -n argument to explicitly specify the correct directory." % sciIncDir)
sciVersion = -1 sciVersion = -1
@ -267,7 +267,7 @@ def moduleChecks(maindir):
config.patches["@TEST_QSCINTILLA_LIB@"] = sciLib config.patches["@TEST_QSCINTILLA_LIB@"] = sciLib
config.create_makefile("qttest.pro") config.create_makefile("qttest.pro")
tryModule(maindir,"qtext", "qextscintillabase.h", "QextScintillaBase()") tryModule(maindir,"qtext", "tqextscintillabase.h", "TQextScintillaBase()")
# Put things back. # Put things back.
config.patches["@TEST_QSCINTILLA_INC@"] = "" config.patches["@TEST_QSCINTILLA_INC@"] = ""

@ -215,7 +215,7 @@ class ConfigurePyTQt3(ConfigureBase):
check_module("qtaxcontainer", "qaxobject.h", "TQAxObject()", lib="qaxcontainer") check_module("qtaxcontainer", "qaxobject.h", "TQAxObject()", lib="qaxcontainer")
if qsci_version: if qsci_version:
check_module("qtext", "qextscintillabase.h", "QextScintillaBase()", define=qsci_define, include_dir=opt_qsciincdir, lib_dir=opt_qscilibdir, lib="qscintilla") check_module("qtext", "tqextscintillabase.h", "TQextScintillaBase()", define=qsci_define, include_dir=opt_qsciincdir, lib_dir=opt_qscilibdir, lib="tqscintilla")
if opt_qtpetag: if opt_qtpetag:
pyqt_modules.append("qtpe") pyqt_modules.append("qtpe")
@ -266,7 +266,7 @@ class ConfigurePyTQt3(ConfigureBase):
generate_code("qt", extra_include_dirs=extra_include_dirs, extra_lib_dir=extra_lib_dir, extra_libs=extra_libs) generate_code("qt", extra_include_dirs=extra_include_dirs, extra_lib_dir=extra_lib_dir, extra_libs=extra_libs)
if "qtext" in pyqt_modules: if "qtext" in pyqt_modules:
generate_code("qtext", extra_define=qsci_define, extra_include_dirs=[opt_qsciincdir], extra_lib_dir=opt_qscilibdir, extra_libs=["qscintilla"]+extra_libs, sip_flags=qtext_sip_flags) generate_code("qtext", extra_define=qsci_define, extra_include_dirs=[opt_qsciincdir], extra_lib_dir=opt_qscilibdir, extra_libs=["tqscintilla"]+extra_libs, sip_flags=qtext_sip_flags)
if "qtgl" in pyqt_modules: if "qtgl" in pyqt_modules:
generate_code("qtgl", opengl=1, extra_include_dirs=extra_include_dirs, extra_lib_dir=extra_lib_dir, extra_libs=extra_libs) generate_code("qtgl", opengl=1, extra_include_dirs=extra_include_dirs, extra_lib_dir=extra_lib_dir, extra_libs=extra_libs)
@ -566,7 +566,7 @@ def check_qscintilla():
opt_qscilibdir = qt_libdir opt_qscilibdir = qt_libdir
# Find the TQScintilla header files. # Find the TQScintilla header files.
sciglobal = os.path.join(opt_qsciincdir, "qextscintillaglobal.h") sciglobal = os.path.join(opt_qsciincdir, "tqextscintillaglobal.h")
if os.access(sciglobal, os.F_OK): if os.access(sciglobal, os.F_OK):
# Get the TQScintilla version number. # Get the TQScintilla version number.
@ -574,7 +574,7 @@ def check_qscintilla():
qsci_version, sciversstr = sipconfig.read_version(sciglobal, "TQScintilla", "TQSCINTILLA_VERSION", "TQSCINTILLA_VERSION_STR") qsci_version, sciversstr = sipconfig.read_version(sciglobal, "TQScintilla", "TQSCINTILLA_VERSION", "TQSCINTILLA_VERSION_STR")
if glob.glob(os.path.join(opt_qscilibdir, "*qscintilla*")): if glob.glob(os.path.join(opt_qscilibdir, "*tqscintilla*")):
sipconfig.inform("TQScintilla %s is being used." % sciversstr) sipconfig.inform("TQScintilla %s is being used." % sciversstr)
# If we find a snapshot then set a negative version number as a # If we find a snapshot then set a negative version number as a
@ -584,7 +584,7 @@ def check_qscintilla():
else: else:
sipconfig.inform("The TQScintilla library could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -o argument to explicitly specify the correct directory." % opt_qscilibdir) sipconfig.inform("The TQScintilla library could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -o argument to explicitly specify the correct directory." % opt_qscilibdir)
else: else:
sipconfig.inform("qextscintillaglobal.h could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -n argument to explicitly specify the correct directory." % opt_qsciincdir) sipconfig.inform("tqextscintillaglobal.h could not be found in %s and so the qtext module will not be built. If TQScintilla is installed then use the -n argument to explicitly specify the correct directory." % opt_qsciincdir)
def check_vendorid(): def check_vendorid():

@ -10502,7 +10502,7 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3940" NAME="AEN3940"
>QextScintilla</A >TQextScintilla</A
></H3 ></H3
><DIV ><DIV
CLASS="FUNCSYNOPSIS" CLASS="FUNCSYNOPSIS"
@ -10562,12 +10562,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3968" NAME="AEN3968"
>QextScintillaAPIs</A >TQextScintillaAPIs</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaAPIs</TT >TQextScintillaAPIs</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10576,12 +10576,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3972" NAME="AEN3972"
>QextScintillaBase</A >TQextScintillaBase</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaBase</TT >TQextScintillaBase</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10590,12 +10590,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3976" NAME="AEN3976"
>QextScintillaCommand</A >TQextScintillaCommand</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaCommand</TT >TQextScintillaCommand</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10604,12 +10604,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3980" NAME="AEN3980"
>QextScintillaCommandSet</A >TQextScintillaCommandSet</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaCommandSet</TT >TQextScintillaCommandSet</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10618,12 +10618,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3984" NAME="AEN3984"
>QextScintillaDocument</A >TQextScintillaDocument</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaDocument</TT >TQextScintillaDocument</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10632,12 +10632,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3988" NAME="AEN3988"
>QextScintillaLexer</A >TQextScintillaLexer</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexer</TT >TQextScintillaLexer</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10646,12 +10646,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3992" NAME="AEN3992"
>QextScintillaLexerBash (TQScintilla v1.4+)</A >TQextScintillaLexerBash (TQScintilla v1.4+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerBash</TT >TQextScintillaLexerBash</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10660,12 +10660,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN3996" NAME="AEN3996"
>QextScintillaLexerBatch (TQScintilla v1.6+)</A >TQextScintillaLexerBatch (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerBatch</TT >TQextScintillaLexerBatch</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10674,12 +10674,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4000" NAME="AEN4000"
>QextScintillaLexerCPP</A >TQextScintillaLexerCPP</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerCPP</TT >TQextScintillaLexerCPP</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10688,12 +10688,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4004" NAME="AEN4004"
>QextScintillaLexerCSharp</A >TQextScintillaLexerCSharp</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerCSharp</TT >TQextScintillaLexerCSharp</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10702,12 +10702,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4008" NAME="AEN4008"
>QextScintillaLexerCSS (TQScintilla v1.6+)</A >TQextScintillaLexerCSS (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerCSS</TT >TQextScintillaLexerCSS</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10716,12 +10716,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4012" NAME="AEN4012"
>QextScintillaLexerDiff (TQScintilla v1.6+)</A >TQextScintillaLexerDiff (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerDiff</TT >TQextScintillaLexerDiff</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10730,12 +10730,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4016" NAME="AEN4016"
>QextScintillaLexerHTML (TQScintilla v1.1+)</A >TQextScintillaLexerHTML (TQScintilla v1.1+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerHTML</TT >TQextScintillaLexerHTML</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10744,12 +10744,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4020" NAME="AEN4020"
>QextScintillaLexerIDL</A >TQextScintillaLexerIDL</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerIDL</TT >TQextScintillaLexerIDL</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10758,12 +10758,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4024" NAME="AEN4024"
>QextScintillaLexerJava</A >TQextScintillaLexerJava</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerJava</TT >TQextScintillaLexerJava</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10772,12 +10772,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4028" NAME="AEN4028"
>QextScintillaLexerJavaScript</A >TQextScintillaLexerJavaScript</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerJavaScript</TT >TQextScintillaLexerJavaScript</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10786,12 +10786,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4032" NAME="AEN4032"
>QextScintillaLexerLua (TQScintilla v1.5+)</A >TQextScintillaLexerLua (TQScintilla v1.5+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerLua</TT >TQextScintillaLexerLua</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10800,12 +10800,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4036" NAME="AEN4036"
>QextScintillaLexerMakefile (TQScintilla v1.6+)</A >TQextScintillaLexerMakefile (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerMakefile</TT >TQextScintillaLexerMakefile</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10814,12 +10814,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4040" NAME="AEN4040"
>QextScintillaLexerPerl</A >TQextScintillaLexerPerl</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerPerl</TT >TQextScintillaLexerPerl</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10828,12 +10828,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4044" NAME="AEN4044"
>QextScintillaLexerPOV (TQScintilla v1.6+)</A >TQextScintillaLexerPOV (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerPOV</TT >TQextScintillaLexerPOV</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10842,12 +10842,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4048" NAME="AEN4048"
>QextScintillaLexerProperties (TQScintilla v1.6+)</A >TQextScintillaLexerProperties (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerProperties</TT >TQextScintillaLexerProperties</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10856,12 +10856,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4052" NAME="AEN4052"
>QextScintillaLexerPython</A >TQextScintillaLexerPython</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerPython</TT >TQextScintillaLexerPython</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10870,12 +10870,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4056" NAME="AEN4056"
>QextScintillaLexerRuby (TQScintilla v1.5+)</A >TQextScintillaLexerRuby (TQScintilla v1.5+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerRuby</TT >TQextScintillaLexerRuby</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10884,12 +10884,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4060" NAME="AEN4060"
>QextScintillaLexerSQL (TQScintilla v1.1+)</A >TQextScintillaLexerSQL (TQScintilla v1.1+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerSQL</TT >TQextScintillaLexerSQL</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10898,12 +10898,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4064" NAME="AEN4064"
>QextScintillaLexerTeX (TQScintilla v1.6+)</A >TQextScintillaLexerTeX (TQScintilla v1.6+)</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaLexerTeX</TT >TQextScintillaLexerTeX</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10912,12 +10912,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4068" NAME="AEN4068"
>QextScintillaMacro</A >TQextScintillaMacro</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaMacro</TT >TQextScintillaMacro</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
><DIV ><DIV
@ -10926,12 +10926,12 @@ CLASS="SECT2"
CLASS="SECT2" CLASS="SECT2"
><A ><A
NAME="AEN4072" NAME="AEN4072"
>QextScintillaPrinter</A >TQextScintillaPrinter</A
></H3 ></H3
><P ><P
><TT ><TT
CLASS="LITERAL" CLASS="LITERAL"
>QextScintillaPrinter</TT >TQextScintillaPrinter</TT
> is fully implemented.</P > is fully implemented.</P
></DIV ></DIV
></DIV ></DIV

@ -4853,7 +4853,7 @@ The <Literal>pixmaps</Literal> argument is a Python list of TQPixmap instances.
</Sect1> </Sect1>
<Sect1><Title><Literal>qtext</Literal> Module Reference</Title> <Sect1><Title><Literal>qtext</Literal> Module Reference</Title>
<Sect2><Title>QextScintilla</Title> <Sect2><Title>TQextScintilla</Title>
<FuncSynopsis> <FuncSynopsis>
<FuncDef>void <Function>getCursorPosition</Function></FuncDef> <FuncDef>void <Function>getCursorPosition</Function></FuncDef>
<ParamDef>int *<Parameter>line</Parameter></ParamDef> <ParamDef>int *<Parameter>line</Parameter></ParamDef>
@ -4878,165 +4878,165 @@ This takes no parameters and returns a tuple of the values returned by the
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaAPIs</Title> <Sect2><Title>TQextScintillaAPIs</Title>
<Para> <Para>
<Literal>QextScintillaAPIs</Literal> is fully implemented. <Literal>TQextScintillaAPIs</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaBase</Title> <Sect2><Title>TQextScintillaBase</Title>
<Para> <Para>
<Literal>QextScintillaBase</Literal> is fully implemented. <Literal>TQextScintillaBase</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaCommand</Title> <Sect2><Title>TQextScintillaCommand</Title>
<Para> <Para>
<Literal>QextScintillaCommand</Literal> is fully implemented. <Literal>TQextScintillaCommand</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaCommandSet</Title> <Sect2><Title>TQextScintillaCommandSet</Title>
<Para> <Para>
<Literal>QextScintillaCommandSet</Literal> is fully implemented. <Literal>TQextScintillaCommandSet</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaDocument</Title> <Sect2><Title>TQextScintillaDocument</Title>
<Para> <Para>
<Literal>QextScintillaDocument</Literal> is fully implemented. <Literal>TQextScintillaDocument</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexer</Title> <Sect2><Title>TQextScintillaLexer</Title>
<Para> <Para>
<Literal>QextScintillaLexer</Literal> is fully implemented. <Literal>TQextScintillaLexer</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerBash (TQScintilla v1.4+)</Title> <Sect2><Title>TQextScintillaLexerBash (TQScintilla v1.4+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerBash</Literal> is fully implemented. <Literal>TQextScintillaLexerBash</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerBatch (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerBatch (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerBatch</Literal> is fully implemented. <Literal>TQextScintillaLexerBatch</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCPP</Title> <Sect2><Title>TQextScintillaLexerCPP</Title>
<Para> <Para>
<Literal>QextScintillaLexerCPP</Literal> is fully implemented. <Literal>TQextScintillaLexerCPP</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCSharp</Title> <Sect2><Title>TQextScintillaLexerCSharp</Title>
<Para> <Para>
<Literal>QextScintillaLexerCSharp</Literal> is fully implemented. <Literal>TQextScintillaLexerCSharp</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCSS (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerCSS (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerCSS</Literal> is fully implemented. <Literal>TQextScintillaLexerCSS</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerDiff (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerDiff (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerDiff</Literal> is fully implemented. <Literal>TQextScintillaLexerDiff</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerHTML (TQScintilla v1.1+)</Title> <Sect2><Title>TQextScintillaLexerHTML (TQScintilla v1.1+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerHTML</Literal> is fully implemented. <Literal>TQextScintillaLexerHTML</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerIDL</Title> <Sect2><Title>TQextScintillaLexerIDL</Title>
<Para> <Para>
<Literal>QextScintillaLexerIDL</Literal> is fully implemented. <Literal>TQextScintillaLexerIDL</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerJava</Title> <Sect2><Title>TQextScintillaLexerJava</Title>
<Para> <Para>
<Literal>QextScintillaLexerJava</Literal> is fully implemented. <Literal>TQextScintillaLexerJava</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerJavaScript</Title> <Sect2><Title>TQextScintillaLexerJavaScript</Title>
<Para> <Para>
<Literal>QextScintillaLexerJavaScript</Literal> is fully implemented. <Literal>TQextScintillaLexerJavaScript</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerLua (TQScintilla v1.5+)</Title> <Sect2><Title>TQextScintillaLexerLua (TQScintilla v1.5+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerLua</Literal> is fully implemented. <Literal>TQextScintillaLexerLua</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerMakefile (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerMakefile (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerMakefile</Literal> is fully implemented. <Literal>TQextScintillaLexerMakefile</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPerl</Title> <Sect2><Title>TQextScintillaLexerPerl</Title>
<Para> <Para>
<Literal>QextScintillaLexerPerl</Literal> is fully implemented. <Literal>TQextScintillaLexerPerl</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPOV (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerPOV (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerPOV</Literal> is fully implemented. <Literal>TQextScintillaLexerPOV</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerProperties (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerProperties (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerProperties</Literal> is fully implemented. <Literal>TQextScintillaLexerProperties</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPython</Title> <Sect2><Title>TQextScintillaLexerPython</Title>
<Para> <Para>
<Literal>QextScintillaLexerPython</Literal> is fully implemented. <Literal>TQextScintillaLexerPython</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerRuby (TQScintilla v1.5+)</Title> <Sect2><Title>TQextScintillaLexerRuby (TQScintilla v1.5+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerRuby</Literal> is fully implemented. <Literal>TQextScintillaLexerRuby</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerSQL (TQScintilla v1.1+)</Title> <Sect2><Title>TQextScintillaLexerSQL (TQScintilla v1.1+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerSQL</Literal> is fully implemented. <Literal>TQextScintillaLexerSQL</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerTeX (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerTeX (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerTeX</Literal> is fully implemented. <Literal>TQextScintillaLexerTeX</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaMacro</Title> <Sect2><Title>TQextScintillaMacro</Title>
<Para> <Para>
<Literal>QextScintillaMacro</Literal> is fully implemented. <Literal>TQextScintillaMacro</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaPrinter</Title> <Sect2><Title>TQextScintillaPrinter</Title>
<Para> <Para>
<Literal>QextScintillaPrinter</Literal> is fully implemented. <Literal>TQextScintillaPrinter</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
</Sect1> </Sect1>

@ -1487,7 +1487,7 @@ Classes that are not mentioned have not yet been implemented.
%ExportedDoc %ExportedDoc
<Sect1><Title><Literal>qtext</Literal> Module Reference</Title> <Sect1><Title><Literal>qtext</Literal> Module Reference</Title>
<Sect2><Title>QextScintilla</Title> <Sect2><Title>TQextScintilla</Title>
<FuncSynopsis> <FuncSynopsis>
<FuncDef>void <Function>getCursorPosition</Function></FuncDef> <FuncDef>void <Function>getCursorPosition</Function></FuncDef>
<ParamDef>int *<Parameter>line</Parameter></ParamDef> <ParamDef>int *<Parameter>line</Parameter></ParamDef>
@ -1512,165 +1512,165 @@ This takes no parameters and returns a tuple of the values returned by the
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaAPIs</Title> <Sect2><Title>TQextScintillaAPIs</Title>
<Para> <Para>
<Literal>QextScintillaAPIs</Literal> is fully implemented. <Literal>TQextScintillaAPIs</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaBase</Title> <Sect2><Title>TQextScintillaBase</Title>
<Para> <Para>
<Literal>QextScintillaBase</Literal> is fully implemented. <Literal>TQextScintillaBase</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaCommand</Title> <Sect2><Title>TQextScintillaCommand</Title>
<Para> <Para>
<Literal>QextScintillaCommand</Literal> is fully implemented. <Literal>TQextScintillaCommand</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaCommandSet</Title> <Sect2><Title>TQextScintillaCommandSet</Title>
<Para> <Para>
<Literal>QextScintillaCommandSet</Literal> is fully implemented. <Literal>TQextScintillaCommandSet</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaDocument</Title> <Sect2><Title>TQextScintillaDocument</Title>
<Para> <Para>
<Literal>QextScintillaDocument</Literal> is fully implemented. <Literal>TQextScintillaDocument</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexer</Title> <Sect2><Title>TQextScintillaLexer</Title>
<Para> <Para>
<Literal>QextScintillaLexer</Literal> is fully implemented. <Literal>TQextScintillaLexer</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerBash (TQScintilla v1.4+)</Title> <Sect2><Title>TQextScintillaLexerBash (TQScintilla v1.4+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerBash</Literal> is fully implemented. <Literal>TQextScintillaLexerBash</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerBatch (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerBatch (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerBatch</Literal> is fully implemented. <Literal>TQextScintillaLexerBatch</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCPP</Title> <Sect2><Title>TQextScintillaLexerCPP</Title>
<Para> <Para>
<Literal>QextScintillaLexerCPP</Literal> is fully implemented. <Literal>TQextScintillaLexerCPP</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCSharp</Title> <Sect2><Title>TQextScintillaLexerCSharp</Title>
<Para> <Para>
<Literal>QextScintillaLexerCSharp</Literal> is fully implemented. <Literal>TQextScintillaLexerCSharp</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerCSS (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerCSS (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerCSS</Literal> is fully implemented. <Literal>TQextScintillaLexerCSS</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerDiff (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerDiff (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerDiff</Literal> is fully implemented. <Literal>TQextScintillaLexerDiff</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerHTML (TQScintilla v1.1+)</Title> <Sect2><Title>TQextScintillaLexerHTML (TQScintilla v1.1+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerHTML</Literal> is fully implemented. <Literal>TQextScintillaLexerHTML</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerIDL</Title> <Sect2><Title>TQextScintillaLexerIDL</Title>
<Para> <Para>
<Literal>QextScintillaLexerIDL</Literal> is fully implemented. <Literal>TQextScintillaLexerIDL</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerJava</Title> <Sect2><Title>TQextScintillaLexerJava</Title>
<Para> <Para>
<Literal>QextScintillaLexerJava</Literal> is fully implemented. <Literal>TQextScintillaLexerJava</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerJavaScript</Title> <Sect2><Title>TQextScintillaLexerJavaScript</Title>
<Para> <Para>
<Literal>QextScintillaLexerJavaScript</Literal> is fully implemented. <Literal>TQextScintillaLexerJavaScript</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerLua (TQScintilla v1.5+)</Title> <Sect2><Title>TQextScintillaLexerLua (TQScintilla v1.5+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerLua</Literal> is fully implemented. <Literal>TQextScintillaLexerLua</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerMakefile (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerMakefile (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerMakefile</Literal> is fully implemented. <Literal>TQextScintillaLexerMakefile</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPerl</Title> <Sect2><Title>TQextScintillaLexerPerl</Title>
<Para> <Para>
<Literal>QextScintillaLexerPerl</Literal> is fully implemented. <Literal>TQextScintillaLexerPerl</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPOV (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerPOV (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerPOV</Literal> is fully implemented. <Literal>TQextScintillaLexerPOV</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerProperties (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerProperties (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerProperties</Literal> is fully implemented. <Literal>TQextScintillaLexerProperties</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerPython</Title> <Sect2><Title>TQextScintillaLexerPython</Title>
<Para> <Para>
<Literal>QextScintillaLexerPython</Literal> is fully implemented. <Literal>TQextScintillaLexerPython</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerRuby (TQScintilla v1.5+)</Title> <Sect2><Title>TQextScintillaLexerRuby (TQScintilla v1.5+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerRuby</Literal> is fully implemented. <Literal>TQextScintillaLexerRuby</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerSQL (TQScintilla v1.1+)</Title> <Sect2><Title>TQextScintillaLexerSQL (TQScintilla v1.1+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerSQL</Literal> is fully implemented. <Literal>TQextScintillaLexerSQL</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaLexerTeX (TQScintilla v1.6+)</Title> <Sect2><Title>TQextScintillaLexerTeX (TQScintilla v1.6+)</Title>
<Para> <Para>
<Literal>QextScintillaLexerTeX</Literal> is fully implemented. <Literal>TQextScintillaLexerTeX</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaMacro</Title> <Sect2><Title>TQextScintillaMacro</Title>
<Para> <Para>
<Literal>QextScintillaMacro</Literal> is fully implemented. <Literal>TQextScintillaMacro</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
<Sect2><Title>QextScintillaPrinter</Title> <Sect2><Title>TQextScintillaPrinter</Title>
<Para> <Para>
<Literal>QextScintillaPrinter</Literal> is fully implemented. <Literal>TQextScintillaPrinter</Literal> is fully implemented.
</Para> </Para>
</Sect2> </Sect2>
%End %End

@ -104,7 +104,7 @@ class TQtExtModuleMakefile(TQtModuleMakefile):
self.extra_defines.extend(self.config._pyqt_qscintilla_defines) self.extra_defines.extend(self.config._pyqt_qscintilla_defines)
self.extra_include_dirs.append(self.config._pyqt_qscintilla_inc_dir) self.extra_include_dirs.append(self.config._pyqt_qscintilla_inc_dir)
self.extra_lib_dirs.append(self.config._pyqt_qscintilla_lib_dir) self.extra_lib_dirs.append(self.config._pyqt_qscintilla_lib_dir)
self.extra_libs.append("qscintilla") self.extra_libs.append("tqscintilla")
TQtModuleMakefile.finalise(self) TQtModuleMakefile.finalise(self)

@ -263,8 +263,8 @@ void Uic::createFormImpl( const TQDomElement &e )
if (!axwidgets.empty()) if (!axwidgets.empty())
out << indent << "from python_tqt.qtaxcontainer import TQAxWidget" << endl; out << indent << "from python_tqt.qtaxcontainer import TQAxWidget" << endl;
if (globalIncludes.findIndex("qextscintilla.h") >= 0) if (globalIncludes.findIndex("tqextscintilla.h") >= 0)
out << indent << "from python_tqt.qtext import QextScintilla" << endl; out << indent << "from python_tqt.qtext import TQextScintilla" << endl;
registerDatabases( e ); registerDatabases( e );
dbConnections = unique( dbConnections ); dbConnections = unique( dbConnections );

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintilla. // This is the SIP interface definition for TQextScintilla.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintilla : QextScintillaBase class TQextScintilla : TQextScintillaBase
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintilla.h> #include <tqextscintilla.h>
%End %End
public: public:
@ -124,7 +124,7 @@ public:
}; };
%End %End
QextScintilla(TQWidget * /TransferThis/ = 0,const char * = 0, TQextScintilla(TQWidget * /TransferThis/ = 0,const char * = 0,
WFlags = 0); WFlags = 0);
bool autoCompletionCaseSensitivity(); bool autoCompletionCaseSensitivity();
@ -146,7 +146,7 @@ public:
void clearRegisteredImages(); void clearRegisteredImages();
void convertEols(EolMode); void convertEols(EolMode);
%If (TQScintilla_1_3 -) %If (TQScintilla_1_3 -)
QextScintillaDocument document(); TQextScintillaDocument document();
%End %End
void endUndoAction(); void endUndoAction();
@ -203,7 +203,7 @@ public:
int lines(); int lines();
int length(); int length();
%If (TQScintilla_1_7 -) %If (TQScintilla_1_7 -)
QextScintillaLexer *lexer() const; TQextScintillaLexer *lexer() const;
%End %End
bool marginLineNumbers(int); bool marginLineNumbers(int);
@ -230,21 +230,21 @@ public:
void resetFoldMarginColors(); void resetFoldMarginColors();
void setFoldMarginColors(const TQColor &,const TQColor &); void setFoldMarginColors(const TQColor &,const TQColor &);
void setAutoCompletionAPIs(QextScintillaAPIs * = 0); void setAutoCompletionAPIs(TQextScintillaAPIs * = 0);
void setAutoCompletionFillups(const char *); void setAutoCompletionFillups(const char *);
%If (TQScintilla_1_7 -) %If (TQScintilla_1_7 -)
void setAutoCompletionFillupsEnabled(bool); void setAutoCompletionFillupsEnabled(bool);
void setAutoCompletionStartCharacters(const char *); void setAutoCompletionStartCharacters(const char *);
%End %End
void setCallTipsAPIs(QextScintillaAPIs * = 0); void setCallTipsAPIs(TQextScintillaAPIs * = 0);
void setCallTipsBackgroundColor(const TQColor &); void setCallTipsBackgroundColor(const TQColor &);
void setCallTipsForegroundColor(const TQColor &); void setCallTipsForegroundColor(const TQColor &);
void setCallTipsHighlightColor(const TQColor &); void setCallTipsHighlightColor(const TQColor &);
void setCallTipsVisible(int); void setCallTipsVisible(int);
%If (TQScintilla_1_3 -) %If (TQScintilla_1_3 -)
void setDocument(const QextScintillaDocument &); void setDocument(const TQextScintillaDocument &);
%End %End
%If (TQScintilla_1_4 -) %If (TQScintilla_1_4 -)
@ -267,14 +267,14 @@ public:
%If (TQScintilla_1_7 -) %If (TQScintilla_1_7 -)
void setWrapVisualFlags(WrapVisualFlag, void setWrapVisualFlags(WrapVisualFlag,
WrapVisualFlag = QextScintilla::WrapFlagNone, int = 0); WrapVisualFlag = TQextScintilla::WrapFlagNone, int = 0);
%End %End
TQString selectedText(); TQString selectedText();
%If (TQScintilla_1_7 -) %If (TQScintilla_1_7 -)
void showUserList(int, const TQStringList &); void showUserList(int, const TQStringList &);
%End %End
QextScintillaCommandSet *standardCommands() const; TQextScintillaCommandSet *standardCommands() const;
bool tabIndents(); bool tabIndents();
int tabWidth(); int tabWidth();
TQString text(); TQString text();
@ -353,7 +353,7 @@ public slots:
virtual void setIndentationsUseTabs(bool); virtual void setIndentationsUseTabs(bool);
virtual void setIndentationWidth(int); virtual void setIndentationWidth(int);
virtual void setLexer(QextScintillaLexer * = 0); virtual void setLexer(TQextScintillaLexer * = 0);
virtual void setMarginsBackgroundColor(const TQColor &); virtual void setMarginsBackgroundColor(const TQColor &);
virtual void setMarginsFont(const TQFont &); virtual void setMarginsFont(const TQFont &);
@ -406,6 +406,6 @@ signals:
%End %End
private: private:
QextScintilla(const QextScintilla &); TQextScintilla(const TQextScintilla &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaAPIs. // This is the SIP interface definition for TQextScintillaAPIs.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,19 +24,19 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaAPIs class TQextScintillaAPIs
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillaapis.h> #include <tqextscintillaapis.h>
%End %End
public: public:
QextScintillaAPIs(); TQextScintillaAPIs();
void add(const TQString &); void add(const TQString &);
bool load(const TQString &); bool load(const TQString &);
void clear(); void clear();
private: private:
QextScintillaAPIs(const QextScintillaAPIs &); TQextScintillaAPIs(const TQextScintillaAPIs &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaBase. // This is the SIP interface definition for TQextScintillaBase.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaBase : TQWidget class TQextScintillaBase : TQWidget
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillabase.h> #include <tqextscintillabase.h>
%End %End
public: public:
@ -889,7 +889,7 @@ public:
%End %End
}; };
QextScintillaBase(TQWidget * /TransferThis/,const char *, TQextScintillaBase(TQWidget * /TransferThis/,const char *,
WFlags = 0); WFlags = 0);
%ConvertToSubClassCode %ConvertToSubClassCode
@ -898,46 +898,46 @@ public:
sipWrapperType **type; sipWrapperType **type;
int yes, no; int yes, no;
} graph[] = { } graph[] = {
{sipName_QextScintillaLexer, &sipClass_QextScintillaLexer, 3, 1}, {sipName_TQextScintillaLexer, &sipClass_TQextScintillaLexer, 3, 1},
{sipName_QextScintillaBase, &sipClass_QextScintillaBase, 15, 2}, {sipName_TQextScintillaBase, &sipClass_TQextScintillaBase, 15, 2},
{sipName_QextScintillaMacro, &sipClass_QextScintillaMacro, -1, -1}, {sipName_TQextScintillaMacro, &sipClass_TQextScintillaMacro, -1, -1},
#if TQSCINTILLA_VERSION >= 0x010300 #if TQSCINTILLA_VERSION >= 0x010300
{sipName_QextScintillaLexerPerl, &sipClass_QextScintillaLexerPerl, -1, 4}, {sipName_TQextScintillaLexerPerl, &sipClass_TQextScintillaLexerPerl, -1, 4},
#else #else
{NULL, NULL, -1, 4}, {NULL, NULL, -1, 4},
#endif #endif
#if TQSCINTILLA_VERSION >= 0x010100 #if TQSCINTILLA_VERSION >= 0x010100
{sipName_QextScintillaLexerHTML, &sipClass_QextScintillaLexerHTML, -1, 5}, {sipName_TQextScintillaLexerHTML, &sipClass_TQextScintillaLexerHTML, -1, 5},
#else #else
{NULL, NULL, -1, 5}, {NULL, NULL, -1, 5},
#endif #endif
#if TQSCINTILLA_VERSION >= 0x010500 #if TQSCINTILLA_VERSION >= 0x010500
{sipName_QextScintillaLexerRuby, &sipClass_QextScintillaLexerRuby, -1, 6}, {sipName_TQextScintillaLexerRuby, &sipClass_TQextScintillaLexerRuby, -1, 6},
#else #else
{NULL, NULL, -1, 6}, {NULL, NULL, -1, 6},
#endif #endif
{sipName_QextScintillaLexerCPP, &sipClass_QextScintillaLexerCPP, 11, 7}, {sipName_TQextScintillaLexerCPP, &sipClass_TQextScintillaLexerCPP, 11, 7},
{sipName_QextScintillaLexerPython, &sipClass_QextScintillaLexerPython, -1, 8}, {sipName_TQextScintillaLexerPython, &sipClass_TQextScintillaLexerPython, -1, 8},
#if TQSCINTILLA_VERSION >= 0x010100 #if TQSCINTILLA_VERSION >= 0x010100
{sipName_QextScintillaLexerSQL, &sipClass_QextScintillaLexerSQL, -1, 9}, {sipName_TQextScintillaLexerSQL, &sipClass_TQextScintillaLexerSQL, -1, 9},
#else #else
{NULL, NULL, -1, 9}, {NULL, NULL, -1, 9},
#endif #endif
#if TQSCINTILLA_VERSION >= 0x010400 #if TQSCINTILLA_VERSION >= 0x010400
{sipName_QextScintillaLexerBash, &sipClass_QextScintillaLexerBash, -1, 10}, {sipName_TQextScintillaLexerBash, &sipClass_TQextScintillaLexerBash, -1, 10},
#else #else
{NULL, NULL, -1, 10}, {NULL, NULL, -1, 10},
#endif #endif
#if TQSCINTILLA_VERSION >= 0x010500 #if TQSCINTILLA_VERSION >= 0x010500
{sipName_QextScintillaLexerLua, &sipClass_QextScintillaLexerLua, -1, -1}, {sipName_TQextScintillaLexerLua, &sipClass_TQextScintillaLexerLua, -1, -1},
#else #else
{NULL, NULL, -1, -1}, {NULL, NULL, -1, -1},
#endif #endif
{sipName_QextScintillaLexerIDL, &sipClass_QextScintillaLexerIDL, -1, 12}, {sipName_TQextScintillaLexerIDL, &sipClass_TQextScintillaLexerIDL, -1, 12},
{sipName_QextScintillaLexerJavaScript, &sipClass_QextScintillaLexerJavaScript, -1, 13}, {sipName_TQextScintillaLexerJavaScript, &sipClass_TQextScintillaLexerJavaScript, -1, 13},
{sipName_QextScintillaLexerCSharp, &sipClass_QextScintillaLexerCSharp, -1, 14}, {sipName_TQextScintillaLexerCSharp, &sipClass_TQextScintillaLexerCSharp, -1, 14},
{sipName_QextScintillaLexerJava, &sipClass_QextScintillaLexerJava, -1, -1}, {sipName_TQextScintillaLexerJava, &sipClass_TQextScintillaLexerJava, -1, -1},
{sipName_QextScintilla, &sipClass_QextScintilla, -1, -1}, {sipName_TQextScintilla, &sipClass_TQextScintilla, -1, -1},
}; };
int i = 0; int i = 0;
@ -960,7 +960,7 @@ public:
%End %End
%If (TQScintilla_1_3 -) %If (TQScintilla_1_3 -)
QextScintillaBase *pool(); TQextScintillaBase *pool();
%End %End
long SendScintilla(unsigned int,unsigned long = 0,long = 0); long SendScintilla(unsigned int,unsigned long = 0,long = 0);
@ -1020,5 +1020,5 @@ protected:
%End %End
private: private:
QextScintillaBase(const QextScintillaBase &); TQextScintillaBase(const TQextScintillaBase &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaCommand. // This is the SIP interface definition for TQextScintillaCommand.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaCommand class TQextScintillaCommand
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillacommand.h> #include <tqextscintillacommand.h>
%End %End
public: public:
@ -39,6 +39,6 @@ public:
TQString description() const; TQString description() const;
private: private:
QextScintillaCommand(QextScintilla *,int,int,const char *); TQextScintillaCommand(TQextScintilla *,int,int,const char *);
QextScintillaCommand(const QextScintillaCommand &); TQextScintillaCommand(const TQextScintillaCommand &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for the QextScintillaCommandSet. // This is the SIP interface definition for the TQextScintillaCommandSet.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaCommandSet class TQextScintillaCommandSet
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillacommandset.h> #include <tqextscintillacommandset.h>
%End %End
public: public:
@ -35,10 +35,10 @@ public:
bool writeSettings(TQSettings &,const char * = "/Scintilla"); bool writeSettings(TQSettings &,const char * = "/Scintilla");
%If (TQScintilla_1_4 -) %If (TQScintilla_1_4 -)
TQPtrList<QextScintillaCommand> &commands(); TQPtrList<TQextScintillaCommand> &commands();
%End %End
%If (- TQScintilla_1_4) %If (- TQScintilla_1_4)
const TQPtrList<QextScintillaCommand> &commands() const; const TQPtrList<TQextScintillaCommand> &commands() const;
%End %End
%If (TQScintilla_1_4 -) %If (TQScintilla_1_4 -)
@ -47,6 +47,6 @@ public:
%End %End
private: private:
QextScintillaCommandSet(QextScintilla *); TQextScintillaCommandSet(TQextScintilla *);
QextScintillaCommandSet(const QextScintillaCommandSet &); TQextScintillaCommandSet(const TQextScintillaCommandSet &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaDocument. // This is the SIP interface definition for TQextScintillaDocument.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,17 +26,17 @@
%If (TQScintilla_1_3 -) %If (TQScintilla_1_3 -)
class QextScintillaDocument class TQextScintillaDocument
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintilladocument.h> #include <tqextscintilladocument.h>
%End %End
public: public:
QextScintillaDocument(); TQextScintillaDocument();
virtual ~QextScintillaDocument(); virtual ~TQextScintillaDocument();
QextScintillaDocument(const QextScintillaDocument &); TQextScintillaDocument(const TQextScintillaDocument &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexer. // This is the SIP interface definition for TQextScintillaLexer.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,14 +24,14 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexer : TQObject class TQextScintillaLexer : TQObject
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexer.h> #include <tqextscintillalexer.h>
%End %End
public: public:
QextScintillaLexer(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexer(TQObject * /TransferThis/ = 0,const char * = 0);
virtual const char *language() const = 0; virtual const char *language() const = 0;
virtual const char *lexer() const = 0; virtual const char *lexer() const = 0;
@ -75,6 +75,6 @@ protected:
virtual bool writeProperties(TQSettings &,const TQString &) const; virtual bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexer(const QextScintillaLexer &); TQextScintillaLexer(const TQextScintillaLexer &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerBash. // This is the SIP interface definition for TQextScintillaLexerBash.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_4 -) %If (TQScintilla_1_4 -)
class QextScintillaLexerBash : QextScintillaLexer class TQextScintillaLexerBash : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerbash.h> #include <tqextscintillalexerbash.h>
%End %End
public: public:
@ -50,7 +50,7 @@ public:
SingleQuotedHereDocument SingleQuotedHereDocument
}; };
QextScintillaLexerBash(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerBash(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -74,7 +74,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerBash(const QextScintillaLexerBash &); TQextScintillaLexerBash(const TQextScintillaLexerBash &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerBatch. // This is the SIP interface definition for TQextScintillaLexerBatch.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerBatch : QextScintillaLexer class TQextScintillaLexerBatch : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerbatch.h> #include <tqextscintillalexerbatch.h>
%End %End
public: public:
@ -44,7 +44,7 @@ public:
Operator Operator
}; };
QextScintillaLexerBatch(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerBatch(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -56,7 +56,7 @@ public:
TQColor paper(int) const; TQColor paper(int) const;
private: private:
QextScintillaLexerBatch(const QextScintillaLexerBatch &); TQextScintillaLexerBatch(const TQextScintillaLexerBatch &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerCPP. // This is the SIP interface definition for TQextScintillaLexerCPP.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerCPP : QextScintillaLexer class TQextScintillaLexerCPP : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexercpp.h> #include <tqextscintillalexercpp.h>
%End %End
public: public:
@ -59,7 +59,7 @@ public:
%End %End
}; };
QextScintillaLexerCPP(TQObject * /TransferThis/ = 0,const char * = 0, TQextScintillaLexerCPP(TQObject * /TransferThis/ = 0,const char * = 0,
bool = 0); bool = 0);
const char *language() const; const char *language() const;
@ -94,5 +94,5 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerCPP(const QextScintillaLexerCPP &); TQextScintillaLexerCPP(const TQextScintillaLexerCPP &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerCSharp. // This is the SIP interface definition for TQextScintillaLexerCSharp.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,14 +24,14 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerCSharp : QextScintillaLexerCPP class TQextScintillaLexerCSharp : TQextScintillaLexerCPP
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexercsharp.h> #include <tqextscintillalexercsharp.h>
%End %End
public: public:
QextScintillaLexerCSharp(TQObject * /TransferThis/ = 0, TQextScintillaLexerCSharp(TQObject * /TransferThis/ = 0,
const char * = 0); const char * = 0);
const char *language() const; const char *language() const;
@ -43,5 +43,5 @@ public:
TQColor paper(int) const; TQColor paper(int) const;
private: private:
QextScintillaLexerCSharp(const QextScintillaLexerCSharp &); TQextScintillaLexerCSharp(const TQextScintillaLexerCSharp &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerCSS. // This is the SIP interface definition for TQextScintillaLexerCSS.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerCSS : QextScintillaLexer class TQextScintillaLexerCSS : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexercss.h> #include <tqextscintillalexercss.h>
%End %End
public: public:
@ -53,7 +53,7 @@ public:
Attribute Attribute
}; };
QextScintillaLexerCSS(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerCSS(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -75,7 +75,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerCSS(const QextScintillaLexerCSS &); TQextScintillaLexerCSS(const TQextScintillaLexerCSS &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerDiff. // This is the SIP interface definition for TQextScintillaLexerDiff.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerDiff : QextScintillaLexer class TQextScintillaLexerDiff : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerdiff.h> #include <tqextscintillalexerdiff.h>
%End %End
public: public:
@ -43,7 +43,7 @@ public:
LineAdded LineAdded
}; };
QextScintillaLexerDiff(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerDiff(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -51,7 +51,7 @@ public:
TQString description(int) const; TQString description(int) const;
private: private:
QextScintillaLexerDiff(const QextScintillaLexerDiff &); TQextScintillaLexerDiff(const TQextScintillaLexerDiff &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerHTML. // This is the SIP interface definition for TQextScintillaLexerHTML.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_1 -) %If (TQScintilla_1_1 -)
class QextScintillaLexerHTML : QextScintillaLexer class TQextScintillaLexerHTML : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerhtml.h> #include <tqextscintillalexerhtml.h>
%End %End
public: public:
@ -146,7 +146,7 @@ public:
PHPOperator PHPOperator
}; };
QextScintillaLexerHTML(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerHTML(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -172,7 +172,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerHTML(const QextScintillaLexerHTML &); TQextScintillaLexerHTML(const TQextScintillaLexerHTML &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerIDL. // This is the SIP interface definition for TQextScintillaLexerIDL.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,14 +24,14 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerIDL : QextScintillaLexerCPP class TQextScintillaLexerIDL : TQextScintillaLexerCPP
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexeridl.h> #include <tqextscintillalexeridl.h>
%End %End
public: public:
QextScintillaLexerIDL(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerIDL(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
TQColor color(int) const; TQColor color(int) const;
@ -39,5 +39,5 @@ public:
TQString description(int) const; TQString description(int) const;
private: private:
QextScintillaLexerIDL(const QextScintillaLexerIDL &); TQextScintillaLexerIDL(const TQextScintillaLexerIDL &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerJava. // This is the SIP interface definition for TQextScintillaLexerJava.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,18 +24,18 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerJava : QextScintillaLexerCPP class TQextScintillaLexerJava : TQextScintillaLexerCPP
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerjava.h> #include <tqextscintillalexerjava.h>
%End %End
public: public:
QextScintillaLexerJava(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerJava(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *keywords(int) const; const char *keywords(int) const;
private: private:
QextScintillaLexerJava(const QextScintillaLexerJava &); TQextScintillaLexerJava(const TQextScintillaLexerJava &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerJavaScript. // This is the SIP interface definition for TQextScintillaLexerJavaScript.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,14 +24,14 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerJavaScript : QextScintillaLexerCPP class TQextScintillaLexerJavaScript : TQextScintillaLexerCPP
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerjavascript.h> #include <tqextscintillalexerjavascript.h>
%End %End
public: public:
QextScintillaLexerJavaScript(TQObject * /TransferThis/ = 0, TQextScintillaLexerJavaScript(TQObject * /TransferThis/ = 0,
const char * = 0); const char * = 0);
const char *language() const; const char *language() const;
@ -43,5 +43,5 @@ public:
TQColor paper(int) const; TQColor paper(int) const;
private: private:
QextScintillaLexerJavaScript(const QextScintillaLexerJavaScript &); TQextScintillaLexerJavaScript(const TQextScintillaLexerJavaScript &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerLua. // This is the SIP interface definition for TQextScintillaLexerLua.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_5 -) %If (TQScintilla_1_5 -)
class QextScintillaLexerLua : QextScintillaLexer class TQextScintillaLexerLua : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerlua.h> #include <tqextscintillalexerlua.h>
%End %End
public: public:
@ -51,7 +51,7 @@ public:
CoroutinesIOSystemFacilities CoroutinesIOSystemFacilities
}; };
QextScintillaLexerLua(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerLua(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -73,7 +73,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerLua(const QextScintillaLexerLua &); TQextScintillaLexerLua(const TQextScintillaLexerLua &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerMakefile. // This is the SIP interface definition for TQextScintillaLexerMakefile.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerMakefile : QextScintillaLexer class TQextScintillaLexerMakefile : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexermakefile.h> #include <tqextscintillalexermakefile.h>
%End %End
public: public:
@ -43,7 +43,7 @@ public:
Error Error
}; };
QextScintillaLexerMakefile(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerMakefile(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -54,7 +54,7 @@ public:
TQColor paper(int) const; TQColor paper(int) const;
private: private:
QextScintillaLexerMakefile(const QextScintillaLexerMakefile &); TQextScintillaLexerMakefile(const TQextScintillaLexerMakefile &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerPerl. // This is the SIP interface definition for TQextScintillaLexerPerl.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_3 -) %If (TQScintilla_1_3 -)
class QextScintillaLexerPerl : QextScintillaLexer class TQextScintillaLexerPerl : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerperl.h> #include <tqextscintillalexerperl.h>
%End %End
public: public:
@ -66,7 +66,7 @@ public:
%End %End
}; };
QextScintillaLexerPerl(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerPerl(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -90,7 +90,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerPerl(const QextScintillaLexerPerl &); TQextScintillaLexerPerl(const TQextScintillaLexerPerl &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerPOV. // This is the SIP interface definition for TQextScintillaLexerPOV.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerPOV : QextScintillaLexer class TQextScintillaLexerPOV : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerpov.h> #include <tqextscintillalexerpov.h>
%End %End
public: public:
@ -53,7 +53,7 @@ public:
KeywordSet8 KeywordSet8
}; };
QextScintillaLexerPOV(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerPOV(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -79,7 +79,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerPOV(const QextScintillaLexerPOV &); TQextScintillaLexerPOV(const TQextScintillaLexerPOV &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerProperties. // This is the SIP interface definition for TQextScintillaLexerProperties.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerProperties : QextScintillaLexer class TQextScintillaLexerProperties : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerproperties.h> #include <tqextscintillalexerproperties.h>
%End %End
public: public:
@ -41,7 +41,7 @@ public:
DefaultValue DefaultValue
}; };
QextScintillaLexerProperties(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerProperties(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -62,7 +62,7 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerProperties(const QextScintillaLexerProperties &); TQextScintillaLexerProperties(const TQextScintillaLexerProperties &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerPython. // This is the SIP interface definition for TQextScintillaLexerPython.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,10 +24,10 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaLexerPython : QextScintillaLexer class TQextScintillaLexerPython : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerpython.h> #include <tqextscintillalexerpython.h>
%End %End
public: public:
@ -63,7 +63,7 @@ public:
Tabs Tabs
}; };
QextScintillaLexerPython(TQObject * /TransferThis/ = 0, TQextScintillaLexerPython(TQObject * /TransferThis/ = 0,
const char * = 0); const char * = 0);
const char *language() const; const char *language() const;
@ -90,5 +90,5 @@ protected:
bool writeProperties(TQSettings &,const TQString &) const; bool writeProperties(TQSettings &,const TQString &) const;
private: private:
QextScintillaLexerPython(const QextScintillaLexerPython &); TQextScintillaLexerPython(const TQextScintillaLexerPython &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerRuby. // This is the SIP interface definition for TQextScintillaLexerRuby.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_5 -) %If (TQScintilla_1_5 -)
class QextScintillaLexerRuby : QextScintillaLexer class TQextScintillaLexerRuby : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexerruby.h> #include <tqextscintillalexerruby.h>
%End %End
public: public:
@ -94,7 +94,7 @@ public:
}; };
%End %End
QextScintillaLexerRuby(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerRuby(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -122,7 +122,7 @@ protected:
%End %End
private: private:
QextScintillaLexerRuby(const QextScintillaLexerRuby &); TQextScintillaLexerRuby(const TQextScintillaLexerRuby &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerSQL. // This is the SIP interface definition for TQextScintillaLexerSQL.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_1 -) %If (TQScintilla_1_1 -)
class QextScintillaLexerSQL : QextScintillaLexer class TQextScintillaLexerSQL : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexersql.h> #include <tqextscintillalexersql.h>
%End %End
public: public:
@ -65,7 +65,7 @@ public:
%End %End
}; };
QextScintillaLexerSQL(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerSQL(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -99,7 +99,7 @@ protected:
%End %End
private: private:
QextScintillaLexerSQL(const QextScintillaLexerSQL &); TQextScintillaLexerSQL(const TQextScintillaLexerSQL &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaLexerTeX. // This is the SIP interface definition for TQextScintillaLexerTeX.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -26,10 +26,10 @@
%If (TQScintilla_1_6 -) %If (TQScintilla_1_6 -)
class QextScintillaLexerTeX : QextScintillaLexer class TQextScintillaLexerTeX : TQextScintillaLexer
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillalexertex.h> #include <tqextscintillalexertex.h>
%End %End
public: public:
@ -42,7 +42,7 @@ public:
Text Text
}; };
QextScintillaLexerTeX(TQObject * /TransferThis/ = 0,const char * = 0); TQextScintillaLexerTeX(TQObject * /TransferThis/ = 0,const char * = 0);
const char *language() const; const char *language() const;
const char *lexer() const; const char *lexer() const;
@ -51,7 +51,7 @@ public:
TQString description(int) const; TQString description(int) const;
private: private:
QextScintillaLexerTeX(const QextScintillaLexerTeX &); TQextScintillaLexerTeX(const TQextScintillaLexerTeX &);
}; };
%End %End

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaMacro. // This is the SIP interface definition for TQextScintillaMacro.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,15 +24,15 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaMacro : TQObject class TQextScintillaMacro : TQObject
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillamacro.h> #include <tqextscintillamacro.h>
%End %End
public: public:
QextScintillaMacro(QextScintilla * /TransferThis/,const char * = 0); TQextScintillaMacro(TQextScintilla * /TransferThis/,const char * = 0);
QextScintillaMacro(const TQCString &,QextScintilla * /TransferThis/, TQextScintillaMacro(const TQCString &,TQextScintilla * /TransferThis/,
const char * = 0); const char * = 0);
void clear(); void clear();
@ -45,5 +45,5 @@ public slots:
virtual void endRecording(); virtual void endRecording();
private: private:
QextScintillaMacro(const QextScintillaMacro &); TQextScintillaMacro(const TQextScintillaMacro &);
}; };

@ -1,4 +1,4 @@
// This is the SIP interface definition for QextScintillaPrinter. // This is the SIP interface definition for TQextScintillaPrinter.
// //
// Copyright (c) 2007 // Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk> // Riverbank Computing Limited <info@riverbankcomputing.co.uk>
@ -24,22 +24,22 @@
// enough to handle the resulting %Timeline complexity. // enough to handle the resulting %Timeline complexity.
class QextScintillaPrinter : TQPrinter class TQextScintillaPrinter : TQPrinter
{ {
%TypeHeaderCode %TypeHeaderCode
#include <qextscintillaprinter.h> #include <tqextscintillaprinter.h>
%End %End
public: public:
QextScintillaPrinter(TQPrinter::PrinterMode = TQPrinter::ScreenResolution); TQextScintillaPrinter(TQPrinter::PrinterMode = TQPrinter::ScreenResolution);
virtual void formatPage(TQPainter &,bool,TQRect &,int); virtual void formatPage(TQPainter &,bool,TQRect &,int);
virtual int printRange(QextScintillaBase *,int = -1,int = -1); virtual int printRange(TQextScintillaBase *,int = -1,int = -1);
int magnification() const; int magnification() const;
virtual void setMagnification(int); virtual void setMagnification(int);
QextScintilla::WrapMode wrapMode() const; TQextScintilla::WrapMode wrapMode() const;
virtual void setWrapMode(QextScintilla::WrapMode); virtual void setWrapMode(TQextScintilla::WrapMode);
private: private:
QextScintillaPrinter(const QextScintillaPrinter &); TQextScintillaPrinter(const TQextScintillaPrinter &);
}; };

Loading…
Cancel
Save