blob: 74e6198050b8c42f571e2b2eb87f69defe83e79e [file] [log] [blame]
// Copyright (c) 2012 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 ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H
#define ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H
#include "ash/ash_export.h"
#include "base/compiler_specific.h"
#include "ui/aura/event_filter.h"
namespace ash {
namespace internal {
class DisplayController;
// An event filter that controls mouse location in extended desktop
// environment.
class ASH_EXPORT MouseCursorEventFilter : public aura::EventFilter {
public:
MouseCursorEventFilter(DisplayController* display_controller);
virtual ~MouseCursorEventFilter();
// Overridden from aura::EventFilter:
virtual bool PreHandleKeyEvent(aura::Window* target,
aura::KeyEvent* event) OVERRIDE;
virtual bool PreHandleMouseEvent(aura::Window* target,
aura::MouseEvent* event) OVERRIDE;
virtual ui::TouchStatus PreHandleTouchEvent(aura::Window* target,
aura::TouchEvent* event) OVERRIDE;
virtual ui::GestureStatus PreHandleGestureEvent(
aura::Window* target,
aura::GestureEvent* event) OVERRIDE;
private:
DisplayController* display_controller_;
DISALLOW_COPY_AND_ASSIGN(MouseCursorEventFilter);
};
} // namespace internal
} // namespace ash
#endif // ASH_DISPLAY_MOUSE_CURSOR_EVENT_FILTER_H