blob: 754f42df5fd0d61f9a1a03f9942744a90e5a5776 [file] [log] [blame]
// 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 CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_WEB_INPUT_EVENT_BUILDERS_H_
#define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_WEB_INPUT_EVENT_BUILDERS_H_
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/public/browser/native_web_keyboard_event.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
// Provides sensible creation of default WebInputEvents for testing purposes.
namespace content {
class CONTENT_EXPORT SyntheticWebMouseEventBuilder {
public:
static blink::WebMouseEvent Build(blink::WebInputEvent::Type type);
static blink::WebMouseEvent Build(blink::WebInputEvent::Type type,
int window_x,
int window_y,
int modifiers);
};
class CONTENT_EXPORT SyntheticWebMouseWheelEventBuilder {
public:
static blink::WebMouseWheelEvent Build(
blink::WebMouseWheelEvent::Phase phase);
static blink::WebMouseWheelEvent Build(float dx,
float dy,
int modifiers,
bool precise);
};
class CONTENT_EXPORT SyntheticWebKeyboardEventBuilder {
public:
static NativeWebKeyboardEvent Build(blink::WebInputEvent::Type type);
};
class CONTENT_EXPORT SyntheticWebGestureEventBuilder {
public:
static blink::WebGestureEvent Build(
blink::WebInputEvent::Type type,
blink::WebGestureEvent::SourceDevice sourceDevice);
static blink::WebGestureEvent BuildScrollUpdate(float dx,
float dY,
int modifiers);
static blink::WebGestureEvent BuildPinchUpdate(float scale,
float anchor_x,
float anchor_y,
int modifiers);
static blink::WebGestureEvent BuildFling(
float velocity_x,
float velocity_y,
blink::WebGestureEvent::SourceDevice source_device);
};
class CONTENT_EXPORT SyntheticWebTouchEvent
: public NON_EXPORTED_BASE(blink::WebTouchEvent) {
public:
SyntheticWebTouchEvent();
// Mark all the points as stationary, and remove any released points.
void ResetPoints();
// Adds an additional point to the touch list, returning the point's index.
int PressPoint(int x, int y);
void MovePoint(int index, int x, int y);
void ReleasePoint(int index);
void CancelPoint(int index);
void SetTimestamp(base::TimeDelta timestamp);
};
class CONTENT_EXPORT SyntheticWebTouchEventBuilder {
public:
static SyntheticWebTouchEvent Build(blink::WebInputEvent::Type type);
};
} // namespace content
#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_WEB_INPUT_EVENT_BUILDERS_H_