Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #8833 from Ebola16/Panic
Android: Use DialogFragment for AlertMessage
- Loading branch information
Showing
9 changed files
with
182 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| package org.dolphinemu.dolphinemu.dialogs; | ||
|
|
||
| import android.app.Dialog; | ||
| import android.os.Bundle; | ||
|
|
||
| import org.dolphinemu.dolphinemu.NativeLibrary; | ||
| import org.dolphinemu.dolphinemu.R; | ||
| import org.dolphinemu.dolphinemu.activities.EmulationActivity; | ||
|
|
||
| import androidx.annotation.NonNull; | ||
| import androidx.appcompat.app.AlertDialog; | ||
| import androidx.fragment.app.DialogFragment; | ||
|
|
||
| public final class AlertMessage extends DialogFragment | ||
| { | ||
| private static boolean sAlertResult = false; | ||
| private static final String ARG_TITLE = "title"; | ||
| private static final String ARG_MESSAGE = "message"; | ||
| private static final String ARG_YES_NO = "yesNo"; | ||
| private static final String ARG_IS_WARNING = "isWarning"; | ||
|
|
||
| public static AlertMessage newInstance(String title, String message, boolean yesNo, | ||
| boolean isWarning) | ||
| { | ||
| AlertMessage fragment = new AlertMessage(); | ||
|
|
||
| Bundle args = new Bundle(); | ||
| args.putString(ARG_TITLE, title); | ||
| args.putString(ARG_MESSAGE, message); | ||
| args.putBoolean(ARG_YES_NO, yesNo); | ||
| args.putBoolean(ARG_IS_WARNING, isWarning); | ||
| fragment.setArguments(args); | ||
|
|
||
| return fragment; | ||
| } | ||
|
|
||
| @NonNull | ||
| @Override | ||
| public Dialog onCreateDialog(Bundle savedInstanceState) | ||
| { | ||
| final EmulationActivity emulationActivity = NativeLibrary.getEmulationActivity(); | ||
| String title = requireArguments().getString(ARG_TITLE); | ||
| String message = requireArguments().getString(ARG_MESSAGE); | ||
| boolean yesNo = requireArguments().getBoolean(ARG_YES_NO); | ||
| boolean isWarning = requireArguments().getBoolean(ARG_IS_WARNING); | ||
| setCancelable(false); | ||
|
|
||
| AlertDialog.Builder builder = new AlertDialog.Builder(emulationActivity, | ||
| R.style.DolphinDialogBase) | ||
| .setTitle(title) | ||
| .setMessage(message); | ||
|
|
||
| // If not yes/no dialog just have one button that dismisses modal, | ||
| // otherwise have a yes and no button that sets sAlertResult accordingly. | ||
| if (!yesNo) | ||
| { | ||
| builder.setPositiveButton(android.R.string.ok, (dialog, which) -> | ||
| { | ||
| dialog.dismiss(); | ||
| NativeLibrary.NotifyAlertMessageLock(); | ||
| }); | ||
| } | ||
| else | ||
| { | ||
| builder.setPositiveButton(android.R.string.yes, (dialog, which) -> | ||
| { | ||
| sAlertResult = true; | ||
| dialog.dismiss(); | ||
| NativeLibrary.NotifyAlertMessageLock(); | ||
| }) | ||
| .setNegativeButton(android.R.string.no, (dialog, which) -> | ||
| { | ||
| sAlertResult = false; | ||
| dialog.dismiss(); | ||
| NativeLibrary.NotifyAlertMessageLock(); | ||
| }); | ||
| } | ||
|
|
||
| if (isWarning) | ||
| { | ||
| builder.setNeutralButton(R.string.ignore_warning_alert_messages, (dialog, which) -> | ||
| { | ||
| emulationActivity.setIgnoreWarnings(true); | ||
| dialog.dismiss(); | ||
| NativeLibrary.NotifyAlertMessageLock(); | ||
| }); | ||
| } | ||
|
|
||
| return builder.create(); | ||
| } | ||
|
|
||
| public static boolean getAlertResult() | ||
| { | ||
| return sAlertResult; | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.