]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkDialog.java
Add setting to disable screenshots. https://redmine.stoutner.com/issues/266
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / CreateBookmarkDialog.java
1 /*
2  * Copyright © 2016-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.annotation.SuppressLint;
23 import android.app.AlertDialog;
24 import android.app.Dialog;
25 import android.content.Context;
26 import android.content.DialogInterface;
27 import android.graphics.drawable.BitmapDrawable;
28 import android.graphics.drawable.Drawable;
29 import android.os.Bundle;
30 import android.support.annotation.NonNull;
31 // We have to use `AppCompatDialogFragment` instead of `DialogFragment` or an error is produced on API <= 22.
32 import android.support.v7.app.AppCompatDialogFragment;
33 import android.view.KeyEvent;
34 import android.view.View;
35 import android.view.WindowManager;
36 import android.widget.EditText;
37
38 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
39 import com.stoutner.privacybrowser.R;
40
41 public class CreateBookmarkDialog extends AppCompatDialogFragment {
42     // The public interface is used to send information back to the parent activity.
43     public interface CreateBookmarkListener {
44         void onCreateBookmark(AppCompatDialogFragment dialogFragment);
45     }
46
47     // `createBookmarkListener` is used in `onAttach()` and `onCreateDialog()`
48     private CreateBookmarkListener createBookmarkListener;
49
50
51     public void onAttach(Context context) {
52         super.onAttach(context);
53
54         // Get a handle for `CreateBookmarkListener` from `context`.
55         try {
56             createBookmarkListener = (CreateBookmarkListener) context;
57         } catch(ClassCastException exception) {
58             throw new ClassCastException(context.toString() + " must implement `CreateBookmarkListener`.");
59         }
60     }
61
62     // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
63     @SuppressLint("InflateParams")
64     @Override
65     @NonNull
66     public Dialog onCreateDialog(Bundle savedInstanceState) {
67         // Create a drawable version of the favorite icon.
68         Drawable favoriteIconDrawable = new BitmapDrawable(getResources(), MainWebViewActivity.favoriteIconBitmap);
69
70         // Use `AlertDialog.Builder` to create the `AlertDialog`.
71         AlertDialog.Builder dialogBuilder;
72
73         // Set the style according to the theme.
74         if (MainWebViewActivity.darkTheme) {
75             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
76         } else {
77             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
78         }
79
80         // Set the title and icon.
81         dialogBuilder.setTitle(R.string.create_bookmark);
82         dialogBuilder.setIcon(favoriteIconDrawable);
83
84         // Remove the warning below that `getLayoutInflater()` might be null.
85         assert getActivity() != null;
86
87         // Set the view.  The parent view is `null` because it will be assigned by the `AlertDialog`.
88         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.create_bookmark_dialog, null));
89
90         // Set an `onClick()` listener for the negative button.
91         dialogBuilder.setNegativeButton(R.string.cancel, (DialogInterface dialog, int which) -> {
92             // Do nothing.  The `AlertDialog` will close automatically.
93         });
94
95         // Set an `onClick()` listener for the positive button.
96         dialogBuilder.setPositiveButton(R.string.create, (DialogInterface dialog, int which) -> {
97             // Return the `DialogFragment` to the parent activity.
98             createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
99         });
100
101         // Create an `AlertDialog` from the `AlertDialog.Builder`.
102         final AlertDialog alertDialog = dialogBuilder.create();
103
104         // Remove the warning below that `getWindow()` might be null.
105         assert alertDialog.getWindow() != null;
106
107         // Disable screenshots if not allowed.
108         if (!MainWebViewActivity.allowScreenshots) {
109             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
110         }
111
112         // Show the keyboard when the `AlertDialog` is displayed on the screen.
113         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
114
115         // The `AlertDialog` needs to be shown before `setOnKeyListener()` can be called.
116         alertDialog.show();
117
118         // Get a handle for `create_bookmark_name_edittext`.
119         EditText createBookmarkNameEditText = alertDialog.findViewById(R.id.create_bookmark_name_edittext);
120
121         // Set the current `WebView` title as the text for `create_bookmark_name_edittext`.
122         createBookmarkNameEditText.setText(MainWebViewActivity.webViewTitle);
123
124         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_name_edittext`.
125         createBookmarkNameEditText.setOnKeyListener((View view, int keyCode, KeyEvent event) -> {
126             // If the event is a key-down on the `enter` key, select the `PositiveButton` `Create`.
127             if ((keyCode == KeyEvent.KEYCODE_ENTER) && (event.getAction() == KeyEvent.ACTION_DOWN)) {
128                 // Trigger `createBookmarkListener` and return the `DialogFragment` to the parent activity.
129                 createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
130
131                 // Manually dismiss the `AlertDialog`.
132                 alertDialog.dismiss();
133
134                 // Consume the event.
135                 return true;
136             } else {  // If any other key was pressed, do not consume the event.
137                 return false;
138             }
139         });
140
141         // Set the formattedUrlString as the initial text of `create_bookmark_url_edittext`.
142         EditText createBookmarkUrlEditText = alertDialog.findViewById(R.id.create_bookmark_url_edittext);
143         createBookmarkUrlEditText.setText(MainWebViewActivity.formattedUrlString);
144
145         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_url_edittext`.
146         createBookmarkUrlEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
147             // If the event is a key-down on the "enter" key, select the PositiveButton "Create".
148             if ((keyCode == KeyEvent.KEYCODE_ENTER) && (event.getAction() == KeyEvent.ACTION_DOWN)) {
149                 // Trigger `createBookmarkListener` and return the DialogFragment to the parent activity.
150                 createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
151
152                 // Manually dismiss the `AlertDialog`.
153                 alertDialog.dismiss();
154
155                 // Consume the event.
156                 return true;
157             } else { // If any other key was pressed, do not consume the event.
158                 return false;
159             }
160         });
161
162         // `onCreateDialog()` requires the return of an `AlertDialog`.
163         return alertDialog;
164     }
165 }