(form, initialize_only, top_level_form)
| 14895 | # format of return values is |
| 14896 | # (Button Pressed, input_values) |
| 14897 | def _BuildResults(form, initialize_only, top_level_form): |
| 14898 | # Results for elements are: |
| 14899 | # TEXT - Nothing |
| 14900 | # INPUT - Read value from TK |
| 14901 | # Button - Button Text and position as a Tuple |
| 14902 | |
| 14903 | # Get the initialized results so we don't have to rebuild |
| 14904 | # form.DictionaryKeyCounter = 0 |
| 14905 | form.ReturnValuesDictionary = {} |
| 14906 | form.ReturnValuesList = [] |
| 14907 | _BuildResultsForSubform(form, initialize_only, top_level_form) |
| 14908 | if not top_level_form.LastButtonClickedWasRealtime: |
| 14909 | top_level_form.LastButtonClicked = None |
| 14910 | return form.ReturnValues |
| 14911 | |
| 14912 | |
| 14913 | def _BuildResultsForSubform(form, initialize_only, top_level_form): |
no test coverage detected