Notes about rendering and todo list
[tecorrec.git] / tcViewportWidget.h
blob0d699cf05cd6552c8e28613da3329e84bd4a41b1
1 /***************************************************************************
2 * This file is part of Tecorrec. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * Tecorrec is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * Tecorrec is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with Tecorrec. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _tcViewportWidget_h_
21 #define _tcViewportWidget_h_
23 /**
24 * @file tcViewportWidget.h
25 * @brief OpenGL viewport widget.
28 #include <QGLWidget>
29 #include <QPointF>
31 class tcObserver;
32 class tcGlobe;
34 /// OpenGL viewport widget.
35 class tcViewportWidget : public QGLWidget
37 Q_OBJECT
39 public:
42 * Constructors + destructor
45 /// Primary constructor.
46 tcViewportWidget(QWidget* parent);
48 /// Destructor.
49 virtual ~tcViewportWidget();
52 * Modifiers
55 /// Set the globe object.
56 void setGlobe(tcGlobe* globe);
58 protected:
61 * Rendering
64 // Reimplemented
65 virtual void initializeGL();
67 // Reimplemented
68 virtual void resizeGL(int w, int h);
70 // Reimplemented
71 virtual void paintGL();
74 * Mouse events
77 // Reimplemented
78 virtual void mouseMoveEvent(QMouseEvent* event);
80 // Reimplemented
81 virtual void mousePressEvent(QMouseEvent* event);
83 // Reimplemented
84 virtual void mouseReleaseEvent(QMouseEvent* event);
86 // Reimplemented
87 virtual void wheelEvent(QWheelEvent* event);
89 private:
92 * Variables
95 /// Observer.
96 tcObserver* m_observer;
98 /// Globe to display.
99 tcGlobe* m_globe;
102 * Interaction
105 /// Are we currently interacting?
106 bool m_mouseInteracting;
108 /// Previous mouse position.
109 QPointF m_mousePos;
112 #endif