diff options
author | crupest <crupest@outlook.com> | 2018-09-25 13:08:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-25 13:08:40 +0800 |
commit | 4b86554a0354d78efeb40e551eaccaac0fecd1d1 (patch) | |
tree | c8a73d848401f523ff91fe8ed1b0887aa88bbfb8 /CruUI/ui/events/ui_event.cpp | |
parent | cea138417c54d6cf8043b6334c22e3af957d26f8 (diff) | |
download | cru-4b86554a0354d78efeb40e551eaccaac0fecd1d1.tar.gz cru-4b86554a0354d78efeb40e551eaccaac0fecd1d1.tar.bz2 cru-4b86554a0354d78efeb40e551eaccaac0fecd1d1.zip |
Change the structure of project.
Diffstat (limited to 'CruUI/ui/events/ui_event.cpp')
-rw-r--r-- | CruUI/ui/events/ui_event.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/CruUI/ui/events/ui_event.cpp b/CruUI/ui/events/ui_event.cpp deleted file mode 100644 index 59623bab..00000000 --- a/CruUI/ui/events/ui_event.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "ui_event.h" - -#include "ui/control.h" - -namespace cru -{ - namespace ui - { - namespace events - { - Point MouseEventArgs::GetPoint(Control* control) const - { - if (point_.has_value()) - return control->AbsoluteToLocal(point_.value()); - return Point(); - } - } - } -} |