summaryrefslogtreecommitdiffstats
path: root/pytqtconfig.py.in
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2023-01-03 00:52:18 +0100
committerSlávek Banko <slavek.banko@axis.cz>2023-01-20 02:10:39 +0100
commit16434e5519f6224e231bc5f7202f0e495eda7bb7 (patch)
treed0a3bc5f18eb65f89c1e6238dcf579e6c9cb80ad /pytqtconfig.py.in
parent1c362264d328c8886d33061ab992750741f7933a (diff)
downloadpytqt-16434e5519f6224e231bc5f7202f0e495eda7bb7.tar.gz
pytqt-16434e5519f6224e231bc5f7202f0e495eda7bb7.zip
Do rename qt=>tqt on source files, directories and libraries.
Rename pyuic=>pytquic, pylupdate=>pytqlupdate. Do rename qt=>tqt on constants and variables. Do rename QT=>TQT on constants. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'pytqtconfig.py.in')
-rw-r--r--pytqtconfig.py.in187
1 files changed, 187 insertions, 0 deletions
diff --git a/pytqtconfig.py.in b/pytqtconfig.py.in
new file mode 100644
index 0000000..bc725e2
--- /dev/null
+++ b/pytqtconfig.py.in
@@ -0,0 +1,187 @@
+# 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.
+#
+# This module is intended to be used by the configuration scripts of extension
+# modules that %Import PyTQt modules.
+
+
+import sip_tqt_config
+
+
+# These are installation specific values created when PyTQt was configured.
+# @SIP_CONFIGURATION@
+
+
+class Configuration(sip_tqt_config.Configuration):
+ """The class that represents PyTQt configuration values.
+ """
+ def __init__(self, sub_cfg=None):
+ """Initialise an instance of the class.
+
+ sub_cfg is the list of sub-class configurations. It should be None
+ when called normally.
+ """
+ if sub_cfg:
+ cfg = sub_cfg
+ else:
+ cfg = []
+
+ cfg.append(_pkg_config)
+
+ sip_tqt_config.Configuration.__init__(self, cfg)
+
+
+class TQtModuleMakefile(sip_tqt_config.SIPModuleMakefile):
+ """The Makefile class for modules that %Import tqt.
+ """
+ def __init__(self, *args, **kw):
+ """Initialise an instance of a module Makefile.
+ """
+ kw["tqt"] = 1
+ apply(sip_tqt_config.SIPModuleMakefile.__init__, (self, ) + args, kw)
+
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ # Note that we don't use self.extra_lib_dirs because we don't want
+ # it to be added to the rpath.
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
+ self.extra_libs.append(self.module_as_lib("tqt"))
+
+ sip_tqt_config.SIPModuleMakefile.finalise(self)
+
+
+class TQtAxContainerModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtaxcontainer.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtaxcontainer"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtCanvasModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtcanvas.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtcanvas"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtExtModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtext.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtext"))
+
+ self.extra_defines.extend(self.config._pytqt_tqscintilla_defines)
+ self.extra_include_dirs.append(self.config._pytqt_tqscintilla_inc_dir)
+ self.extra_lib_dirs.append(self.config._pytqt_tqscintilla_lib_dir)
+ self.extra_libs.append("tqscintilla")
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtGLModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtgl.
+ """
+ def __init__(self, *args, **kw):
+ """Initialise an instance of a module Makefile.
+ """
+ kw["opengl"] = 1
+ apply(TQtModuleMakefile.__init__, (self, ) + args, kw)
+
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtgl"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtNetworkModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtnetwork.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtnetwork"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtTableModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqttable.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqttable"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtSQLModuleMakefile(TQtTableModuleMakefile):
+ """The Makefile class for modules that %Import tqtsql.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtsql"))
+
+ TQtTableModuleMakefile.finalise(self)
+
+
+class TQtUIModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtui.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtui"))
+
+ TQtModuleMakefile.finalise(self)
+
+
+class TQtXMLModuleMakefile(TQtModuleMakefile):
+ """The Makefile class for modules that %Import tqtxml.
+ """
+ def finalise(self):
+ """Finalise the macros.
+ """
+ if self.config.sip_version < 0x040000:
+ self.extra_libs.append(self.module_as_lib("tqtxml"))
+
+ TQtModuleMakefile.finalise(self)