X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=sigview.cpp;h=565e67e2eb8a4d968c5fcf8d0be78727168797a3;hp=ac7e76c8fe5185bd7fcd33bd75b7957ecb70e086;hb=e3f65ace22c6bcd371967302f8d01d0769e3a23f;hpb=6fa02541c670ebdd8a1985a29aba798823469f64 diff --git a/sigview.cpp b/sigview.cpp index ac7e76c8..565e67e2 100644 --- a/sigview.cpp +++ b/sigview.cpp @@ -20,7 +20,63 @@ #include "sigview.h" -SigView::SigView(QWidget *parent) : - QAbstractScrollArea(parent) +#include "sigsession.h" +#include "signal.h" + +#include + +using namespace boost; +using namespace std; + +const int SigView::SignalHeight = 50; + +SigView::SigView(SigSession &session, QWidget *parent) : + QGLWidget(parent), + _session(session) +{ + connect(&_session, SIGNAL(dataUpdated()), + this, SLOT(dataUpdated())); + + setMouseTracking(true); +} + +void SigView::initializeGL() { + glDisable(GL_TEXTURE_2D); + glDisable(GL_DEPTH_TEST); + glDisable(GL_COLOR_MATERIAL); + glEnable(GL_BLEND); + glEnable(GL_POLYGON_SMOOTH); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + glClearColor(1.0, 1.0, 1.0, 0); } + +void SigView::resizeGL(int width, int height) +{ + glViewport(0, 0, (GLint)width, (GLint)height); + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + glOrtho(0, width, height, 0, -1, 1); + glMatrixMode(GL_MODELVIEW); +} + +void SigView::paintGL() +{ + glClear(GL_COLOR_BUFFER_BIT); + + QRect rect(0, 0, width(), SignalHeight); + const vector< shared_ptr > &sigs = + _session.get_signals(); + BOOST_FOREACH(const shared_ptr s, sigs) + { + assert(s); + s->paint(*this, rect); + rect.translate(0, SignalHeight); + } +} + +void SigView::dataUpdated() +{ + update(); +} +