diff options
Diffstat (limited to 'src/ui/events/ui_event.cpp')
-rw-r--r-- | src/ui/events/ui_event.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ui/events/ui_event.cpp b/src/ui/events/ui_event.cpp new file mode 100644 index 00000000..59623bab --- /dev/null +++ b/src/ui/events/ui_event.cpp @@ -0,0 +1,19 @@ +#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(); + } + } + } +} |