(self, id, text, pos)
| 841 | pass |
| 842 | |
| 843 | def menuGaucheAddTitle(self, id, text, pos): |
| 844 | self.menuElem[id] = wx.StaticText(self.menu_gauche, -1, text, pos=(5, 5 + pos * 20)) |
| 845 | self.menuElem[id].SetForegroundColour((0, 0, 0)) # For dark themes |
| 846 | self.menuElem[id].SetFont(self.fontTitre) |
| 847 | |
| 848 | def menuGaucheAddLink(self, id, text, pos, image, evt, url=None): |
| 849 | if (os.path.exists(image)): |