forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.cpp
88 lines (74 loc) · 1.88 KB
/
message.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Aseprite UI Library
// Copyright (C) 2018-2021 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ui/message.h"
#include "base/memory.h"
#include "os/system.h"
#include "ui/display.h"
#include "ui/widget.h"
#include <cstring>
namespace ui {
Message::Message(MessageType type, KeyModifiers modifiers)
: m_type(type)
, m_flags(0)
, m_display(nullptr)
, m_recipient(nullptr)
, m_commonAncestor(nullptr)
{
if (modifiers == kKeyUninitializedModifier && os::instance())
m_modifiers = os::instance()->keyModifiers();
else
m_modifiers = modifiers;
}
Message::~Message()
{
}
void Message::setDisplay(Display* display)
{
m_display = display;
}
void Message::setRecipient(Widget* widget)
{
ASSERT(m_recipient == nullptr);
ASSERT_VALID_WIDGET(widget);
m_recipient = widget;
}
void Message::removeRecipient(Widget* widget)
{
if (m_recipient == widget)
m_recipient = nullptr;
}
KeyMessage::KeyMessage(MessageType type,
KeyScancode scancode,
KeyModifiers modifiers,
int unicodeChar, int repeat)
: Message(type, modifiers)
, m_scancode(scancode)
, m_unicodeChar(unicodeChar)
, m_repeat(repeat)
, m_isDead(false)
{
setPropagateToParent(true);
}
gfx::Point MouseMessage::positionForDisplay(Display* anotherDisplay) const
{
if (display() == anotherDisplay) {
return position(); // There is no need for transformation
}
else {
ASSERT(anotherDisplay);
ASSERT(anotherDisplay->nativeWindow());
return anotherDisplay->nativeWindow()->pointFromScreen(screenPosition());
}
}
gfx::Point MouseMessage::screenPosition() const
{
return display()->nativeWindow()->pointToScreen(position());
}
} // namespace ui