1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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(); } } } }