(self, emitter, container)
| 57 | return main_container |
| 58 | |
| 59 | def redefine_grid(self, emitter, container): |
| 60 | #redefining grid layout |
| 61 | container.define_grid([ ['text','label','button'],['text','.','.']]) |
| 62 | container.style.update({'grid-template-columns':'33% 33% 33%', 'grid-template-rows':'50% 50%'}) |
| 63 | container.set_column_gap("0%") |
| 64 | container.set_row_gap("0%") |
| 65 | emitter.set_text("Done") |
| 66 | |
| 67 | |
| 68 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected