| 2046 | |
| 2047 | |
| 2048 | class ViewDetails(tkinter.Frame): |
| 2049 | VIEW_DETAILS = "View Details:\n" |
| 2050 | |
| 2051 | def __init__(self, parent): |
| 2052 | tkinter.Frame.__init__(self, parent) |
| 2053 | self.label = tkinter.Label(self, bd=1, width=30, wraplength=200, justify=tkinter.LEFT, anchor=tkinter.NW) |
| 2054 | self.label.configure(text=self.VIEW_DETAILS) |
| 2055 | self.label.configure(bg="white") |
| 2056 | self.label.grid(row=3, column=1, rowspan=1) |
| 2057 | |
| 2058 | def set(self, view): |
| 2059 | self.label.configure(text=self.VIEW_DETAILS + view.__str__()) |
| 2060 | |
| 2061 | |
| 2062 | class StatusBar(tkinter.Frame): |