(self)
| 161 | self.SetIcon(icon) |
| 162 | |
| 163 | def create_menu(self): |
| 164 | filemenu = wx.Menu() |
| 165 | filemenu.Append(1, "Some option") |
| 166 | filemenu.Append(2, "Another option") |
| 167 | menubar = wx.MenuBar() |
| 168 | menubar.Append(filemenu, "&File") |
| 169 | self.SetMenuBar(menubar) |
| 170 | |
| 171 | def embed_browser(self): |
| 172 | window_info = cef.WindowInfo() |