(self, emitter, value, table)
| 76 | table.item_at(ri, ci).set_text("row:%s,column:%s"%(str(ri),str(ci))) |
| 77 | |
| 78 | def on_use_title_change(self, emitter, value, table): |
| 79 | print(str(value)) |
| 80 | table.set_use_title(value) |
| 81 | |
| 82 | def on_table_item_changed(self, table, item, new_value, row, column): |
| 83 | print("text: %s row: %s column: %s"%(new_value, row, column)) |
nothing calls this directly
no test coverage detected