summaryrefslogtreecommitdiffstats
path: root/sip/tqtext/tqtextmod.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/tqtext/tqtextmod.sip')
-rw-r--r--sip/tqtext/tqtextmod.sip107
1 files changed, 107 insertions, 0 deletions
diff --git a/sip/tqtext/tqtextmod.sip b/sip/tqtext/tqtextmod.sip
new file mode 100644
index 0000000..dc57de3
--- /dev/null
+++ b/sip/tqtext/tqtextmod.sip
@@ -0,0 +1,107 @@
+// This is the SIP interface definition for the tqtext module of PyTQt.
+//
+// Copyright (c) 2007
+// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
+//
+// This file is part of PyTQt.
+//
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 2, or (at your option) any later
+// version.
+//
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+// details.
+//
+// You should have received a copy of the GNU General Public License along with
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+%Module PyTQt.tqtext 4
+
+%Import tqt/tqtmod.sip
+
+%Include copying.sip
+
+
+// The TQScintilla versions.
+%Timeline {TQScintilla_1_1 TQScintilla_1_2 TQScintilla_1_3 TQScintilla_1_4
+ TQScintilla_1_5 TQScintilla_1_6 TQScintilla_1_7}
+
+
+const unsigned TQSCINTILLA_VERSION;
+const char *TQSCINTILLA_VERSION_STR;
+const char *TQSCINTILLA_BUILD;
+
+
+%Include tqextscintillaapis.sip
+%Include tqextscintillabase.sip
+%Include tqextscintilla.sip
+%Include tqextscintillacommand.sip
+%Include tqextscintillacommandset.sip
+%Include tqextscintilladocument.sip
+%Include tqextscintillalexer.sip
+%Include tqextscintillalexerbash.sip
+%Include tqextscintillalexerbatch.sip
+%Include tqextscintillalexercpp.sip
+%Include tqextscintillalexercsharp.sip
+%Include tqextscintillalexercss.sip
+%Include tqextscintillalexerdiff.sip
+%Include tqextscintillalexerhtml.sip
+%Include tqextscintillalexeridl.sip
+%Include tqextscintillalexerjava.sip
+%Include tqextscintillalexerjavascript.sip
+%Include tqextscintillalexerlua.sip
+%Include tqextscintillalexermakefile.sip
+%Include tqextscintillalexerperl.sip
+%Include tqextscintillalexerpov.sip
+%Include tqextscintillalexerproperties.sip
+%Include tqextscintillalexerpython.sip
+%Include tqextscintillalexerruby.sip
+%Include tqextscintillalexersql.sip
+%Include tqextscintillalexertex.sip
+%Include tqextscintillamacro.sip
+%Include tqextscintillaprinter.sip
+
+
+// The build file template.
+
+%Makefile tqtext.pro.in
+# The project file for the tqtext module.
+#
+# Copyright (c) 2007
+# Riverbank Computing Limited <info@riverbankcomputing.co.uk>
+#
+# This file is part of PyTQt.
+#
+# This copy of PyTQt is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the Free
+# Software Foundation; either version 2, or (at your option) any later
+# version.
+#
+# PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+# You should have received a copy of the GNU General Public License along with
+# PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+TEMPLATE = lib
+TARGET = @BLX_TARGET_LIB@
+DESTDIR = @PYTQT_MODDIR@
+CONFIG += @BLX_CONFIG_LIB@ @PYTQT_WARN@
+INCLUDEPATH = @BLX_INCLUDEPATH@ @PYTQT_TQSCINTILLA_INC@
+DEFINES = @BLX_DEFINES@ TQEXTSCINTILLA_DLL
+LIBS += @PYTQT_TQT_MODULE@ @PYTQT_TQSCINTILLA_LIB@ @BLX_LIBS@
+macx:QMAKE_LFLAGS += -framework Python
+
+SOURCES = $B
+
+HEADERS = $H
+%End