1 /* 2 * Copyright (C) 2023 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 */ 17 18 package com.android.systemui.controls.ui 19 20 import android.app.Dialog 21 import android.content.Context 22 import android.content.DialogInterface 23 import com.android.systemui.R 24 import com.android.systemui.statusbar.phone.SystemUIDialog 25 import java.util.function.Consumer 26 import javax.inject.Inject 27 28 class ControlsDialogsFactory(private val internalDialogFactory: (Context) -> SystemUIDialog) { 29 30 @Inject constructor() : this({ SystemUIDialog(it) }) 31 32 fun createRemoveAppDialog( 33 context: Context, 34 appName: CharSequence, 35 response: Consumer<Boolean> 36 ): Dialog { 37 val listener = 38 DialogInterface.OnClickListener { _, which -> 39 response.accept(which == DialogInterface.BUTTON_POSITIVE) 40 } 41 return internalDialogFactory(context).apply { 42 setTitle(context.getString(R.string.controls_panel_remove_app_authorization, appName)) 43 setCanceledOnTouchOutside(true) 44 setOnCancelListener { response.accept(false) } 45 setPositiveButton(R.string.controls_dialog_remove, listener) 46 setNeutralButton(R.string.cancel, listener) 47 } 48 } 49 } 50