On Thu, 2 Jul 2009 08:09:41 +0200, Constantin Bergatt <[email protected]> wrote: > I want to write a graphical user interface to monitor and visualize > different streams of data. > For that reason I would like to have a main window and for each data > stream a single plugin > which can be loaded as a subwindow into the main window. > > As for the implementation I would like to be able to use PyQt (for > fast prototyping) as well as > standard C++ Qt (for speed). Is it possible to write such a graphical > user interface? > How can I combine the PyQt and the Qt Applications? > > I would be thankful for any suggestions.
My approach would be to write it all in Python and only then identify the areas that really need a C++ implementation. I would then put that C++ code in a library and use SIP to generate a Python module. Phil _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
