Overte C++ Documentation
GLCanvas.h
1 //
2 // GLCanvas.h
3 // interface/src
4 //
5 // Created by Stephen Birarda on 8/14/13.
6 // Copyright 2013 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_GLCanvas_h
13 #define hifi_GLCanvas_h
14 
15 #include <gl/GLWidget.h>
16 
18 class GLCanvas : public GLWidget {
19  Q_OBJECT
20 protected:
21  virtual bool event(QEvent* event) override;
22 };
23 
24 
25 #endif // hifi_GLCanvas_h
customized canvas that simply forwards requests/events to the singleton application
Definition: GLCanvas.h:18
customized canvas that simply forwards requests/events to the singleton application
Definition: GLWidget.h:22