X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf952100f3b51344d1c9d01b9c92d59fabd57f37..75d9e502238df95fa53c0030b1fac0d4f43e4025:/wxPython/wx/tools/pywxrc.py diff --git a/wxPython/wx/tools/pywxrc.py b/wxPython/wx/tools/pywxrc.py index 997e2b81d0..459a07674a 100644 --- a/wxPython/wx/tools/pywxrc.py +++ b/wxPython/wx/tools/pywxrc.py @@ -89,12 +89,19 @@ class xrc%(windowName)s(wx.%(windowClass)s): pre.thisown = 0 if hasattr(self, '_setOORInfo'): self._setOORInfo(self) - if hasattr(self, '_setCallbackInfo'): - self._setCallbackInfo(self, self.__class__) # Define variables for the menu items """ + MENUBAR_CLASS_HEADER = """\ +class xrc%(windowName)s(wx.%(windowClass)s): + def __init__(self): + pre = get_resources().LoadMenuBar("%(windowName)s") + self.PostCreate(pre) + + # Define variables for the menu items +""" + CREATE_MENUITEM_VAR = """\ self.%(widgetName)s = self.FindItemById(xrc.XRCID(\"%(widgetName)s\")) """ @@ -227,7 +234,9 @@ class XmlResourceCompiler: windowClass = re.sub("^wx", "", windowClass) windowName = topWindow.getAttribute("name") - if windowClass == "Menu": + if windowClass in ["MenuBar"]: + outputList.append(self.templates.MENUBAR_CLASS_HEADER % locals()) + elif windowClass in ["Menu"]: outputList.append(self.templates.MENU_CLASS_HEADER % locals()) else: outputList.append(self.templates.CLASS_HEADER % locals())