def makeSettings(self, settingsSizer):
# Translators: label of a checkbox which toggles the announcement of breakpoints via speech
self.announceBreakpointCheckBox=wx.CheckBox(self, wx.NewId(), label=_("&Announce breakpoints via speech"))
self.announceBreakpointCheckBox.SetValue(config.conf["visualStudio"]["announceBreakpoints"])
settingsSizer.Add(self.announceBreakpointCheckBox,border=10, flag=wx.BOTTOM)
# Translators: label of a checkbox which toggles the beep on breakpoints option
self.beepOnBreakpointCheckBox=wx.CheckBox(self, wx.NewId(), label=_("&Beep on breakpoints"))
self.beepOnBreakpointCheckBox.SetValue(config.conf["visualStudio"]["beepOnBreakpoints"])
settingsSizer.Add(self.beepOnBreakpointCheckBox,border=10, flag=wx.BOTTOM)
# Translators: label of a checkbox which toggles reporting of intelliSense menu item position info
self.reportIntelliSensePosInfoCheckBox=wx.CheckBox(self, wx.NewId(), label=_("&Report intelliSense menu item position information"))
self.reportIntelliSensePosInfoCheckBox.SetValue(config.conf["visualStudio"]["reportIntelliSensePosInfo"])
settingsSizer.Add(self.reportIntelliSensePosInfoCheckBox,border=10, flag=wx.BOTTOM)
评论列表
文章目录