]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/AboutViewSourceDialog.kt
Fix a crash when uploading files to some sites. https://redmine.stoutner.com/issues/556
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / AboutViewSourceDialog.kt
1 /*
2  * Copyright © 2018-2020 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser 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 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.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.dialogs
21
22 import android.app.AlertDialog
23 import android.app.Dialog
24 import android.os.Bundle
25 import android.view.WindowManager
26
27 import androidx.fragment.app.DialogFragment
28 import androidx.preference.PreferenceManager
29
30 import com.stoutner.privacybrowser.R
31
32 class AboutViewSourceDialog: DialogFragment() {
33     override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
34         // Get a handle for the shared preferences.
35         val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context)
36
37         // Get the screenshot and theme preferences.
38         val allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false)
39         val darkTheme = sharedPreferences.getBoolean("dark_theme", false)
40
41         // Use a builder to create the alert dialog.
42         val dialogBuilder: AlertDialog.Builder
43
44         // Set the style and the icon according to the theme.
45         if (darkTheme) {
46             // Use a dark style.
47             dialogBuilder = AlertDialog.Builder(context, R.style.PrivacyBrowserAlertDialogDark)
48
49             // Set a dark icon.
50             dialogBuilder.setIcon(R.drawable.about_dark)
51         } else {
52             // Use a light style.
53             dialogBuilder = AlertDialog.Builder(context, R.style.PrivacyBrowserAlertDialogLight)
54
55             // Set a light icon.
56             dialogBuilder.setIcon(R.drawable.about_light)
57         }
58
59         // Set the title.
60         dialogBuilder.setTitle(R.string.about_view_source)
61
62         // Set the text.
63         dialogBuilder.setMessage(R.string.about_view_source_message)
64
65         // Set a listener on the close button.  Using `null` as the listener closes the dialog without doing anything else.
66         dialogBuilder.setNegativeButton(R.string.close, null)
67
68         // Create an alert dialog from the alert dialog builder.
69         val alertDialog = dialogBuilder.create()
70
71         // Disable screenshots if not allowed.
72         if (!allowScreenshots) {
73             alertDialog.window!!.addFlags(WindowManager.LayoutParams.FLAG_SECURE)
74         }
75
76         // Return the alert dialog.
77         return alertDialog
78     }
79 }