2017-12-25 23:37:50 +08:00
|
|
|
|
// Copyright (c) 2007-2017 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.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class ImportFromStablePopup : PopupDialog
|
|
|
|
|
{
|
|
|
|
|
public ImportFromStablePopup(Action importFromStable)
|
|
|
|
|
{
|
|
|
|
|
HeaderText = @"You have no beatmaps!";
|
|
|
|
|
BodyText = "An existing copy of osu! was found, though.\nWould you like to import your beatmaps?";
|
|
|
|
|
|
2017-12-28 20:23:59 +08:00
|
|
|
|
Icon = FontAwesome.fa_plane;
|
2017-12-25 23:37:50 +08:00
|
|
|
|
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Yes please!",
|
|
|
|
|
Action = importFromStable
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"No, I'd like to start from scratch",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|