PythonQt is a dynamic Python binding for Qt. It offers an easy way to embed the Python scripting language into your Qt applications. It makes heavy use of the QMetaObject system and thus requires Qt4.x.
This project is a fork of the official PythonQt repository hosted on sourceforge.
It serves as staging area to contain patches that will then be contributed back to the official repository.
- CMake 2.8.x
- Qt 4.6.2 or above
By default, the patched-2
version will be checked out.
git clone git://github.com/commontk/PythonQt.git
mkdir PythonQt-build
cd PythonQt-build
cmake -DQT_QMAKE_EXECUTABLE:FILEPATH=/path/to/qmake ../PythonQt
make
Additional configure options are:
CMAKE_BUILD_TYPE
: Debug, Release, RelWithDebInfo or MinSizeRelPythonQt_DEBUG
: Enable/Disable PythonQt debug outputPythonQt_Wrap_Qt<componentname>
: Build PythonQt wrapper associated with<componentname>
. Possible<componentname>
aregui
,network
,opengl
,sql
,uitools
,webkit
,xml
,xmlpatterns
.
This repository contains three branches:
- Based on r228
- List of features:
- At configuration time, detect the Qt version used and seamlessly compile the appropriate wrappers (Qt 4.8, 4.7 or 4.6).
- Add method allowing to know if a python error occurred: 5935f29
- Fix compilation issue on VS2010 when PythonQt Debug build against python Release: 7e1e07f
- Backported:
- Most of the change specific to
patched
branch have been backported upstream: r200, r201, r202, r203, r204 - CMake option
PYTHONQT_USE_VTK
has been removed (r205), the foreign wrapper mechanism should be used: r206
- Based on r193
- List of features:
- CMake'ified PythonQt project
- CMake'ified PythonQt/generator project
- Add
dPython.h
file, it provides the ability to link against release python with a debug build of your project. - Option
PYTHONQT_USE_VTK
CMake option allowing to teach PythonQt how to deal withvtkObject
- Stdin can optionally be redirected to a custom callback
- More details
- SVN history imported using
git-svn
Once you've made your great commits:
- Fork PythonQt
- Create a topic branch -
git checkout -b my_branch
- Push to your branch -
git push origin my_branch
- Create an Issue with a link to your branch
- That's it!
- Code:
git clone git://github.com/commontk/PythonQt.git
- Home: http://pythonqt.sourceforge.net/
- Bugs: http://github.com/commontk/PythonQt/issues
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.