|
From: Kevin A. <ka...@us...> - 2004-08-15 17:55:45
|
Update of /cvsroot/pythoncard/PythonCard/docs/html/dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27879/docs/html/dialogs Modified Files: multiplechoicedialog.html singlechoicedialog.html textentrydialog.html Log Message: more dialog related fixes Index: textentrydialog.html =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/html/dialogs/textentrydialog.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** textentrydialog.html 3 Aug 2002 18:25:28 -0000 1.1 --- textentrydialog.html 15 Aug 2004 17:55:35 -0000 1.2 *************** *** 38,41 **** --- 38,48 ---- </td> </tr> + <tr> + <td valign="top">message<br> + </td> + <td valign="top">quoted string to be displayed inside the Text Entry + Dialog to prompt the user's reply<br> + </td> + </tr> <tr> <td valign="top">title<br> *************** *** 46,56 **** </tr> <tr> - <td valign="top">prompt<br> - </td> - <td valign="top">quoted string to be displayed inside the Text Entry - Dialog to prompt the user's reply<br> - </td> - </tr> - <tr> <td valign="top">default<br> </td> --- 53,56 ---- *************** *** 65,71 **** <td valign="top">The optional fifth argument to the constructor for this dialog can contain one of two constants that affect the display of the ! text field. If this argument is TEXT_PASSWORD, asterisks or bullets replace the default text (if any) as well as the user's typing in the field. If this ! argument is TEXT_MULTILINE, the field expands to accommodate multiple lines of entry data.<br> </td> --- 65,71 ---- <td valign="top">The optional fifth argument to the constructor for this dialog can contain one of two constants that affect the display of the ! text field. If this argument is wx.TE_PASSWORD, asterisks or bullets replace the default text (if any) as well as the user's typing in the field. If this ! argument is wx.TE_MULTILINE, the field expands to accommodate multiple lines of entry data.<br> </td> *************** *** 83,90 **** dialog.textEntryDialog(self, <br> - 'A window title', <br> - 'What is your favorite language?',<br> 'Python')</code><br> --- 83,90 ---- dialog.textEntryDialog(self, <br> 'What is your favorite language?',<br> + 'A window title', <br> + 'Python')</code><br> Index: singlechoicedialog.html =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/html/dialogs/singlechoicedialog.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** singlechoicedialog.html 3 Aug 2002 18:25:28 -0000 1.1 --- singlechoicedialog.html 15 Aug 2004 17:55:35 -0000 1.2 *************** *** 39,48 **** </tr> <tr> - <td valign="top">title<br> - </td> - <td valign="top">quoted string displayed in title bar of dialog<br> - </td> - </tr> - <tr> <td valign="top">message<br> </td> --- 39,42 ---- *************** *** 51,54 **** --- 45,54 ---- </td> </tr> + <tr> + <td valign="top">title<br> + </td> + <td valign="top">quoted string displayed in title bar of dialog<br> + </td> + </tr> <tr> <td valign="top">options<br> *************** *** 66,70 **** </b>Above dialog was created with this line of code:<br> <br> ! <code> result = dialog.singleChoiceDialog(self, "title", "message", ['one', 'two', 'three'])<br> </code> <br> --- 66,70 ---- </b>Above dialog was created with this line of code:<br> <br> ! <code> result = dialog.singleChoiceDialog(self, "message", "title", ['one', 'two', 'three'])<br> </code> <br> Index: multiplechoicedialog.html =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/html/dialogs/multiplechoicedialog.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** multiplechoicedialog.html 3 Aug 2002 18:25:28 -0000 1.1 --- multiplechoicedialog.html 15 Aug 2004 17:55:35 -0000 1.2 *************** *** 38,52 **** </tr> <tr> ! <td valign="top">title<br> </td> ! <td valign="top">string to be displayed in the title bar of the ! dialog<br> </td> </tr> <tr> ! <td valign="top">message<br> </td> ! <td valign="top">string to be displayed inside the dialog as ! a prompt for the user<br> </td> </tr> --- 38,52 ---- </tr> <tr> ! <td valign="top">message<br> </td> ! <td valign="top">string to be displayed inside the dialog as ! a prompt for the user<br> </td> </tr> <tr> ! <td valign="top">title<br> </td> ! <td valign="top">string to be displayed in the title bar of the ! dialog<br> </td> </tr> *************** *** 66,70 **** </b>Above dialog was created with this line of code:<br> <br> ! <code>result = dialog.multipleChoiceDialog(self, "title", "message", ['one', 'two', 'three'])</code><br> --- 66,70 ---- </b>Above dialog was created with this line of code:<br> <br> ! <code>result = dialog.multipleChoiceDialog(self, "message", "title", ['one', 'two', 'three'])</code><br> *************** *** 93,97 **** <td valign="top">selection<br> </td> ! <td valign="top">list of strings containing the optoins chosen by the user. <br> </td> --- 93,97 ---- <td valign="top">selection<br> </td> ! <td valign="top">list of strings containing the options chosen by the user. <br> </td> |