idlize

Форк
0
/
gesture.d.ts 
81 строка · 1.5 Кб
1
/*
2
 * Copyright (c) 2024 Huawei Device Co., Ltd.
3
 * Licensed under the Apache License, Version 2.0 (the "License");
4
 * you may not use this file except in compliance with the License.
5
 * You may obtain a copy of the License at
6
 *
7
 *     http://www.apache.org/licenses/LICENSE-2.0
8
 *
9
 * Unless required by applicable law or agreed to in writing, software
10
 * distributed under the License is distributed on an "AS IS" BASIS,
11
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 * See the License for the specific language governing permissions and
13
 * limitations under the License.
14
 */
15

16
declare enum GesturePriority {
17

18
  NORMAL = 0,
19
  PRIORITY = 1,
20
}
21

22
declare enum GestureMask {
23

24
  Normal,
25
  IgnoreInternal,
26
}
27

28
interface GestureInterface<T> {
29

30
  tag(tag: string): T;
31

32
  allowedTypes(value: Array<SourceTool>): T;
33
}
34

35
declare class GestureHandler<T> implements GestureInterface<T> {
36

37
  tag(tag: string): T;
38

39
  allowedTypes(types: Array<SourceTool>): T;
40
}
41

42

43
interface FingerInfo {
44

45
  id: number;
46
  globalX: number;
47
  globalY: number;
48
  localX: number;
49
  localY: number;
50
  displayX: number;
51
  displayY: number;
52
}
53

54
interface BaseGestureEvent extends BaseEvent {
55

56
  fingerList: FingerInfo[];
57
}
58

59

60
declare enum GestureJudgeResult {
61

62
  CONTINUE = 0,
63
  REJECT = 1,
64
}
65

66
declare class GestureRecognizer {
67

68
  getTag(): string;
69

70
  getType(): GestureControl.GestureType;
71

72
  isBuiltIn(): boolean;
73

74
  setEnabled(isEnabled: boolean): void;
75

76
  isEnabled(): boolean;
77

78
  getState(): GestureRecognizerState;
79

80
  getEventTargetInfo(): EventTargetInfo;
81
}
82

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.