]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/DownloadLocationPermissionDialog.java
Migrate to AndroidX from the Android Support Library. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / DownloadLocationPermissionDialog.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 com.stoutner.privacybrowser.R;
30 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
31
32 import androidx.annotation.NonNull;
33 import androidx.fragment.app.DialogFragment;  // The AndroidX dialog fragment must be used or an error is produced on API <=22.
34
35 public class DownloadLocationPermissionDialog extends DialogFragment {
36     // The constants are used to differentiate between the two download types.
37     public static final int DOWNLOAD_FILE = 1;
38     public static final int DOWNLOAD_IMAGE = 2;
39
40     // The listener is used in `onAttach()` and `onCreateDialog()`.
41     private DownloadLocationPermissionDialogListener downloadLocationPermissionDialogListener;
42
43     // The public interface is used to send information back to the parent activity.
44     public interface DownloadLocationPermissionDialogListener {
45         void onCloseDownloadLocationPermissionDialog(int downloadType);
46     }
47
48     @Override
49     public void onAttach(Context context) {
50         // Run the default commands.
51         super.onAttach(context);
52
53         // Get a handle for the listener from the launching context.
54         downloadLocationPermissionDialogListener = (DownloadLocationPermissionDialogListener) context;
55     }
56
57     public static DownloadLocationPermissionDialog downloadType(int type) {
58         // Create an arguments bundle.
59         Bundle argumentsBundle = new Bundle();
60
61         // Store the download type in the bundle.
62         argumentsBundle.putInt("download_type", type);
63
64         // Add the arguments bundle to this instance of the dialog.
65         DownloadLocationPermissionDialog thisDownloadLocationPermissionDialog = new DownloadLocationPermissionDialog();
66         thisDownloadLocationPermissionDialog.setArguments(argumentsBundle);
67         return thisDownloadLocationPermissionDialog;
68     }
69
70     @NonNull
71     @Override
72     public Dialog onCreateDialog(Bundle savedInstanceState) {
73         // Remove the incorrect lint warning below that `getArguments().getInt()` might be null.
74         assert getArguments() != null;
75
76         // Store the download type in a local variable.
77         int downloadType = getArguments().getInt("download_type");
78
79         // Use a builder to create the alert dialog.
80         AlertDialog.Builder dialogBuilder;
81
82         // Set the style and the icon according to the theme.
83         if (MainWebViewActivity.darkTheme) {
84             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
85             dialogBuilder.setIcon(R.drawable.downloads_dark);
86         } else {
87             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
88             dialogBuilder.setIcon(R.drawable.downloads_light);
89         }
90
91         // Set the title.
92         dialogBuilder.setTitle(R.string.download_location);
93
94         // Set the text.
95         dialogBuilder.setMessage(R.string.download_location_message);
96
97         // Set an `onClick` listener on the negative button.
98         dialogBuilder.setNegativeButton(R.string.ok, (DialogInterface dialog, int which) -> {
99             // Inform the parent activity that the dialog was closed.
100             downloadLocationPermissionDialogListener.onCloseDownloadLocationPermissionDialog(downloadType);
101         });
102
103         // Create an alert dialog from the builder.
104         final AlertDialog alertDialog = dialogBuilder.create();
105
106         // Disable screenshots if not allowed.
107         if (!MainWebViewActivity.allowScreenshots) {
108             // Remove the warning below that `getWindow()` might be null.
109             assert alertDialog.getWindow() != null;
110
111             // Disable screenshots.
112             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
113         }
114
115         // `onCreateDialog()` requires the return of an `AlertDialog`.
116         return alertDialog;
117     }
118 }