Reverse engineering to get answers

Posted by cornjuliox on Stack Overflow See other posts from Stack Overflow or by cornjuliox
Published on 2010-01-19T06:20:43Z Indexed on 2010/03/24 9:03 UTC
Read the original article Hit count: 569

Filed under:

So I've spent the last few days looking for a way to create a simple image drawing app with wxPython, and I think the key to doing just that is understanding how to use Device Contexts. The problem is that the wxPython demo program doesn't demonstrate DCs, and the docs for both wxPython and wxWidgets don't explain as much as I'd like to know so I've decided to try and 'reverse engineer' an existing app to see how its done.

The first problem I have is that I don't know of any drawing apps written in wxPython (or any written in Python for that matter o.o), and the second is I don't know how I'd go about doing it. Am I right in saying that I'm going to need a copy of an application's Python source and something like Winpdb? What do professional programmers do when they find themselves in a situation like mine, needing answers that the docs don't provide?

© Stack Overflow or respective owner

Related posts about reverse-engineering