]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/WaitingForProxyDialog.kt
Fix the ViewPager not always moving to new tabs. https://redmine.stoutner.com/issues/798
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / WaitingForProxyDialog.kt
1 /*
2  * Copyright © 2019-2022 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
5  *
6  * Privacy Browser Android is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser Android is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.dialogs
21
22 import android.app.Dialog
23 import android.os.Bundle
24 import android.view.WindowManager
25
26 import androidx.appcompat.app.AlertDialog
27 import androidx.fragment.app.DialogFragment
28 import androidx.preference.PreferenceManager
29
30 import com.stoutner.privacybrowser.R
31
32 class WaitingForProxyDialog : DialogFragment() {
33     override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
34         // Use a builder to create the alert dialog.
35         val dialogBuilder = AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog)
36
37         // Set the layout.
38         dialogBuilder.setView(R.layout.waiting_for_proxy_dialog)
39
40         // Create an alert dialog from the builder.
41         val alertDialog = dialogBuilder.create()
42
43         // Get a handle for the shared preferences.
44         val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(requireContext())
45
46         // Get the screenshot preference.
47         val allowScreenshots = sharedPreferences.getBoolean(getString(R.string.allow_screenshots_key), false)
48
49         // Disable screenshots if not allowed.
50         if (!allowScreenshots) {
51             // Disable screenshots.
52             alertDialog.window!!.addFlags(WindowManager.LayoutParams.FLAG_SECURE)
53         }
54
55         // Return the alert dialog.
56         return alertDialog
57     }
58 }