16 virtual bool Initialize(
CreateInfo& createInfo)
override;
17 virtual void Show()
override;
18 virtual void Hide()
override;
19 virtual bool ShouldClose()
override;
20 virtual void HandleEvents()
override;
21 virtual void SetFullscreen(FullscreenMode mode)
override;
22 virtual void GetWindowRect(
unsigned int& left,
unsigned int& top,
unsigned int& right,
unsigned int& bottom)
const override;
23 virtual void GetWindowSize(
unsigned int& width,
unsigned int& height)
const override;
24 virtual void SetWindowSize(
unsigned int width,
unsigned int height)
override;
25 virtual void SetMousePos(
unsigned int x,
unsigned int y)
override;
26 virtual void GetMousePos(
unsigned int& x,
unsigned int& y)
const override;
27 virtual void SetWindowPos(
unsigned int x,
unsigned int y)
override;
28 virtual void GetWindowPos(
unsigned int& x,
unsigned int& y)
const override;
29 virtual bool GetWindowFocus()
const override;
30 virtual void SetWindowFocus(
bool isFocused)
override;
31 virtual bool GetWindowMinimized()
const override;
32 virtual void GetTitle(
char* allocatedBuffer)
const override;
33 virtual void SetTitle(
const char* title)
override;
34 virtual void SetWindowAlpha(
float alpha)
override;
35 virtual float GetWindowDpiScale()
const override;
36 virtual void Close()
override;
38 virtual bool CopyStringToClipboard(
const std::string& stringToCopy)
override;
39 virtual std::filesystem::path BrowseFolder(std::filesystem::path& defaultPath)
override;
40 virtual std::filesystem::path OpenFileDialogue(
const char* filter)
override;
41 virtual std::filesystem::path SaveFileDialogue(
const char* filter)
override;
42 virtual void ExplorePath(
const char* path)
override;
43 virtual void OpenFileUsingDefaultProgram(
const char* path)
override;
45 HWND GetHandle()
const;
47 static LRESULT CALLBACK sWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
48 LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
55 FullscreenMode fullscreenMode;