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

LibWeb+WebContent: Add abstraction layer for event loop and timers

Instead of using Core::EventLoop and Core::Timer directly, LibWeb now
goes through a Web::Platform abstraction layer instead.

This will allow us to plug in Qt's event loop (and QTimer) over in
Ladybird, to avoid having to deal with multiple event loops.
This commit is contained in:
Andreas Kling 2022-09-07 20:30:31 +02:00
parent 7e5a8bd4b0
commit 9567e211e7
28 changed files with 365 additions and 42 deletions

View file

@ -0,0 +1,40 @@
/*
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Function.h>
#include <AK/RefCounted.h>
namespace Web::Platform {
class Timer : public RefCounted<Timer> {
public:
static NonnullRefPtr<Timer> create();
static NonnullRefPtr<Timer> create_repeating(int interval_ms, Function<void()>&& timeout_handler);
static NonnullRefPtr<Timer> create_single_shot(int interval_ms, Function<void()>&& timeout_handler);
virtual ~Timer();
virtual void start() = 0;
virtual void start(int interval_ms) = 0;
virtual void restart() = 0;
virtual void restart(int interval_ms) = 0;
virtual void stop() = 0;
virtual void set_active(bool) = 0;
virtual bool is_active() const = 0;
virtual int interval() const = 0;
virtual void set_interval(int interval_ms) = 0;
virtual bool is_single_shot() const = 0;
virtual void set_single_shot(bool) = 0;
Function<void()> on_timeout;
};
}