ladybird/Userland/Libraries/LibWeb/DOM/Timer.h
Brian Gianforcaro 1682f0b760 Everything: Move to SPDX license identifiers in all files.
SPDX License Identifiers are a more compact / standardized
way of representing file license information.

See: https://spdx.dev/resources/use/#identifiers

This was done with the `ambr` search and replace tool.

 ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-22 11:22:27 +02:00

44 lines
951 B
C++

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Forward.h>
#include <LibCore/Forward.h>
#include <LibJS/Heap/Handle.h>
#include <LibJS/Runtime/Function.h>
#include <LibWeb/Forward.h>
namespace Web::DOM {
class Timer final : public RefCounted<Timer> {
public:
enum class Type {
Interval,
Timeout,
};
static NonnullRefPtr<Timer> create_interval(Window&, int milliseconds, JS::Function&);
static NonnullRefPtr<Timer> create_timeout(Window&, int milliseconds, JS::Function&);
~Timer();
i32 id() const { return m_id; }
Type type() const { return m_type; }
JS::Function& callback() { return *m_callback.cell(); }
private:
Timer(Window&, Type, int ms, JS::Function&);
Window& m_window;
RefPtr<Core::Timer> m_timer;
Type m_type;
int m_id { 0 };
JS::Handle<JS::Function> m_callback;
};
}