diff options
Diffstat (limited to 'aura/event.h')
-rw-r--r-- | aura/event.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/aura/event.h b/aura/event.h index 27a8f30..be08345 100644 --- a/aura/event.h +++ b/aura/event.h @@ -21,6 +21,8 @@ typedef union _XEvent XEvent; typedef XEvent* NativeEvent; #endif +class Window; + class Event { public: const NativeEvent& native_event() const { return native_event_; } @@ -55,6 +57,11 @@ class LocatedEvent : public Event { protected: explicit LocatedEvent(NativeEvent native_event); + // Create a new LocatedEvent which is identical to the provided model. + // If source / target windows are provided, the model location will be + // converted from |source| coordinate system to |target| coordinate system. + LocatedEvent(const LocatedEvent& model, Window* source, Window* target); + gfx::Point location_; private: @@ -65,6 +72,11 @@ class MouseEvent : public LocatedEvent { public: explicit MouseEvent(NativeEvent native_event); + // Create a new MouseEvent which is identical to the provided model. + // If source / target windows are provided, the model location will be + // converted from |source| coordinate system to |target| coordinate system. + MouseEvent(const MouseEvent& model, Window* source, Window* target); + private: DISALLOW_COPY_AND_ASSIGN(MouseEvent); }; |