X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=sigview.h;h=34eeb95993e8f27eb1878db4b449595daed6684f;hb=6fb67b27a85f19002d43b8c8498ca7d2979401b0;hp=ccbc8c84eb78d8e944bff478b00cfdcc68fc55e4;hpb=7cd5faf8cfed1871195aed7a4c325342172944b3;p=pulseview.git diff --git a/sigview.h b/sigview.h index ccbc8c8..34eeb95 100644 --- a/sigview.h +++ b/sigview.h @@ -24,6 +24,8 @@ #include #include +class QPainter; +class QPaintEvent; class SigSession; class SigView : public QGLWidget @@ -32,6 +34,14 @@ class SigView : public QGLWidget private: static const int SignalHeight; + static const int LabelMarginWidth; + static const int RulerHeight; + + static const int MinorTickSubdivision; + static const int ScaleUnits[3]; + + static const QString SIPrefixes[9]; + static const int FirstSIPrefixPower; public: explicit SigView(SigSession &session, QWidget *parent = 0); @@ -42,21 +52,26 @@ protected: void resizeGL(int width, int height); - void paintGL(); + void paintEvent(QPaintEvent *event); private: void mouseMoveEvent(QMouseEvent *event); void mousePressEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); +private: + void setupViewport(int width, int height); + + void paintRuler(QPainter &p); + private slots: void dataUpdated(); private: SigSession &_session; - uint64_t _scale; - int64_t _offset; + double _scale; + double _offset; }; #endif // SIGVIEW_H