openPSTD  2.0
Open source simulation for sound propagation in urban environments
InteractiveLayer.h
1 // This file is part of openPSTD. //
3 // //
4 // openPSTD is free software: you can redistribute it and/or modify //
5 // it under the terms of the GNU General Public License as published by //
6 // the Free Software Foundation, either version 3 of the License, or //
7 // (at your option) any later version. //
8 // //
9 // openPSTD is distributed in the hope that it will be useful, //
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
12 // GNU General Public License for more details. //
13 // //
14 // You should have received a copy of the GNU General Public License //
15 // along with openPSTD. If not, see <http://www.gnu.org/licenses/>. //
16 // //
18 
20 //
21 // Date:
22 //
23 //
24 // Authors:
25 //
26 //
27 // Purpose:
28 //
29 //
31 
32 //
33 // Created by michiel on 30-8-2015.
34 //
35 
36 #ifndef OPENPSTD_INTERACTIVELAYER_H
37 #define OPENPSTD_INTERACTIVELAYER_H
38 
39 #include "Viewer2D.h"
40 namespace OpenPSTD
41 {
42  namespace GUI
43  {
44  class InteractiveLayer : public Layer
45  {
46  private:
47  std::unique_ptr<QOpenGLShaderProgram> program;
48  bool addDomainVisible;
49  bool selectionVisible;
50  unsigned int newDomainBuffer;
51  unsigned int selectionBuffer;
52  QColor newDomainColor;
53  QColor selectionColor;
54  public:
56 
57  virtual void InitializeGL(QObject *context, std::unique_ptr<QOpenGLFunctions, void (*)(void *)> const &f);
58 
59  virtual void PaintGL(QObject *context, std::unique_ptr<QOpenGLFunctions, void (*)(void *)> const &f);
60 
61  virtual void UpdateScene(std::shared_ptr<Model> const &m,
62  std::unique_ptr<QOpenGLFunctions, void (*)(void *)> const &f);
63 
64  virtual MinMaxValue GetMinMax();
65  };
66 
67  }
68 }
69 
70 #endif //OPENPSTD_INTERACTIVELAYER_H
This is the general namespace of the OpenPSTD application.
Definition: Boundary.cpp:33
Definition: Viewer2D.h:115
Definition: Viewer2D.h:57
Definition: InteractiveLayer.h:44