import sys
import DebuggerService
import MarkerService
+from UICommon import CaseInsensitiveCompare
_ = wx.GetTranslation
if wx.Platform == '__WXMSW__':
_WINDOWS = True
return ['Put', 'Editor Specific', 'Keywords', 'Here']
- def CaseInsensitiveCompare(self, s1, s2):
- """ GetAutoCompleteKeywordList() method used to show keywords in case insensitive order """
- s1L = s1.lower()
- s2L = s2.lower()
- if s1L == s2L:
- return 0
- elif s1L < s2L:
- return -1
- else:
- return 1
-
-
def GetAutoCompleteKeywordList(self, context, hint):
""" Replace this method with Editor specific keywords """
kw = self.GetAutoCompleteDefaultKeywords()
else:
replaceLen = 0
- kw.sort(self.CaseInsensitiveCompare)
+ kw.sort(CaseInsensitiveCompare)
return " ".join(kw), replaceLen
def OnSetIndentWidth(self):
dialog = wx.TextEntryDialog(self._GetParentFrame(), _("Enter new indent width (2-10):"), _("Set Indent Width"), "%i" % self.GetCtrl().GetIndent())
+ dialog.CenterOnParent()
if dialog.ShowModal() == wx.ID_OK:
try:
indent = int(dialog.GetValue())
if hint == "ViewStuff":
self.GetCtrl().SetViewDefaults()
elif hint == "Font":
- font, color = self.GetFontAndColorFromConfig()
+ font, color = self.GetCtrl().GetFontAndColorFromConfig()
self.GetCtrl().SetFont(font)
self.GetCtrl().SetFontColor(color)
else:
BREAKPOINT_MARKER_MASK = 0x2
- def __init__(self, parent, ID = -1, style = wx.NO_FULL_REPAINT_ON_RESIZE):
- if ID == -1:
- ID = wx.NewId()
- STCTextEditor.TextCtrl.__init__(self, parent, ID, style)
+ def __init__(self, parent, id=-1, style = wx.NO_FULL_REPAINT_ON_RESIZE):
+ STCTextEditor.TextCtrl.__init__(self, parent, id, style)
self.UsePopUp(False)
self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp)
if _WINDOWS: # should test to see if menu item exists, if it does, add this workaround
self.CmdKeyClear(wx.stc.STC_KEY_TAB, 0) # menu item "Indent Lines" from CodeService.InstallControls() generates another INDENT_LINES_ID event, so we'll explicitly disable the tab processing in the editor
- wx.stc.EVT_STC_MARGINCLICK(self, ID, self.OnMarginClick)
+ wx.stc.EVT_STC_MARGINCLICK(self, self.GetId(), self.OnMarginClick)
wx.EVT_KEY_DOWN(self, self.OnKeyPressed)
if self.GetMatchingBraces():
- wx.stc.EVT_STC_UPDATEUI(self, ID, self.OnUpdateUI)
+ wx.stc.EVT_STC_UPDATEUI(self, self.GetId(), self.OnUpdateUI)
self.StyleClearAll()
self.UpdateStyles()
item = menuBar.FindItemById(itemID)
if item:
menu.Append(itemID, item.GetLabel())
-
+ wx.EVT_MENU(self, itemID, self.DSProcessEvent) # wxHack: for customized right mouse menu doesn't work with new DynamicSashWindow
+ wx.EVT_UPDATE_UI(self, itemID, self.DSProcessUpdateUIEvent) # wxHack: for customized right mouse menu doesn't work with new DynamicSashWindow
return menu
def DoIndent(self):
self.AddText('\n')
+ self.EnsureCaretVisible()
# Need to do a default one for all languges