Files

1934 lines
115 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html class="writer-html5" lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index &mdash; MO2 Python Plugin API documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=4ae1632d" />
<link rel="shortcut icon" href="_static/mo2.ico"/>
<script src="_static/jquery.js?v=5d32c60e"></script>
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/js/theme.js"></script>
<link rel="index" title="Index" href="#" />
<link rel="search" title="Search" href="search.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="index.html" class="icon icon-home">
MO2 Python Plugin API
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="setup-tools.html">Setting up the environment</a><ul>
<li class="toctree-l2"><a class="reference internal" href="setup-tools.html#required-tools">Required tools</a></li>
<li class="toctree-l2"><a class="reference internal" href="setup-tools.html#preparation">Preparation</a><ul>
<li class="toctree-l3"><a class="reference internal" href="setup-tools.html#get-the-mobase-stubs">1. Get the <code class="docutils literal notranslate"><span class="pre">mobase</span></code> stubs</a></li>
<li class="toctree-l3"><a class="reference internal" href="setup-tools.html#configure-visual-studio-code-for-mobase">2. Configure Visual Studio Code for <code class="docutils literal notranslate"><span class="pre">mobase</span></code></a></li>
<li class="toctree-l3"><a class="reference internal" href="setup-tools.html#optional-configure-black-to-auto-format-your-source-files">3. [Optional] Configure <code class="docutils literal notranslate"><span class="pre">black</span></code> to auto-format your source files</a></li>
<li class="toctree-l3"><a class="reference internal" href="setup-tools.html#optional-automatically-reload-plugins-during-development">4. [Optional] Automatically reload plugins during development</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="setup-tools.html#testing-the-setup">Testing the setup</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugin-types.html">Type of Plugins</a><ul>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#installers">Installers</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#previewers">Previewers</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#mod-page">Mod Page</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#game">Game</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#tool">Tool</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#proxies">Proxies</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#free-plugins"><em>Free Plugins</em></a></li>
<li class="toctree-l2"><a class="reference internal" href="plugin-types.html#extension-interfaces">Extension Interfaces</a><ul>
<li class="toctree-l3"><a class="reference internal" href="plugin-types.html#diagnose">Diagnose</a></li>
<li class="toctree-l3"><a class="reference internal" href="plugin-types.html#file-mappings">File Mappings</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="writing-plugins.html">Writing Plugins</a><ul>
<li class="toctree-l2"><a class="reference internal" href="writing-plugins.html#getting-started">Getting started</a><ul>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#single-file-plugins">Single file plugins</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#module-plugins">Module Plugins</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="writing-plugins.html#writing-the-plugin">Writing the plugin</a><ul>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#iplugin-interface"><code class="docutils literal notranslate"><span class="pre">IPlugin</span></code> interface</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="writing-plugins.html#examples">Examples</a><ul>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#tutorial-plugins">Tutorial Plugins</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#official-plugins">Official Plugins</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#unofficial-plugins">Unofficial Plugins</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="writing-plugins.html#internationalization">Internationalization</a><ul>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#adding-translation-code">Adding translation code</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#generating-qt-translation-files">Generating Qt translation files</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#translating">Translating</a></li>
<li class="toctree-l3"><a class="reference internal" href="writing-plugins.html#distributing-translations">Distributing translations</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="faq.html">FAQ</a><ul>
<li class="toctree-l2"><a class="reference internal" href="faq.html#why-is-mo2-throwing-an-exception-when-i-try-to-create-a-type-inheriting-one-of-mo2-class">1. Why is MO2 throwing an exception when I try to create a type inheriting one of MO2 class?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#how-can-i-be-sure-to-implement-all-the-required-methods-when-creating-a-plugin">2. How can I be sure to implement all the required methods when creating a plugin?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#why-are-my-isinstance-x-qobject-and-isinstance-y-qwidget-not-working">3. Why are my <code class="docutils literal notranslate"><span class="pre">isinstance(x,</span> <span class="pre">QObject)</span></code> and <code class="docutils literal notranslate"><span class="pre">isinstance(y,</span> <span class="pre">QWidget)</span></code> not working?</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="autoapi/index.html">API Reference</a><ul>
<li class="toctree-l2"><a class="reference internal" href="autoapi/mobase/index.html">mobase</a><ul>
<li class="toctree-l3"><a class="reference internal" href="autoapi/mobase/index.html#submodules">Submodules</a><ul>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/widgets/index.html">mobase.widgets</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="autoapi/mobase/index.html#attributes">Attributes</a></li>
<li class="toctree-l3"><a class="reference internal" href="autoapi/mobase/index.html#classes">Classes</a></li>
<li class="toctree-l3"><a class="reference internal" href="autoapi/mobase/index.html#functions">Functions</a></li>
<li class="toctree-l3"><a class="reference internal" href="autoapi/mobase/index.html#package-contents">Package Contents</a><ul>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.BSAInvalidation"><code class="docutils literal notranslate"><span class="pre">BSAInvalidation</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.DataArchives"><code class="docutils literal notranslate"><span class="pre">DataArchives</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.EndorsedState"><code class="docutils literal notranslate"><span class="pre">EndorsedState</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting"><code class="docutils literal notranslate"><span class="pre">ExecutableForcedLoadSetting</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ExecutableInfo"><code class="docutils literal notranslate"><span class="pre">ExecutableInfo</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.FileInfo"><code class="docutils literal notranslate"><span class="pre">FileInfo</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.FileTreeEntry"><code class="docutils literal notranslate"><span class="pre">FileTreeEntry</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.GameFeature"><code class="docutils literal notranslate"><span class="pre">GameFeature</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.GamePlugins"><code class="docutils literal notranslate"><span class="pre">GamePlugins</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.GuessQuality"><code class="docutils literal notranslate"><span class="pre">GuessQuality</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.GuessedString"><code class="docutils literal notranslate"><span class="pre">GuessedString</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IDownloadManager"><code class="docutils literal notranslate"><span class="pre">IDownloadManager</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IFileTree"><code class="docutils literal notranslate"><span class="pre">IFileTree</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IGameFeatures"><code class="docutils literal notranslate"><span class="pre">IGameFeatures</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IInstallationManager"><code class="docutils literal notranslate"><span class="pre">IInstallationManager</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IModInterface"><code class="docutils literal notranslate"><span class="pre">IModInterface</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IModList"><code class="docutils literal notranslate"><span class="pre">IModList</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IModRepositoryBridge"><code class="docutils literal notranslate"><span class="pre">IModRepositoryBridge</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IOrganizer"><code class="docutils literal notranslate"><span class="pre">IOrganizer</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPlugin"><code class="docutils literal notranslate"><span class="pre">IPlugin</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginDiagnose"><code class="docutils literal notranslate"><span class="pre">IPluginDiagnose</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginFileMapper"><code class="docutils literal notranslate"><span class="pre">IPluginFileMapper</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginGame"><code class="docutils literal notranslate"><span class="pre">IPluginGame</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginInstaller"><code class="docutils literal notranslate"><span class="pre">IPluginInstaller</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginInstallerCustom"><code class="docutils literal notranslate"><span class="pre">IPluginInstallerCustom</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginInstallerSimple"><code class="docutils literal notranslate"><span class="pre">IPluginInstallerSimple</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginList"><code class="docutils literal notranslate"><span class="pre">IPluginList</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginModPage"><code class="docutils literal notranslate"><span class="pre">IPluginModPage</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginPreview"><code class="docutils literal notranslate"><span class="pre">IPluginPreview</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginRequirement"><code class="docutils literal notranslate"><span class="pre">IPluginRequirement</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IPluginTool"><code class="docutils literal notranslate"><span class="pre">IPluginTool</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.IProfile"><code class="docutils literal notranslate"><span class="pre">IProfile</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ISaveGame"><code class="docutils literal notranslate"><span class="pre">ISaveGame</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ISaveGameInfoWidget"><code class="docutils literal notranslate"><span class="pre">ISaveGameInfoWidget</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.InstallResult"><code class="docutils literal notranslate"><span class="pre">InstallResult</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.LoadOrderMechanism"><code class="docutils literal notranslate"><span class="pre">LoadOrderMechanism</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.LocalSavegames"><code class="docutils literal notranslate"><span class="pre">LocalSavegames</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.Mapping"><code class="docutils literal notranslate"><span class="pre">Mapping</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ModDataChecker"><code class="docutils literal notranslate"><span class="pre">ModDataChecker</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ModDataContent"><code class="docutils literal notranslate"><span class="pre">ModDataContent</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo"><code class="docutils literal notranslate"><span class="pre">ModRepositoryFileInfo</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ModState"><code class="docutils literal notranslate"><span class="pre">ModState</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.PluginRequirementFactory"><code class="docutils literal notranslate"><span class="pre">PluginRequirementFactory</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.PluginSetting"><code class="docutils literal notranslate"><span class="pre">PluginSetting</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.PluginState"><code class="docutils literal notranslate"><span class="pre">PluginState</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ProfileSetting"><code class="docutils literal notranslate"><span class="pre">ProfileSetting</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ReleaseType"><code class="docutils literal notranslate"><span class="pre">ReleaseType</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.SaveGameInfo"><code class="docutils literal notranslate"><span class="pre">SaveGameInfo</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.ScriptExtender"><code class="docutils literal notranslate"><span class="pre">ScriptExtender</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.SortMechanism"><code class="docutils literal notranslate"><span class="pre">SortMechanism</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.TrackedState"><code class="docutils literal notranslate"><span class="pre">TrackedState</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.UnmanagedMods"><code class="docutils literal notranslate"><span class="pre">UnmanagedMods</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.VersionInfo"><code class="docutils literal notranslate"><span class="pre">VersionInfo</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.VersionScheme"><code class="docutils literal notranslate"><span class="pre">VersionScheme</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.getFileVersion"><code class="docutils literal notranslate"><span class="pre">getFileVersion()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.getIconForExecutable"><code class="docutils literal notranslate"><span class="pre">getIconForExecutable()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.getProductVersion"><code class="docutils literal notranslate"><span class="pre">getProductVersion()</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.GameFeatureType"><code class="docutils literal notranslate"><span class="pre">GameFeatureType</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.INVALID_HANDLE_VALUE"><code class="docutils literal notranslate"><span class="pre">INVALID_HANDLE_VALUE</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.MoVariant"><code class="docutils literal notranslate"><span class="pre">MoVariant</span></code></a></li>
<li class="toctree-l4"><a class="reference internal" href="autoapi/mobase/index.html#mobase.__version__"><code class="docutils literal notranslate"><span class="pre">__version__</span></code></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">MO2 Python Plugin API</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active">Index</li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<h1 id="index">Index</h1>
<div class="genindex-jumpbox">
<a href="#_"><strong>_</strong></a>
| <a href="#A"><strong>A</strong></a>
| <a href="#B"><strong>B</strong></a>
| <a href="#C"><strong>C</strong></a>
| <a href="#D"><strong>D</strong></a>
| <a href="#E"><strong>E</strong></a>
| <a href="#F"><strong>F</strong></a>
| <a href="#G"><strong>G</strong></a>
| <a href="#H"><strong>H</strong></a>
| <a href="#I"><strong>I</strong></a>
| <a href="#K"><strong>K</strong></a>
| <a href="#L"><strong>L</strong></a>
| <a href="#M"><strong>M</strong></a>
| <a href="#N"><strong>N</strong></a>
| <a href="#O"><strong>O</strong></a>
| <a href="#P"><strong>P</strong></a>
| <a href="#R"><strong>R</strong></a>
| <a href="#S"><strong>S</strong></a>
| <a href="#T"><strong>T</strong></a>
| <a href="#U"><strong>U</strong></a>
| <a href="#V"><strong>V</strong></a>
| <a href="#W"><strong>W</strong></a>
</div>
<h2 id="_">_</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__and__">__and__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__and__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__and__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__and__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.__bool__">__bool__() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__eq__">__eq__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.__eq__">(mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__eq__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.__eq__">(mobase.GuessQuality method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.__eq__">(mobase.IFileTree.InsertPolicy method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.__eq__">(mobase.IFileTree.WalkReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.__eq__">(mobase.InstallResult method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.__eq__">(mobase.LoadOrderMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.__eq__">(mobase.ModDataChecker.CheckReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__eq__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__eq__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__eq__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.__eq__">(mobase.ReleaseType method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.__eq__">(mobase.SortMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__eq__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__eq__">(mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.__eq__">(mobase.VersionScheme method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__ge__">__ge__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__ge__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__ge__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__ge__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__ge__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__ge__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__ge__">(mobase.VersionInfo method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.__getattr__">__getattr__() (mobase.IModRepositoryBridge method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGameInfoWidget.__getattr__">(mobase.ISaveGameInfoWidget method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.__getitem__">__getitem__() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__gt__">__gt__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__gt__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__gt__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__gt__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__gt__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__gt__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__gt__">(mobase.VersionInfo method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__int__">__int__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__int__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.__int__">(mobase.GuessQuality method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.__int__">(mobase.IFileTree.InsertPolicy method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.__int__">(mobase.IFileTree.WalkReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.__int__">(mobase.InstallResult method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.__int__">(mobase.LoadOrderMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.__int__">(mobase.ModDataChecker.CheckReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__int__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__int__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__int__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.__int__">(mobase.ReleaseType method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.__int__">(mobase.SortMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__int__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.__int__">(mobase.VersionScheme method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__invert__">__invert__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__invert__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__invert__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__invert__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.__iter__">__iter__() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__le__">__le__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__le__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__le__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__le__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__le__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__le__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__le__">(mobase.VersionInfo method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.__len__">__len__() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__lt__">__lt__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__lt__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__lt__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__lt__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__lt__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__lt__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__lt__">(mobase.VersionInfo method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__ne__">__ne__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__ne__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.__ne__">(mobase.GuessQuality method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.__ne__">(mobase.IFileTree.InsertPolicy method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.__ne__">(mobase.IFileTree.WalkReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.__ne__">(mobase.InstallResult method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.__ne__">(mobase.LoadOrderMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.__ne__">(mobase.ModDataChecker.CheckReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__ne__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__ne__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__ne__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.__ne__">(mobase.ReleaseType method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.__ne__">(mobase.SortMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__ne__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__ne__">(mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.__ne__">(mobase.VersionScheme method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__or__">__or__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__or__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__or__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__or__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__rand__">__rand__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__rand__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__rand__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__rand__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__ror__">__ror__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__ror__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__ror__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__ror__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__rxor__">__rxor__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__rxor__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__rxor__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__rxor__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.__str__">__str__() (mobase.EndorsedState method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__str__">(mobase.FileTreeEntry.FileTypes method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString.__str__">(mobase.GuessedString method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.__str__">(mobase.GuessQuality method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.__str__">(mobase.IFileTree.InsertPolicy method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.__str__">(mobase.IFileTree.WalkReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.__str__">(mobase.InstallResult method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.__str__">(mobase.LoadOrderMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping.__str__">(mobase.Mapping method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.__str__">(mobase.ModDataChecker.CheckReturn method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.__str__">(mobase.ModRepositoryFileInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__str__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__str__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__str__">(mobase.ProfileSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.__str__">(mobase.ReleaseType method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.__str__">(mobase.SortMechanism method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.__str__">(mobase.TrackedState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.__str__">(mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.__str__">(mobase.VersionScheme method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.__version__">__version__ (in module mobase)</a>
<ul>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.__version__">(in module mobase.widgets)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.__xor__">__xor__() (mobase.FileTreeEntry.FileTypes method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.__xor__">(mobase.ModState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.__xor__">(mobase.PluginState method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.__xor__">(mobase.ProfileSetting method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose._invalidate">_invalidate() (mobase.IPluginDiagnose method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller._manager">_manager() (mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge._object">_object() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller._parentWidget">_parentWidget() (mobase.IPluginInstaller method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage._parentWidget">(mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool._parentWidget">(mobase.IPluginTool method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGameInfoWidget._widget">_widget() (mobase.ISaveGameInfoWidget method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="A">A</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.absoluteIniFilePath">absoluteIniFilePath() (mobase.IProfile method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.absolutePath">absolutePath() (mobase.IModInterface method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.absolutePath">(mobase.IProfile method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.BSAInvalidation.activate">activate() (mobase.BSAInvalidation method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.ACTIVE">ACTIVE (mobase.ModState attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.ACTIVE">(mobase.PluginState attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose.activeProblems">activeProblems() (mobase.IPluginDiagnose method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.DataArchives.addArchive">addArchive() (mobase.DataArchives method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.addButton">addButton() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.addCategory">addCategory() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.addContent">addContent() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.addDirectory">addDirectory() (mobase.IFileTree method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.addFile">addFile() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.addNexusCategory">addNexusCategory() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame.allFiles">allFiles() (mobase.ISaveGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.allMods">allMods() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.allModsByProfilePriority">allModsByProfilePriority() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.ALPHA">ALPHA (mobase.ReleaseType attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.ALTERNATE">ALTERNATE (mobase.ModState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.appVersion">appVersion() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileInfo.archive">archive (mobase.FileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.DataArchives.archives">archives() (mobase.DataArchives method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.arguments">arguments() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.asCustom">asCustom() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.author">author() (mobase.IPlugin method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="B">B</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.basePath">basePath() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginRequirementFactory.basic">basic() (mobase.PluginRequirementFactory static method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.BETA">BETA (mobase.ReleaseType attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.binary">binary() (mobase.ExecutableInfo method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.binaryName">binaryName() (mobase.IPluginGame method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.binaryName">(mobase.ScriptExtender method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.BOSS">BOSS (mobase.SortMechanism attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.BSAInvalidation">BSAInvalidation (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialogButton.button">button (mobase.widgets.TaskDialogButton property)</a>
</li>
</ul></td>
</tr></table>
<h2 id="C">C</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.CANCELED">CANCELED (mobase.InstallResult attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.CANDIDATE">CANDIDATE (mobase.ReleaseType attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.canonicalString">canonicalString() (mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.categories">categories() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.categoryID">categoryID (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.CCPlugins">CCPlugins() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginRequirement.check">check() (mobase.IPluginRequirement method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.clear">clear() (mobase.IFileTree method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.clear">(mobase.VersionInfo method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.clearPluginSettings">clearPluginSettings() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.color">color() (mobase.IModInterface method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.comments">comments() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.CONFIGURATION">CONFIGURATION (mobase.ProfileSetting attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.CONTINUE">CONTINUE (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.CONTINUE">(mobase.IFileTree.WalkReturn attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.converted">converted() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.copy">copy() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager.createFile">createFile() (mobase.IInstallationManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.createFromJson">createFromJson() (mobase.ModRepositoryFileInfo static method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.createMod">createMod() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.createNexusBridge">createNexusBridge() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.createOrphanTree">createOrphanTree() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping.createTarget">createTarget (mobase.Mapping property)</a>
</li>
</ul></td>
</tr></table>
<h2 id="D">D</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.DataArchives">DataArchives (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.dataDirectory">dataDirectory() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.dataLooksValid">dataLooksValid() (mobase.ModDataChecker method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.DATE">DATE (mobase.VersionScheme attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.BSAInvalidation.deactivate">deactivate() (mobase.BSAInvalidation method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.DECIMAL_MARK">DECIMAL_MARK (mobase.VersionScheme attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginSetting.default_value">default_value (mobase.PluginSetting property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.description">description (mobase.ModRepositoryFileInfo property)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.PluginSetting.description">(mobase.PluginSetting property)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialogButton.description">(mobase.widgets.TaskDialogButton property)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.description">description() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.descriptionAvailable">descriptionAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping.destination">destination (mobase.Mapping property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.detach">detach() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.detectGame">detectGame() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginRequirementFactory.diagnose">diagnose() (mobase.PluginRequirementFactory static method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.DIRECTORY">DIRECTORY (mobase.FileTreeEntry attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.DIRECTORY">(mobase.FileTreeEntry.FileTypes attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.DISCOVER">DISCOVER (mobase.VersionScheme attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool.display">display() (mobase.IPluginTool method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.displayGameName">displayGameName() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.displayName">displayName() (mobase.IModList method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.displayName">(mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool.displayName">(mobase.IPluginTool method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.UnmanagedMods.displayName">(mobase.UnmanagedMods method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.displayString">displayString() (mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.DLCPlugins">DLCPlugins() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.documentsDirectory">documentsDirectory() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.downloadManager">downloadManager() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.downloadPath">downloadPath() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.downloadsPath">downloadsPath() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.downloadURLsAvailable">downloadURLsAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
</ul></td>
</tr></table>
<h2 id="E">E</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ModState.EMPTY">EMPTY (mobase.ModState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.enabled">enabled() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.enabledByDefault">enabledByDefault() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.enabledPlugins">enabledPlugins() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.ENDORSED">ENDORSED (mobase.ModState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.ENDORSED_FALSE">ENDORSED_FALSE (mobase.EndorsedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.ENDORSED_NEVER">ENDORSED_NEVER (mobase.EndorsedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.ENDORSED_TRUE">ENDORSED_TRUE (mobase.EndorsedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.ENDORSED_UNKNOWN">ENDORSED_UNKNOWN (mobase.EndorsedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState">EndorsedState (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.endorsedState">endorsedState() (mobase.IModInterface method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.endorsementsAvailable">endorsementsAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.endorsementToggled">endorsementToggled (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.ESSENTIAL">ESSENTIAL (mobase.ModState attribute)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.exec">exec() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.executableForcedLoads">executableForcedLoads() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting">ExecutableForcedLoadSetting (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo">ExecutableInfo (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.executables">executables() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.EXISTS">EXISTS (mobase.ModState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.exists">exists() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager.extractFile">extractFile() (mobase.IInstallationManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager.extractFiles">extractFiles() (mobase.IInstallationManager method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="F">F</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.FAIL_IF_EXISTS">FAIL_IF_EXISTS (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.FAIL_IF_EXISTS">(mobase.IFileTree.InsertPolicy attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.FAILED">FAILED (mobase.InstallResult attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.FALLBACK">FALLBACK (mobase.GuessQuality attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FILE">FILE (mobase.FileTreeEntry attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.FILE">(mobase.FileTreeEntry.FileTypes attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FILE_OR_DIRECTORY">FILE_OR_DIRECTORY (mobase.FileTreeEntry attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.FILE_OR_DIRECTORY">(mobase.FileTreeEntry.FileTypes attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.FILE_TIME">FILE_TIME (mobase.LoadOrderMechanism attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.fileCategory">fileCategory (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.fileID">fileID (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileInfo">FileInfo (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.fileInfoAvailable">fileInfoAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.fileName">fileName (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileInfo.filePath">filePath (mobase.FileInfo property)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.filesAvailable">filesAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.fileSize">fileSize (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.fileTime">fileTime (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.fileTree">fileTree() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry">FileTreeEntry (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes">FileTreeEntry.FileTypes (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.fileType">fileType() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.FINAL">FINAL (mobase.ReleaseType attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.find">find() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.findFileInfos">findFileInfos() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.findFiles">findFiles() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.fix">fix() (mobase.ModDataChecker method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.FIXABLE">FIXABLE (mobase.ModDataChecker attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.FIXABLE">(mobase.ModDataChecker.CheckReturn attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.forced">forced() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose.fullDescription">fullDescription() (mobase.IPluginDiagnose method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="G">G</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.PluginRequirementFactory.gameDependency">gameDependency() (mobase.PluginRequirementFactory static method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameDirectory">gameDirectory() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GameFeature">GameFeature (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IGameFeatures.gameFeature">gameFeature() (mobase.IGameFeatures method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.gameFeatures">gameFeatures() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GameFeatureType">GameFeatureType (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameIcon">gameIcon() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.gameName">gameName (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.gameName">gameName() (mobase.IModInterface method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameName">(mobase.IPluginGame method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameNexusName">gameNexusName() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins">GamePlugins (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameShortName">gameShortName() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameVariants">gameVariants() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.gameVersion">gameVersion() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginPreview.genDataPreview">genDataPreview() (mobase.IPluginPreview method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginPreview.genFilePreview">genFilePreview() (mobase.IPluginPreview method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.getAllContents">getAllContents() (mobase.ModDataContent method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.getArch">getArch() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.getContentsFor">getContentsFor() (mobase.ModDataContent method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame.getCreationTime">getCreationTime() (mobase.ISaveGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.getExtenderVersion">getExtenderVersion() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.getFileOrigins">getFileOrigins() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame.getFilepath">getFilepath() (mobase.ISaveGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.getFileVersion">getFileVersion() (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.getGame">getGame() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.getIconForExecutable">getIconForExecutable() (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.getLauncherName">getLauncherName() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins.getLoadOrder">getLoadOrder() (mobase.GamePlugins method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SaveGameInfo.getMissingAssets">getMissingAssets() (mobase.SaveGameInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.getMod">getMod() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame.getName">getName() (mobase.ISaveGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.getPluginDataPath">getPluginDataPath() (mobase.IOrganizer static method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.getProductVersion">getProductVersion() (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SaveGameInfo.getSaveGameWidget">getSaveGameWidget() (mobase.SaveGameInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame.getSaveGroupIdentifier">getSaveGroupIdentifier() (mobase.ISaveGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager.getSupportedExtensions">getSupportedExtensions() (mobase.IInstallationManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.getSupportURL">getSupportURL() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.GOOD">GOOD (mobase.GuessQuality attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString">GuessedString (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality">GuessQuality (class in mobase)</a>
</li>
</ul></td>
</tr></table>
<h2 id="H">H</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.handlesDownload">handlesDownload() (mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose.hasGuidedFix">hasGuidedFix() (mobase.IPluginDiagnose method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.hasLightExtension">hasLightExtension() (mobase.IPluginList method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.hasMasterExtension">hasMasterExtension() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.hasNoRecords">hasNoRecords() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.hasSuffix">hasSuffix() (mobase.FileTreeEntry method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="I">I</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.Content.icon">icon (mobase.ModDataContent.Content property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.icon">icon() (mobase.IPluginModPage method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool.icon">(mobase.IPluginTool method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.Content.id">id (mobase.ModDataContent.Content property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager">IDownloadManager (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree">IFileTree (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy">IFileTree.InsertPolicy (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn">IFileTree.WalkReturn (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IGameFeatures">IGameFeatures (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.ignoredVersion">ignoredVersion() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager">IInstallationManager (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface">IModInterface (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList">IModList (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge">IModRepositoryBridge (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.INACTIVE">INACTIVE (mobase.PluginState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.iniFiles">iniFiles() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.init">init() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.initializeProfile">initializeProfile() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.insert">insert() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerCustom.install">install() (mobase.IPluginInstallerCustom method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerSimple.install">(mobase.IPluginInstallerSimple method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IInstallationManager.installArchive">installArchive() (mobase.IInstallationManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.installationFile">installationFile() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.installMod">installMod() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult">InstallResult (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.INVALID">INVALID (mobase.GuessQuality attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.INVALID">(mobase.ModDataChecker attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.INVALID">(mobase.ModDataChecker.CheckReturn attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.INVALID_HANDLE_VALUE">INVALID_HANDLE_VALUE (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.invalidationActive">invalidationActive() (mobase.IProfile method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer">IOrganizer (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin">IPlugin (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose">IPluginDiagnose (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginFileMapper">IPluginFileMapper (class in mobase)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame">IPluginGame (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller">IPluginInstaller (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerCustom">IPluginInstallerCustom (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerSimple">IPluginInstallerSimple (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList">IPluginList (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage">IPluginModPage (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginPreview">IPluginPreview (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginRequirement">IPluginRequirement (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginRequirement.Problem">IPluginRequirement.Problem (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool">IPluginTool (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IProfile">IProfile (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.isArchiveSupported">isArchiveSupported() (mobase.IPluginInstaller method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerCustom.isArchiveSupported">(mobase.IPluginInstallerCustom method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGame">ISaveGame (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGameInfoWidget">ISaveGameInfoWidget (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.isBackup">isBackup() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.isCustom">isCustom() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.isDir">isDir() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping.isDirectory">isDirectory (mobase.Mapping property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.isFile">isFile() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.isForeign">isForeign() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.isInstalled">isInstalled() (mobase.IPluginGame method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.isInstalled">(mobase.ScriptExtender method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.BSAInvalidation.isInvalidationBSA">isInvalidationBSA() (mobase.BSAInvalidation method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.isLightFlagged">isLightFlagged() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.isManualInstaller">isManualInstaller() (mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.isMasterFlagged">isMasterFlagged() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.isMediumFlagged">isMediumFlagged() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.Content.isOnlyForFilter">isOnlyForFilter() (mobase.ModDataContent.Content method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.isOverwrite">isOverwrite() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.isPluginEnabled">isPluginEnabled() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.isSeparator">isSeparator() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.isValid">isValid() (mobase.ExecutableInfo method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.isValid">(mobase.VersionInfo method)</a>
</li>
</ul></li>
</ul></td>
</tr></table>
<h2 id="K">K</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.PluginSetting.key">key (mobase.PluginSetting property)</a>
</li>
</ul></td>
</tr></table>
<h2 id="L">L</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.library">library() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins.lightPluginsAreSupported">lightPluginsAreSupported() (mobase.GamePlugins method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.listDirectories">listDirectories() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.listSaves">listSaves() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.LITERAL">LITERAL (mobase.VersionScheme attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.loaderName">loaderName() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.loaderPath">loaderPath() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.loadOrder">loadOrder() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism">LoadOrderMechanism (class in mobase)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.loadOrderMechanism">loadOrderMechanism() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.localizedName">localizedName() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LocalSavegames">LocalSavegames (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.localSavesEnabled">localSavesEnabled() (mobase.IProfile method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.localSettingsEnabled">localSettingsEnabled() (mobase.IProfile method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginRequirement.Problem.longDescription">longDescription() (mobase.IPluginRequirement.Problem method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.looksValid">looksValid() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.LOOT">LOOT (mobase.SortMechanism attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.lootGameName">lootGameName() (mobase.IPluginGame method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="M">M</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.managedGame">managedGame() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.MANUAL_REQUESTED">MANUAL_REQUESTED (mobase.InstallResult attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping">Mapping (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginFileMapper.mappings">mappings() (mobase.IPluginFileMapper method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.LocalSavegames.mappings">(mobase.LocalSavegames method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.master">master() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.masters">masters() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins.mediumPluginsAreSupported">mediumPluginsAreSupported() (mobase.GamePlugins method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.MERGE">MERGE (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.MERGE">(mobase.IFileTree.InsertPolicy attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.merge">merge() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.META">META (mobase.GuessQuality attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.MISSING">MISSING (mobase.PluginState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.MLOX">MLOX (mobase.SortMechanism attribute)</a>
</li>
<li>
mobase
<ul>
<li><a href="autoapi/mobase/index.html#module-mobase">module</a>
</li>
</ul></li>
<li>
mobase.widgets
<ul>
<li><a href="autoapi/mobase/widgets/index.html#module-mobase.widgets">module</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.modDataChanged">modDataChanged() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker">ModDataChecker (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn">ModDataChecker.CheckReturn (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent">ModDataContent (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.Content">ModDataContent.Content (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.modID">modID (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.modList">modList() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.modName">modName (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo">ModRepositoryFileInfo (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.MODS">MODS (mobase.ProfileSetting attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.UnmanagedMods.mods">mods() (mobase.UnmanagedMods method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.modsPath">modsPath() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState">ModState (class in mobase)</a>
</li>
<li>
module
<ul>
<li><a href="autoapi/mobase/index.html#module-mobase">mobase</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#module-mobase.widgets">mobase.widgets</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.MoVariant">MoVariant (in module mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.move">move() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.moveTo">moveTo() (mobase.FileTreeEntry method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="N">N</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.name">name (mobase.EndorsedState property)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.name">(mobase.FileTreeEntry.FileTypes property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.name">(mobase.GuessQuality property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.name">(mobase.IFileTree.InsertPolicy property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.name">(mobase.IFileTree.WalkReturn property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.name">(mobase.InstallResult property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.name">(mobase.LoadOrderMechanism property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.name">(mobase.ModDataChecker.CheckReturn property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataContent.Content.name">(mobase.ModDataContent.Content property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.name">(mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.name">(mobase.ModState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.name">(mobase.PluginState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.name">(mobase.ProfileSetting property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.name">(mobase.ReleaseType property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.name">(mobase.SortMechanism property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.name">(mobase.TrackedState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.name">(mobase.VersionScheme property)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.name">name() (mobase.FileTreeEntry method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.name">(mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.name">(mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IProfile.name">(mobase.IProfile method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.newestVersion">newestVersion (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.newestVersion">newestVersion() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.nexusGameID">nexusGameID() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.nexusId">nexusId() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.nexusModOrganizerID">nexusModOrganizerID() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.NONE">NONE (mobase.LoadOrderMechanism attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.NONE">(mobase.SortMechanism attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.NOT_ATTEMPTED">NOT_ATTEMPTED (mobase.InstallResult attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.notes">notes() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.NUMBERS_AND_LETTERS">NUMBERS_AND_LETTERS (mobase.VersionScheme attribute)</a>
</li>
</ul></td>
</tr></table>
<h2 id="O">O</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onAboutToRun">onAboutToRun() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.onDownloadComplete">onDownloadComplete() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.onDownloadFailed">onDownloadFailed() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.onDownloadPaused">onDownloadPaused() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.onDownloadRemoved">onDownloadRemoved() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onFinishedRun">onFinishedRun() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.onInstallationEnd">onInstallationEnd() (mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.onInstallationStart">onInstallationStart() (mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.onModInstalled">onModInstalled() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.onModMoved">onModMoved() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.onModRemoved">onModRemoved() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.onModStateChanged">onModStateChanged() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onNextRefresh">onNextRefresh() (mobase.IOrganizer method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onPluginDisabled">onPluginDisabled() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onPluginEnabled">onPluginEnabled() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.onPluginMoved">onPluginMoved() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onPluginSettingChanged">onPluginSettingChanged() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.onPluginStateChanged">onPluginStateChanged() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onProfileChanged">onProfileChanged() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onProfileCreated">onProfileCreated() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onProfileRemoved">onProfileRemoved() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onProfileRenamed">onProfileRenamed() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.onRefreshed">onRefreshed() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.onUserInterfaceInitialized">onUserInterfaceInitialized() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.origin">origin() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileInfo.origins">origins (mobase.FileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.overwritePath">overwritePath() (mobase.IOrganizer method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="P">P</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.pageURL">pageURL() (mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.parent">parent() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.parse">parse() (mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.path">path() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.pathFrom">pathFrom() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.pathTo">pathTo() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.persistent">persistent() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.pluginDataPath">pluginDataPath() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginRequirementFactory.pluginDependency">pluginDependency() (mobase.PluginRequirementFactory static method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.pluginList">pluginList() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.pluginNames">pluginNames() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.pluginPath">pluginPath() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginRequirementFactory">PluginRequirementFactory (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.PLUGINS_TXT">PLUGINS_TXT (mobase.LoadOrderMechanism attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginSetting">PluginSetting (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.pluginSetting">pluginSetting() (mobase.IModInterface method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.pluginSetting">(mobase.IOrganizer method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.pluginSettings">pluginSettings() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState">PluginState (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.PRE_ALPHA">PRE_ALPHA (mobase.ReleaseType attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.PREFER_DEFAULTS">PREFER_DEFAULTS (mobase.ProfileSetting attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LocalSavegames.prepareProfile">prepareProfile() (mobase.LocalSavegames method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.PRESET">PRESET (mobase.GuessQuality attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.primaryCategory">primaryCategory() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.primaryPlugins">primaryPlugins() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.primarySources">primarySources() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.priority">priority() (mobase.IModList method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.priority">(mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.priority">(mobase.IPluginList method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.process">process() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.profile">profile() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.profileName">profileName() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.profilePath">profilePath() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting">ProfileSetting (class in mobase)</a>
</li>
</ul></td>
</tr></table>
<h2 id="R">R</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins.readPluginLists">readPluginLists() (mobase.GamePlugins method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.UnmanagedMods.referenceFile">referenceFile() (mobase.UnmanagedMods method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.refresh">refresh() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IGameFeatures.registerFeature">registerFeature() (mobase.IGameFeatures method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.REGULAR">REGULAR (mobase.VersionScheme attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType">ReleaseType (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.remove">remove() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.removeAll">removeAll() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.DataArchives.removeArchive">removeArchive() (mobase.DataArchives method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.removeCategory">removeCategory() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.removeIf">removeIf() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.removeMod">removeMod() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.renameMod">renameMod() (mobase.IModList method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.REPLACE">REPLACE (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.REPLACE">(mobase.IFileTree.InsertPolicy attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.repository">repository (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.repository">repository() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestDescription">requestDescription() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestDownloadURL">requestDownloadURL() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestFailed">requestFailed (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestFileInfo">requestFileInfo() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestFiles">requestFiles() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.requestToggleEndorsement">requestToggleEndorsement() (mobase.IModRepositoryBridge method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.requirements">requirements() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString.reset">reset() (mobase.GuessedString method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.resolvePath">resolvePath() (mobase.IOrganizer method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="S">S</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender.savegameExtension">savegameExtension() (mobase.ScriptExtender method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SaveGameInfo">SaveGameInfo (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.SAVEGAMES">SAVEGAMES (mobase.ProfileSetting attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.savesDirectory">savesDirectory() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo.scheme">scheme() (mobase.VersionInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ScriptExtender">ScriptExtender (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.secondaryDataDirectories">secondaryDataDirectories() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.UnmanagedMods.secondaryFiles">secondaryFiles() (mobase.UnmanagedMods method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.setActive">setActive() (mobase.IModList method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setContent">setContent() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setDetails">setDetails() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString.setFilter">setFilter() (mobase.GuessedString method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setGameName">setGameName() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.setGamePath">setGamePath() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.setGameVariant">setGameVariant() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setIcon">setIcon() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.setInstallationManager">setInstallationManager() (mobase.IPluginInstaller method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setIsEndorsed">setIsEndorsed() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.setLoadOrder">setLoadOrder() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setMain">setMain() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setNewestVersion">setNewestVersion() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setNexusID">setNexusID() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstaller.setParentWidget">setParentWidget() (mobase.IPluginInstaller method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.setParentWidget">(mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool.setParentWidget">(mobase.IPluginTool method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.setPersistent">setPersistent() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setPluginSetting">setPluginSetting() (mobase.IModInterface method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.setPluginSetting">(mobase.IOrganizer method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.setPriority">setPriority() (mobase.IModList method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.setPriority">(mobase.IPluginList method)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setRemember">setRemember() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ISaveGameInfoWidget.setSave">setSave() (mobase.ISaveGameInfoWidget method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.setState">setState() (mobase.IPluginList method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.settings">settings() (mobase.IPlugin method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setTitle">setTitle() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setUrl">setUrl() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.setVersion">setVersion() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog.setWidth">setWidth() (mobase.widgets.TaskDialog method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose.shortDescription">shortDescription() (mobase.IPluginDiagnose method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginRequirement.Problem.shortDescription">(mobase.IPluginRequirement.Problem method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.SKIP">SKIP (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.SKIP">(mobase.IFileTree.WalkReturn attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism">SortMechanism (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.sortMechanism">sortMechanism() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.Mapping.source">source (mobase.Mapping property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.startApplication">startApplication() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.startDownloadNexusFile">startDownloadNexusFile() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IDownloadManager.startDownloadURLs">startDownloadURLs() (mobase.IDownloadManager method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginDiagnose.startGuidedFix">startGuidedFix() (mobase.IPluginDiagnose method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModList.state">state() (mobase.IModList method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginList.state">(mobase.IPluginList method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.steamAppID">steamAppID() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.steamAPPId">steamAPPId() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.STOP">STOP (mobase.IFileTree attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.STOP">(mobase.IFileTree.WalkReturn attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.SUCCESS">SUCCESS (mobase.InstallResult attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.suffix">suffix() (mobase.FileTreeEntry method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginInstallerCustom.supportedExtensions">supportedExtensions() (mobase.IPluginInstallerCustom method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPluginPreview.supportedExtensions">(mobase.IPluginPreview method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginPreview.supportsArchives">supportsArchives() (mobase.IPluginPreview method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="T">T</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialog">TaskDialog (class in mobase.widgets)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialogButton">TaskDialogButton (class in mobase.widgets)</a>
</li>
<li><a href="autoapi/mobase/widgets/index.html#mobase.widgets.TaskDialogButton.text">text (mobase.widgets.TaskDialogButton property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.title">title() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginTool.tooltip">tooltip() (mobase.IPluginTool method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.TRACKED_FALSE">TRACKED_FALSE (mobase.TrackedState attribute)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.TRACKED_TRUE">TRACKED_TRUE (mobase.TrackedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.TRACKED_UNKNOWN">TRACKED_UNKNOWN (mobase.TrackedState attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.trackedModsAvailable">trackedModsAvailable (mobase.IModRepositoryBridge attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState">TrackedState (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.trackedState">trackedState() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModRepositoryBridge.trackingToggled">trackingToggled (mobase.IModRepositoryBridge attribute)</a>
</li>
</ul></td>
</tr></table>
<h2 id="U">U</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.UnmanagedMods">UnmanagedMods (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IGameFeatures.unregisterFeature">unregisterFeature() (mobase.IGameFeatures method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IGameFeatures.unregisterFeatures">unregisterFeatures() (mobase.IGameFeatures method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString.update">update() (mobase.GuessedString method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.uri">uri (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.url">url() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginModPage.useIntegratedBrowser">useIntegratedBrowser() (mobase.IPluginModPage method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.USER">USER (mobase.GuessQuality attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.userData">userData (mobase.ModRepositoryFileInfo property)</a>
</li>
</ul></td>
</tr></table>
<h2 id="V">V</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.VALID">VALID (mobase.ModDataChecker attribute)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.VALID">(mobase.ModDataChecker.CheckReturn attribute)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.VALID">(mobase.ModState attribute)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.validated">validated() (mobase.IModInterface method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IPluginGame.validShortNames">validShortNames() (mobase.IPluginGame method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.EndorsedState.value">value (mobase.EndorsedState property)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.FileTreeEntry.FileTypes.value">(mobase.FileTreeEntry.FileTypes property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessQuality.value">(mobase.GuessQuality property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.InsertPolicy.value">(mobase.IFileTree.InsertPolicy property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.WalkReturn.value">(mobase.IFileTree.WalkReturn property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.InstallResult.value">(mobase.InstallResult property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.LoadOrderMechanism.value">(mobase.LoadOrderMechanism property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModDataChecker.CheckReturn.value">(mobase.ModDataChecker.CheckReturn property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModState.value">(mobase.ModState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.PluginState.value">(mobase.PluginState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ProfileSetting.value">(mobase.ProfileSetting property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ReleaseType.value">(mobase.ReleaseType property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.SortMechanism.value">(mobase.SortMechanism property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.TrackedState.value">(mobase.TrackedState property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme.value">(mobase.VersionScheme property)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.DataArchives.vanillaArchives">vanillaArchives() (mobase.DataArchives method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GuessedString.variants">variants() (mobase.GuessedString method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ModRepositoryFileInfo.version">version (mobase.ModRepositoryFileInfo property)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IModInterface.version">version() (mobase.IModInterface method)</a>
<ul>
<li><a href="autoapi/mobase/index.html#mobase.IPlugin.version">(mobase.IPlugin method)</a>
</li>
</ul></li>
<li><a href="autoapi/mobase/index.html#mobase.VersionInfo">VersionInfo (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.VersionScheme">VersionScheme (class in mobase)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.virtualFileTree">virtualFileTree() (mobase.IOrganizer method)</a>
</li>
</ul></td>
</tr></table>
<h2 id="W">W</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.IOrganizer.waitForApplication">waitForApplication() (mobase.IOrganizer method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.IFileTree.walk">walk() (mobase.IFileTree method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.withArgument">withArgument() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.withEnabled">withEnabled() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableForcedLoadSetting.withForced">withForced() (mobase.ExecutableForcedLoadSetting method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.withSteamAppId">withSteamAppId() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.withWorkingDirectory">withWorkingDirectory() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.ExecutableInfo.workingDirectory">workingDirectory() (mobase.ExecutableInfo method)</a>
</li>
<li><a href="autoapi/mobase/index.html#mobase.GamePlugins.writePluginLists">writePluginLists() (mobase.GamePlugins method)</a>
</li>
</ul></td>
</tr></table>
</div>
</div>
<footer>
<hr/>
<div role="contentinfo">
<p>&#169; Copyright 2023, Holt59.</p>
</div>
Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a
<a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a>
provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
</body>
</html>