2019-12-11 00:51:42 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-04-01 14:53:44 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2019-12-11 00:51:42 -05:00
|
|
|
struct Window;
|
2019-12-30 20:53:11 -05:00
|
|
|
struct DrawSurface;
|
2019-12-11 00:51:42 -05:00
|
|
|
struct GDevice;
|
2019-12-21 18:40:17 -05:00
|
|
|
struct IGpDisplayDriver;
|
2019-12-24 18:39:30 -05:00
|
|
|
struct Point;
|
2020-03-01 17:01:35 -05:00
|
|
|
class PLPasStr;
|
2020-02-25 23:09:09 -05:00
|
|
|
struct Rect;
|
2019-12-24 18:39:30 -05:00
|
|
|
struct Window;
|
2019-12-11 00:51:42 -05:00
|
|
|
|
|
|
|
|
namespace PortabilityLayer
|
|
|
|
|
{
|
|
|
|
|
struct WindowDef;
|
|
|
|
|
|
|
|
|
|
class WindowManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual Window *GetPutInFrontSentinel() const = 0;
|
|
|
|
|
virtual Window *CreateWindow(const WindowDef &windowDef) = 0;
|
|
|
|
|
virtual void ResizeWindow(Window *window, int width, int height) = 0;
|
|
|
|
|
virtual void MoveWindow(Window *window, int x, int y) = 0;
|
|
|
|
|
virtual void PutWindowBehind(Window *window, Window *otherWindow) = 0;
|
|
|
|
|
virtual void ShowWindow(Window *window) = 0;
|
|
|
|
|
virtual void HideWindow(Window *window) = 0;
|
2019-12-24 18:39:30 -05:00
|
|
|
virtual void FindWindow(const Point &point, Window **outWindow, short *outRegion) const = 0;
|
2019-12-30 20:53:11 -05:00
|
|
|
virtual void DestroyWindow(Window *window) = 0;
|
2020-02-25 23:09:09 -05:00
|
|
|
virtual void DragWindow(Window *window, const Point &startPoint, const Rect &constraintRect) = 0;
|
2020-03-01 17:01:35 -05:00
|
|
|
virtual void SetWindowTitle(Window *window, const PLPasStr &title) = 0;
|
2019-12-11 00:51:42 -05:00
|
|
|
|
2019-12-21 18:40:17 -05:00
|
|
|
virtual void RenderFrame(IGpDisplayDriver *displayDriver) = 0;
|
|
|
|
|
|
2020-04-01 14:53:44 -04:00
|
|
|
virtual void HandleScreenResolutionChange(uint32_t prevWidth, uint32_t prevHeight, uint32_t newWidth, uint32_t newHeight) = 0;
|
|
|
|
|
|
2019-12-11 00:51:42 -05:00
|
|
|
static WindowManager *GetInstance();
|
|
|
|
|
};
|
|
|
|
|
}
|