Searched refs:mNotificationsShadeController (Results 1 – 3 of 3) sorted by relevance
/aosp12/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/ |
H A D | CarSystemBarViewTest.java | 51 private CarSystemBarController.NotificationsShadeController mNotificationsShadeController; field in CarSystemBarViewTest 73 when(mNotificationsShadeController.isNotificationPanelOpen()).thenReturn(true); in dispatchTouch_shadeOpen_flagOff_doesNotConsumeTouch() 76 mNavBarView.setNotificationsPanelController(mNotificationsShadeController); in dispatchTouch_shadeOpen_flagOff_doesNotConsumeTouch() 94 when(mNotificationsShadeController.isNotificationPanelOpen()).thenReturn(true); in dispatchTouch_shadeOpen_flagOn_consumesTouch() 97 mNavBarView.setNotificationsPanelController(mNotificationsShadeController); in dispatchTouch_shadeOpen_flagOn_consumesTouch()
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/ |
H A D | CarSystemBarView.java | 65 private NotificationsShadeController mNotificationsShadeController; field in CarSystemBarView 140 boolean shouldConsumeEvent = mNotificationsShadeController == null ? false in onInterceptTouchEvent() 141 : mNotificationsShadeController.isNotificationPanelOpen(); in onInterceptTouchEvent() 156 mNotificationsShadeController = controller; in setNotificationsPanelController() 166 return mNotificationsShadeController; in getNotificationsPanelController() 202 if (mNotificationsShadeController != null) { in onNotificationsClick() 203 mNotificationsShadeController.togglePanel(); in onNotificationsClick()
|
H A D | CarSystemBarController.java | 77 private NotificationsShadeController mNotificationsShadeController; field in CarSystemBarController 291 setupBar(mTopView, mTopBarTouchListener, mNotificationsShadeController, in getTopBar() 312 setupBar(mBottomView, mBottomBarTouchListener, mNotificationsShadeController, in getBottomBar() 325 setupBar(mLeftView, mLeftBarTouchListener, mNotificationsShadeController, in getLeftBar() 338 setupBar(mRightView, mRightBarTouchListener, mNotificationsShadeController, in getRightBar() 424 mNotificationsShadeController = notificationsShadeController; in registerNotificationController() 426 mTopView.setNotificationsPanelController(mNotificationsShadeController); in registerNotificationController() 429 mBottomView.setNotificationsPanelController(mNotificationsShadeController); in registerNotificationController() 432 mLeftView.setNotificationsPanelController(mNotificationsShadeController); in registerNotificationController() 435 mRightView.setNotificationsPanelController(mNotificationsShadeController); in registerNotificationController()
|