2018-10-22 20:16:57 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Chat
|
|
|
|
|
{
|
|
|
|
|
public class ExternalLinkDialog : PopupDialog
|
|
|
|
|
{
|
|
|
|
|
public ExternalLinkDialog(string url, Action openExternalLinkAction)
|
|
|
|
|
{
|
|
|
|
|
BodyText = url;
|
|
|
|
|
|
|
|
|
|
Icon = FontAwesome.fa_warning;
|
2018-11-01 20:52:07 +00:00
|
|
|
|
HeaderText = "Are you sure you want to open the following?";
|
2018-10-22 20:16:57 +00:00
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Yes. Go for it.",
|
|
|
|
|
Action = openExternalLinkAction
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"No! Abort mission!"
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|