Loading...
Searching...
No Matches
glDebugWindow.h
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
31PXR_NAMESPACE_OPEN_SCOPE
32
33
34class Garch_GLPlatformDebugWindow;
35
41public:
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,
60 MyButton3 = 2
61 };
62 enum ModifierKeys {
63 NoModifiers = 0,
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
88private:
89 Garch_GLPlatformDebugWindow *_private;
90 std::string _title;
91 int _width, _height;
92};
93
94
95PXR_NAMESPACE_CLOSE_SCOPE
96
97#endif // PXR_IMAGING_GARCH_GL_DEBUG_WINDOW_H
Platform specific minimum GL widget for unit tests.
Definition: glDebugWindow.h:40