Fixed window for Windows.
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 1m15s
Build & Release / Linux-AMD64-Build (push) Successful in 1m21s
Build & Release / Linux-AARCH64-Build (push) Successful in 3m20s

This commit is contained in:
2024-02-05 23:55:53 -08:00
parent a7331d5561
commit 586ed2dfd2
3 changed files with 50 additions and 31 deletions

View File

@@ -40,11 +40,11 @@ namespace ehs
BaseWindow& operator=(const BaseWindow& win);
virtual void Create_32(const Str_32& title, const Vec2_s32& pos, const Vec2_u32 scale) = 0;
virtual void Create_32(const Str_32& title, const Vec2_s32& pos, Vec2_u32 scale) = 0;
virtual void Create_16(const Str_16& title, const Vec2_s32& pos, const Vec2_u32 scale) = 0;
virtual void Create_16(const Str_16& title, const Vec2_s32& pos, Vec2_u32 scale) = 0;
virtual void Create_8(const Str_8& title, const Vec2_s32& pos, const Vec2_u32 scale) = 0;
virtual void Create_8(const Str_8& title, const Vec2_s32& pos, Vec2_u32 scale) = 0;
virtual void OnCreated() = 0;
@@ -60,7 +60,7 @@ namespace ehs
bool HasFocus() const;
void EnableResizing(const bool enable);
void EnableResizing(bool enable);
bool IsResizable() const;
@@ -77,7 +77,7 @@ namespace ehs
/// @returns The current status.
bool IsCursorVisible() const;
virtual void ConstrainCursor(const bool constrain) = 0;
virtual void ConstrainCursor(bool constrain) = 0;
bool IsCursorConstrained() const;
@@ -109,6 +109,6 @@ namespace ehs
virtual void SetClipboard(Serializer<UInt_64> data) = 0;
virtual void SetCursorImg(const CursorImg img) = 0;
virtual void SetCursorImg(CursorImg img) = 0;
};
}