so what I'm doing is building my own python IDE using PyQt.
nothing can do what I need it to without a loss of something else, let alone properly.
so I'm using a QPainter and getting the best results yet.
however I'm having a problem trying to build indent guides like NotePad++ or VS2010 among other IDEs.
what I need to do is build an array specifying the indentation level as an int (basically the amount of tabs to draw) for each line
I've been trying to do it using python's tokenize, however I can't seem to get it to properly indent then dedent.
anyone know of anything better??
thanks :).