mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
63 lines
1.2 KiB
C#
63 lines
1.2 KiB
C#
namespace Dalamud.Interface;
|
|
|
|
/// <summary>
|
|
/// Enum describing pages the plugin installer can be opened to.
|
|
/// </summary>
|
|
public enum PluginInstallerOpenKind
|
|
{
|
|
/// <summary>
|
|
/// Open to the "All Plugins" page.
|
|
/// </summary>
|
|
AllPlugins,
|
|
|
|
/// <summary>
|
|
/// Open to the "Installed Plugins" page.
|
|
/// </summary>
|
|
InstalledPlugins,
|
|
|
|
/// <summary>
|
|
/// Open to the "Can be updated" page.
|
|
/// </summary>
|
|
UpdateablePlugins,
|
|
|
|
/// <summary>
|
|
/// Open to the "Changelogs" page.
|
|
/// </summary>
|
|
Changelogs,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enum describing tabs the settings window can be opened to.
|
|
/// </summary>
|
|
public enum SettingsOpenKind
|
|
{
|
|
/// <summary>
|
|
/// Open to the "General" page.
|
|
/// </summary>
|
|
General,
|
|
|
|
/// <summary>
|
|
/// Open to the "Look & Feel" page.
|
|
/// </summary>
|
|
LookAndFeel,
|
|
|
|
/// <summary>
|
|
/// Open to the "Auto Updates" page.
|
|
/// </summary>
|
|
AutoUpdates,
|
|
|
|
/// <summary>
|
|
/// Open to the "Server Info Bar" page.
|
|
/// </summary>
|
|
ServerInfoBar,
|
|
|
|
/// <summary>
|
|
/// Open to the "Experimental" page.
|
|
/// </summary>
|
|
Experimental,
|
|
|
|
/// <summary>
|
|
/// Open to the "About" page.
|
|
/// </summary>
|
|
About,
|
|
}
|