|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric4.Plugins.WizardPlugins.InputDialogWizard.InputDialogWizardDialog</title> |
|
6 <style> |
|
7 body { |
|
8 background:white; |
|
9 margin: 0em 1em 10em 1em; |
|
10 color: black; |
|
11 } |
|
12 |
|
13 h1 { color: white; background: #4FA4FF; } |
|
14 h2 { color: white; background: #4FA4FF; } |
|
15 h3 { color: white; background: #00557F; } |
|
16 h4 { color: white; background: #00557F; } |
|
17 |
|
18 a { color: #AA5500; } |
|
19 |
|
20 </style> |
|
21 </head> |
|
22 <body><a NAME="top" ID="top"></a> |
|
23 <h1>eric4.Plugins.WizardPlugins.InputDialogWizard.InputDialogWizardDialog</h1> |
|
24 <p> |
|
25 Module implementing the input dialog wizard dialog. |
|
26 </p> |
|
27 <h3>Global Attributes</h3> |
|
28 <table> |
|
29 <tr><td>None</td></tr> |
|
30 </table> |
|
31 <h3>Classes</h3> |
|
32 <table> |
|
33 <tr> |
|
34 <td><a href="#InputDialogWizardDialog">InputDialogWizardDialog</a></td> |
|
35 <td>Class implementing the input dialog wizard dialog.</td> |
|
36 </tr> |
|
37 </table> |
|
38 <h3>Functions</h3> |
|
39 <table> |
|
40 <tr><td>None</td></tr> |
|
41 </table> |
|
42 <hr /><hr /> |
|
43 <a NAME="InputDialogWizardDialog" ID="InputDialogWizardDialog"></a> |
|
44 <h2>InputDialogWizardDialog</h2> |
|
45 <p> |
|
46 Class implementing the input dialog wizard dialog. |
|
47 </p><p> |
|
48 It displays a dialog for entering the parameters |
|
49 for the QInputDialog code generator. |
|
50 </p> |
|
51 <h3>Derived from</h3> |
|
52 QDialog, Ui_InputDialogWizardDialog |
|
53 <h3>Class Attributes</h3> |
|
54 <table> |
|
55 <tr><td>None</td></tr> |
|
56 </table> |
|
57 <h3>Methods</h3> |
|
58 <table> |
|
59 <tr> |
|
60 <td><a href="#InputDialogWizardDialog.__init__">InputDialogWizardDialog</a></td> |
|
61 <td>Constructor</td> |
|
62 </tr><tr> |
|
63 <td><a href="#InputDialogWizardDialog.__getCode4">__getCode4</a></td> |
|
64 <td>Private method to get the source code for Qt4.</td> |
|
65 </tr><tr> |
|
66 <td><a href="#InputDialogWizardDialog.getCode">getCode</a></td> |
|
67 <td>Public method to get the source code.</td> |
|
68 </tr><tr> |
|
69 <td><a href="#InputDialogWizardDialog.on_bTest_clicked">on_bTest_clicked</a></td> |
|
70 <td>Private method to test the selected options.</td> |
|
71 </tr><tr> |
|
72 <td><a href="#InputDialogWizardDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> |
|
73 <td>Private slot called by a button of the button box clicked.</td> |
|
74 </tr><tr> |
|
75 <td><a href="#InputDialogWizardDialog.on_rItem_toggled">on_rItem_toggled</a></td> |
|
76 <td>Private slot to perform actions dependant on the item type selection.</td> |
|
77 </tr> |
|
78 </table> |
|
79 <a NAME="InputDialogWizardDialog.__init__" ID="InputDialogWizardDialog.__init__"></a> |
|
80 <h4>InputDialogWizardDialog (Constructor)</h4> |
|
81 <b>InputDialogWizardDialog</b>(<i>parent=None</i>) |
|
82 <p> |
|
83 Constructor |
|
84 </p><dl> |
|
85 <dt><i>parent</i></dt> |
|
86 <dd> |
|
87 parent widget (QWidget) |
|
88 </dd> |
|
89 </dl><a NAME="InputDialogWizardDialog.__getCode4" ID="InputDialogWizardDialog.__getCode4"></a> |
|
90 <h4>InputDialogWizardDialog.__getCode4</h4> |
|
91 <b>__getCode4</b>(<i>indLevel, indString</i>) |
|
92 <p> |
|
93 Private method to get the source code for Qt4. |
|
94 </p><dl> |
|
95 <dt><i>indLevel</i></dt> |
|
96 <dd> |
|
97 indentation level (int) |
|
98 </dd><dt><i>indString</i></dt> |
|
99 <dd> |
|
100 string used for indentation (space or tab) (string) |
|
101 </dd> |
|
102 </dl><dl> |
|
103 <dt>Returns:</dt> |
|
104 <dd> |
|
105 generated code (string) |
|
106 </dd> |
|
107 </dl><a NAME="InputDialogWizardDialog.getCode" ID="InputDialogWizardDialog.getCode"></a> |
|
108 <h4>InputDialogWizardDialog.getCode</h4> |
|
109 <b>getCode</b>(<i>indLevel, indString</i>) |
|
110 <p> |
|
111 Public method to get the source code. |
|
112 </p><dl> |
|
113 <dt><i>indLevel</i></dt> |
|
114 <dd> |
|
115 indentation level (int) |
|
116 </dd><dt><i>indString</i></dt> |
|
117 <dd> |
|
118 string used for indentation (space or tab) (string) |
|
119 </dd> |
|
120 </dl><dl> |
|
121 <dt>Returns:</dt> |
|
122 <dd> |
|
123 generated code (string) |
|
124 </dd> |
|
125 </dl><a NAME="InputDialogWizardDialog.on_bTest_clicked" ID="InputDialogWizardDialog.on_bTest_clicked"></a> |
|
126 <h4>InputDialogWizardDialog.on_bTest_clicked</h4> |
|
127 <b>on_bTest_clicked</b>(<i></i>) |
|
128 <p> |
|
129 Private method to test the selected options. |
|
130 </p><a NAME="InputDialogWizardDialog.on_buttonBox_clicked" ID="InputDialogWizardDialog.on_buttonBox_clicked"></a> |
|
131 <h4>InputDialogWizardDialog.on_buttonBox_clicked</h4> |
|
132 <b>on_buttonBox_clicked</b>(<i>button</i>) |
|
133 <p> |
|
134 Private slot called by a button of the button box clicked. |
|
135 </p><dl> |
|
136 <dt><i>button</i></dt> |
|
137 <dd> |
|
138 button that was clicked (QAbstractButton) |
|
139 </dd> |
|
140 </dl><a NAME="InputDialogWizardDialog.on_rItem_toggled" ID="InputDialogWizardDialog.on_rItem_toggled"></a> |
|
141 <h4>InputDialogWizardDialog.on_rItem_toggled</h4> |
|
142 <b>on_rItem_toggled</b>(<i>checked</i>) |
|
143 <p> |
|
144 Private slot to perform actions dependant on the item type selection. |
|
145 </p><dl> |
|
146 <dt><i>checked</i></dt> |
|
147 <dd> |
|
148 flag indicating the checked state (boolean) |
|
149 </dd> |
|
150 </dl> |
|
151 <div align="right"><a href="#top">Up</a></div> |
|
152 <hr /> |
|
153 </body></html> |