#pragma once #include "overlay.h" #define GL_GLEXT_PROTOTYPES #include "util.h" #include const vr::HmdMatrix34_t DEFAULT_POSE = {{{1, 0, 0, 0}, {0, 1, 0, 1}, {0, 0, 1, 0}}}; class App; class Overlay; class Panel { public: Panel(App *app, vr::HmdMatrix34_t start_pose, int index, int xmin, int xmax, int ymin, int ymax); void Update(); void SetHidden(bool state); Overlay *GetOverlay(); private: void Render(); void UpdateCursor(); App *_app; int _index; int _x, _y; int _width, _height; Overlay _overlay; vr::Texture_t _texture; GLuint _gl_texture; };