]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/AboutViewSourceDialog.java
7edc2db0a436e14eb216d074671135d641011136
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / AboutViewSourceDialog.java
1 /*
2  * Copyright © 2018 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.app.DialogFragment;
25 import android.os.Bundle;
26 import android.view.WindowManager;
27
28 import com.stoutner.privacybrowser.R;
29 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
30
31 public class AboutViewSourceDialog extends DialogFragment {
32     @Override
33     public Dialog onCreateDialog(Bundle savedInstanceState) {
34         // Use a builder to create the alert dialog.
35         AlertDialog.Builder dialogBuilder;
36
37         // Set the style and the icon according to the theme.
38         if (MainWebViewActivity.darkTheme) {
39             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
40             dialogBuilder.setIcon(R.drawable.about_dark);
41         } else {
42             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
43             dialogBuilder.setIcon(R.drawable.about_light);
44         }
45
46         // Set an `onClick` listener on the negative button.  Using `null` as the listener closes the dialog without doing anything else.
47         dialogBuilder.setNegativeButton(R.string.close, null);
48
49         // Set the title.
50         dialogBuilder.setTitle(R.string.about_view_source);
51
52         // Set the text.
53         dialogBuilder.setMessage(R.string.about_view_source_message);
54
55         // Create an alert dialog from the alert dialog builder.
56         final AlertDialog alertDialog = dialogBuilder.create();
57
58         // Disable screenshots if not allowed.
59         if (!MainWebViewActivity.allowScreenshots) {
60             // Remove the warning below that `getWindow()` might be null.
61             assert alertDialog.getWindow() != null;
62
63             // Disable screenshots.
64             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
65         }
66
67         // `onCreateDialog` requires the return of an `AlertDialog`.
68         return alertDialog;
69     }
70 }