1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSize

This fits nicer with FloatRect,FloatPoint,FloatSize and gives a much
better visual clue about what type of metric is being used.
This commit is contained in:
Andreas Kling 2020-06-10 10:57:59 +02:00
parent 656b01eb0f
commit 116cf92156
212 changed files with 1144 additions and 1144 deletions

View file

@ -41,9 +41,9 @@ static Vector<RefPtr<NotificationWindow>> s_windows;
void update_notification_window_locations()
{
Gfx::Rect last_window_rect;
Gfx::IntRect last_window_rect;
for (auto& window : s_windows) {
Gfx::Point new_window_location;
Gfx::IntPoint new_window_location;
if (last_window_rect.is_null())
new_window_location = GUI::Desktop::the().rect().top_right().translated(-window->rect().width() - 24, 26);
else
@ -64,13 +64,13 @@ NotificationWindow::NotificationWindow(const String& text, const String& title,
set_resizable(false);
set_minimizable(false);
Gfx::Rect lowest_notification_rect_on_screen;
Gfx::IntRect lowest_notification_rect_on_screen;
for (auto& window : s_windows) {
if (window->m_original_rect.y() > lowest_notification_rect_on_screen.y())
lowest_notification_rect_on_screen = window->m_original_rect;
}
Gfx::Rect rect;
Gfx::IntRect rect;
rect.set_width(220);
rect.set_height(40);
rect.set_location(GUI::Desktop::the().rect().top_right().translated(-rect.width() - 24, 26));

View file

@ -35,12 +35,12 @@ class NotificationWindow final : public GUI::Window {
public:
virtual ~NotificationWindow() override;
void set_original_rect(Gfx::Rect original_rect) { m_original_rect = original_rect; };
void set_original_rect(Gfx::IntRect original_rect) { m_original_rect = original_rect; };
private:
NotificationWindow(const String& text, const String& title, const Gfx::ShareableBitmap&);
Gfx::Rect m_original_rect;
Gfx::IntRect m_original_rect;
};
}