forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hit_test_event.h
48 lines (38 loc) · 1000 Bytes
/
hit_test_event.h
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
// Aseprite UI Library
// Copyright (C) 2001-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_HIT_TEST_EVENT_H_INCLUDED
#define UI_HIT_TEST_EVENT_H_INCLUDED
#pragma once
#include "ui/event.h"
namespace ui {
enum HitTest {
HitTestNowhere,
HitTestCaption,
HitTestClient,
HitTestBorderNW,
HitTestBorderN,
HitTestBorderNE,
HitTestBorderE,
HitTestBorderSE,
HitTestBorderS,
HitTestBorderSW,
HitTestBorderW,
};
class HitTestEvent : public Event {
public:
HitTestEvent(Component* source, const gfx::Point& point, HitTest hit)
: Event(source)
, m_point(point)
, m_hit(hit) { }
gfx::Point point() const { return m_point; }
HitTest hit() const { return m_hit; }
void setHit(HitTest hit) { m_hit = hit; }
private:
gfx::Point m_point;
HitTest m_hit;
};
} // namespace ui
#endif // UI_HIT_TEST_EVENT_H_INCLUDED