mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
- Features - Added integration with rbxfpsunlocker - Added support for user-applicable mods - Added ability to disable auto-update checking - Misc - Removed Bloxstrap branding from Discord Rich Presence - Mod presets for old death sound and mouse cursor are now statically stored as base64 strings, eliminating reliance on the website and the old cursors still existing - Bugfixes - Fixed vista bootstrapper style not hiding properly and improper behavior when closed - Fixed forms not being brought to the front when shown - Code - Reconsolidated Bootstrapper to a single file, using regions instead of partials
28 lines
989 B
C#
28 lines
989 B
C#
using Bloxstrap.Helpers.RSMM;
|
|
|
|
namespace Bloxstrap.Dialogs.BootstrapperStyles
|
|
{
|
|
public interface IBootstrapperDialog
|
|
{
|
|
Bootstrapper? Bootstrapper { get; set; }
|
|
|
|
string Message { get; set; }
|
|
ProgressBarStyle ProgressStyle { get; set; }
|
|
int ProgressValue { get; set; }
|
|
bool CancelEnabled { get; set; }
|
|
|
|
void RunBootstrapper();
|
|
void ShowError(string message);
|
|
void ShowSuccess(object sender, ChangeEventArgs<string> e);
|
|
void CloseDialog(object? sender, EventArgs e);
|
|
void PromptShutdown(object? sender, EventArgs e);
|
|
|
|
void MessageChanged(object sender, ChangeEventArgs<string> e);
|
|
void ProgressBarValueChanged(object sender, ChangeEventArgs<int> e);
|
|
void ProgressBarStyleChanged(object sender, ChangeEventArgs<ProgressBarStyle> e);
|
|
void CancelEnabledChanged(object sender, ChangeEventArgs<bool> e);
|
|
|
|
void ButtonCancel_Click(object sender, EventArgs e);
|
|
}
|
|
}
|