mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
6e3c043141
* Synthesize a buttons = kPrimaryButton for events of down and move * Add PointerEventButtons
89 lines
1.9 KiB
C++
89 lines
1.9 KiB
C++
// Copyright 2013 The Flutter 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 FLUTTER_LIB_UI_WINDOW_POINTER_DATA_H_
|
|
#define FLUTTER_LIB_UI_WINDOW_POINTER_DATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace flutter {
|
|
|
|
// Must match the button constants in events.dart.
|
|
enum PointerButtonMouse : int64_t {
|
|
kPointerButtonMousePrimary = 1 << 0,
|
|
kPointerButtonMouseSecondary = 1 << 1,
|
|
kPointerButtonMouseMiddle = 1 << 2,
|
|
kPointerButtonMouseBack = 1 << 3,
|
|
kPointerButtonMouseForward = 1 << 4,
|
|
};
|
|
|
|
enum PointerButtonTouch : int64_t {
|
|
kPointerButtonTouchContact = 1 << 0,
|
|
};
|
|
|
|
enum PointerButtonStylus : int64_t {
|
|
kPointerButtonStylusContact = 1 << 0,
|
|
kPointerButtonStylusPrimary = 1 << 1,
|
|
kPointerButtonStylusSecondary = 1 << 2,
|
|
};
|
|
|
|
// This structure is unpacked by hooks.dart.
|
|
struct alignas(8) PointerData {
|
|
// Must match the PointerChange enum in pointer.dart.
|
|
enum class Change : int64_t {
|
|
kCancel,
|
|
kAdd,
|
|
kRemove,
|
|
kHover,
|
|
kDown,
|
|
kMove,
|
|
kUp,
|
|
};
|
|
|
|
// Must match the PointerDeviceKind enum in pointer.dart.
|
|
enum class DeviceKind : int64_t {
|
|
kTouch,
|
|
kMouse,
|
|
kStylus,
|
|
kInvertedStylus,
|
|
};
|
|
|
|
// Must match the PointerSignalKind enum in pointer.dart.
|
|
enum class SignalKind : int64_t {
|
|
kNone,
|
|
kScroll,
|
|
};
|
|
|
|
int64_t time_stamp;
|
|
Change change;
|
|
DeviceKind kind;
|
|
SignalKind signal_kind;
|
|
int64_t device;
|
|
double physical_x;
|
|
double physical_y;
|
|
int64_t buttons;
|
|
int64_t obscured;
|
|
double pressure;
|
|
double pressure_min;
|
|
double pressure_max;
|
|
double distance;
|
|
double distance_max;
|
|
double size;
|
|
double radius_major;
|
|
double radius_minor;
|
|
double radius_min;
|
|
double radius_max;
|
|
double orientation;
|
|
double tilt;
|
|
int64_t platformData;
|
|
double scroll_delta_x;
|
|
double scroll_delta_y;
|
|
|
|
void Clear();
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_UI_WINDOW_POINTER_DATA_H_
|