aboutsummaryrefslogtreecommitdiff
path: root/CruUI/ui/events/ui_event.cpp
blob: 59623bab9a3f287fd1e63847869a3bf762d97959 (plain)
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();
            }
        }
    }
}