22 #ifndef BACKENDS_PLATFORM_SDL_WINDOW_H 23 #define BACKENDS_PLATFORM_SDL_WINDOW_H 25 #include "backends/platform/sdl/sdl-sys.h" 27 #include "common/rect.h" 28 #include "common/str.h" 88 #if !SDL_VERSION_ATLEAST(3, 0, 0) 113 float getSdlDpiScalingFactor()
const;
120 bool resizable()
const {
121 #if SDL_VERSION_ATLEAST(2, 0, 0) 123 return SDL_GetWindowFlags(_window) & SDL_WINDOW_RESIZABLE;
129 bool mouseIsGrabbed()
const {
130 #if SDL_VERSION_ATLEAST(3, 0, 0) 132 return SDL_GetWindowMouseGrab(_window);
134 #elif SDL_VERSION_ATLEAST(2, 0, 0) 136 return SDL_GetWindowGrab(_window) == SDL_TRUE;
139 return _inputGrabState;
142 bool mouseIsLocked()
const {
143 #if SDL_VERSION_ATLEAST(3, 0, 0) 144 return SDL_GetWindowRelativeMouseMode(_window);
145 #elif SDL_VERSION_ATLEAST(2, 0, 0) 146 return SDL_GetRelativeMouseMode() == SDL_TRUE;
148 return _inputLockState;
155 bool _inputGrabState, _inputLockState;
159 void getDisplayDpi(
float *dpi,
float *defaultDpi)
const;
161 #if SDL_VERSION_ATLEAST(2, 0, 0) 166 SDL_Window *getSDLWindow()
const {
return _window; }
171 int getDisplayIndex()
const;
181 virtual bool createOrUpdateWindow(
int width,
int height, uint32 flags);
186 void destroyWindow();
void setResizable(bool resizable)
void setMouseRect(const Common::Rect &rect)
Definition: sdl-window.h:205
void setWindowCaption(const Common::String &caption)
bool warpMouseInWindow(int x, int y)
bool lockMouse(bool lock)
bool hasMouseFocus() const
void grabMouse(bool grab)
bool getSDLWMInformation(SDL_SysWMinfo *info) const
Definition: sdl-window.h:30
virtual float getDpiScalingFactor() const
virtual void setupIcon()
Definition: sdl-window.h:207