Home
last modified time | relevance | path

Searched refs:mSystemUiProxy (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DSystemUiProxy.java124 private ISystemUiProxy mSystemUiProxy; field in SystemUiProxy
211 if (mSystemUiProxy != null) { in onBackPressed()
213 mSystemUiProxy.onBackPressed(); in onBackPressed()
222 if (mSystemUiProxy != null) { in onImeSwitcherPressed()
224 mSystemUiProxy.onImeSwitcherPressed(); in onImeSwitcherPressed()
233 if (mSystemUiProxy != null) { in setHomeRotationEnabled()
235 mSystemUiProxy.setHomeRotationEnabled(enabled); in setHomeRotationEnabled()
260 mSystemUiProxy = proxy; in setProxy()
341 return mSystemUiProxy != null; in isActive()
345 if (mSystemUiProxy != null) { in linkToDeath()
[all …]
DImageActionsApi.java53 protected final SystemUiProxy mSystemUiProxy; field in ImageActionsApi
58 mSystemUiProxy = SystemUiProxy.INSTANCE.get(context); in ImageActionsApi()
120 ImageActionUtils.saveScreenshot(mSystemUiProxy, screenshot, screenshotBounds, visibleInsets, in saveScreenshot()
DRecentsAnimationCallbacks.java56 private final SystemUiProxy mSystemUiProxy; field in RecentsAnimationCallbacks
66 mSystemUiProxy = systemUiProxy; in RecentsAnimationCallbacks()
132 nonAppTargets = mSystemUiProxy.onGoingToRecentsLegacy(appTargets); in onAnimationStart()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarNavButtonController.java109 private final SystemUiProxy mSystemUiProxy; field in TaskbarNavButtonController
124 mSystemUiProxy = systemUiProxy; in TaskbarNavButtonController()
248 mSystemUiProxy.stopScreenPinning(); in determineScreenUnpin()
299 mSystemUiProxy.onBackPressed(); in executeBack()
303 mSystemUiProxy.onImeSwitcherPressed(); in showIMESwitcher()
308 mSystemUiProxy.notifyAccessibilityButtonLongClicked(); in notifyA11yClick()
310 mSystemUiProxy.notifyAccessibilityButtonClicked(mContext.getDisplayId()); in notifyA11yClick()
322 mSystemUiProxy.startAssistant(args); in onLongPressHome()
327 mSystemUiProxy.toggleNotificationPanel(); in showQuickSettings()
331 mSystemUiProxy.toggleNotificationPanel(); in showNotifications()
DTaskbarAutohideSuspendController.java64 private final SystemUiProxy mSystemUiProxy; field in TaskbarAutohideSuspendController
70 mSystemUiProxy = SystemUiProxy.INSTANCE.get(activity); in TaskbarAutohideSuspendController()
74 mSystemUiProxy.notifyTaskbarAutohideSuspend(false); in onDestroy()
93 mSystemUiProxy.notifyTaskbarAutohideSuspend(isSuspended); in updateFlag()
DTaskbarStashController.java217 private final SystemUiProxy mSystemUiProxy; field in TaskbarStashController
271 mSystemUiProxy = SystemUiProxy.INSTANCE.get(activity); in TaskbarStashController()
1123 mSystemUiProxy.notifyTaskbarStatus(visible, stashed); in notifyStashChange()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DSplitSelectStateController.java132 private final SystemUiProxy mSystemUiProxy; field in SplitSelectStateController
196 mSystemUiProxy = systemUiProxy; in SplitSelectStateController()
467 mSystemUiProxy.startTasks(firstTaskId, optionsBundle, secondTaskId, in launchTasks()
472 mSystemUiProxy.startIntentAndTask(secondPI, secondUserId, optionsBundle, in launchTasks()
477 mSystemUiProxy.startShortcutAndTask(secondShortcut, optionsBundle, in launchTasks()
482 mSystemUiProxy.startIntentAndTask(firstPI, firstUserId, optionsBundle, in launchTasks()
487 mSystemUiProxy.startIntents(firstPI, firstUserId, firstShortcut, in launchTasks()
493 mSystemUiProxy.startShortcutAndTask(firstShortcut, optionsBundle, in launchTasks()
502 mSystemUiProxy.startTasksWithLegacyTransition(firstTaskId, optionsBundle, in launchTasks()
507 mSystemUiProxy.startIntentAndTaskWithLegacyTransition(secondPI, in launchTasks()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
DTrackpadStatusBarInputConsumer.java33 private final SystemUiProxy mSystemUiProxy; field in TrackpadStatusBarInputConsumer
42 mSystemUiProxy = SystemUiProxy.INSTANCE.get(context); in TrackpadStatusBarInputConsumer()
81 if (mSystemUiProxy.isActive()) { in dispatchTouchEvent()
82 mSystemUiProxy.onStatusBarTrackpadEvent(ev); in dispatchTouchEvent()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarViewController.java62 private final SystemUiProxy mSystemUiProxy; field in BubbleBarViewController
99 mSystemUiProxy = SystemUiProxy.INSTANCE.get(mActivity); in BubbleBarViewController()
171 mSystemUiProxy.showUserEducation(position); in onBubbleBarClicked()
470 mSystemUiProxy.collapseBubbles(); in setExpanded()
505 mSystemUiProxy.startBubbleDrag(bubbleView.getBubble().getKey()); in onBubbleDragStart()
513 mSystemUiProxy.stopBubbleDrag(location, mBarView.getRestingTopPositionOnScreen()); in onBubbleDragRelease()
558 mSystemUiProxy.dragBubbleToDismiss(bubble.getKey()); in onDismissBubbleWhileDragging()
565 mSystemUiProxy.removeAllBubbles(); in onDismissAllBubblesWhileDragging()
DBubbleBarController.java140 private final SystemUiProxy mSystemUiProxy; field in BubbleBarController
195 mSystemUiProxy = SystemUiProxy.INSTANCE.get(context); in BubbleBarController()
198 mSystemUiProxy.setBubblesListener(this); in BubbleBarController()
210 mSystemUiProxy.setBubblesListener(null); in onDestroy()
443 mSystemUiProxy.showBubble(getSelectedBubbleKey(), mLastSentBubbleBarTop); in showSelectedBubble()
487 mSystemUiProxy.setBubbleBarLocation(location); in updateBubbleBarLocation()
636 mSystemUiProxy.updateBubbleBarTopOnScreen(newTop); in onBubbleBarBoundsChanged()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaskAnimationManagerTest.java45 private SystemUiProxy mSystemUiProxy; field in TaskAnimationManagerTest
55 return mSystemUiProxy; in setUp()
73 verify(mSystemUiProxy).startRecentsActivity(any(), optionsCaptor.capture(), any()); in startRecentsActivity_allowBackgroundLaunch()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DStatusBarTouchController.java53 private final SystemUiProxy mSystemUiProxy; field in StatusBarTouchController
65 mSystemUiProxy = SystemUiProxy.INSTANCE.get(mLauncher); in StatusBarTouchController()
80 if (mSystemUiProxy.isActive()) { in dispatchTouchEvent()
82 mSystemUiProxy.onStatusBarTouchEvent(ev); in dispatchTouchEvent()