--- a/c_ext/CFileEditor.py Wed Jan 30 19:07:59 2013 +0100
+++ b/c_ext/CFileEditor.py Wed Jan 30 23:46:41 2013 +0100
@@ -6,7 +6,7 @@
from controls import CustomGrid, CustomTable
-from editors.ConfTreeNodeEditor import ConfTreeNodeEditor
+from editors.ConfTreeNodeEditor import ConfTreeNodeEditor, SCROLLBAR_UNIT from util.BitmapLibrary import GetBitmap
if wx.Platform == '__WXMSW__':
@@ -74,7 +74,7 @@
def __init__(self, parent, name, window, controler):
stc.StyledTextCtrl.__init__(self, parent, ID_CPPEDITOR, wx.DefaultPosition,
self.SetMarginType(1, stc.STC_MARGIN_NUMBER)
self.SetMarginWidth(1, 25)
@@ -504,7 +504,7 @@
main_sizer.AddGrowableCol(0)
main_sizer.AddGrowableRow(0)
- self.VariablesGrid = CustomGrid(self, style=wx.VSCROLL)
+ self.VariablesGrid = CustomGrid(self, size=wx.Size(-1, 300), style=wx.VSCROLL) self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGE, self.OnVariablesGridCellChange)
self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_LEFT_CLICK, self.OnVariablesGridCellLeftClick)
self.VariablesGrid.Bind(wx.grid.EVT_GRID_EDITOR_SHOWN, self.OnVariablesGridEditorShown)
@@ -727,39 +727,39 @@
class CFileEditor(ConfTreeNodeEditor):
- def _init_ConfNodeEditor(self, prnt):
- self.ConfNodeEditor = wx.Panel(prnt, style=wx.TAB_TRAVERSAL)
+ CONFNODEEDITOR_TABS = [ + (_("C code"), "_create_CCodeEditor")] + def _create_CCodeEditor(self, prnt): + self.CCodeEditor = wx.ScrolledWindow(prnt, + style=wx.TAB_TRAVERSAL|wx.HSCROLL|wx.VSCROLL) + self.CCodeEditor.Bind(wx.EVT_SIZE, self.OnCCodeEditorResize) - self.MainSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2 * len(CFILE_PARTS) + 1, vgap=0)
- self.MainSizer.AddGrowableCol(0)
+ self.MainSizer = wx.BoxSizer(wx.VERTICAL) for idx, (name, panel_class) in enumerate(CFILE_PARTS):
button = FoldPanelCaption(id=button_id, name='FoldPanelCaption_%s' % name,
label=name, bitmap=GetBitmap("CollapsedIconData"),
- parent=self.ConfNodeEditor, pos=wx.Point(0, 0),
+ parent=self.CCodeEditor, pos=wx.Point(0, 0), size=wx.Size(0, 20), style=wx.NO_BORDER|wx.ALIGN_LEFT)
button.SetBitmapSelected(GetBitmap("ExpandedIconData"))
button.Bind(wx.EVT_BUTTON, self.GenPanelButtonCallback(name), id=button_id)
self.MainSizer.AddWindow(button, 0, border=0, flag=wx.TOP|wx.GROW)
if panel_class == VariablesEditor:
- panel = VariablesEditor(self.ConfNodeEditor, self.ParentWindow, self.Controler)
+ panel = VariablesEditor(self.CCodeEditor, self.ParentWindow, self.Controler) - panel = panel_class(self.ConfNodeEditor, name, self.ParentWindow, self.Controler)
+ panel = panel_class(self.CCodeEditor, name, self.ParentWindow, self.Controler) self.MainSizer.AddWindow(panel, 0, border=0, flag=wx.BOTTOM|wx.GROW)
self.Panels[name] = {"button": button, "panel": panel, "expanded": False, "row": 2 * idx + 1}
- self.Spacer = wx.Panel(self.ConfNodeEditor, -1)
- self.SpacerExpanded = True
- self.MainSizer.AddWindow(self.Spacer, 0, border=0, flag=wx.GROW)
+ self.CCodeEditor.SetSizer(self.MainSizer) - self.MainSizer.AddGrowableRow(2 * len(CFILE_PARTS))
- self.ConfNodeEditor.SetSizer(self.MainSizer)
+ return self.CCodeEditor def __init__(self, parent, controler, window):
ConfTreeNodeEditor.__init__(self, parent, controler, window)
@@ -780,6 +780,8 @@
for infos in self.Panels.itervalues():
infos["panel"].RefreshView()
+ self.RefreshCCodeEditorScrollbars() def GenPanelButtonCallback(self, name):
def PanelButtonCallback(event):
@@ -792,8 +794,7 @@
infos["button"].SetToggle(True)
- self.MainSizer.AddGrowableRow(infos["row"])
self.RefreshSizerLayout()
def CollapsePanel(self, name):
@@ -802,8 +803,7 @@
infos["expanded"] = False
infos["button"].SetToggle(False)
- self.MainSizer.RemoveGrowableRow(infos["row"])
self.RefreshSizerLayout()
def TogglePanel(self, name):
@@ -813,26 +813,27 @@
infos["button"].SetToggle(infos["expanded"])
- self.MainSizer.AddGrowableRow(infos["row"])
- self.MainSizer.RemoveGrowableRow(infos["row"])
self.RefreshSizerLayout()
def RefreshSizerLayout(self):
- for infos in self.Panels.itervalues():
- expand_spacer = expand_spacer and not infos["expanded"]
- if self.SpacerExpanded != expand_spacer:
- self.SpacerExpanded = expand_spacer
- self.MainSizer.AddGrowableRow(2 * len(CFILE_PARTS))
- self.MainSizer.RemoveGrowableRow(2 * len(CFILE_PARTS))
+ self.RefreshCCodeEditorScrollbars() + def RefreshCCodeEditorScrollbars(self): + self.CCodeEditor.GetBestSize() + xstart, ystart = self.CCodeEditor.GetViewStart() + window_size = self.CCodeEditor.GetClientSize() + maxx, maxy = self.MainSizer.GetMinSize() + posx = max(0, min(xstart, (maxx - window_size[0]) / SCROLLBAR_UNIT)) + posy = max(0, min(ystart, (maxy - window_size[1]) / SCROLLBAR_UNIT)) + self.CCodeEditor.Scroll(posx, posy) + self.CCodeEditor.SetScrollbars(SCROLLBAR_UNIT, SCROLLBAR_UNIT, + maxx / SCROLLBAR_UNIT, maxy / SCROLLBAR_UNIT, posx, posy) + def OnCCodeEditorResize(self, event): + self.RefreshCCodeEditorScrollbars() --- a/editors/ConfTreeNodeEditor.py Wed Jan 30 19:07:59 2013 +0100
+++ b/editors/ConfTreeNodeEditor.py Wed Jan 30 23:46:41 2013 +0100
@@ -143,19 +143,42 @@
- def _init_ConfNodeEditor(self, prnt):
- self.ConfNodeEditor = None
+ CONFNODEEDITOR_TABS = [] def _init_Editor(self, parent):
- self.Editor = wx.SplitterWindow(parent,
- style=wx.SUNKEN_BORDER|wx.SP_3D)
- self.SetNeedUpdating(True)
- self.SetMinimumPaneSize(1)
+ tabs_num = len(self.CONFNODEEDITOR_TABS) + self.Editor = wx.Panel(parent, + style=wx.SUNKEN_BORDER|wx.SP_3D) + main_sizer = wx.BoxSizer(wx.VERTICAL) + self.ConfNodeNoteBook = wx.Notebook(self.Editor) + parent = self.ConfNodeNoteBook + main_sizer.AddWindow(self.ConfNodeNoteBook, 1, flag=wx.GROW) + self.Editor.SetSizer(main_sizer) + self.ConfNodeNoteBook = None + for title, create_func_name in self.CONFNODEEDITOR_TABS: + editor = getattr(self, create_func_name)(parent) + if self.ConfNodeNoteBook is not None: + self.ConfNodeNoteBook.AddPage(editor, title) - self.ParamsEditor = wx.ScrolledWindow(self.Editor,
- style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL)
+ panel_style = wx.TAB_TRAVERSAL|wx.HSCROLL|wx.VSCROLL + if self.ConfNodeNoteBook is None: + panel_style |= wx.SUNKEN_BORDER + self.ParamsEditor = wx.ScrolledWindow(parent, self.ParamsEditor.SetBackgroundColour(WINDOW_COLOUR)
self.ParamsEditor.Bind(wx.EVT_SIZE, self.OnWindowResize)
self.ParamsEditor.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel)
@@ -221,21 +244,13 @@
flag=wx.LEFT|wx.RIGHT|wx.BOTTOM)
self.RefreshConfNodeParamsSizer()
+ if self.ConfNodeNoteBook is not None: + self.ConfNodeNoteBook.AddPage(self.ParamsEditor, _("Config")) + self.Editor = self.ParamsEditor
- self._init_ConfNodeEditor(self.Editor)
- if self.ConfNodeEditor is not None:
- if self.ParamsEditor is not None:
- min_size = self.ParamsEditorSizer.GetMinSize()
- self.Editor.SplitHorizontally(self.ParamsEditor,
- min(min_size.height, 200))
- self.Editor.Initialize(self.ConfNodeEditor)
- elif self.ParamsEditor is not None:
- self.Editor.Initialize(self.ParamsEditor)
def __init__(self, parent, controler, window, tagname=""):
EditorPanel.__init__(self, parent, tagname, window, controler)
--- a/editors/ProjectNodeEditor.py Wed Jan 30 19:07:59 2013 +0100
+++ b/editors/ProjectNodeEditor.py Wed Jan 30 23:46:41 2013 +0100
@@ -1,51 +1,29 @@
-from controls import ProjectPropertiesPanel
+from controls import ProjectPropertiesPanel, VariablePanel from EditorPanel import EditorPanel
-from ConfTreeNodeEditor import ConfTreeNodeEditor, WINDOW_COLOUR
+from ConfTreeNodeEditor import ConfTreeNodeEditor class ProjectNodeEditor(ConfTreeNodeEditor):
- VARIABLE_PANEL_TYPE = "config"
+ SHOW_BASE_PARAMS = False + CONFNODEEDITOR_TABS = [ + (_("Config variables"), "_create_VariablePanel"), + (_("Project properties"), "_create_ProjectPropertiesPanel")] - def _init_Editor(self, prnt):
- self.Editor = wx.ScrolledWindow(prnt, -1, size=wx.Size(-1, -1),
- style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL)
- self.Editor.SetBackgroundColour(WINDOW_COLOUR)
- self.Editor.Bind(wx.EVT_SIZE, self.OnWindowResize)
- self.Editor.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel)
- self.ParamsEditor = self.Editor
- # Variable allowing disabling of Editor scroll when Popup shown
- self.ScrollingEnabled = True
- self.ParamsEditorSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=5)
- self.ParamsEditorSizer.AddGrowableCol(0)
- self.ParamsEditorSizer.AddGrowableRow(1)
- self.Editor.SetSizer(self.ParamsEditorSizer)
+ def _create_VariablePanel(self, prnt): + self.VariableEditorPanel = VariablePanel(prnt, self, self.Controler, "config", self.Debug) + self.VariableEditorPanel.SetTagName(self.TagName) + return self.VariableEditorPanel + def _create_ProjectPropertiesPanel(self, prnt): + self.ProjectProperties = ProjectPropertiesPanel(prnt, self.Controler, self.ParentWindow, self.ENABLE_REQUIRED)
- buttons_sizer = self.GenerateMethodButtonSizer()
- self.ParamsEditorSizer.AddSizer(buttons_sizer, 0, border=5,
- flag=wx.GROW|wx.LEFT|wx.RIGHT|wx.TOP)
- projectproperties_sizer = wx.BoxSizer(wx.HORIZONTAL)
- self.ParamsEditorSizer.AddSizer(projectproperties_sizer, 0, border=5,
- flag=wx.LEFT|wx.RIGHT|wx.BOTTOM)
- self.ConfNodeParamsSizer = wx.BoxSizer(wx.VERTICAL)
- projectproperties_sizer.AddSizer(self.ConfNodeParamsSizer, 0, border=5,
- self.ConfNodeParamsSizer = None
- self.ProjectProperties = ProjectPropertiesPanel(self.Editor, self.Controler, self.ParentWindow, self.ENABLE_REQUIRED)
- projectproperties_sizer.AddWindow(self.ProjectProperties, 0, border=0, flag=0)
+ return self.ProjectProperties def __init__(self, parent, controler, window):
configuration = controler.GetProjectMainConfigurationName()
if configuration is not None:
@@ -54,10 +32,22 @@
ConfTreeNodeEditor.__init__(self, parent, controler, window, tagname)
+ buttons_sizer = self.GenerateMethodButtonSizer() + self.ParamsEditorSizer.InsertSizer(0, buttons_sizer, 0, border=5, + flag=wx.LEFT|wx.RIGHT|wx.TOP) + self.ParamsEditorSizer.Layout() + self.VariableEditor = self.VariableEditorPanel return self.Controler.CTNName()
+ def SetTagName(self, tagname): + if self.VariableEditor is not None: + self.VariableEditor.SetTagName(tagname) fullname = _(self.Controler.CTNName())
if self.Controler.CTNTestModified():
@@ -65,10 +55,10 @@
def RefreshView(self, variablepanel=True):
- EditorPanel.RefreshView(self, variablepanel)
- if self.ConfNodeParamsSizer is not None:
- self.RefreshConfNodeParamsSizer()
- self.ProjectProperties.RefreshView()
+ ConfTreeNodeEditor.RefreshView(self) + self.VariableEditor.RefreshView() + #self.ProjectProperties.RefreshView() def GetBufferState(self):
return self.Controler.GetBufferState()
--- a/py_ext/PythonEditor.py Wed Jan 30 19:07:59 2013 +0100
+++ b/py_ext/PythonEditor.py Wed Jan 30 23:46:41 2013 +0100
@@ -57,178 +57,181 @@
class PythonEditor(ConfTreeNodeEditor):
+ CONFNODEEDITOR_TABS = [ + (_("Python code"), "_create_PythonCodeEditor")] - def _init_ConfNodeEditor(self, prnt):
- self.ConfNodeEditor = stc.StyledTextCtrl(id=ID_PYTHONEDITOR, parent=prnt,
+ def _create_PythonCodeEditor(self, prnt): + self.PythonCodeEditor = stc.StyledTextCtrl(id=ID_PYTHONEDITOR, parent=prnt, name="TextViewer", pos=wx.DefaultPosition,
size=wx.DefaultSize, style=0)
- self.ConfNodeEditor.ParentWindow = self
+ self.PythonCodeEditor.ParentWindow = self - self.ConfNodeEditor.CmdKeyAssign(ord('B'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMIN)
- self.ConfNodeEditor.CmdKeyAssign(ord('N'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMOUT)
+ self.PythonCodeEditor.CmdKeyAssign(ord('B'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMIN) + self.PythonCodeEditor.CmdKeyAssign(ord('N'), stc.STC_SCMOD_CTRL, stc.STC_CMD_ZOOMOUT) - self.ConfNodeEditor.SetLexer(stc.STC_LEX_PYTHON)
- self.ConfNodeEditor.SetKeyWords(0, " ".join(keyword.kwlist))
+ self.PythonCodeEditor.SetLexer(stc.STC_LEX_PYTHON) + self.PythonCodeEditor.SetKeyWords(0, " ".join(keyword.kwlist)) - self.ConfNodeEditor.SetProperty("fold", "1")
- self.ConfNodeEditor.SetProperty("tab.timmy.whinge.level", "1")
- self.ConfNodeEditor.SetMargins(0,0)
+ self.PythonCodeEditor.SetProperty("fold", "1") + self.PythonCodeEditor.SetProperty("tab.timmy.whinge.level", "1") + self.PythonCodeEditor.SetMargins(0,0) - self.ConfNodeEditor.SetViewWhiteSpace(False)
+ self.PythonCodeEditor.SetViewWhiteSpace(False) - self.ConfNodeEditor.SetEdgeMode(stc.STC_EDGE_BACKGROUND)
- self.ConfNodeEditor.SetEdgeColumn(78)
+ self.PythonCodeEditor.SetEdgeMode(stc.STC_EDGE_BACKGROUND) + self.PythonCodeEditor.SetEdgeColumn(78) # Set up the numbers in the margin for margin #1
- self.ConfNodeEditor.SetMarginType(1, wx.stc.STC_MARGIN_NUMBER)
+ self.PythonCodeEditor.SetMarginType(1, wx.stc.STC_MARGIN_NUMBER) # Reasonable value for, say, 4-5 digits using a mono font (40 pix)
- self.ConfNodeEditor.SetMarginWidth(1, 40)
+ self.PythonCodeEditor.SetMarginWidth(1, 40) # Setup a margin to hold fold markers
- self.ConfNodeEditor.SetMarginType(2, stc.STC_MARGIN_SYMBOL)
- self.ConfNodeEditor.SetMarginMask(2, stc.STC_MASK_FOLDERS)
- self.ConfNodeEditor.SetMarginSensitive(2, True)
- self.ConfNodeEditor.SetMarginWidth(2, 12)
+ self.PythonCodeEditor.SetMarginType(2, stc.STC_MARGIN_SYMBOL) + self.PythonCodeEditor.SetMarginMask(2, stc.STC_MASK_FOLDERS) + self.PythonCodeEditor.SetMarginSensitive(2, True) + self.PythonCodeEditor.SetMarginWidth(2, 12) if self.fold_symbols == 0:
# Arrow pointing right for contracted folders, arrow pointing down for expanded
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_ARROWDOWN, "black", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_ARROW, "black", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_EMPTY, "black", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_EMPTY, "black", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_EMPTY, "white", "black")
+ self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_ARROWDOWN, "black", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_ARROW, "black", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_EMPTY, "black", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_EMPTY, "black", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_EMPTY, "white", "black") elif self.fold_symbols == 1:
# Plus for contracted folders, minus for expanded
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_MINUS, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_PLUS, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_EMPTY, "white", "black")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_EMPTY, "white", "black")
+ self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_MINUS, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_PLUS, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_EMPTY, "white", "black") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_EMPTY, "white", "black") elif self.fold_symbols == 2:
# Like a flattened tree control using circular headers and curved joins
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_CIRCLEMINUS, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_CIRCLEPLUS, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_VLINE, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_LCORNERCURVE, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_CIRCLEPLUSCONNECTED, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_CIRCLEMINUSCONNECTED, "white", "#404040")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_TCORNERCURVE, "white", "#404040")
+ self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_CIRCLEMINUS, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_CIRCLEPLUS, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_VLINE, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_LCORNERCURVE, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_CIRCLEPLUSCONNECTED, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_CIRCLEMINUSCONNECTED, "white", "#404040") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_TCORNERCURVE, "white", "#404040") elif self.fold_symbols == 3:
# Like a flattened tree control using square headers
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_BOXMINUS, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_BOXPLUS, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_VLINE, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_LCORNER, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_BOXPLUSCONNECTED, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_BOXMINUSCONNECTED, "white", "#808080")
- self.ConfNodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_TCORNER, "white", "#808080")
+ self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPEN, stc.STC_MARK_BOXMINUS, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDER, stc.STC_MARK_BOXPLUS, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERSUB, stc.STC_MARK_VLINE, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERTAIL, stc.STC_MARK_LCORNER, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEREND, stc.STC_MARK_BOXPLUSCONNECTED, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDEROPENMID, stc.STC_MARK_BOXMINUSCONNECTED, "white", "#808080") + self.PythonCodeEditor.MarkerDefine(stc.STC_MARKNUM_FOLDERMIDTAIL, stc.STC_MARK_TCORNER, "white", "#808080") - self.ConfNodeEditor.Bind(stc.EVT_STC_UPDATEUI, self.OnUpdateUI)
- self.ConfNodeEditor.Bind(stc.EVT_STC_MARGINCLICK, self.OnMarginClick)
- self.ConfNodeEditor.Bind(wx.EVT_KEY_DOWN, self.OnKeyPressed)
+ self.PythonCodeEditor.Bind(stc.EVT_STC_UPDATEUI, self.OnUpdateUI) + self.PythonCodeEditor.Bind(stc.EVT_STC_MARGINCLICK, self.OnMarginClick) + self.PythonCodeEditor.Bind(wx.EVT_KEY_DOWN, self.OnKeyPressed) if wx.Platform == '__WXMSW__':
- self.ConfNodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier New')
+ self.PythonCodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier New') elif wx.Platform == '__WXMAC__':
# TODO: if this looks fine on Linux too, remove the Mac-specific case
# and use this whenever OS != MSW.
- self.ConfNodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Monaco')
+ self.PythonCodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Monaco') defsize = wx.SystemSettings.GetFont(wx.SYS_ANSI_FIXED_FONT).GetPointSize()
- self.ConfNodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier,size:%d'%defsize)
+ self.PythonCodeEditor.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier,size:%d'%defsize) # Clear styles and revert to default.
- self.ConfNodeEditor.StyleClearAll()
+ self.PythonCodeEditor.StyleClearAll() # Following style specs only indicate differences from default.
# The rest remains unchanged.
- self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_STYLE_LINENUMBER,'fore:#000000,back:#99A9C2')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_STYLE_LINENUMBER,'fore:#000000,back:#99A9C2') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_STYLE_BRACELIGHT,'fore:#00009D,back:#FFFF00')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_STYLE_BRACELIGHT,'fore:#00009D,back:#FFFF00') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_STYLE_BRACEBAD,'fore:#00009D,back:#FF0000')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_STYLE_BRACEBAD,'fore:#00009D,back:#FF0000') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_STYLE_INDENTGUIDE, "fore:#CDCDCD")
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_STYLE_INDENTGUIDE, "fore:#CDCDCD") - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_DEFAULT, 'fore:#000000')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_DEFAULT, 'fore:#000000') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_COMMENTLINE, 'fore:#008000,back:#F0FFF0')
- self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_COMMENTBLOCK, 'fore:#008000,back:#F0FFF0')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_COMMENTLINE, 'fore:#008000,back:#F0FFF0') + self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_COMMENTBLOCK, 'fore:#008000,back:#F0FFF0') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_NUMBER, 'fore:#008080')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_NUMBER, 'fore:#008080') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_STRING, 'fore:#800080')
- self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_CHARACTER, 'fore:#800080')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_STRING, 'fore:#800080') + self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_CHARACTER, 'fore:#800080') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_WORD, 'fore:#000080,bold')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_WORD, 'fore:#000080,bold') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_TRIPLE, 'fore:#800080,back:#FFFFEA')
- self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_TRIPLEDOUBLE, 'fore:#800080,back:#FFFFEA')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_TRIPLE, 'fore:#800080,back:#FFFFEA') + self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_TRIPLEDOUBLE, 'fore:#800080,back:#FFFFEA') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_CLASSNAME, 'fore:#0000FF,bold')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_CLASSNAME, 'fore:#0000FF,bold') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_DEFNAME, 'fore:#008080,bold')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_DEFNAME, 'fore:#008080,bold') - self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_OPERATOR, 'fore:#800000,bold')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_OPERATOR, 'fore:#800000,bold') # Identifiers. I leave this as not bold because everything seems
# to be an identifier if it doesn't match the above criterae
- self.ConfNodeEditor.StyleSetSpec(wx.stc.STC_P_IDENTIFIER, 'fore:#000000')
+ self.PythonCodeEditor.StyleSetSpec(wx.stc.STC_P_IDENTIFIER, 'fore:#000000') - self.ConfNodeEditor.SetCaretForeground("BLUE")
+ self.PythonCodeEditor.SetCaretForeground("BLUE") - self.ConfNodeEditor.SetSelBackground(1, '#66CCFF')
+ self.PythonCodeEditor.SetSelBackground(1, '#66CCFF') - self.ConfNodeEditor.SetSelBackground(True, wx.SystemSettings_GetColour(wx.SYS_COLOUR_HIGHLIGHT))
- self.ConfNodeEditor.SetSelForeground(True, wx.SystemSettings_GetColour(wx.SYS_COLOUR_HIGHLIGHTTEXT))
+ self.PythonCodeEditor.SetSelBackground(True, wx.SystemSettings_GetColour(wx.SYS_COLOUR_HIGHLIGHT)) + self.PythonCodeEditor.SetSelForeground(True, wx.SystemSettings_GetColour(wx.SYS_COLOUR_HIGHLIGHTTEXT)) # register some images for use in the AutoComplete box.
#self.RegisterImage(1, images.getSmilesBitmap())
- self.ConfNodeEditor.RegisterImage(1,
+ self.PythonCodeEditor.RegisterImage(1, wx.ArtProvider.GetBitmap(wx.ART_DELETE, size=(16,16)))
- self.ConfNodeEditor.RegisterImage(2,
+ self.PythonCodeEditor.RegisterImage(2, wx.ArtProvider.GetBitmap(wx.ART_NEW, size=(16,16)))
- self.ConfNodeEditor.RegisterImage(3,
+ self.PythonCodeEditor.RegisterImage(3, wx.ArtProvider.GetBitmap(wx.ART_COPY, size=(16,16)))
# Indentation and tab stuff
- self.ConfNodeEditor.SetIndent(4) # Proscribed indent size for wx
- self.ConfNodeEditor.SetIndentationGuides(True) # Show indent guides
- self.ConfNodeEditor.SetBackSpaceUnIndents(True)# Backspace unindents rather than delete 1 space
- self.ConfNodeEditor.SetTabIndents(True) # Tab key indents
- self.ConfNodeEditor.SetTabWidth(4) # Proscribed tab size for wx
- self.ConfNodeEditor.SetUseTabs(False) # Use spaces rather than tabs, or
+ self.PythonCodeEditor.SetIndent(4) # Proscribed indent size for wx + self.PythonCodeEditor.SetIndentationGuides(True) # Show indent guides + self.PythonCodeEditor.SetBackSpaceUnIndents(True)# Backspace unindents rather than delete 1 space + self.PythonCodeEditor.SetTabIndents(True) # Tab key indents + self.PythonCodeEditor.SetTabWidth(4) # Proscribed tab size for wx + self.PythonCodeEditor.SetUseTabs(False) # Use spaces rather than tabs, or # TabTimmy will complain!
- self.ConfNodeEditor.SetViewWhiteSpace(False) # Don't view white space
+ self.PythonCodeEditor.SetViewWhiteSpace(False) # Don't view white space # EOL: Since we are loading/saving ourselves, and the
# strings will always have \n's in them, set the STC to
- self.ConfNodeEditor.SetEOLMode(wx.stc.STC_EOL_LF)
- self.ConfNodeEditor.SetViewEOL(False)
+ self.PythonCodeEditor.SetEOLMode(wx.stc.STC_EOL_LF) + self.PythonCodeEditor.SetViewEOL(False) # No right-edge mode indicator
- self.ConfNodeEditor.SetEdgeMode(stc.STC_EDGE_NONE)
+ self.PythonCodeEditor.SetEdgeMode(stc.STC_EDGE_NONE) - self.ConfNodeEditor.SetModEventMask(wx.stc.STC_MOD_BEFOREINSERT|wx.stc.STC_MOD_BEFOREDELETE)
+ self.PythonCodeEditor.SetModEventMask(wx.stc.STC_MOD_BEFOREINSERT|wx.stc.STC_MOD_BEFOREDELETE) - self.ConfNodeEditor.Bind(wx.stc.EVT_STC_DO_DROP, self.OnDoDrop, id=ID_PYTHONEDITOR)
- self.ConfNodeEditor.Bind(wx.EVT_KILL_FOCUS, self.OnKillFocus)
- self.ConfNodeEditor.Bind(wx.stc.EVT_STC_MODIFIED, self.OnModification, id=ID_PYTHONEDITOR)
+ self.PythonCodeEditor.Bind(wx.stc.EVT_STC_DO_DROP, self.OnDoDrop, id=ID_PYTHONEDITOR) + self.PythonCodeEditor.Bind(wx.EVT_KILL_FOCUS, self.OnKillFocus) + self.PythonCodeEditor.Bind(wx.stc.EVT_STC_MODIFIED, self.OnModification, id=ID_PYTHONEDITOR) + return self.PythonCodeEditor def __init__(self, parent, controler, window):
ConfTreeNodeEditor.__init__(self, parent, controler, window)
@@ -301,43 +304,43 @@
self.DisableEvents = True
- old_cursor_pos = self.ConfNodeEditor.GetCurrentPos()
- old_text = self.ConfNodeEditor.GetText()
+ old_cursor_pos = self.PythonCodeEditor.GetCurrentPos() + old_text = self.PythonCodeEditor.GetText() new_text = self.Controler.GetPythonCode()
- self.ConfNodeEditor.SetText(new_text)
+ self.PythonCodeEditor.SetText(new_text) new_cursor_pos = GetCursorPos(old_text, new_text)
if new_cursor_pos != None:
- self.ConfNodeEditor.GotoPos(new_cursor_pos)
+ self.PythonCodeEditor.GotoPos(new_cursor_pos) - self.ConfNodeEditor.GotoPos(old_cursor_pos)
- self.ConfNodeEditor.ScrollToColumn(0)
- self.ConfNodeEditor.EmptyUndoBuffer()
+ self.PythonCodeEditor.GotoPos(old_cursor_pos) + self.PythonCodeEditor.ScrollToColumn(0) + self.PythonCodeEditor.EmptyUndoBuffer() self.DisableEvents = False
- self.ConfNodeEditor.Colourise(0, -1)
+ self.PythonCodeEditor.Colourise(0, -1) - self.Controler.SetPythonCode(self.ConfNodeEditor.GetText())
+ self.Controler.SetPythonCode(self.PythonCodeEditor.GetText()) def OnKeyPressed(self, event):
- if self.ConfNodeEditor.CallTipActive():
- self.ConfNodeEditor.CallTipCancel()
+ if self.PythonCodeEditor.CallTipActive(): + self.PythonCodeEditor.CallTipCancel() if key == 32 and event.ControlDown():
- pos = self.ConfNodeEditor.GetCurrentPos()
+ pos = self.PythonCodeEditor.GetCurrentPos() if not event.ShiftDown():
- self.ConfNodeEditor.AutoCompSetIgnoreCase(False) # so this needs to match
+ self.PythonCodeEditor.AutoCompSetIgnoreCase(False) # so this needs to match # Images are specified with a appended "?type"
- self.ConfNodeEditor.AutoCompShow(0, " ".join([word + "?1" for word in keyword.kwlist]))
+ self.PythonCodeEditor.AutoCompShow(0, " ".join([word + "?1" for word in keyword.kwlist])) def OnKillFocus(self, event):
- self.ConfNodeEditor.AutoCompCancel()
+ self.PythonCodeEditor.AutoCompCancel() def OnUpdateUI(self, evt):
@@ -345,11 +348,11 @@
- caretPos = self.ConfNodeEditor.GetCurrentPos()
+ caretPos = self.PythonCodeEditor.GetCurrentPos() - charBefore = self.ConfNodeEditor.GetCharAt(caretPos - 1)
- styleBefore = self.ConfNodeEditor.GetStyleAt(caretPos - 1)
+ charBefore = self.PythonCodeEditor.GetCharAt(caretPos - 1) + styleBefore = self.PythonCodeEditor.GetStyleAt(caretPos - 1) if charBefore and chr(charBefore) in "[]{}()" and styleBefore == stc.STC_P_OPERATOR:
@@ -357,19 +360,19 @@
- charAfter = self.ConfNodeEditor.GetCharAt(caretPos)
- styleAfter = self.ConfNodeEditor.GetStyleAt(caretPos)
+ charAfter = self.PythonCodeEditor.GetCharAt(caretPos) + styleAfter = self.PythonCodeEditor.GetStyleAt(caretPos) if charAfter and chr(charAfter) in "[]{}()" and styleAfter == stc.STC_P_OPERATOR:
- braceOpposite = self.ConfNodeEditor.BraceMatch(braceAtCaret)
+ braceOpposite = self.PythonCodeEditor.BraceMatch(braceAtCaret) if braceAtCaret != -1 and braceOpposite == -1:
- self.ConfNodeEditor.BraceBadLight(braceAtCaret)
+ self.PythonCodeEditor.BraceBadLight(braceAtCaret) - self.ConfNodeEditor.BraceHighlight(braceAtCaret, braceOpposite)
+ self.PythonCodeEditor.BraceHighlight(braceAtCaret, braceOpposite) def OnMarginClick(self, evt):
# fold and unfold as needed
@@ -377,83 +380,83 @@
if evt.GetShift() and evt.GetControl():
- lineClicked = self.ConfNodeEditor.LineFromPosition(evt.GetPosition())
+ lineClicked = self.PythonCodeEditor.LineFromPosition(evt.GetPosition()) - if self.ConfNodeEditor.GetFoldLevel(lineClicked) & stc.STC_FOLDLEVELHEADERFLAG:
+ if self.PythonCodeEditor.GetFoldLevel(lineClicked) & stc.STC_FOLDLEVELHEADERFLAG: - self.ConfNodeEditor.SetFoldExpanded(lineClicked, True)
+ self.PythonCodeEditor.SetFoldExpanded(lineClicked, True) self.Expand(lineClicked, True, True, 1)
- if self.ConfNodeEditor.GetFoldExpanded(lineClicked):
- self.ConfNodeEditor.SetFoldExpanded(lineClicked, False)
+ if self.PythonCodeEditor.GetFoldExpanded(lineClicked): + self.PythonCodeEditor.SetFoldExpanded(lineClicked, False) self.Expand(lineClicked, False, True, 0)
- self.ConfNodeEditor.SetFoldExpanded(lineClicked, True)
+ self.PythonCodeEditor.SetFoldExpanded(lineClicked, True) self.Expand(lineClicked, True, True, 100)
- self.ConfNodeEditor.ToggleFold(lineClicked)
+ self.PythonCodeEditor.ToggleFold(lineClicked) - lineCount = self.ConfNodeEditor.GetLineCount()
+ lineCount = self.PythonCodeEditor.GetLineCount() # find out if we are folding or unfolding
for lineNum in range(lineCount):
- if self.ConfNodeEditor.GetFoldLevel(lineNum) & stc.STC_FOLDLEVELHEADERFLAG:
- expanding = not self.ConfNodeEditor.GetFoldExpanded(lineNum)
+ if self.PythonCodeEditor.GetFoldLevel(lineNum) & stc.STC_FOLDLEVELHEADERFLAG: + expanding = not self.PythonCodeEditor.GetFoldExpanded(lineNum) while lineNum < lineCount:
- level = self.ConfNodeEditor.GetFoldLevel(lineNum)
+ level = self.PythonCodeEditor.GetFoldLevel(lineNum) if level & stc.STC_FOLDLEVELHEADERFLAG and \
(level & stc.STC_FOLDLEVELNUMBERMASK) == stc.STC_FOLDLEVELBASE:
- self.ConfNodeEditor.SetFoldExpanded(lineNum, True)
+ self.PythonCodeEditor.SetFoldExpanded(lineNum, True) lineNum = self.Expand(lineNum, True)
- lastChild = self.ConfNodeEditor.GetLastChild(lineNum, -1)
- self.ConfNodeEditor.SetFoldExpanded(lineNum, False)
+ lastChild = self.PythonCodeEditor.GetLastChild(lineNum, -1) + self.PythonCodeEditor.SetFoldExpanded(lineNum, False) - self.ConfNodeEditor.HideLines(lineNum+1, lastChild)
+ self.PythonCodeEditor.HideLines(lineNum+1, lastChild) def Expand(self, line, doExpand, force=False, visLevels=0, level=-1):
- lastChild = self.ConfNodeEditor.GetLastChild(line, level)
+ lastChild = self.PythonCodeEditor.GetLastChild(line, level) - self.ConfNodeEditor.ShowLines(line, line)
+ self.PythonCodeEditor.ShowLines(line, line) - self.ConfNodeEditor.HideLines(line, line)
+ self.PythonCodeEditor.HideLines(line, line) - self.ConfNodeEditor.ShowLines(line, line)
+ self.PythonCodeEditor.ShowLines(line, line) - level = self.ConfNodeEditor.GetFoldLevel(line)
+ level = self.PythonCodeEditor.GetFoldLevel(line) if level & stc.STC_FOLDLEVELHEADERFLAG:
- self.ConfNodeEditor.SetFoldExpanded(line, True)
+ self.PythonCodeEditor.SetFoldExpanded(line, True) - self.ConfNodeEditor.SetFoldExpanded(line, False)
+ self.PythonCodeEditor.SetFoldExpanded(line, False) line = self.Expand(line, doExpand, force, visLevels-1)
- if doExpand and self.ConfNodeEditor.GetFoldExpanded(line):
+ if doExpand and self.PythonCodeEditor.GetFoldExpanded(line): line = self.Expand(line, True, force, visLevels-1)
line = self.Expand(line, False, force, visLevels-1)
@@ -465,18 +468,18 @@
self.DisableEvents = True
- self.ConfNodeEditor.CmdKeyExecute(wx.stc.STC_CMD_CUT)
+ self.PythonCodeEditor.CmdKeyExecute(wx.stc.STC_CMD_CUT) self.DisableEvents = False
- self.ConfNodeEditor.CmdKeyExecute(wx.stc.STC_CMD_COPY)
+ self.PythonCodeEditor.CmdKeyExecute(wx.stc.STC_CMD_COPY) self.DisableEvents = True
- self.ConfNodeEditor.CmdKeyExecute(wx.stc.STC_CMD_PASTE)
+ self.PythonCodeEditor.CmdKeyExecute(wx.stc.STC_CMD_PASTE) self.DisableEvents = False