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

Ladybird: Send window size and position to WebContent process

This commit is contained in:
Aliaksandr Kalenik 2023-03-08 23:57:24 +03:00 committed by Andreas Kling
parent 24d5bf8173
commit b51090e83e
4 changed files with 32 additions and 1 deletions

View file

@ -54,9 +54,12 @@ public slots:
void copy_selected_text();
protected:
bool eventFilter(QObject* obj, QEvent* event);
bool eventFilter(QObject* obj, QEvent* event) override;
private:
virtual void resizeEvent(QResizeEvent*) override;
virtual void moveEvent(QMoveEvent*) override;
void debug_request(DeprecatedString const& request, DeprecatedString const& argument = "");
QTabWidget* m_tabs_container { nullptr };