45 <tr><td>SaveAll</td></tr> |
45 <tr><td>SaveAll</td></tr> |
46 <tr><td>Warning</td></tr> |
46 <tr><td>Warning</td></tr> |
47 <tr><td>Yes</td></tr> |
47 <tr><td>Yes</td></tr> |
48 <tr><td>YesRole</td></tr> |
48 <tr><td>YesRole</td></tr> |
49 <tr><td>YesToAll</td></tr> |
49 <tr><td>YesToAll</td></tr> |
50 <tr><td>about</td></tr> |
|
51 <tr><td>aboutQt</td></tr> |
|
52 </table> |
50 </table> |
53 |
51 |
54 <h3>Classes</h3> |
52 <h3>Classes</h3> |
55 <table> |
53 <table> |
56 <tr> |
54 <tr> |
62 <h3>Functions</h3> |
60 <h3>Functions</h3> |
63 <table> |
61 <table> |
64 <tr> |
62 <tr> |
65 <td><a href="#__messageBox">__messageBox</a></td> |
63 <td><a href="#__messageBox">__messageBox</a></td> |
66 <td>Private module function to show a modal message box.</td> |
64 <td>Private module function to show a modal message box.</td> |
|
65 </tr> |
|
66 <tr> |
|
67 <td><a href="#about">about</a></td> |
|
68 <td>Function to show a modal dialog with some text about the application.</td> |
|
69 </tr> |
|
70 <tr> |
|
71 <td><a href="#aboutQt">aboutQt</a></td> |
|
72 <td>Function to show a modal dialog with text about Qt.</td> |
67 </tr> |
73 </tr> |
68 <tr> |
74 <tr> |
69 <td><a href="#critical">critical</a></td> |
75 <td><a href="#critical">critical</a></td> |
70 <td>Function to show a modal critical message box.</td> |
76 <td>Function to show a modal critical message box.</td> |
71 </tr> |
77 </tr> |
217 </dd> |
223 </dd> |
218 </dl> |
224 </dl> |
219 <div align="right"><a href="#top">Up</a></div> |
225 <div align="right"><a href="#top">Up</a></div> |
220 <hr /> |
226 <hr /> |
221 <hr /> |
227 <hr /> |
|
228 <a NAME="about" ID="about"></a> |
|
229 <h2>about</h2> |
|
230 <b>about</b>(<i>parent, title, text</i>) |
|
231 <p> |
|
232 Function to show a modal dialog with some text about the application. |
|
233 </p> |
|
234 |
|
235 <dl> |
|
236 |
|
237 <dt><i>parent</i> (QWidget)</dt> |
|
238 <dd> |
|
239 parent widget of the message box |
|
240 </dd> |
|
241 <dt><i>title</i> (str)</dt> |
|
242 <dd> |
|
243 caption of the message box |
|
244 </dd> |
|
245 <dt><i>text</i> (str)</dt> |
|
246 <dd> |
|
247 text to be shown by the message box |
|
248 </dd> |
|
249 </dl> |
|
250 <div align="right"><a href="#top">Up</a></div> |
|
251 <hr /> |
|
252 <hr /> |
|
253 <a NAME="aboutQt" ID="aboutQt"></a> |
|
254 <h2>aboutQt</h2> |
|
255 <b>aboutQt</b>(<i>parent, title=""</i>) |
|
256 <p> |
|
257 Function to show a modal dialog with text about Qt. |
|
258 </p> |
|
259 |
|
260 <dl> |
|
261 |
|
262 <dt><i>parent</i> (QWidget)</dt> |
|
263 <dd> |
|
264 parent widget of the message box |
|
265 </dd> |
|
266 <dt><i>title</i> (str (optional))</dt> |
|
267 <dd> |
|
268 caption of the message box (defaults to "") |
|
269 </dd> |
|
270 </dl> |
|
271 <div align="right"><a href="#top">Up</a></div> |
|
272 <hr /> |
|
273 <hr /> |
222 <a NAME="critical" ID="critical"></a> |
274 <a NAME="critical" ID="critical"></a> |
223 <h2>critical</h2> |
275 <h2>critical</h2> |
224 <b>critical</b>(<i>parent, title, text, buttons=QMessageBox.StandardButton.Ok, defaultButton=QMessageBox.StandardButton.NoButton, </i>) |
276 <b>critical</b>(<i>parent, title, text, buttons=QMessageBox.StandardButton.Ok, defaultButton=QMessageBox.StandardButton.NoButton, </i>) |
225 <p> |
277 <p> |
226 Function to show a modal critical message box. |
278 Function to show a modal critical message box. |