]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/StoragePermissionDialog.java
fbff4d295c1f569522c9de3d14aadd493747f07e
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / StoragePermissionDialog.java
1 /*
2  * Copyright © 2018-2019 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.content.Context;
25 import android.content.DialogInterface;
26 import android.os.Bundle;
27 import android.view.WindowManager;
28
29 import androidx.annotation.NonNull;
30 import androidx.fragment.app.DialogFragment;
31
32 import com.stoutner.privacybrowser.R;
33 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
34
35 public class StoragePermissionDialog extends DialogFragment {
36     // The listener is used in `onAttach()` and `onCreateDialog()`.
37     private StoragePermissionDialogListener storagePermissionDialogListener;
38
39     // The public interface is used to send information back to the parent activity.
40     public interface StoragePermissionDialogListener {
41         void onCloseStoragePermissionDialog();
42     }
43
44     @Override
45     public void onAttach(Context context) {
46         // Run the default commands.
47         super.onAttach(context);
48
49         // Get a handle for the listener from the launching context.
50         storagePermissionDialogListener = (StoragePermissionDialogListener) context;
51     }
52
53     @NonNull
54     @Override
55     public Dialog onCreateDialog(Bundle savedInstanceState) {
56         // Use a builder to create the alert dialog.
57         AlertDialog.Builder dialogBuilder;
58
59         // Set the style and the icon according to the theme.
60         if (MainWebViewActivity.darkTheme) {
61             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
62             dialogBuilder.setIcon(R.drawable.import_export_dark);
63         } else {
64             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
65             dialogBuilder.setIcon(R.drawable.import_export_light);
66         }
67
68         // Set the title.
69         dialogBuilder.setTitle(R.string.storage_permission);
70
71         // Set the text.
72         dialogBuilder.setMessage(R.string.storage_permission_message);
73
74         // Set an `onClick` listener on the negative button.
75         dialogBuilder.setNegativeButton(R.string.ok, (DialogInterface dialog, int which) -> {
76             // Inform the parent activity that the dialog was closed.
77             storagePermissionDialogListener.onCloseStoragePermissionDialog();
78         });
79
80         // Create an alert dialog from the builder.
81         final AlertDialog alertDialog = dialogBuilder.create();
82
83         // Disable screenshots if not allowed.
84         if (!MainWebViewActivity.allowScreenshots) {
85             // Remove the warning below that `getWindow()` might be null.
86             assert alertDialog.getWindow() != null;
87
88             // Disable screenshots.
89             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
90         }
91
92         // `onCreateDialog()` requires the return of an `AlertDialog`.
93         return alertDialog;
94     }
95 }