1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

LibWeb: Add various window transformation methods

This commit is contained in:
auipc 2024-02-21 04:17:27 -05:00 committed by Sam Atkins
parent 81d1b129f7
commit 6a662e0d43
3 changed files with 68 additions and 0 deletions

View file

@ -168,6 +168,11 @@ public:
i32 inner_width() const;
i32 inner_height() const;
void move_to(long, long) const;
void move_by(long, long) const;
void resize_to(long, long) const;
void resize_by(long, long) const;
double scroll_x() const;
double scroll_y() const;
void scroll(ScrollToOptions const&);