blob: 6ce673b0e9b6ab6c9bf89fe206f6008a0192aa31 [file] [log] [blame]
Dave Mankoff2ea5a832019-07-03 13:26:55 -04001/*
2 * Copyright (C) 2019 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;
18
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040019import static com.android.systemui.Dependency.ALLOW_NOTIFICATION_LONG_PRESS_NAME;
20
Hyunyoung Song8f9d34c2019-08-30 14:47:43 -070021import android.content.ContentProvider;
22
Dave Mankoff2ea5a832019-07-03 13:26:55 -040023import com.android.systemui.fragments.FragmentService;
24import com.android.systemui.statusbar.phone.StatusBar;
25import com.android.systemui.util.InjectionInflationController;
26import com.android.systemui.util.leak.GarbageMonitor;
27
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040028import javax.inject.Named;
Dave Mankoff2ea5a832019-07-03 13:26:55 -040029import javax.inject.Singleton;
30
31import dagger.Component;
32
33/**
34 * Root component for Dagger injection.
35 */
36@Singleton
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040037@Component(modules = {
38 DependencyProvider.class,
39 DependencyBinder.class,
40 ServiceBinder.class,
Dave Mankoffaa8b7ae2019-09-04 18:03:21 -040041 SystemUIBinder.class,
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040042 SystemUIFactory.ContextHolder.class,
43 SystemUIModule.class,
44 SystemUIDefaultModule.class})
Dave Mankoff2ea5a832019-07-03 13:26:55 -040045public interface SystemUIRootComponent {
Dave Mankoffaa8b7ae2019-09-04 18:03:21 -040046
47 /**
48 * Creates a GarbageMonitor.
49 */
50 @Singleton
51 ContextComponentHelper getContextComponentHelper();
52
Dave Mankoff2ea5a832019-07-03 13:26:55 -040053 /**
54 * Main dependency providing module.
55 */
56 @Singleton
57 Dependency.DependencyInjector createDependency();
58
59 /**
60 * Injects the StatusBar.
61 */
62 @Singleton
63 StatusBar.StatusBarInjector getStatusBarInjector();
64
65 /**
66 * FragmentCreator generates all Fragments that need injection.
67 */
68 @Singleton
69 FragmentService.FragmentCreator createFragmentCreator();
70
71 /**
72 * ViewCreator generates all Views that need injection.
73 */
74 InjectionInflationController.ViewCreator createViewCreator();
75
76 /**
Dave Mankoffaa8b7ae2019-09-04 18:03:21 -040077 * Creates a GarbageMonitor.
Dave Mankoff2ea5a832019-07-03 13:26:55 -040078 */
79 @Singleton
80 GarbageMonitor createGarbageMonitor();
81
82 /**
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040083 * Whether notification long press is allowed.
84 */
85 @Named(ALLOW_NOTIFICATION_LONG_PRESS_NAME)
86 boolean allowNotificationLongPressName();
87
88 /**
Dave Mankoffa4a71362019-08-27 14:40:05 -040089 * Member injection into the supplied argument.
Dave Mankoff2ea5a832019-07-03 13:26:55 -040090 */
91 void inject(SystemUIAppComponentFactory factory);
Dave Mankoffa4a71362019-08-27 14:40:05 -040092
93 /**
94 * Member injection into the supplied argument.
95 */
96 void inject(ContentProvider contentProvider);
Dave Mankoff2ea5a832019-07-03 13:26:55 -040097}