27 #include <tqscrollview.h>
28 #include <tqptrlist.h>
30 class LineView : public TQScrollView
35 LineView( TQWidget *parent = 0, const char *name = 0 );
40 void addLine( int start, int end );
45 void drawContents(TQPainter* p, int cx, int cy, int cw, int ch);
49 Line( int c, int s, int e ) : column( c ), start( s ), end( e ) {}
55 TQPtrList<Line> mLines;
|