namespace Dalamud.Interface; /// /// Enum describing pages the plugin installer can be opened to. /// public enum PluginInstallerOpenKind { /// /// Open to the "All Plugins" page. /// AllPlugins, /// /// Open to the "Installed Plugins" page. /// InstalledPlugins, /// /// Open to the "Can be updated" page. /// UpdateablePlugins, /// /// Open to the "Plugin Changelogs" page. /// Changelogs, /// /// Open to the "Dalamud Changelogs" page. /// DalamudChangelogs, } /// /// Enum describing tabs the settings window can be opened to. /// public enum SettingsOpenKind { /// /// Open to the "General" page. /// General, /// /// Open to the "Look & Feel" page. /// LookAndFeel, /// /// Open to the "Auto Updates" page. /// AutoUpdates, /// /// Open to the "Server Info Bar" page. /// ServerInfoBar, /// /// Open to the "Experimental" page. /// Experimental, /// /// Open to the "About" page. /// About, }