mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
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 *
44 lines
985 B
C++
44 lines
985 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Traits.h>
|
|
|
|
class WindowIdentifier {
|
|
public:
|
|
WindowIdentifier() = default;
|
|
WindowIdentifier(int client_id, int window_id)
|
|
: m_client_id(client_id)
|
|
, m_window_id(window_id)
|
|
{
|
|
}
|
|
|
|
int client_id() const { return m_client_id; }
|
|
int window_id() const { return m_window_id; }
|
|
|
|
bool operator==(const WindowIdentifier& other) const
|
|
{
|
|
return m_client_id == other.m_client_id && m_window_id == other.m_window_id;
|
|
}
|
|
|
|
bool is_valid() const
|
|
{
|
|
return m_client_id != -1 && m_window_id != -1;
|
|
}
|
|
|
|
private:
|
|
int m_client_id { -1 };
|
|
int m_window_id { -1 };
|
|
};
|
|
|
|
namespace AK {
|
|
template<>
|
|
struct Traits<WindowIdentifier> : public GenericTraits<WindowIdentifier> {
|
|
static unsigned hash(const WindowIdentifier& w) { return pair_int_hash(w.client_id(), w.window_id()); }
|
|
};
|
|
}
|