blob: 1d20692c7b5de7645759214a9a334149d1d478f9 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.systemui.car.statusicon.ui;
import android.content.Context;
import android.content.res.Resources;
import com.android.systemui.R;
import com.android.systemui.broadcast.BroadcastDispatcher;
import com.android.systemui.car.CarServiceProvider;
import com.android.systemui.car.qc.SystemUIQCViewController;
import com.android.systemui.car.statusicon.StatusIconController;
import com.android.systemui.car.statusicon.StatusIconGroupContainerController;
import com.android.systemui.dagger.qualifiers.Main;
import com.android.systemui.settings.UserTracker;
import com.android.systemui.statusbar.policy.ConfigurationController;
import java.util.Map;
import javax.inject.Inject;
import javax.inject.Provider;
/**
* A Controller for a group of read-only status icons.
*/
public class ReadOnlyIconsController extends StatusIconGroupContainerController {
@Inject
public ReadOnlyIconsController(Context context,
UserTracker userTracker,
@Main Resources resources,
CarServiceProvider carServiceProvider,
BroadcastDispatcher broadcastDispatcher,
ConfigurationController configurationController,
Provider<SystemUIQCViewController> qcViewControllerProvider,
Map<Class<?>, Provider<StatusIconController>> iconControllerCreators) {
super(context, userTracker, carServiceProvider, resources, broadcastDispatcher,
configurationController, qcViewControllerProvider, iconControllerCreators);
}
@Override
protected int getStatusIconControllersStringArray() {
return R.array.config_readOnlyIconControllers;
}
}