HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
glDebugWindow.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_IMAGING_GARCH_GL_DEBUG_WINDOW_H
25 #define PXR_IMAGING_GARCH_GL_DEBUG_WINDOW_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/garch/api.h"
29 #include <string>
30 
32 
33 
34 class Garch_GLPlatformDebugWindow;
35 
36 /// \class GarchGLDebugWindow
37 ///
38 /// Platform specific minimum GL widget for unit tests.
39 ///
41 public:
42  GARCH_API
43  GarchGLDebugWindow(const char *title, int width, int height);
44  GARCH_API
45  virtual ~GarchGLDebugWindow();
46 
47  GARCH_API
48  void Init();
49  GARCH_API
50  void Run();
51  GARCH_API
52  void ExitApp();
53 
54  int GetWidth() const { return _width; }
55  int GetHeight() const { return _height; }
56 
57  enum Buttons {
58  MyButton1 = 0,
59  MyButton2 = 1,
61  };
62  enum ModifierKeys {
64  Shift = 1,
65  Alt = 2,
66  Ctrl = 4
67  };
68 
69  GARCH_API
70  virtual void OnInitializeGL();
71  GARCH_API
72  virtual void OnUninitializeGL();
73  GARCH_API
74  virtual void OnResize(int w, int h);
75  GARCH_API
76  virtual void OnIdle();
77  GARCH_API
78  virtual void OnPaintGL();
79  GARCH_API
80  virtual void OnKeyRelease(int key);
81  GARCH_API
82  virtual void OnMousePress(int button, int x, int y, int modKeys);
83  GARCH_API
84  virtual void OnMouseRelease(int button, int x, int y, int modKeys);
85  GARCH_API
86  virtual void OnMouseMove(int x, int y, int modKeys);
87 
88 private:
89  Garch_GLPlatformDebugWindow *_private;
90  std::string _title;
91  int _width, _height;
92 };
93 
94 
96 
97 #endif // PXR_IMAGING_GARCH_GL_DEBUG_WINDOW_H
virtual GARCH_API void OnUninitializeGL()
virtual GARCH_API void OnMouseMove(int x, int y, int modKeys)
virtual GARCH_API ~GarchGLDebugWindow()
virtual GARCH_API void OnMousePress(int button, int x, int y, int modKeys)
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
virtual GARCH_API void OnKeyRelease(int key)
int GetWidth() const
Definition: glDebugWindow.h:54
GARCH_API void Init()
GLint y
Definition: glcorearb.h:103
int GetHeight() const
Definition: glDebugWindow.h:55
GLint GLsizei GLsizei height
Definition: glcorearb.h:103
GARCH_API void ExitApp()
virtual GARCH_API void OnPaintGL()
virtual GARCH_API void OnResize(int w, int h)
GLint GLenum GLint x
Definition: glcorearb.h:409
virtual GARCH_API void OnIdle()
#define GARCH_API
Definition: api.h:40
GLfloat GLfloat GLfloat GLfloat h
Definition: glcorearb.h:2002
GARCH_API GarchGLDebugWindow(const char *title, int width, int height)
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
virtual GARCH_API void OnMouseRelease(int button, int x, int y, int modKeys)
GARCH_API void Run()
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
GLint GLsizei width
Definition: glcorearb.h:103
GLubyte GLubyte GLubyte GLubyte w
Definition: glcorearb.h:857
virtual GARCH_API void OnInitializeGL()