19 virtual bool Initialize(
CreateInfo& createInfo)
override;
20 virtual void Show()
override;
21 virtual void Hide()
override;
22 virtual bool ShouldClose()
override;
23 virtual void HandleEvents()
override;
24 virtual void SetFullscreen(FullscreenMode mode)
override;
25 virtual void GetWindowRect(
unsigned int& left,
unsigned int& top,
unsigned int& right,
unsigned int& bottom)
const override;
26 virtual void GetWindowSize(
unsigned int& width,
unsigned int& height)
const override;
27 virtual void SetWindowSize(
unsigned int width,
unsigned int height)
override;
28 virtual void SetMousePos(
unsigned int x,
unsigned int y)
override;
29 virtual void GetMousePos(
unsigned int& x,
unsigned int& y)
const override;
30 virtual void SetCursorMode(Grindstone::Input::CursorMode cursorMode)
override;
31 virtual Grindstone::Input::CursorMode GetCursorMode()
const override;
32 virtual void SetMouseIsRawMotion(
bool isRawMotion)
override;
33 virtual bool GetMouseIsRawMotion()
const override;
34 virtual void SetWindowPos(
unsigned int x,
unsigned int y)
override;
35 virtual void GetWindowPos(
unsigned int& x,
unsigned int& y)
const override;
36 virtual bool GetWindowFocus()
const override;
37 virtual void SetWindowFocus(
bool isFocused)
override;
38 virtual bool GetWindowMinimized()
const override;
39 virtual void GetTitle(
char* allocatedBuffer)
const override;
40 virtual void SetTitle(
const char* title)
override;
41 virtual void SetWindowAlpha(
float alpha)
override;
42 virtual float GetWindowDpiScale()
const override;
43 virtual void Close()
override;
45 virtual void OnSwapchainResized(
int width,
int height);
47 virtual bool CopyStringToClipboard(
const std::string& stringToCopy)
override;
48 virtual std::filesystem::path BrowseFolder(std::filesystem::path& defaultPath)
override;
49 virtual std::filesystem::path OpenFileDialogue(
const char* filter)
override;
50 virtual std::filesystem::path SaveFileDialogue(
const char* filter)
override;
51 virtual void ExplorePath(
const char* path)
override;
52 virtual void OpenFileUsingDefaultProgram(
const char* path)
override;
54 virtual GLFWwindow* GetHandle()
const;
57 GLFWwindow* windowHandle;