MCPcopy Create free account
hub / github.com/dtmilano/AndroidViewClient / ViewDetails

Class ViewDetails

src/com/dtmilano/android/culebron.py:2048–2059  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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):

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected