2019-04-24 00:20:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Traits.h>
|
|
|
|
#include <AK/kstdio.h>
|
|
|
|
|
|
|
|
class WindowIdentifier {
|
|
|
|
public:
|
|
|
|
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;
|
|
|
|
}
|
2019-05-28 09:53:16 +00:00
|
|
|
|
2019-04-24 00:20:38 +00:00
|
|
|
private:
|
|
|
|
int m_client_id { -1 };
|
|
|
|
int m_window_id { -1 };
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
template<>
|
2019-06-29 17:14:03 +00:00
|
|
|
struct Traits<WindowIdentifier> : public GenericTraits<WindowIdentifier> {
|
2019-04-24 00:20:38 +00:00
|
|
|
static unsigned hash(const WindowIdentifier& w) { return pair_int_hash(w.client_id(), w.window_id()); }
|
|
|
|
static void dump(const WindowIdentifier& w) { kprintf("WindowIdentifier(%d, %d)", w.client_id(), w.window_id()); }
|
|
|
|
};
|
|
|
|
}
|