Dalamud/Dalamud/Interface/DalamudWindowOpenKinds.cs
goaaats efed9ca20b
Some checks are pending
Build Dalamud / Build on Windows (push) Waiting to run
Build Dalamud / Check API Compatibility (push) Blocked by required conditions
Build Dalamud / Deploy dalamud-distrib staging (push) Blocked by required conditions
Tag Build / Tag Build (push) Successful in 3s
Add badges
2025-12-19 21:20:06 +01:00

73 lines
1.4 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 "Plugin Changelogs" page.
/// </summary>
Changelogs,
/// <summary>
/// Open to the "Dalamud Changelogs" page.
/// </summary>
DalamudChangelogs,
}
/// <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 &#038; 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 "Badges" page.
/// </summary>
Badge,
/// <summary>
/// Open to the "Experimental" page.
/// </summary>
Experimental,
/// <summary>
/// Open to the "About" page.
/// </summary>
About,
}