summaryrefslogtreecommitdiffstats
path: root/ui/events/event_source.h
blob: aba2c1f6600d9a2787fc99d8ec61027dd2174b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_EVENTS_EVENT_SOURCE_H_
#define UI_EVENTS_EVENT_SOURCE_H_

#include "ui/events/event_dispatcher.h"
#include "ui/events/events_export.h"

namespace ui {

class Event;
class EventProcessor;

// EventSource receives events from the native platform (e.g. X11, win32 etc.)
// and sends the events to an EventProcessor.
class EVENTS_EXPORT EventSource {
 public:
  virtual ~EventSource() {}

  virtual EventProcessor* GetEventProcessor() = 0;

 protected:
  EventDispatchDetails SendEventToProcessor(Event* event);
};

}  // namespace ui

#endif // UI_EVENTS_EVENT_SOURCE_H_