Hi, 2011/5/9 John Fabiani <[email protected]>: > There is an accounting package xTuple written in QT (c++) and it's open > source. I'm using the product in several projects. BTW it's free for basic > accounting. Take a look www.xTuple.org > > I so love python that I was wondering if it is possible to execute dialogs > created using PySide under the QT (C++) in some manner. > > Would I have to add a python interpreter (somehow) to the C++ source code? If > so how?
Yes, something like this is possible and has been done already. In that case, the developer compiled the C++ application as a library (using Shiboken and generatorrunner) and import that from Python (so Python becomes the "main" application if you want): http://lynxline.com/superhybrids-part-2-now-qt-pyside/ HTH :) Thomas _______________________________________________ PySide mailing list [email protected] http://lists.pyside.org/listinfo/pyside
