##// END OF EJS Templates
merged in features from the MeVisLab repository...
merged in features from the MeVisLab repository - added createModuleFromFile/createModuleFromScript/createUniqueModule - switched object destruction to use QPointer and lazy wrapper removal to avoid expensive objectDestroyed signal connections - added hash() support for PythnQtWrapper object - added support for signal to python function connections where the function has less arguments than the emitted signal - added setQObject[NoLonger]WrappedCallback API to support external reference counting on QObjects that are exposed to PythonQt - implemented flush on std redirect to support python logging framework - improved QVariant printing and fixed print error on MacX git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@39 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r0:2978a919fc4e
r4:41816e302524
Show More
src.pri
42 lines | 1.4 KiB | text/plain | TextLexer
DEFINES += PYTHONQT_EXPORTS
HEADERS += \
$$PWD/PythonQt.h \
$$PWD/PythonQtStdDecorators.h \
$$PWD/PythonQtClassInfo.h \
$$PWD/PythonQtImporter.h \
$$PWD/PythonQtObjectPtr.h \
$$PWD/PythonQtSlot.h \
$$PWD/PythonQtStdOut.h \
$$PWD/PythonQtMisc.h \
$$PWD/PythonQtMethodInfo.h \
$$PWD/PythonQtImportFileInterface.h \
$$PWD/PythonQtConversion.h \
$$PWD/PythonQtSignalReceiver.h \
$$PWD/PythonQtWrapper.h \
$$PWD/PythonQtMetaObjectWrapper.h \
$$PWD/PythonQtCppWrapperFactory.h \
$$PWD/PythonQtVariants.h \
$$PWD/PythonQtVariantWrapper.h \
$$PWD/wrapper/PythonQtWrappedVariants.h \
$$PWD/gui/PythonQtScriptingConsole.h \
$$PWD/PythonQtSystem.h
SOURCES += \
$$PWD/PythonQtStdDecorators.cpp \
$$PWD/PythonQt.cpp \
$$PWD/PythonQtClassInfo.cpp \
$$PWD/PythonQtImporter.cpp \
$$PWD/PythonQtObjectPtr.cpp \
$$PWD/PythonQtStdOut.cpp \
$$PWD/PythonQtSlot.cpp \
$$PWD/PythonQtMisc.cpp \
$$PWD/PythonQtMethodInfo.cpp \
$$PWD/PythonQtConversion.cpp \
$$PWD/PythonQtSignalReceiver.cpp \
$$PWD/PythonQtVariants.cpp \
$$PWD/PythonQtVariantWrapper.cpp \
$$PWD/PythonQtWrapper.cpp \
$$PWD/PythonQtMetaObjectWrapper.cpp \
$$PWD/gui/PythonQtScriptingConsole.cpp