248 lines
11 KiB
Lua
248 lines
11 KiB
Lua
-- authors: Luxinia Dev (Eike Decker & Christoph Kubisch)
|
|
-- Lomtik Software (J. Winwood & John Labenski)
|
|
---------------------------------------------------------
|
|
local ide = ide
|
|
|
|
-- Pick some reasonable fixed width fonts to use for the editor
|
|
local function setFont(style, config)
|
|
return wx.wxFont(config.fontsize or size or 10, wx.wxFONTFAMILY_MODERN, style,
|
|
wx.wxFONTWEIGHT_NORMAL, false, config.fontname or "",
|
|
config.fontencoding or wx.wxFONTENCODING_DEFAULT)
|
|
end
|
|
ide.font.eNormal = setFont(wx.wxFONTSTYLE_NORMAL, ide.config.editor)
|
|
ide.font.eItalic = setFont(wx.wxFONTSTYLE_ITALIC, ide.config.editor)
|
|
|
|
ide.font.oNormal = setFont(wx.wxFONTSTYLE_NORMAL, ide.config.outputshell)
|
|
ide.font.oItalic = setFont(wx.wxFONTSTYLE_ITALIC, ide.config.outputshell)
|
|
|
|
-- treeCtrl font requires slightly different handling
|
|
local gui, config = wx.wxTreeCtrl():GetFont(), ide.config.filetree
|
|
if config.fontsize then gui:SetPointSize(config.fontsize) end
|
|
if config.fontname then gui:SetFaceName(config.fontname) end
|
|
ide.font.fNormal = gui
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Create the wxFrame
|
|
-- ----------------------------------------------------------------------------
|
|
local function createFrame()
|
|
frame = wx.wxFrame(wx.NULL, wx.wxID_ANY, GetIDEString("editor"),
|
|
wx.wxDefaultPosition, wx.wxSize(1000, 700))
|
|
-- wrap into protected call as DragAcceptFiles fails on MacOS with
|
|
-- wxwidgets 2.8.12 even though it should work according to change notes
|
|
-- for 2.8.10: "Implemented wxWindow::DragAcceptFiles() on all platforms."
|
|
pcall(function() frame:DragAcceptFiles(true) end)
|
|
frame:Connect(wx.wxEVT_DROP_FILES,function(evt)
|
|
local files = evt:GetFiles()
|
|
if not files or #files == 0 then return end
|
|
for i,f in ipairs(files) do
|
|
LoadFile(f,nil,true)
|
|
end
|
|
end)
|
|
|
|
local menuBar = wx.wxMenuBar()
|
|
local statusBar = frame:CreateStatusBar(6)
|
|
local section_width = statusBar:GetTextExtent("OVRW")
|
|
statusBar:SetStatusStyles({wx.wxSB_FLAT, wx.wxSB_FLAT, wx.wxSB_FLAT,
|
|
wx.wxSB_FLAT, wx.wxSB_FLAT, wx.wxSB_FLAT})
|
|
statusBar:SetStatusWidths(
|
|
{-1, section_width*6, section_width, section_width, section_width*4, section_width*4})
|
|
statusBar:SetStatusText(GetIDEString("statuswelcome"))
|
|
|
|
local mgr = wxaui.wxAuiManager()
|
|
mgr:SetManagedWindow(frame)
|
|
|
|
frame.menuBar = menuBar
|
|
frame.statusBar = statusBar
|
|
frame.uimgr = mgr
|
|
|
|
return frame
|
|
end
|
|
|
|
local function SCinB(id) -- shortcut in brackets
|
|
local shortcut = KSC(id):gsub("\t","")
|
|
return shortcut and #shortcut > 0 and (" ("..shortcut..")") or ""
|
|
end
|
|
|
|
local function createToolBar(frame)
|
|
local toolBar = frame:CreateToolBar(wx.wxTB_FLAT + wx.wxTB_NODIVIDER, wx.wxID_ANY)
|
|
-- wxChoice is a bit too narrow on Linux, so make it a bit larger
|
|
local funclist = wx.wxChoice.new(toolBar, ID "toolBar.funclist",
|
|
wx.wxDefaultPosition, wx.wxSize.new(240, ide.osname == 'Unix' and 28 or 24))
|
|
|
|
-- there are two sets of icons: use 24 on OSX and 16 on others.
|
|
local toolBmpSize =
|
|
ide.osname == 'Macintosh' and wx.wxSize(24, 24) or wx.wxSize(16, 16)
|
|
local getBitmap = (ide.app.createbitmap or wx.wxArtProvider.GetBitmap)
|
|
toolBar:AddTool(ID_NEW, "New", getBitmap(wx.wxART_NORMAL_FILE, wx.wxART_TOOLBAR, toolBmpSize), TR("Create an empty document")..SCinB(ID_NEW))
|
|
toolBar:AddTool(ID_OPEN, "Open", getBitmap(wx.wxART_FILE_OPEN, wx.wxART_TOOLBAR, toolBmpSize), TR("Open an existing document")..SCinB(ID_OPEN))
|
|
toolBar:AddTool(ID_SAVE, "Save", getBitmap(wx.wxART_FILE_SAVE, wx.wxART_TOOLBAR, toolBmpSize), TR("Save the current document")..SCinB(ID_SAVE))
|
|
toolBar:AddTool(ID_SAVEALL, "Save All", getBitmap(wx.wxART_NEW_DIR, wx.wxART_TOOLBAR, toolBmpSize), TR("Save all open documents")..SCinB(ID_SAVEALL))
|
|
toolBar:AddTool(ID_PROJECTDIRFROMFILE, "Update", getBitmap(wx.wxART_GO_DIR_UP , wx.wxART_TOOLBAR, toolBmpSize), TR("Set project directory from current file")..SCinB(ID_PROJECTDIRFROMFILE))
|
|
toolBar:AddSeparator()
|
|
toolBar:AddTool(ID_FIND, "Find", getBitmap(wx.wxART_FIND, wx.wxART_TOOLBAR, toolBmpSize), TR("Find text")..SCinB(ID_FIND))
|
|
toolBar:AddTool(ID_REPLACE, "Replace", getBitmap(wx.wxART_FIND_AND_REPLACE, wx.wxART_TOOLBAR, toolBmpSize), TR("Find and replace text")..SCinB(ID_REPLACE))
|
|
if ide.app.createbitmap then -- custom handler should handle all bitmaps
|
|
toolBar:AddSeparator()
|
|
toolBar:AddTool(ID_STARTDEBUG, "Start Debugging", getBitmap("wxART_DEBUG_START", wx.wxART_TOOLBAR, toolBmpSize), TR("Start debugging")..SCinB(ID_STARTDEBUG))
|
|
toolBar:AddTool(ID_STOPDEBUG, "Stop Debugging", getBitmap("wxART_DEBUG_STOP", wx.wxART_TOOLBAR, toolBmpSize), TR("Stop the currently running process")..SCinB(ID_STOPDEBUG))
|
|
toolBar:AddTool(ID_BREAK, "Break", getBitmap("wxART_DEBUG_BREAK", wx.wxART_TOOLBAR, toolBmpSize), TR("Break execution at the next executed line of code")..SCinB(ID_BREAK))
|
|
toolBar:AddTool(ID_STEP, "Step into", getBitmap("wxART_DEBUG_STEP_INTO", wx.wxART_TOOLBAR, toolBmpSize), TR("Step into")..SCinB(ID_STEP))
|
|
toolBar:AddTool(ID_STEPOVER, "Step over", getBitmap("wxART_DEBUG_STEP_OVER", wx.wxART_TOOLBAR, toolBmpSize), TR("Step over")..SCinB(ID_STEPOVER))
|
|
toolBar:AddTool(ID_STEPOUT, "Step out", getBitmap("wxART_DEBUG_STEP_OUT", wx.wxART_TOOLBAR, toolBmpSize), TR("Step out of the current function")..SCinB(ID_STEPOUT))
|
|
toolBar:AddSeparator()
|
|
toolBar:AddTool(ID_TOGGLEBREAKPOINT, "Toggle breakpoint", getBitmap("wxART_DEBUG_BREAKPOINT_TOGGLE", wx.wxART_TOOLBAR, toolBmpSize), TR("Toggle breakpoint")..SCinB(ID_TOGGLEBREAKPOINT))
|
|
toolBar:AddTool(ID_VIEWCALLSTACK, "Stack window", getBitmap("wxART_DEBUG_CALLSTACK", wx.wxART_TOOLBAR, toolBmpSize), TR("View the stack window")..SCinB(ID_VIEWCALLSTACK))
|
|
toolBar:AddTool(ID_VIEWWATCHWINDOW, "Watch window", getBitmap("wxART_DEBUG_WATCH", wx.wxART_TOOLBAR, toolBmpSize), TR("View the watch window")..SCinB(ID_VIEWWATCHWINDOW))
|
|
end
|
|
toolBar:AddSeparator()
|
|
toolBar:AddControl(funclist)
|
|
toolBar:Realize()
|
|
|
|
toolBar.funclist = funclist
|
|
frame.toolBar = toolBar
|
|
return toolBar
|
|
end
|
|
|
|
local function createNotebook(frame)
|
|
-- notebook for editors
|
|
local notebook = wxaui.wxAuiNotebook(frame, wx.wxID_ANY,
|
|
wx.wxDefaultPosition, wx.wxDefaultSize,
|
|
wxaui.wxAUI_NB_DEFAULT_STYLE + wxaui.wxAUI_NB_TAB_EXTERNAL_MOVE
|
|
+ wxaui.wxAUI_NB_WINDOWLIST_BUTTON + wx.wxNO_BORDER)
|
|
|
|
-- wxEVT_SET_FOCUS could be used, but it only works on Windows with wx2.9.5+
|
|
notebook:Connect(wxaui.wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED,
|
|
function (event)
|
|
-- if there is no document yet, the editor tab was just added,
|
|
-- so no changes needed as there will be a proper later call
|
|
local ed = GetEditor(notebook:GetSelection())
|
|
local doc = ed and ed:GetId() and ide.openDocuments[ed:GetId()]
|
|
if doc then SetEditorSelection(notebook:GetSelection()) end
|
|
end)
|
|
|
|
notebook:Connect(wxaui.wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE,
|
|
function (event)
|
|
ClosePage(event:GetSelection())
|
|
event:Veto() -- don't propagate the event as the page is already closed
|
|
end)
|
|
|
|
-- tabs can be dragged around which may change their indexes;
|
|
-- when this happens stored indexes need to be updated to reflect the change.
|
|
-- there is DRAG_DONE event that I'd prefer to use, but it
|
|
-- doesn't fire for some reason using wxwidgets 2.9.5 (tested on Windows).
|
|
if ide.wxver >= "2.9.5" then
|
|
notebook:Connect(wxaui.wxEVT_COMMAND_AUINOTEBOOK_END_DRAG,
|
|
function (event)
|
|
for page = 0, notebook:GetPageCount()-1 do
|
|
local editor = GetEditor(page)
|
|
if editor then ide.openDocuments[editor:GetId()].index = page end
|
|
end
|
|
event:Skip()
|
|
end)
|
|
end
|
|
|
|
local selection
|
|
notebook:Connect(wxaui.wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP,
|
|
function (event)
|
|
selection = event:GetSelection() -- save tab index the event is for
|
|
local menu = wx.wxMenu()
|
|
menu:Append(ID_CLOSE, TR("&Close Page"))
|
|
menu:Append(ID_CLOSEALL, TR("Close A&ll Pages"))
|
|
menu:Append(ID_CLOSEOTHER, TR("Close &Other Pages"))
|
|
menu:AppendSeparator()
|
|
menu:Append(ID_SAVE, TR("&Save"))
|
|
menu:Append(ID_SAVEAS, TR("Save &As..."))
|
|
notebook:PopupMenu(menu)
|
|
end)
|
|
|
|
local function IfAtLeastOneTab(event) event:Enable(notebook:GetPageCount() > 0) end
|
|
local function IfModified(event) event:Enable(EditorIsModified(GetEditor(selection))) end
|
|
|
|
notebook:Connect(ID_SAVE, wx.wxEVT_COMMAND_MENU_SELECTED, function ()
|
|
local editor = GetEditor(selection)
|
|
SaveFile(editor, openDocuments[editor:GetId()].filePath)
|
|
end)
|
|
notebook:Connect(ID_SAVE, wx.wxEVT_UPDATE_UI, IfModified)
|
|
notebook:Connect(ID_SAVEAS, wx.wxEVT_COMMAND_MENU_SELECTED, function()
|
|
SaveFileAs(GetEditor(selection))
|
|
end)
|
|
notebook:Connect(ID_SAVEAS, wx.wxEVT_UPDATE_UI, IfAtLeastOneTab)
|
|
notebook:Connect(ID_CLOSE, wx.wxEVT_COMMAND_MENU_SELECTED, function()
|
|
ClosePage(selection)
|
|
end)
|
|
notebook:Connect(ID_CLOSE, wx.wxEVT_UPDATE_UI, IfAtLeastOneTab)
|
|
notebook:Connect(ID_CLOSEALL, wx.wxEVT_COMMAND_MENU_SELECTED, function()
|
|
CloseAllPagesExcept(nil)
|
|
end)
|
|
notebook:Connect(ID_CLOSEALL, wx.wxEVT_UPDATE_UI, IfAtLeastOneTab)
|
|
notebook:Connect(ID_CLOSEOTHER, wx.wxEVT_COMMAND_MENU_SELECTED, function ()
|
|
CloseAllPagesExcept(selection)
|
|
end)
|
|
notebook:Connect(ID_CLOSEOTHER, wx.wxEVT_UPDATE_UI, function (event)
|
|
event:Enable(notebook:GetPageCount() > 1)
|
|
end)
|
|
|
|
frame.notebook = notebook
|
|
return notebook
|
|
end
|
|
|
|
local function createBottomNotebook(frame)
|
|
-- bottomnotebook (errorlog,shellbox)
|
|
local bottomnotebook = wxaui.wxAuiNotebook(frame, wx.wxID_ANY,
|
|
wx.wxDefaultPosition, wx.wxDefaultSize,
|
|
wxaui.wxAUI_NB_DEFAULT_STYLE + wxaui.wxAUI_NB_TAB_EXTERNAL_MOVE
|
|
- wxaui.wxAUI_NB_CLOSE_ON_ACTIVE_TAB + wx.wxNO_BORDER)
|
|
|
|
local errorlog = wxstc.wxStyledTextCtrl(bottomnotebook, wx.wxID_ANY,
|
|
wx.wxDefaultPosition, wx.wxDefaultSize, wx.wxBORDER_STATIC)
|
|
|
|
local shellbox = wxstc.wxStyledTextCtrl(bottomnotebook, wx.wxID_ANY,
|
|
wx.wxDefaultPosition, wx.wxDefaultSize, wx.wxBORDER_STATIC)
|
|
|
|
bottomnotebook:AddPage(errorlog, TR("Output"), true)
|
|
bottomnotebook:AddPage(shellbox, TR("Local console"), false)
|
|
|
|
frame.bottomnotebook = bottomnotebook
|
|
bottomnotebook.errorlog = errorlog
|
|
bottomnotebook.shellbox = shellbox
|
|
|
|
return bottomnotebook
|
|
end
|
|
|
|
local function createProjpanel(frame)
|
|
local projpanel = wx.wxPanel(frame,wx.wxID_ANY)
|
|
frame.projpanel = projpanel
|
|
return projpanel
|
|
end
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Add the child windows to the frame
|
|
|
|
local frame = createFrame()
|
|
ide.frame = frame
|
|
createToolBar(frame)
|
|
createNotebook(frame)
|
|
createProjpanel(frame)
|
|
createBottomNotebook(frame)
|
|
|
|
do
|
|
local frame = ide.frame
|
|
local mgr = frame.uimgr
|
|
|
|
mgr:AddPane(frame.notebook, wxaui.wxAuiPaneInfo():
|
|
Name("notebook"):
|
|
CenterPane():PaneBorder(false))
|
|
mgr:AddPane(frame.projpanel, wxaui.wxAuiPaneInfo():
|
|
Name("projpanel"):Caption(TR("Project")):
|
|
MinSize(200,200):FloatingSize(200,400):
|
|
Left():Layer(1):Position(1):
|
|
CloseButton(true):MaximizeButton(false):PinButton(true))
|
|
mgr:AddPane(frame.bottomnotebook, wxaui.wxAuiPaneInfo():
|
|
Name("bottomnotebook"):
|
|
MinSize(200,200):FloatingSize(400,250):
|
|
Bottom():Layer(1):Position(1):
|
|
CloseButton(true):MaximizeButton(false):PinButton(true))
|
|
|
|
mgr.defaultPerspective = mgr:SavePerspective()
|
|
end
|