]> sigrok.org Git - pulseview.git/blob - sigview.cpp
4097ae5c25fe1f316b4cd9359dbe44b79bd8a8cf
[pulseview.git] / sigview.cpp
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include "sigview.h"
22
23 #include "sigsession.h"
24 #include "signal.h"
25
26 #include <QMouseEvent>
27
28 #include <boost/foreach.hpp>
29
30 using namespace boost;
31 using namespace std;
32
33 const int SigView::SignalHeight = 50;
34
35 SigView::SigView(SigSession &session, QWidget *parent) :
36         QGLWidget(parent),
37         _session(session),
38         _scale(1e-6),
39         _offset(0)
40 {
41         connect(&_session, SIGNAL(dataUpdated()),
42                 this, SLOT(dataUpdated()));
43
44         setMouseTracking(true);
45 }
46
47 void SigView::initializeGL()
48 {
49         glDisable(GL_TEXTURE_2D);
50         glDisable(GL_DEPTH_TEST);
51         glDisable(GL_COLOR_MATERIAL);
52         glEnable(GL_BLEND);
53         glEnable(GL_POLYGON_SMOOTH);
54         glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
55         glClearColor(1.0, 1.0, 1.0, 0);
56 }
57
58 void SigView::resizeGL(int width, int height)
59 {
60         glViewport(0, 0, (GLint)width, (GLint)height);
61         glMatrixMode(GL_PROJECTION);
62         glLoadIdentity();
63         glOrtho(0, width, height, 0, -1, 1);
64         glMatrixMode(GL_MODELVIEW);
65 }
66
67 void SigView::paintGL()
68 {
69         glClear(GL_COLOR_BUFFER_BIT);
70
71         QRect rect(0, 0, width(), SignalHeight);
72         const vector< shared_ptr<Signal> > &sigs =
73                 _session.get_signals();
74         BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
75         {
76                 assert(s);
77                 s->paint(*this, rect, _scale, _offset);
78                 rect.translate(0, SignalHeight);
79         }
80 }
81
82 void SigView::dataUpdated()
83 {
84         update();
85 }
86
87 void SigView::mouseMoveEvent(QMouseEvent *event)
88 {
89         assert(event);
90 }
91
92 void SigView::mousePressEvent(QMouseEvent *event)
93 {
94         assert(event);
95 }
96
97 void SigView::mouseReleaseEvent(QMouseEvent *event)
98 {
99         assert(event);
100
101         const double cursor_offset = _offset + _scale * (double)event->x();
102
103         switch(event->button())
104         {
105         case Qt::LeftButton:
106                 _scale *= 2.0 / 3.0;
107                 break;
108
109         case Qt::RightButton:
110                 _scale *= 3.0 / 2.0;
111                 break;
112         }
113
114         _offset = cursor_offset - _scale * (double)event->x();
115
116         updateGL();
117 }
118