MCPcopy Create free account
hub / github.com/cztomczak/cefpython / __init__

Method __init__

examples/tkinter_.py:156–166  ·  view source on GitHub ↗
(self, mainframe, navigation_bar=None)

Source from the content-addressed store, hash-verified

154class BrowserFrame(tk.Frame):
155
156 def __init__(self, mainframe, navigation_bar=None):
157 self.navigation_bar = navigation_bar
158 self.closing = False
159 self.browser = None
160 tk.Frame.__init__(self, mainframe)
161 self.mainframe = mainframe
162 self.bind("<FocusIn>", self.on_focus_in)
163 self.bind("<FocusOut>", self.on_focus_out)
164 self.bind("<Configure>", self.on_configure)
165 """For focus problems see Issue #255 and Issue #535. """
166 self.focus_set()
167
168 def embed_browser(self):
169 window_info = cef.WindowInfo()

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected