<p dir="ltr">Going from c++ to Python is usually straightforward:</p>
<p dir="ltr">- replace the includes by imports from PyQt5<br>
- replace all -> and :: by dot <br>
- replace all Foo* foo = new Foo(…) by foo = Foo(…)<br>
- remove all &, *, voids and deletes<br>
- convert custom signals to use pyqtSignal at class level<br>
- convert connections to use new style pythonic syntax<br>
- after all above done, run the app and see what exceptions get raised, and fix iteratively, to handle any remaining discrepancies.</p>
<p dir="ltr">If you get stuck doing this, then post specifically about exception seen or what does not work and post the code (I recommend posting on <a href="http://stackoverflow.com">stackoverflow.com</a>).</p>
<p dir="ltr">Good luck,<br>
Oliver</p>
<p dir="ltr">> On 2016-01-05 8:25 PM, "Pedro Paulo" <<a href="mailto:pedropaulobmjr@hotmail.com">pedropaulobmjr@hotmail.com</a>> wrote:<br>
> ><br>
> > Can someone convert this code (<a href="http://www.davidwdrell.net/wordpress/?page_id=46">http://www.davidwdrell.net/wordpress/?page_id=46</a>) to python?<br>
> > I can't and that's exactly what I need to my implementation. If someone can help me with this, really thanks!<br>
> ><br>
> > _______________________________________________<br>
> > PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com">PyQt@riverbankcomputing.com</a><br>
> > <a href="https://www.riverbankcomputing.com/mailman/listinfo/pyqt">https://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</p>