X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=sigview.h;h=0d1c06f7ca0f29339c5091507704432adbc183e0;hb=e9c41f8ce607164040ce86abd35a0a8751193f1f;hp=780d765ae5ecbfbc04f40b7a2a55adb3b631de49;hpb=009e1503d46291cbc33cdb900761eaa505fd6269;p=pulseview.git diff --git a/sigview.h b/sigview.h index 780d765..0d1c06f 100644 --- a/sigview.h +++ b/sigview.h @@ -24,11 +24,21 @@ #include #include +class QPainter; +class QPaintEvent; class SigSession; class SigView : public QGLWidget { Q_OBJECT + +private: + static const int SignalHeight; + static const int LabelMarginWidth; + static const int RulerHeight; + + static const int ScaleUnits[3]; + public: explicit SigView(SigSession &session, QWidget *parent = 0); @@ -38,13 +48,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; + + double _scale; + double _offset; }; #endif // SIGVIEW_H