| 2094 | |
| 2095 | |
| 2096 | class LabeledEntryWithButton(LabeledEntry): |
| 2097 | def __init__(self, parent, text, buttonText, command, validate, validatecmd): |
| 2098 | LabeledEntry.__init__(self, parent, text, validate, validatecmd) |
| 2099 | self.button = tkinter.Button(self.f, text=buttonText, command=command) |
| 2100 | self.button.grid(row=1, column=3) |
| 2101 | |
| 2102 | |
| 2103 | class DragDialog(tkinter.Toplevel): |