Equalizer  1.8.0
Parallel Rendering Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
glWidget.h
1 
2 /* Copyright (c) 2014, Daniel Nachbaur <danielnachbaur@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 2.1 as published
6  * by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11  * details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  */
17 
18 #ifndef EQ_QT_GLWIDGET_H
19 #define EQ_QT_GLWIDGET_H
20 
21 #include <eq/client/qt/types.h>
22 #include <lunchbox/compiler.h> // override, final
23 #include <QGLWidget> // base class
24 
25 namespace eq
26 {
27 namespace qt
28 {
29 
30 class GLWidget : public QGLWidget
31 {
32 public:
33  GLWidget( const QGLFormat& format, const QGLWidget* shareWidget );
34  ~GLWidget() final;
35 
36  void setParent( qt::Window* parent_ );
37 
38  void initEventHandler();
39  void exitEventHandler();
40 
41  void paintEvent( QPaintEvent* ) override;
42  void resizeEvent( QResizeEvent* ) override;
43  void closeEvent( QCloseEvent* ) override;
44 
45  void mousePressEvent( QMouseEvent* ) override;
46  void mouseReleaseEvent( QMouseEvent* ) override;
47  void mouseMoveEvent( QMouseEvent* ) override;
48 #ifndef QT_NO_WHEELEVENT
49  void wheelEvent( QWheelEvent* ) override;
50 #endif
51  void keyPressEvent( QKeyEvent* ) override;
52  void keyReleaseEvent( QKeyEvent* ) override;
53 
54 private:
55  qt::Window* _parent;
56  EventHandler* _eventHandler;
57 };
58 
59 }
60 }
61 #endif // EQ_QT_GLWIDGET_H
Equalizer default implementation of a Qt window.
The event handler for Qt windows.