/* * Copyright 2016 JetBrains s.r.o. * * 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. */ @file:Suppress("NOTHING_TO_INLINE", "unused") package org.jetbrains.anko import android.content.Context import android.content.DialogInterface import androidx.fragment.app.Fragment typealias AlertBuilderFactory = (Context) -> AlertBuilder inline fun AnkoContext<*>.alert( noinline factory: AlertBuilderFactory, message: String, title: String? = null, noinline init: (AlertBuilder.() -> Unit)? = null, ) = ctx.alert(factory, message, title, init) inline fun Fragment.alert( noinline factory: AlertBuilderFactory, message: String, title: String? = null, noinline init: (AlertBuilder.() -> Unit)? = null, ) = requireActivity().alert(factory, message, title, init) fun Context.alert( factory: AlertBuilderFactory, message: String, title: String? = null, init: (AlertBuilder.() -> Unit)? = null, ): AlertBuilder { return factory(this).apply { if (title != null) { this.title = title } this.message = message if (init != null) init() } } inline fun AnkoContext<*>.alert( noinline factory: AlertBuilderFactory, message: Int, title: Int? = null, noinline init: (AlertBuilder.() -> Unit)? = null, ) = ctx.alert(factory, message, title, init) inline fun Fragment.alert( noinline factory: AlertBuilderFactory, message: Int, title: Int? = null, noinline init: (AlertBuilder.() -> Unit)? = null, ) = requireActivity().alert(factory, message, title, init) fun Context.alert( factory: AlertBuilderFactory, messageResource: Int, titleResource: Int? = null, init: (AlertBuilder.() -> Unit)? = null, ): AlertBuilder { return factory(this).apply { if (titleResource != null) { this.titleResource = titleResource } this.messageResource = messageResource if (init != null) init() } } inline fun AnkoContext<*>.alert( noinline factory: AlertBuilderFactory, noinline init: AlertBuilder.() -> Unit, ) = ctx.alert(factory, init) inline fun Fragment.alert( noinline factory: AlertBuilderFactory, noinline init: AlertBuilder.() -> Unit, ) = requireActivity().alert(factory, init) fun Context.alert( factory: AlertBuilderFactory, init: AlertBuilder.() -> Unit, ): AlertBuilder = factory(this).apply { init() }