]> sigrok.org Git - pulseview.git/blame - sigview.cpp
Added session file open support
[pulseview.git] / sigview.cpp
CommitLineData
6fa02541
JH
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
23SigView::SigView(QWidget *parent) :
d7002724 24 QGLWidget(parent)
6fa02541 25{
d7002724
JH
26 setMouseTracking(true);
27}
28
29void SigView::initializeGL()
30{
31 glDisable(GL_TEXTURE_2D);
32 glDisable(GL_DEPTH_TEST);
33 glDisable(GL_COLOR_MATERIAL);
34 glEnable(GL_BLEND);
35 glEnable(GL_POLYGON_SMOOTH);
36 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
37 glClearColor(1.0, 1.0, 1.0, 0);
38}
39
40void SigView::resizeGL(int width, int height)
41{
42 glViewport(0, 0, (GLint)width, (GLint)height);
43 glMatrixMode(GL_PROJECTION);
44 glLoadIdentity();
45 glOrtho(0, width, height, 0, -1, 1);
46 glMatrixMode(GL_MODELVIEW);
47}
48
49void SigView::paintGL()
50{
51 glClear(GL_COLOR_BUFFER_BIT);
6fa02541 52}