1 /* 2 * Copyright (C) 2022 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 package com.android.launcher3.tapl; 17 18 import androidx.test.uiautomator.UiObject2; 19 20 import java.util.regex.Pattern; 21 22 /** 23 * App icon specifically on the Taskbar. 24 */ 25 public final class TaskbarAppIcon extends AppIcon implements SplitscreenDragSource { 26 27 private static final Pattern LONG_CLICK_EVENT = Pattern.compile("onTaskbarItemLongClick"); 28 TaskbarAppIcon(LauncherInstrumentation launcher, UiObject2 icon)29 TaskbarAppIcon(LauncherInstrumentation launcher, UiObject2 icon) { 30 super(launcher, icon); 31 } 32 33 @Override getLongClickEvent()34 protected Pattern getLongClickEvent() { 35 return LONG_CLICK_EVENT; 36 } 37 38 @Override openDeepShortcutMenu()39 public TaskbarAppIconMenu openDeepShortcutMenu() { 40 return (TaskbarAppIconMenu) super.openDeepShortcutMenu(); 41 } 42 43 @Override createMenu(UiObject2 menu)44 protected TaskbarAppIconMenu createMenu(UiObject2 menu) { 45 return new TaskbarAppIconMenu(mLauncher, menu); 46 } 47 48 @Override getLaunchable()49 public Launchable getLaunchable() { 50 return this; 51 } 52 } 53