~ubuntu-branches/ubuntu/karmic/eric/karmic

« back to all changes in this revision

Viewing changes to eric/Documentation/Source/eric4.Wizards.InputDialogWizard.InputDialogWizardDialog.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-01-28 18:02:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080128180225-6nrox6yrworh2c4v
Tags: 4.0.4-1ubuntu1
* Add python-qt3 to build-depends becuase that's where Ubuntu puts 
  pyqtconfig
* Change maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.Wizards.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.Wizards.InputDialogWizard.InputDialogWizardDialog</h1>
 
24
<p>
 
25
Module implementing the input dialog wizard dialog.
 
26
</p>
 
27
<h3>Classes</h3>
 
28
<table>
 
29
<tr>
 
30
<td><a href="#InputDialogWizardDialog">InputDialogWizardDialog</a></td>
 
31
<td>Module implementing the input dialog wizard dialog.</td>
 
32
</tr>
 
33
</table>
 
34
<h3>Functions</h3>
 
35
<table>
 
36
<tr><td>None</td></tr>
 
37
</table>
 
38
<hr /><hr />
 
39
<a NAME="InputDialogWizardDialog" ID="InputDialogWizardDialog"></a>
 
40
<h2>InputDialogWizardDialog</h2>
 
41
<p>
 
42
    Module implementing the input dialog wizard dialog.
 
43
</p><p>
 
44
    It displays a dialog for entering the parameters
 
45
    for the QInputDialog code generator.
 
46
</p>
 
47
<h3>Derived from</h3>
 
48
QDialog, Ui_InputDialogWizardDialog
 
49
<h3>Methods</h3>
 
50
<table>
 
51
<tr>
 
52
<td><a href="#InputDialogWizardDialog.__init__">InputDialogWizardDialog</a></td>
 
53
<td>Constructor</td>
 
54
</tr><tr>
 
55
<td><a href="#InputDialogWizardDialog.__getCode3">__getCode3</a></td>
 
56
<td>Private method to get the source code for Qt3.</td>
 
57
</tr><tr>
 
58
<td><a href="#InputDialogWizardDialog.__getCode4">__getCode4</a></td>
 
59
<td>Private method to get the source code for Qt4.</td>
 
60
</tr><tr>
 
61
<td><a href="#InputDialogWizardDialog.getCode">getCode</a></td>
 
62
<td>Public method to get the source code.</td>
 
63
</tr><tr>
 
64
<td><a href="#InputDialogWizardDialog.on_bTest_clicked">on_bTest_clicked</a></td>
 
65
<td>Private method to test the selected options.</td>
 
66
</tr><tr>
 
67
<td><a href="#InputDialogWizardDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
 
68
<td>Private slot called by a button of the button box clicked.</td>
 
69
</tr>
 
70
</table>
 
71
<p><a NAME="InputDialogWizardDialog.__init__" ID="InputDialogWizardDialog.__init__"></a>
 
72
<h4>InputDialogWizardDialog (Constructor)</h4>
 
73
<b>InputDialogWizardDialog</b>(<i>parent=None</i>)
 
74
<p>
 
75
        Constructor
 
76
</p><dl>
 
77
<dt><i>parent</i></dt>
 
78
<dd>
 
79
parent widget (QWidget)
 
80
</dd>
 
81
</dl><a NAME="InputDialogWizardDialog.__getCode3" ID="InputDialogWizardDialog.__getCode3"></a>
 
82
<h4>InputDialogWizardDialog.__getCode3</h4>
 
83
<b>__getCode3</b>(<i>indLevel, indString</i>)
 
84
<p>
 
85
        Private method to get the source code for Qt3.
 
86
</p><dl>
 
87
<dt><i>indLevel</i></dt>
 
88
<dd>
 
89
indentation level (int)
 
90
</dd><dt><i>indString</i></dt>
 
91
<dd>
 
92
string used for indentation (space or tab) (string)
 
93
</dd>
 
94
</dl><dl>
 
95
<dt>Returns:</dt>
 
96
<dd>
 
97
generated code (string)
 
98
</dd>
 
99
</dl><a NAME="InputDialogWizardDialog.__getCode4" ID="InputDialogWizardDialog.__getCode4"></a>
 
100
<h4>InputDialogWizardDialog.__getCode4</h4>
 
101
<b>__getCode4</b>(<i>indLevel, indString</i>)
 
102
<p>
 
103
        Private method to get the source code for Qt4.
 
104
</p><dl>
 
105
<dt><i>indLevel</i></dt>
 
106
<dd>
 
107
indentation level (int)
 
108
</dd><dt><i>indString</i></dt>
 
109
<dd>
 
110
string used for indentation (space or tab) (string)
 
111
</dd>
 
112
</dl><dl>
 
113
<dt>Returns:</dt>
 
114
<dd>
 
115
generated code (string)
 
116
</dd>
 
117
</dl><a NAME="InputDialogWizardDialog.getCode" ID="InputDialogWizardDialog.getCode"></a>
 
118
<h4>InputDialogWizardDialog.getCode</h4>
 
119
<b>getCode</b>(<i>indLevel, indString</i>)
 
120
<p>
 
121
        Public method to get the source code.
 
122
</p><dl>
 
123
<dt><i>indLevel</i></dt>
 
124
<dd>
 
125
indentation level (int)
 
126
</dd><dt><i>indString</i></dt>
 
127
<dd>
 
128
string used for indentation (space or tab) (string)
 
129
</dd>
 
130
</dl><dl>
 
131
<dt>Returns:</dt>
 
132
<dd>
 
133
generated code (string)
 
134
</dd>
 
135
</dl><a NAME="InputDialogWizardDialog.on_bTest_clicked" ID="InputDialogWizardDialog.on_bTest_clicked"></a>
 
136
<h4>InputDialogWizardDialog.on_bTest_clicked</h4>
 
137
<b>on_bTest_clicked</b>(<i></i>)
 
138
<p>
 
139
        Private method to test the selected options.
 
140
</p><a NAME="InputDialogWizardDialog.on_buttonBox_clicked" ID="InputDialogWizardDialog.on_buttonBox_clicked"></a>
 
141
<h4>InputDialogWizardDialog.on_buttonBox_clicked</h4>
 
142
<b>on_buttonBox_clicked</b>(<i>button</i>)
 
143
<p>
 
144
        Private slot called by a button of the button box clicked.
 
145
</p><dl>
 
146
<dt><i>button</i></dt>
 
147
<dd>
 
148
button that was clicked (QAbstractButton)
 
149
</dd>
 
150
</dl></p>
 
151
<div align="right"><a href="#top">Up</a></div>
 
152
<hr />
 
153
</body></html>
 
 
b'\\ No newline at end of file'