Documentation/Source/eric5.Plugins.WizardPlugins.ColorDialogWizard.ColorDialogWizardDialog.html

Wed, 24 Mar 2010 18:38:44 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 24 Mar 2010 18:38:44 +0000
changeset 153
ef200d69dba0
parent 58
37f0444c3479
child 409
0ea528e80202
permissions
-rw-r--r--

Added a few methods to Project.py to support the cooperation stuff.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html><head>
<title>eric5.Plugins.WizardPlugins.ColorDialogWizard.ColorDialogWizardDialog</title>
<style>
body {
    background:white;
    margin: 0em 1em 10em 1em;
    color: black;
}

h1 { color: white; background: #4FA4FF; }
h2 { color: white; background: #4FA4FF; }
h3 { color: white; background: #00557F; }
h4 { color: white; background: #00557F; }
    
a { color: #AA5500; }

</style>
</head>
<body><a NAME="top" ID="top"></a>
<h1>eric5.Plugins.WizardPlugins.ColorDialogWizard.ColorDialogWizardDialog</h1>
<p>
Module implementing the color dialog wizard dialog.
</p>
<h3>Global Attributes</h3>
<table>
<tr><td>None</td></tr>
</table>
<h3>Classes</h3>
<table>
<tr>
<td><a href="#ColorDialogWizardDialog">ColorDialogWizardDialog</a></td>
<td>Class implementing the color dialog wizard dialog.</td>
</tr>
</table>
<h3>Functions</h3>
<table>
<tr><td>None</td></tr>
</table>
<hr /><hr />
<a NAME="ColorDialogWizardDialog" ID="ColorDialogWizardDialog"></a>
<h2>ColorDialogWizardDialog</h2>
<p>
    Class implementing the color dialog wizard dialog.
</p><p>
    It displays a dialog for entering the parameters
    for the QColorDialog code generator.
</p>
<h3>Derived from</h3>
QDialog, Ui_ColorDialogWizardDialog
<h3>Class Attributes</h3>
<table>
<tr><td>None</td></tr>
</table>
<h3>Methods</h3>
<table>
<tr>
<td><a href="#ColorDialogWizardDialog.__init__">ColorDialogWizardDialog</a></td>
<td>Constructor</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.getCode">getCode</a></td>
<td>Public method to get the source code.</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.on_bTest_clicked">on_bTest_clicked</a></td>
<td>Private method to test the selected options.</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
<td>Private slot called by a button of the button box clicked.</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.on_eColor_editTextChanged">on_eColor_editTextChanged</a></td>
<td>Private slot to handle the editTextChanged signal of eColor.</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.on_eRGB_textChanged">on_eRGB_textChanged</a></td>
<td>Private slot to handle the textChanged signal of eRGB.</td>
</tr><tr>
<td><a href="#ColorDialogWizardDialog.on_rQt45_toggled">on_rQt45_toggled</a></td>
<td>Private slot to handle the toggled signal of the rQt45 radio button.</td>
</tr>
</table>
<a NAME="ColorDialogWizardDialog.__init__" ID="ColorDialogWizardDialog.__init__"></a>
<h4>ColorDialogWizardDialog (Constructor)</h4>
<b>ColorDialogWizardDialog</b>(<i>parent=None</i>)
<p>
        Constructor
</p><dl>
<dt><i>parent</i></dt>
<dd>
parent widget (QWidget)
</dd>
</dl><a NAME="ColorDialogWizardDialog.getCode" ID="ColorDialogWizardDialog.getCode"></a>
<h4>ColorDialogWizardDialog.getCode</h4>
<b>getCode</b>(<i>indLevel, indString</i>)
<p>
        Public method to get the source code.
</p><dl>
<dt><i>indLevel</i></dt>
<dd>
indentation level (int)
</dd><dt><i>indString</i></dt>
<dd>
string used for indentation (space or tab) (string)
</dd>
</dl><dl>
<dt>Returns:</dt>
<dd>
generated code (string)
</dd>
</dl><a NAME="ColorDialogWizardDialog.on_bTest_clicked" ID="ColorDialogWizardDialog.on_bTest_clicked"></a>
<h4>ColorDialogWizardDialog.on_bTest_clicked</h4>
<b>on_bTest_clicked</b>(<i></i>)
<p>
        Private method to test the selected options.
</p><a NAME="ColorDialogWizardDialog.on_buttonBox_clicked" ID="ColorDialogWizardDialog.on_buttonBox_clicked"></a>
<h4>ColorDialogWizardDialog.on_buttonBox_clicked</h4>
<b>on_buttonBox_clicked</b>(<i>button</i>)
<p>
        Private slot called by a button of the button box clicked.
</p><dl>
<dt><i>button</i></dt>
<dd>
button that was clicked (QAbstractButton)
</dd>
</dl><a NAME="ColorDialogWizardDialog.on_eColor_editTextChanged" ID="ColorDialogWizardDialog.on_eColor_editTextChanged"></a>
<h4>ColorDialogWizardDialog.on_eColor_editTextChanged</h4>
<b>on_eColor_editTextChanged</b>(<i>text</i>)
<p>
        Private slot to handle the editTextChanged signal of eColor.
</p><dl>
<dt><i>text</i></dt>
<dd>
the new text (string)
</dd>
</dl><a NAME="ColorDialogWizardDialog.on_eRGB_textChanged" ID="ColorDialogWizardDialog.on_eRGB_textChanged"></a>
<h4>ColorDialogWizardDialog.on_eRGB_textChanged</h4>
<b>on_eRGB_textChanged</b>(<i>text</i>)
<p>
        Private slot to handle the textChanged signal of eRGB.
</p><dl>
<dt><i>text</i></dt>
<dd>
the new text (string)
</dd>
</dl><a NAME="ColorDialogWizardDialog.on_rQt45_toggled" ID="ColorDialogWizardDialog.on_rQt45_toggled"></a>
<h4>ColorDialogWizardDialog.on_rQt45_toggled</h4>
<b>on_rQt45_toggled</b>(<i>on</i>)
<p>
        Private slot to handle the toggled signal of the rQt45 radio button.
</p><dl>
<dt><i>on</i></dt>
<dd>
toggle state (boolean) (ignored)
</dd>
</dl>
<div align="right"><a href="#top">Up</a></div>
<hr />
</body></html>

eric ide

mercurial