5002 and calltips handling __charAdded() slot. |
5002 and calltips handling __charAdded() slot. |
5003 |
5003 |
5004 @param charNumber value of the character entered (integer) |
5004 @param charNumber value of the character entered (integer) |
5005 """ |
5005 """ |
5006 char = chr(charNumber) |
5006 char = chr(charNumber) |
5007 if char == "(" and Preferences.getEditor("ShowInfoOnOpenParenthesis"): |
5007 if char == "(" and \ |
|
5008 Preferences.getDocuViewer("ShowInfoOnOpenParenthesis"): |
5008 self.vm.showEditorInfo(self) |
5009 self.vm.showEditorInfo(self) |
5009 |
5010 |
5010 def __showCodeInfo(self): |
5011 def __showCodeInfo(self): |
5011 """ |
5012 """ |
5012 Private slot to handle the context menu action to show code info. |
5013 Private slot to handle the context menu action to show code info. |