blob: 913b2b346b34622fd61cdcdf44625f9044cdc344 [file] [log] [blame]
Xiyuan Xia1b30f792016-01-06 08:50:30 -08001/*
2 * Copyright (C) 2016 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
19import android.content.Context;
20import android.util.Log;
Xiaohui Chen5da71352016-02-22 10:04:41 -080021import android.view.View;
Xiyuan Xia1b30f792016-01-06 08:50:30 -080022import android.view.ViewGroup;
23
24import com.android.internal.widget.LockPatternUtils;
25import com.android.keyguard.ViewMediatorCallback;
Muyuan Li94ce94e2016-02-24 16:20:54 -080026import com.android.systemui.shortcut.ShortcutKeyDispatcher;
Xiaohui Chen5da71352016-02-22 10:04:41 -080027import com.android.systemui.statusbar.ScrimView;
Xiyuan Xia1b30f792016-01-06 08:50:30 -080028import com.android.systemui.statusbar.phone.KeyguardBouncer;
Xiaohui Chen5da71352016-02-22 10:04:41 -080029import com.android.systemui.statusbar.phone.ScrimController;
Xiyuan Xia1b30f792016-01-06 08:50:30 -080030import com.android.systemui.statusbar.phone.StatusBarKeyguardViewManager;
31import com.android.systemui.statusbar.phone.StatusBarWindowManager;
32
33/**
34 * Class factory to provide customizable SystemUI components.
35 */
36public class SystemUIFactory {
37 private static final String TAG = "SystemUIFactory";
38
39 static SystemUIFactory mFactory;
40
41 public static SystemUIFactory getInstance() {
42 return mFactory;
43 }
44
45 public static void createFromConfig(Context context) {
46 final String clsName = context.getString(R.string.config_systemUIFactoryComponent);
47 if (clsName == null || clsName.length() == 0) {
48 throw new RuntimeException("No SystemUIFactory component configured");
49 }
50
51 try {
52 Class<?> cls = null;
53 cls = context.getClassLoader().loadClass(clsName);
54 mFactory = (SystemUIFactory) cls.newInstance();
55 } catch (Throwable t) {
56 Log.w(TAG, "Error creating SystemUIFactory component: " + clsName, t);
57 throw new RuntimeException(t);
58 }
59 }
60
61 public SystemUIFactory() {}
62
63 public StatusBarKeyguardViewManager createStatusBarKeyguardViewManager(Context context,
64 ViewMediatorCallback viewMediatorCallback, LockPatternUtils lockPatternUtils) {
65 return new StatusBarKeyguardViewManager(context, viewMediatorCallback, lockPatternUtils);
66 }
67
68 public KeyguardBouncer createKeyguardBouncer(Context context, ViewMediatorCallback callback,
69 LockPatternUtils lockPatternUtils, StatusBarWindowManager windowManager,
70 ViewGroup container) {
71 return new KeyguardBouncer(context, callback, lockPatternUtils, windowManager, container);
72 }
Xiaohui Chen5da71352016-02-22 10:04:41 -080073
74 public ScrimController createScrimController(ScrimView scrimBehind, ScrimView scrimInFront,
75 View headsUpScrim, boolean scrimSrcEnabled) {
76 return new ScrimController(scrimBehind, scrimInFront, headsUpScrim, scrimSrcEnabled);
77 }
Muyuan Li94ce94e2016-02-24 16:20:54 -080078
79 public <T> T createInstance(Class<T> classType) {
80 return null;
81 }
Xiyuan Xia1b30f792016-01-06 08:50:30 -080082}