2020-06-27 18:30:29 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-27 18:30:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
2022-03-04 10:41:12 -05:00
|
|
|
#include <AK/Function.h>
|
2022-09-01 12:21:47 +02:00
|
|
|
#include <AK/WeakPtr.h>
|
2020-06-27 18:30:29 +02:00
|
|
|
#include <LibCore/Forward.h>
|
2022-09-01 12:21:47 +02:00
|
|
|
#include <LibJS/Heap/Cell.h>
|
|
|
|
#include <LibJS/Heap/GCPtr.h>
|
2020-06-27 18:30:29 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
2022-03-07 23:54:56 +01:00
|
|
|
namespace Web::HTML {
|
2020-06-27 18:30:29 +02:00
|
|
|
|
2022-09-01 12:21:47 +02:00
|
|
|
class Timer final : public JS::Cell {
|
|
|
|
JS_CELL(Timer, JS::Cell);
|
|
|
|
|
2020-06-27 18:30:29 +02:00
|
|
|
public:
|
2023-03-14 06:55:34 -04:00
|
|
|
static JS::NonnullGCPtr<Timer> create(JS::Object&, i32 milliseconds, Function<void()> callback, i32 id);
|
2022-09-01 12:21:47 +02:00
|
|
|
virtual ~Timer() override;
|
2020-06-27 18:30:29 +02:00
|
|
|
|
2022-03-04 10:41:12 -05:00
|
|
|
void start();
|
2020-06-27 18:30:29 +02:00
|
|
|
|
|
|
|
private:
|
2023-03-14 06:55:34 -04:00
|
|
|
Timer(JS::Object& window, i32 milliseconds, Function<void()> callback, i32 id);
|
2020-06-27 18:30:29 +02:00
|
|
|
|
2022-09-01 12:21:47 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2022-09-07 20:30:31 +02:00
|
|
|
RefPtr<Platform::Timer> m_timer;
|
2023-03-14 06:55:34 -04:00
|
|
|
JS::NonnullGCPtr<JS::Object> m_window_or_worker_global_scope;
|
2022-09-01 12:21:47 +02:00
|
|
|
Function<void()> m_callback;
|
2022-03-04 10:41:12 -05:00
|
|
|
i32 m_id { 0 };
|
2020-06-27 18:30:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|