/usr/include/analitzagui/plotsview3d.h is in libanalitza5-dev 4:4.14.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | /*************************************************************************************
* Copyright (C) 2010-2012 by Percy Camilo T. Aucahuasi <percy.camilo.ta@gmail.com> *
* Copyright (C) 2007 by Abderrahman Taha: Basic OpenGL calls like scene, lights *
* and mouse behaviour taken from K3DSurf *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA *
*************************************************************************************/
#ifndef PLOTSVIEW3D_H
#define PLOTSVIEW3D_H
#ifdef _WIN32
#include <GL/glew.h>
#endif
#include <QGLWidget>
#include <QMouseEvent>
#include <QModelIndex>
#include "analitzaguiexport.h"
#include <analitzaplot/plotter3d.h>
class QItemSelectionModel;
namespace Analitza
{
class Surface;
class PlotItem;
/**
* \class PlotsView3D
*
* \ingroup AnalitzaGUIModule
*
* \brief Widget that allows visualization of 3D plots.
*
* This class lets you create a widget that can draw multiple 3D graphs. This widget
* use Plotter3D and OpenGL as a backend.
*/
class ANALITZAGUI_EXPORT PlotsView3D : public QGLWidget, public Plotter3D
{
Q_OBJECT
public:
PlotsView3D(QWidget* parent = 0);
virtual ~PlotsView3D();
void setSelectionModel(QItemSelectionModel* selection);
public slots:
void resetView();
private slots:
void updateFuncs(const QModelIndex &indexf,const QModelIndex &indext);
void addFuncs(const QModelIndex &index,int,int);
void removeFuncs(const QModelIndex &index,int,int);
private:
virtual int currentPlot() const { return -1 ;}
virtual void modelChanged();
virtual void renderGL();
virtual void keyPressEvent(QKeyEvent*);
virtual void wheelEvent(QWheelEvent* ev);
virtual void mousePressEvent(QMouseEvent *event);
virtual void mouseMoveEvent(QMouseEvent *event);
virtual void paintGL();
virtual void initializeGL();
virtual void resizeGL(int width, int height);
QItemSelectionModel* m_selection;
Qt::MouseButtons buttons;
double old_x, old_y;
};
}
#endif
|