eric7/Documentation/Source/eric7.EricWidgets.EricApplication.html

branch
eric7
changeset 8372
e0227a7c850e
child 8596
d64760b2da50
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/Documentation/Source/eric7.EricWidgets.EricApplication.html	Mon May 24 11:19:57 2021 +0200
@@ -0,0 +1,337 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.EricWidgets.EricApplication</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.EricWidgets.EricApplication</h1>
+
+<p>
+Class implementing a specialized application class.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>ericApp</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#EricApplication">EricApplication</a></td>
+<td>Eric application class with an object registry.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="EricApplication" ID="EricApplication"></a>
+<h2>EricApplication</h2>
+
+<p>
+    Eric application class with an object registry.
+</p>
+<h3>Derived from</h3>
+QApplication
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#EricApplication.__init__">EricApplication</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.getObject">getObject</a></td>
+<td>Public method to get a reference to a registered object.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.getPluginObject">getPluginObject</a></td>
+<td>Public method to get a reference to a registered plugin object.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.getPluginObjectType">getPluginObjectType</a></td>
+<td>Public method to get the type of a registered plugin object.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.getPluginObjects">getPluginObjects</a></td>
+<td>Public method to get a list of (name, reference) pairs of all registered plugin objects.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.registerObject">registerObject</a></td>
+<td>Public method to register an object in the object registry.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.registerPluginObject">registerPluginObject</a></td>
+<td>Public method to register a plugin object in the object registry.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.unregisterPluginObject">unregisterPluginObject</a></td>
+<td>Public method to unregister a plugin object in the object registry.</td>
+</tr>
+<tr>
+<td><a href="#EricApplication.usesDarkPalette">usesDarkPalette</a></td>
+<td>Public method to check, if the application uses a palette with a dark background.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="EricApplication.__init__" ID="EricApplication.__init__"></a>
+<h4>EricApplication (Constructor)</h4>
+<b>EricApplication</b>(<i>argv</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>argv</i> (list)</dt>
+<dd>
+command line arguments
+</dd>
+</dl>
+<a NAME="EricApplication.getObject" ID="EricApplication.getObject"></a>
+<h4>EricApplication.getObject</h4>
+<b>getObject</b>(<i>name</i>)
+
+<p>
+        Public method to get a reference to a registered object.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the object
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+reference to the registered object
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+any
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>KeyError</b>:</dt>
+<dd>
+raised when the given name is not known
+</dd>
+</dl>
+<a NAME="EricApplication.getPluginObject" ID="EricApplication.getPluginObject"></a>
+<h4>EricApplication.getPluginObject</h4>
+<b>getPluginObject</b>(<i>name</i>)
+
+<p>
+        Public method to get a reference to a registered plugin object.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the plugin object
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+reference to the registered plugin object
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+any
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>KeyError</b>:</dt>
+<dd>
+raised when the given name is not known
+</dd>
+</dl>
+<a NAME="EricApplication.getPluginObjectType" ID="EricApplication.getPluginObjectType"></a>
+<h4>EricApplication.getPluginObjectType</h4>
+<b>getPluginObjectType</b>(<i>name</i>)
+
+<p>
+        Public method to get the type of a registered plugin object.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the plugin object
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+type of the plugin object
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>KeyError</b>:</dt>
+<dd>
+raised when the given name is not known
+</dd>
+</dl>
+<a NAME="EricApplication.getPluginObjects" ID="EricApplication.getPluginObjects"></a>
+<h4>EricApplication.getPluginObjects</h4>
+<b>getPluginObjects</b>(<i></i>)
+
+<p>
+        Public method to get a list of (name, reference) pairs of all
+        registered plugin objects.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of (name, reference) pairs
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of (str, any)
+</dd>
+</dl>
+<a NAME="EricApplication.registerObject" ID="EricApplication.registerObject"></a>
+<h4>EricApplication.registerObject</h4>
+<b>registerObject</b>(<i>name, objectRef</i>)
+
+<p>
+        Public method to register an object in the object registry.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the object
+</dd>
+<dt><i>objectRef</i> (any)</dt>
+<dd>
+reference to the object
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>KeyError</b>:</dt>
+<dd>
+raised when the given name is already in use
+</dd>
+</dl>
+<a NAME="EricApplication.registerPluginObject" ID="EricApplication.registerPluginObject"></a>
+<h4>EricApplication.registerPluginObject</h4>
+<b>registerPluginObject</b>(<i>name, objectRef, pluginType=None</i>)
+
+<p>
+        Public method to register a plugin object in the object registry.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the plugin object
+</dd>
+<dt><i>objectRef</i> (any)</dt>
+<dd>
+reference to the plugin object
+</dd>
+<dt><i>pluginType</i> (str)</dt>
+<dd>
+type of the plugin object
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>KeyError</b>:</dt>
+<dd>
+raised when the given name is already in use
+</dd>
+</dl>
+<a NAME="EricApplication.unregisterPluginObject" ID="EricApplication.unregisterPluginObject"></a>
+<h4>EricApplication.unregisterPluginObject</h4>
+<b>unregisterPluginObject</b>(<i>name</i>)
+
+<p>
+        Public method to unregister a plugin object in the object registry.
+</p>
+<dl>
+
+<dt><i>name</i> (str)</dt>
+<dd>
+name of the plugin object
+</dd>
+</dl>
+<a NAME="EricApplication.usesDarkPalette" ID="EricApplication.usesDarkPalette"></a>
+<h4>EricApplication.usesDarkPalette</h4>
+<b>usesDarkPalette</b>(<i></i>)
+
+<p>
+        Public method to check, if the application uses a palette with a dark
+        background.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the use of a palette with a dark background
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file

eric ide

mercurial