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

« back to all changes in this revision

Viewing changes to eric/Documentation/Source/eric3doc-eric3.KdeQt.KQMessageBox.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
 
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
2
 
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
3
 
<html><head>
4
 
<title>eric3.KdeQt.KQMessageBox</title>
5
 
</head>
6
 
<body bgcolor="#FFFFFF"><a NAME="top" ID="top"></a>
7
 
<h1><font color="#0000FF">eric3.KdeQt.KQMessageBox</font></h1>
8
 
<p>
9
 
Compatibility module to use the KDE Message Box instead of the Qt Message Box.
10
 
</p>
11
 
<h3><font color="#FF0000">Classes</font></h3>
12
 
<table>
13
 
<tr><td>None</td></tr>
14
 
</table>
15
 
<h3><font color="#FF0000">Functions</font></h3>
16
 
<table>
17
 
<tr>
18
 
<td><a href="#about">about</a></td>
19
 
<td>Function to show a modal about message box.</td>
20
 
</tr><tr>
21
 
<td><a href="#critical">critical</a></td>
22
 
<td>Function to show a modal critical message box.</td>
23
 
</tr><tr>
24
 
<td><a href="#information">information</a></td>
25
 
<td>Function to show a modal information message box.</td>
26
 
</tr><tr>
27
 
<td><a href="#question">question</a></td>
28
 
<td>Function to show a modal question message box.</td>
29
 
</tr><tr>
30
 
<td><a href="#warning">warning</a></td>
31
 
<td>Function to show a modal warning message box.</td>
32
 
</tr>
33
 
</table>
34
 
<hr /><hr />
35
 
<a NAME="about" ID="about"></a>
36
 
<h2><font color="#0000FF">about</font></h2>
37
 
<b>about</b>(<i>parent, caption, text</i>)
38
 
<p>
39
 
        Function to show a modal about message box.
40
 
</p><dl>
41
 
<dt><i>parent</i></dt>
42
 
<dd>
43
 
parent widget of the message box
44
 
</dd><dt><i>caption</i></dt>
45
 
<dd>
46
 
caption of the message box
47
 
</dd><dt><i>text</i></dt>
48
 
<dd>
49
 
text to be shown by the message box
50
 
</dd>
51
 
</dl>
52
 
<div align="right"><a href="#top">Up</a></div>
53
 
<hr /><hr />
54
 
<a NAME="critical" ID="critical"></a>
55
 
<h2><font color="#0000FF">critical</font></h2>
56
 
<b>critical</b>(<i>parent, caption, text, button0Text = QString.null, button1Text = QString.null, button2Text = QString.null, defaultButton = 0, escapeButton = -1</i>)
57
 
<p>
58
 
        Function to show a modal critical message box.
59
 
</p><dl>
60
 
<dt><i>parent</i></dt>
61
 
<dd>
62
 
parent widget of the message box
63
 
</dd><dt><i>caption</i></dt>
64
 
<dd>
65
 
caption of the message box
66
 
</dd><dt><i>text</i></dt>
67
 
<dd>
68
 
text to be shown by the message box
69
 
</dd><dt><i>button0Text</i></dt>
70
 
<dd>
71
 
text of the first button
72
 
</dd><dt><i>button1Text</i></dt>
73
 
<dd>
74
 
text of the second button
75
 
</dd><dt><i>button2Text</i></dt>
76
 
<dd>
77
 
text of the third button
78
 
</dd><dt><i>defaultButton</i></dt>
79
 
<dd>
80
 
index of the default button (0, 1 or 2) (ignored)
81
 
</dd><dt><i>escapeButton</i></dt>
82
 
<dd>
83
 
index of the escape button (-1, 0, 1 or 2) (ignored)
84
 
</dd>
85
 
</dl><dl>
86
 
<dt>Returns:</dt>
87
 
<dd>
88
 
number of the button that was pressed (integer, always 0)
89
 
</dd>
90
 
</dl>
91
 
<div align="right"><a href="#top">Up</a></div>
92
 
<hr /><hr />
93
 
<a NAME="information" ID="information"></a>
94
 
<h2><font color="#0000FF">information</font></h2>
95
 
<b>information</b>(<i>parent, caption, text, button0Text = QString.null, button1Text = QString.null, button2Text = QString.null, defaultButton = 0, escapeButton = -1</i>)
96
 
<p>
97
 
        Function to show a modal information message box.
98
 
</p><dl>
99
 
<dt><i>parent</i></dt>
100
 
<dd>
101
 
parent widget of the message box
102
 
</dd><dt><i>caption</i></dt>
103
 
<dd>
104
 
caption of the message box
105
 
</dd><dt><i>text</i></dt>
106
 
<dd>
107
 
text to be shown by the message box
108
 
</dd><dt><i>button0Text</i></dt>
109
 
<dd>
110
 
text of the first button (ignored, it is always 'OK')
111
 
</dd><dt><i>button1Text</i></dt>
112
 
<dd>
113
 
text of the second button (ignored)
114
 
</dd><dt><i>button2Text</i></dt>
115
 
<dd>
116
 
text of the third button (ignored)
117
 
</dd><dt><i>defaultButton</i></dt>
118
 
<dd>
119
 
index of the default button (0, 1 or 2) (ignored)
120
 
</dd><dt><i>escapeButton</i></dt>
121
 
<dd>
122
 
index of the escape button (-1, 0, 1 or 2) (ignored)
123
 
</dd>
124
 
</dl><dl>
125
 
<dt>Returns:</dt>
126
 
<dd>
127
 
number of the button that was pressed (integer, always 0)
128
 
</dd>
129
 
</dl>
130
 
<div align="right"><a href="#top">Up</a></div>
131
 
<hr /><hr />
132
 
<a NAME="question" ID="question"></a>
133
 
<h2><font color="#0000FF">question</font></h2>
134
 
<b>question</b>(<i>parent, caption, text, button0Text = QString.null, button1Text = QString.null, button2Text = QString.null, defaultButton = 0, escapeButton = -1</i>)
135
 
<p>
136
 
        Function to show a modal question message box.
137
 
</p><dl>
138
 
<dt><i>parent</i></dt>
139
 
<dd>
140
 
parent widget of the message box
141
 
</dd><dt><i>caption</i></dt>
142
 
<dd>
143
 
caption of the message box
144
 
</dd><dt><i>text</i></dt>
145
 
<dd>
146
 
text to be shown by the message box
147
 
</dd><dt><i>button0Text</i></dt>
148
 
<dd>
149
 
text of the first button
150
 
</dd><dt><i>button1Text</i></dt>
151
 
<dd>
152
 
text of the second button
153
 
</dd><dt><i>button2Text</i></dt>
154
 
<dd>
155
 
text of the third button
156
 
</dd><dt><i>defaultButton</i></dt>
157
 
<dd>
158
 
index of the default button (0, 1 or 2) (ignored)
159
 
</dd><dt><i>escapeButton</i></dt>
160
 
<dd>
161
 
index of the escape button (-1, 0, 1 or 2) (ignored)
162
 
</dd>
163
 
</dl><dl>
164
 
<dt>Returns:</dt>
165
 
<dd>
166
 
number of the button that was pressed (integer, always 0)
167
 
</dd>
168
 
</dl>
169
 
<div align="right"><a href="#top">Up</a></div>
170
 
<hr /><hr />
171
 
<a NAME="warning" ID="warning"></a>
172
 
<h2><font color="#0000FF">warning</font></h2>
173
 
<b>warning</b>(<i>parent, caption, text, button0Text = QString.null, button1Text = QString.null, button2Text = QString.null, defaultButton = 0, escapeButton = -1</i>)
174
 
<p>
175
 
        Function to show a modal warning message box.
176
 
</p><dl>
177
 
<dt><i>parent</i></dt>
178
 
<dd>
179
 
parent widget of the message box
180
 
</dd><dt><i>caption</i></dt>
181
 
<dd>
182
 
caption of the message box
183
 
</dd><dt><i>text</i></dt>
184
 
<dd>
185
 
text to be shown by the message box
186
 
</dd><dt><i>button0Text</i></dt>
187
 
<dd>
188
 
text of the first button
189
 
</dd><dt><i>button1Text</i></dt>
190
 
<dd>
191
 
text of the second button
192
 
</dd><dt><i>button2Text</i></dt>
193
 
<dd>
194
 
text of the third button
195
 
</dd><dt><i>defaultButton</i></dt>
196
 
<dd>
197
 
index of the default button (0, 1 or 2) (ignored)
198
 
</dd><dt><i>escapeButton</i></dt>
199
 
<dd>
200
 
index of the escape button (-1, 0, 1 or 2) (ignored)
201
 
</dd>
202
 
</dl><dl>
203
 
<dt>Returns:</dt>
204
 
<dd>
205
 
number of the button that was pressed (integer, always 0)
206
 
</dd>
207
 
</dl>
208
 
<div align="right"><a href="#top">Up</a></div>
209
 
<hr />
210
 
</body></html>
 
 
b'\\ No newline at end of file'