copy event handler Copy the original text to the clipboard.
(self, event=None)
| 167 | self.squeezer.expandingbuttons.remove(self) |
| 168 | |
| 169 | def copy(self, event=None): |
| 170 | """copy event handler |
| 171 | |
| 172 | Copy the original text to the clipboard. |
| 173 | """ |
| 174 | self.clipboard_clear() |
| 175 | self.clipboard_append(self.s) |
| 176 | |
| 177 | def view(self, event=None): |
| 178 | """view event handler |