forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.cpp
85 lines (68 loc) · 1.69 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
// Aseprite UI Library
// Copyright (C) 2001-2017 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 "she/system.h"
#include "ui/manager.h"
#include "ui/widget.h"
#include <cstring>
namespace ui {
Message::Message(MessageType type, KeyModifiers modifiers)
: m_type(type)
, m_used(false)
, m_fromFilter(false)
{
if (modifiers == kKeyUninitializedModifier && she::instance())
m_modifiers = she::instance()->keyModifiers();
else
m_modifiers = modifiers;
}
Message::~Message()
{
}
void Message::addRecipient(Widget* widget)
{
ASSERT_VALID_WIDGET(widget);
m_recipients.push_back(widget);
}
void Message::prependRecipient(Widget* widget)
{
ASSERT_VALID_WIDGET(widget);
m_recipients.insert(m_recipients.begin(), widget);
}
void Message::removeRecipient(Widget* widget)
{
for (WidgetsList::iterator
it = m_recipients.begin(),
end = m_recipients.end(); it != end; ++it) {
if (*it == widget)
*it = NULL;
}
}
void Message::broadcastToChildren(Widget* widget)
{
ASSERT_VALID_WIDGET(widget);
for (auto child : widget->children())
broadcastToChildren(child);
addRecipient(widget);
}
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)
, m_propagate_to_children(false)
, m_propagate_to_parent(true)
{
}
} // namespace ui