g2o
g2o_qglviewer.h
Go to the documentation of this file.
1 // g2o - General Graph Optimization
2 // Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
3 //
4 // This file is part of g2o.
5 //
6 // g2o 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 3 of the License, or
9 // (at your option) any later version.
10 //
11 // g2o 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 g2o. If not, see <http://www.gnu.org/licenses/>.
18 
19 #ifndef G2O_QGL_GRAPH_VIEWER_H
20 #define G2O_QGL_GRAPH_VIEWER_H
21 
22 #include "qglviewer.h"
23 #include "g2o_viewer_api.h"
25 
26 namespace g2o {
27 
28  class SparseOptimizer;
29 
33  class G2O_VIEWER_API G2oQGLViewer : public QGLViewer
34  {
35  public:
36  G2oQGLViewer(QWidget* parent=NULL, const QGLWidget* shareWidget=0, Qt::WindowFlags flags=0);
37  ~G2oQGLViewer();
38  void draw();
39  void init();
40 
45  bool updateDisplay() const { return _updateDisplay;}
46  void setUpdateDisplay(bool updateDisplay);
47 
48  DrawAction::Parameters* parameters() { return _drawActionParameters;}
49 
50  public:
52 
53  protected:
55  GLuint _drawList;
58  };
59 
60 } // end namespace
61 
62 #endif
SparseOptimizer * graph
Definition: g2o_qglviewer.h:51
Abstract action that operates on a graph entity.
#define G2O_VIEWER_API
HyperGraphElementAction * _drawActions
Definition: g2o_qglviewer.h:54
bool updateDisplay() const
Definition: g2o_qglviewer.h:45
class G2O_CORE_API SparseOptimizer
OpenGL based viewer for the graph.
Definition: g2o_qglviewer.h:33
DrawAction::Parameters * parameters()
Definition: g2o_qglviewer.h:48
void updateDisplay(ostream &os, const SparseOptimizer &optimizer)
Definition: g2o-unfold.cpp:83
DrawAction::Parameters * _drawActionParameters
Definition: g2o_qglviewer.h:57