#include "cru/platform/gui/sdl/Window.h" #include "cru/base/Base.h" #include "cru/platform/GraphicsBase.h" #include "cru/platform/graphics/NullPainter.h" #include "cru/platform/graphics/Painter.h" #include "cru/platform/gui/Window.h" #include "cru/platform/gui/sdl/Base.h" #include "cru/platform/gui/sdl/UiApplication.h" #include #include #include #include #include #include namespace cru::platform::gui::sdl { SdlWindow::SdlWindow(SdlUiApplication* application) : application_(application), client_rect_(100, 100, 400, 200), parent_(nullptr) { application->RegisterWindow(this); } SdlWindow::~SdlWindow() { application_->UnregisterWindow(this); } bool SdlWindow::IsCreated() { return sdl_window_.has_value(); } void SdlWindow::Close() { if (sdl_window_) { SDL_DestroyWindow(*sdl_window_); } } INativeWindow* SdlWindow::GetParent() { return parent_; } void SdlWindow::SetParent(INativeWindow* parent) { parent_ = CheckPlatform(parent, GetPlatformId()); NotImplemented(); } WindowStyleFlag SdlWindow::GetStyleFlag() { return style_; } void SdlWindow::SetStyleFlag(WindowStyleFlag flag) { style_ = flag; NotImplemented(); } std::string SdlWindow::GetTitle() { NotImplemented(); } void SdlWindow::SetTitle(std::string title) { NotImplemented(); } WindowVisibilityType SdlWindow::GetVisibility() { NotImplemented(); } void SdlWindow::SetVisibility(WindowVisibilityType visibility) { NotImplemented(); } Size SdlWindow::GetClientSize() { return GetClientRect().GetSize(); } void SdlWindow::SetClientSize(const Size& size) { auto rect = GetClientRect(); SetClientRect(Rect(rect.GetLeftTop(), size)); } Rect SdlWindow::GetClientRect() { if (!sdl_window_) return {}; return client_rect_; } void SdlWindow::SetClientRect(const Rect& rect) { client_rect_ = rect; if (sdl_window_) { CheckSdlReturn(SDL_SetWindowPosition(*sdl_window_, rect.left, rect.top)); CheckSdlReturn(SDL_SetWindowSize(*sdl_window_, rect.width, rect.height)); } } Rect SdlWindow::GetWindowRect() { if (!sdl_window_) return {}; return client_rect_.Expand(GetBorderThickness()); } void SdlWindow::SetWindowRect(const Rect& rect) { SetClientRect(rect.Shrink(GetBorderThickness())); } bool SdlWindow::RequestFocus() { if (!sdl_window_) return false; NotImplemented(); } Point SdlWindow::GetMousePosition() { NotImplemented(); } bool SdlWindow::CaptureMouse() { if (!sdl_window_) return false; NotImplemented(); } bool SdlWindow::ReleaseMouse() { if (!sdl_window_) return false; NotImplemented(); } void SdlWindow::SetCursor(std::shared_ptr cursor) { if (!sdl_window_) return; NotImplemented(); } void SdlWindow::SetToForeground() { SetVisibility(WindowVisibilityType::Show); NotImplemented(); } void SdlWindow::RequestRepaint() { if (!sdl_window_) return; NotImplemented(); } std::unique_ptr SdlWindow::BeginPaint() { if (!sdl_window_.has_value()) { return std::make_unique(); } NotImplemented(); } IInputMethodContext* SdlWindow::GetInputMethodContext() { NotImplemented(); } std::optional SdlWindow::GetSdlWindow() { return sdl_window_; } SdlUiApplication* SdlWindow::GetSdlUiApplication() { return application_; } float SdlWindow::GetDisplayScale() { if (!sdl_window_) return 1.f; auto scale = SDL_GetWindowDisplayScale(*sdl_window_); if (scale == 0.f) { throw SdlException("Failed to get window display scale."); } return scale; } Thickness SdlWindow::GetBorderThickness() { if (!sdl_window_) return {}; int top, left, bottom, right; CheckSdlReturn( SDL_GetWindowBordersSize(*sdl_window_, &top, &left, &bottom, &right)); return {static_cast(left), static_cast(top), static_cast(right), static_cast(bottom)}; } } // namespace cru::platform::gui::sdl