blob: f8856ce15f83e32d0ac0a65f34743bd574c2638f [file] [log] [blame]
Blazej Magnowski0e2ffbd2015-09-10 14:37:17 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.systemui.classifier;
18
19import android.hardware.SensorEvent;
20import android.view.MotionEvent;
21
22/**
Blazej Magnowski9f01c5b2015-09-17 15:14:29 -070023 * An abstract class for classifiers for touch and sensor events.
Blazej Magnowski0e2ffbd2015-09-10 14:37:17 -070024 */
25public abstract class Classifier {
26 public static final int QUICK_SETTINGS = 0;
27 public static final int NOTIFICATION_DISMISS = 1;
28 public static final int NOTIFICATION_DRAG_DOWN = 2;
29 public static final int NOTIFICATION_DOUBLE_TAP = 3;
30 public static final int UNLOCK = 4;
31 public static final int LEFT_AFFORDANCE = 5;
32 public static final int RIGHT_AFFORDANCE = 6;
Blazej Magnowski9f01c5b2015-09-17 15:14:29 -070033 public static final int GENERIC = 7;
Lucas Dupinbc9aac12018-03-04 20:18:15 -080034 public static final int BOUNCER_UNLOCK = 8;
Selim Cinek3d6ae232019-01-04 14:14:33 -080035 public static final int PULSE_EXPAND = 9;
Blazej Magnowski0e2ffbd2015-09-10 14:37:17 -070036
37 /**
38 * Contains all the information about touch events from which the classifier can query
39 */
40 protected ClassifierData mClassifierData;
41
42 /**
43 * Informs the classifier that a new touch event has occurred
44 */
45 public void onTouchEvent(MotionEvent event) {
46 }
47
48 /**
49 * Informs the classifier that a sensor change occurred
50 */
51 public void onSensorChanged(SensorEvent event) {
52 }
Adrian Roos401caae2016-03-04 13:35:21 -080053
54 public abstract String getTag();
Blazej Magnowski0e2ffbd2015-09-10 14:37:17 -070055}