ide: Renamed selection of 32/64 bit from 'bit depth' to 'bit length'; Updated credits
[sdk] / ide / src / ide.ec
index 050f25f..65967b0 100644 (file)
@@ -9,14 +9,12 @@ public import "ec"
 import "GlobalSettingsDialog"
 import "NewProjectDialog"
 import "FindInFilesDialog"
-import "ActiveCompilerDialog"
 
 #ifdef GDB_DEBUG_GUI
 import "GDBDialog"
 #endif
 
 import "Project"
-import "ProjectActiveConfig"
 import "ProjectConfig"
 import "ProjectNode"
 import "NodeProperties"
@@ -171,7 +169,7 @@ GlobalSettingsDialog globalSettingsDialog
             break;
          case compilerSettings:
          {
-            ide.UpdateCompilerConfigs();
+            ide.UpdateCompilerConfigs(true);
             break;
          }
       }
@@ -213,7 +211,7 @@ class IDEToolbar : ToolBar
 
    /* Edit options */
    // Cut
-   // Copy 
+   // Copy
    // Paste
    // Undo
    // Redo
@@ -248,6 +246,9 @@ class IDEToolbar : ToolBar
    // Compile actual file
    // Execute
    ToolButton buttonRun { this, toolTip = $"Run", menuItemPtr = IDEItem(projectRunItem), disabled = true; };
+#ifdef IDE_SHOW_INSTALL_MENU_BUTTON
+   ToolButton buttonInstall { this, toolTip = $"Install", menuItemPtr = IDEItem(projectInstallItem), disabled = true; };
+#endif
 
    ToolSeparator separator4 { this };
 
@@ -270,6 +271,80 @@ class IDEToolbar : ToolBar
    ToolButton buttonDebugStepOut { this, toolTip = $"Step Out", menuItemPtr = IDEItem(debugStepOutItem), disabled = true; };
    // Shift+F10
    ToolButton buttonDebugSkipStepOver { this, toolTip = $"Step Over Skipping Breakpoints", menuItemPtr = IDEItem(debugSkipStepOverItem), disabled = true; };
+
+   ToolSeparator separator5 { this };
+
+   Window spacer5 { this, size = { 4 } };
+
+   DropBox activeConfig
+   {
+      this, toolTip = $"Active Configuration(s)", size = { 160 }, disabled = true;
+      bool NotifySelect(DropBox dropBox, DataRow row, Modifiers mods)
+      {
+         if(row)
+            ide.workspace.SelectActiveConfig(row.string);
+         return true;
+      }
+   };
+
+   Window spacer6 { this, size = { 4 } };
+
+   DropBox activeCompiler
+   {
+      this, toolTip = $"Active Compiler", size = { 160 }, disabled = true;
+      bool NotifySelect(DropBox dropBox, DataRow row, Modifiers mods)
+      {
+         if(ide.workspace && ide.projectView && row && strcmp(row.string, ide.workspace.compiler))
+         {
+            bool silent = ide.projectView.buildInProgress == none ? false : true;
+            CompilerConfig compiler = ideSettings.GetCompilerConfig(row.string);
+            ide.workspace.compiler = row.string;
+            ide.projectView.ShowOutputBuildLog(!silent);
+            if(!silent)
+               ide.projectView.DisplayCompiler(compiler, false);
+            for(prj : ide.workspace.projects)
+               ide.projectView.ProjectPrepareCompiler(prj, compiler, silent);
+            delete compiler;
+            ide.workspace.Save();
+         }
+         return true;
+      }
+   };
+
+   DropBox activeBitDepth
+   {
+      this, toolTip = $"Active Bit Length", size = { 60 }, disabled = true;
+      bool NotifySelect(DropBox dropBox, DataRow row, Modifiers mods)
+      {
+         if(ide.workspace && ide.projectView && row)
+         {
+            bool silent = ide.projectView.buildInProgress == none ? false : true;
+            CompilerConfig compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
+            ide.workspace.bitDepth = (int)row.tag;
+            ide.projectView.ShowOutputBuildLog(!silent);
+            if(!silent)
+               ide.projectView.DisplayCompiler(compiler, false);
+            for(prj : ide.workspace.projects)
+               ide.projectView.ProjectPrepareCompiler(prj, compiler, silent);
+            delete compiler;
+            ide.workspace.Save();
+         }
+         return true;
+      }
+   };
+
+   Window spacer7 { this, size = { 4 } };
+
+   void IDEToolbar()
+   {
+      DataRow row;
+      row = activeBitDepth.AddString("Auto");
+      row.tag = 0;
+      activeBitDepth.AddString("32 bit").tag = 32;
+      activeBitDepth.AddString("64 bit").tag = 64;
+      activeBitDepth.currentRow = row;
+   }
+
 }
 
 class IDEMainFrame : Window
@@ -332,6 +407,7 @@ class IDEWorkSpace : Window
    MenuItem * driverItems, * skinItems;
    StatusField pos { width = 150 };
    StatusField ovr, caps, num;
+   DualPipe documentor;
 
    BitmapResource back                 { ":ecereBack.jpg", window = this };
    BitmapResource bmpBp                { ":codeMarks/breakpoint.png", window = this };
@@ -344,7 +420,7 @@ class IDEWorkSpace : Window
    BitmapResource bmpTopFrameError     { ":codeMarks/topFrameError.png", window = this };
    BitmapResource bmpTopFrameHalf      { ":codeMarks/topFrameHalf.png", window = this };
    BitmapResource bmpTopFrameHalfError { ":codeMarks/topFrameHalfError.png", window = this };
-   
+
    Debugger debugger { };
 
    ProjectView projectView;
@@ -353,9 +429,9 @@ class IDEWorkSpace : Window
    {
       parent = this;
 
-      void OnGotoError(char * line)
+      void OnGotoError(char * line, bool noParsing)
       {
-         ide.GoToError(line);
+         ide.GoToError(line, noParsing);
       }
 
       void OnCodeLocationParseAndGoTo(char * line)
@@ -367,12 +443,9 @@ class IDEWorkSpace : Window
       {
          switch(key)
          {
-            case escape: 
-               if(!ide.findInFilesDialog || !ide.findInFilesDialog.SearchAbort())
-                  ide.ShowCodeEditor(); 
-               break;
-            case ctrlS:
-               ide.projectView.stopBuild = true;
+            case escape:
+               if(activeBox != findBox || !ide.findInFilesDialog || !ide.findInFilesDialog.SearchAbort())
+                  ide.ShowCodeEditor();
                break;
             default:
             {
@@ -383,13 +456,6 @@ class IDEWorkSpace : Window
          return true;
       }
 
-      bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
-      {
-         if(active)
-            ide.RepositionWindows(false);
-         return true;
-      }
-
       bool OnClose(bool parentClosing)
       {
          visible = false;
@@ -403,16 +469,11 @@ class IDEWorkSpace : Window
    {
       parent = this, font = { panelFont.faceName, panelFont.size };
 
-      void OnGotoLine(char * line)
+      void OnSelectFrame(int frameIndex)
       {
-         int stackLvl;
-         stackLvl = atoi(line);
-         ide.debugger.GoToStackFrameLine(stackLvl, true);
-      }
-
-      void OnSelectFrame(int lineNumber)
-      {
-         ide.debugger.SelectFrame(lineNumber);
+         ide.debugger.GoToStackFrameLine(frameIndex, true, true);
+         if(frameIndex >= 0)
+            ide.debugger.SelectFrame(frameIndex);
       }
 
       void OnToggleBreakpoint()
@@ -421,33 +482,7 @@ class IDEWorkSpace : Window
          if(debugger.activeFrame && debugger.activeFrame.absoluteFile)
          {
             int line = debugger.activeFrame.line;
-            char name[MAX_LOCATION];
-            Project prj = null;
-            // TOFIX: Improve on this, don't use only filename, make a function
-            GetLastDirectory(debugger.activeFrame.absoluteFile, name);
-            if(ide && ide.workspace)
-            {
-               for(p : ide.workspace.projects)
-               {
-                  if(p.topNode.Find(name, false))
-                  {
-                     prj = p;
-                     break;
-                  }
-               }
-               if(!prj)
-               {
-                  for(p : ide.workspace.projects)
-                  {
-                     if(IsPathInsideOf(debugger.activeFrame.absoluteFile, p.topNode.path))
-                     {
-                        prj = p;
-                        break;
-                     }
-                  }
-               }
-            }
-            debugger.ToggleBreakpoint(debugger.activeFrame.absoluteFile, line, prj);
+            debugger.ToggleBreakpoint(debugger.activeFrame.absoluteFile, line);
             Update(null);
             {
                CodeEditor codeEditor = (CodeEditor)ide.FindWindow(debugger.activeFrame.absoluteFile);
@@ -465,13 +500,6 @@ class IDEWorkSpace : Window
          return true;
       }
 
-      bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
-      {
-         if(active)
-            ide.RepositionWindows(false);
-         return true;
-      }
-
       bool OnClose(bool parentClosing)
       {
          visible = false;
@@ -482,53 +510,54 @@ class IDEWorkSpace : Window
 
       void OnRedraw(Surface surface)
       {
-         bool error;
-         int lineCursor, lineTopFrame, activeThread, hitThread;
-         int lineH, scrollY, boxH;
-         BitmapResource bmp;
-         Breakpoint bp = null;
          Debugger debugger = ide.debugger;
          Frame activeFrame = debugger.activeFrame;
-
-         boxH = clientSize.h;
-         scrollY = editBox.scroll.y;
-         displaySystem.FontExtent(editBox.font.font, " ", 1, null, &lineH);
-
-         activeThread = debugger.activeThread;
-         hitThread = debugger.hitThread;
-         debugger.GetCallStackCursorLine(&error, &lineCursor, &lineTopFrame);
-
-         if(activeFrame && activeFrame.absoluteFile)
-         {
-            for(i : ide.workspace.breakpoints; i.type == user)
+         if(activeFrame)
+         {
+            bool error;
+            int lineCursor, lineTopFrame, activeThread, hitThread;
+            int lineH, scrollY, boxH;
+            BitmapResource bmp;
+            Breakpoint bp = null;
+
+            boxH = clientSize.h;
+            scrollY = editBox.scroll.y;
+            displaySystem.FontExtent(editBox.font.font, " ", 1, null, &lineH);
+            activeThread = debugger.activeThread;
+            hitThread = debugger.hitThread;
+            debugger.GetCallStackCursorLine(&error, &lineCursor, &lineTopFrame);
+
+            // TODO: improve bp drawing... it should be visible even if it's not on the activeFrame
+            if(activeFrame.absoluteFile)
             {
-               if(i.absoluteFilePath && i.absoluteFilePath[0] && 
-                  !fstrcmp(i.absoluteFilePath, activeFrame.absoluteFile) &&
-                  activeFrame.line == i.line)
+               for(i : ide.workspace.breakpoints; i.type == user)
                {
-                  bp = i;
-                  break;
+                  if(i.absoluteFilePath && i.absoluteFilePath[0] &&
+                     !fstrcmp(i.absoluteFilePath, activeFrame.absoluteFile) &&
+                     activeFrame.line == i.line)
+                  {
+                     bp = i;
+                     break;
+                  }
                }
             }
+            if(bp)
+               DrawLineMarginIcon(surface,
+                     /*(lineCursor == 1 || lineTopFrame == 1) ? */ide.bmpBpHalf/* : ide.bmpBp*/,
+                     lineCursor /*1*/, lineH, scrollY, boxH);
+            /*
+            if(activeThread && activeThread == hitThread && debugger.bpHit && debugger.bpHit.type == user)
+               DrawLineMarginIcon(surface,
+                     (lineCursor == 1 || lineTopFrame == 1) ? ide.bmpBpHalf : ide.bmpBp,
+                     1, lineH, scrollY, boxH);
+            */
+            DrawLineMarginIcon(surface, error ? ide.bmpCursorError : ide.bmpCursor, lineCursor, lineH, scrollY, boxH);
+            if(bp && lineCursor == 1) //activeThread && activeThread == hitThread && debugger.bpHit && debugger.bpHit.type == user)
+               bmp = error ? ide.bmpTopFrameHalfError : ide.bmpTopFrameHalf;
+            else
+               bmp = error ? ide.bmpTopFrameError : ide.bmpTopFrame;
+            DrawLineMarginIcon(surface, bmp, lineTopFrame, lineH, scrollY, boxH);
          }
-
-         if(bp)
-            DrawLineMarginIcon(surface,
-                  /*(lineCursor == 1 || lineTopFrame == 1) ? */ide.bmpBpHalf/* : ide.bmpBp*/,
-                  lineCursor /*1*/, lineH, scrollY, boxH);
-
-         /*
-         if(activeThread && activeThread == hitThread && debugger.bpHit && debugger.bpHit.type == user)
-            DrawLineMarginIcon(surface,
-                  (lineCursor == 1 || lineTopFrame == 1) ? ide.bmpBpHalf : ide.bmpBp,
-                  1, lineH, scrollY, boxH);
-         */
-         DrawLineMarginIcon(surface, error ? ide.bmpCursorError : ide.bmpCursor, lineCursor, lineH, scrollY, boxH);
-         if(bp && lineCursor == 1) //activeThread && activeThread == hitThread && debugger.bpHit && debugger.bpHit.type == user)
-            bmp = error ? ide.bmpTopFrameHalfError : ide.bmpTopFrameHalf;
-         else
-            bmp = error ? ide.bmpTopFrameError : ide.bmpTopFrame;
-         DrawLineMarginIcon(surface, bmp, lineTopFrame, lineH, scrollY, boxH);
          if(editBox.horzScroll && editBox.horzScroll.visible)
          {
             surface.SetBackground(control);
@@ -536,7 +565,7 @@ class IDEWorkSpace : Window
          }
       }
    };
-   
+
    WatchesView watchesView { parent = this };
    ThreadsView threadsView
    {
@@ -551,13 +580,6 @@ class IDEWorkSpace : Window
          return true;
       }
 
-      bool OnActivate(bool active, Window previous, bool * goOnWithActivation, bool direct)
-      {
-         if(active)
-            ide.RepositionWindows(false);
-         return true;
-      }
-
       bool OnClose(bool parentClosing)
       {
          visible = false;
@@ -622,15 +644,16 @@ class IDEWorkSpace : Window
 
                   for(c = 0; c < numSelections; c++)
                   {
-                     if(OpenFile(multiFilePaths[c], normal, true, fileTypes[ideFileDialog.fileType].typeExtension, no, normal))
+                     if(OpenFile(multiFilePaths[c], normal, true, fileTypes[ideFileDialog.fileType].typeExtension, no, normal, mods.ctrl && mods.shift))
                         gotWhatWeWant = true;
                   }
                   if(gotWhatWeWant ||
-                     MessageBox { type = yesNo, master = this, text = $"Error opening file", 
+                     MessageBox { type = yesNo, master = this, text = $"Error opening file",
                      contents = $"Open a different file?" }.Modal() == no)
                   {
                      if(!projectView && gotWhatWeWant)
                         ChangeFileDialogsDirectory(ideFileDialog.currentDirectory, true);
+                     ide.RepositionWindows(false);
                      break;
                   }
                }
@@ -699,7 +722,7 @@ class IDEWorkSpace : Window
       MenuDivider { fileMenu };
       MenuItem exitItem
       {
-         fileMenu, $"Exit", x, altF4, NotifySelect = MenuFileExit;
+         fileMenu, $"Exit", x, altF4;
 
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
@@ -715,7 +738,21 @@ class IDEWorkSpace : Window
          {
             if(id == selection.id)
             {
-               OpenFile(file, normal, true, null, no, normal);
+               bool isProjectFile;
+               char extension[MAX_EXTENSION] = "";
+               GetExtension(file, extension);
+               isProjectFile = (!strcmpi(extension, "epj") || !strcmpi(extension, "ews"));
+               if(mods.ctrl)
+               {
+                  char * command = PrintString("ide ", isProjectFile ? "-t " : "", file);
+                  Execute(command);
+                  delete command;
+               }
+               else
+               {
+                  OpenFile(file, normal, true, isProjectFile ? "txt" : null, no, normal, mods.ctrl && mods.shift);
+                  ide.RepositionWindows(false);
+               }
                break;
             }
             id++;
@@ -730,7 +767,14 @@ class IDEWorkSpace : Window
          {
             if(id == selection.id)
             {
-               OpenFile(file, normal, true, null, no, normal);
+               if(mods.ctrl)
+               {
+                  char * command = PrintString("ide ", file);
+                  Execute(command);
+                  delete command;
+               }
+               else
+                  OpenFile(file, normal, true, null, no, normal, mods.ctrl && mods.shift);
                break;
             }
             id++;
@@ -739,7 +783,7 @@ class IDEWorkSpace : Window
       }
 
    MenuPlacement editMenu { menu, $"Edit", e };
-   
+
    Menu projectMenu { menu, $"Menu"."Project", p, hasMargin = true };
       MenuItem projectNewItem
       {
@@ -748,26 +792,26 @@ class IDEWorkSpace : Window
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
             if(!DontTerminateDebugSession($"New Project"))
-               if(MenuWindowCloseAll(null, 0))
+            {
+               DialogResult result;
+               NewProjectDialog newProjectDialog { master = this };
+               incref newProjectDialog;
+               result = newProjectDialog.Modal();
+               if(result == ok)
                {
-                  NewProjectDialog newProjectDialog;
-
-                  if(projectView)
-                  {
-                     projectView.visible = false;
-                     if(!projectView.Destroy(0))
-                        return true;
-                  }
-                  
-                  newProjectDialog = { master = this };
-                  newProjectDialog.Modal();
-                  if(projectView)
+                  if(ProjectClose())
                   {
-                     ideSettings.AddRecentProject(projectView.fileName);
-                     ide.UpdateRecentMenus();
-                     settingsContainer.Save();
+                     newProjectDialog.CreateNewProject();
+                     if(projectView)
+                     {
+                        ideSettings.AddRecentProject(projectView.fileName);
+                        ide.UpdateRecentMenus();
+                        settingsContainer.Save();
+                     }
                   }
                }
+               delete newProjectDialog;
+            }
             return true;
          }
       }
@@ -783,7 +827,7 @@ class IDEWorkSpace : Window
             ideProjectFileDialog.text = openProjectFileDialogTitle;
             if(ideProjectFileDialog.Modal() == ok)
             {
-               OpenFile(ideProjectFileDialog.filePath, normal, true, projectTypes[ideProjectFileDialog.fileType].typeExtension, no, normal);
+               OpenFile(ideProjectFileDialog.filePath, normal, true, projectTypes[ideProjectFileDialog.fileType].typeExtension, no, normal, mods.ctrl && mods.shift);
                //ChangeProjectFileDialogDirectory(ideProjectFileDialog.currentDirectory);
             }
             return true;
@@ -795,7 +839,7 @@ class IDEWorkSpace : Window
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
             if(!projectView)
-               QuickProjectDialog{ this }.Modal();
+               QuickProjectDialog { this }.Modal();
             return true;
          }
       }
@@ -814,9 +858,9 @@ class IDEWorkSpace : Window
             {
                if(ideProjectFileDialog.Modal() == ok)
                {
-                  if(OpenFile(ideProjectFileDialog.filePath, normal, true, projectTypes[ideProjectFileDialog.fileType].typeExtension, no, add))
+                  if(OpenFile(ideProjectFileDialog.filePath, normal, true, projectTypes[ideProjectFileDialog.fileType].typeExtension, no, add, mods.ctrl && mods.shift))
                      break;
-                  if(MessageBox { type = yesNo, master = this, text = $"Error opening project file", 
+                  if(MessageBox { type = yesNo, master = this, text = $"Error opening project file",
                         contents = $"Add a different project?" }.Modal() == no)
                   {
                      break;
@@ -836,42 +880,12 @@ class IDEWorkSpace : Window
             if(projectView)
             {
                if(!ide.DontTerminateDebugSession($"Project Close"))
-               {
-                  if(findInFilesDialog)
-                     findInFilesDialog.SearchStop();
-                  projectView.visible = false;
-                  if(projectView.Destroy(0))
-                     MenuWindowCloseAll(null, 0);
-                  {
-                     char workingDir[MAX_LOCATION];
-                     GetWorkingDir(workingDir, MAX_LOCATION);
-                     findInFilesDialog.currentDirectory = workingDir;
-                     ideMainFrame.text = titleECEREIDE;
-                  }
-               }
+                  ProjectClose();
             }
             return true;
          }
       }
       MenuDivider { projectMenu };
-      MenuItem activeCompilerItem
-      {
-         projectMenu, $"Active Compiler...", g, /*altF5, */disabled = true;
-         bool NotifySelect(MenuItem selection, Modifiers mods)
-         {
-            projectView.MenuCompiler(null, mods);
-            return true;
-         }
-      }
-      MenuItem projectActiveConfigItem
-      {
-         projectMenu, $"Active Configuration...", g, altF5, disabled = true;
-         bool NotifySelect(MenuItem selection, Modifiers mods)
-         {
-            projectView.MenuConfig(projectView.active ? selection : null, mods);
-            return true;
-         }
-      }
       MenuItem projectSettingsItem
       {
          projectMenu, $"Settings...", s, altF7, disabled = true;
@@ -911,7 +925,12 @@ class IDEWorkSpace : Window
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
             if(projectView)
-               projectView.ProjectBuild(projectView.active ? selection : null, mods);
+            {
+               if(projectView.buildInProgress == none)
+                  projectView.ProjectBuild(projectView.active ? selection : null, mods);
+               else
+                  projectView.stopBuild = true;
+            }
             return true;
          }
       }
@@ -937,6 +956,20 @@ class IDEWorkSpace : Window
             return true;
          }
       }
+      MenuItem projectCleanTargetItem
+      {
+         projectMenu, $"Clean Target", g, disabled = true;
+         bitmap = { ":actions/clean.png" };
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(projectView)
+            {
+               debugger.Stop();
+               projectView.ProjectCleanTarget(projectView.active ? selection : null, mods);
+            }
+            return true;
+         }
+      }
       MenuItem projectCleanItem
       {
          projectMenu, $"Clean", e, disabled = true;
@@ -976,6 +1009,19 @@ class IDEWorkSpace : Window
             return true;
          }
       }
+      MenuItem projectInstallItem
+      {
+#ifdef IDE_SHOW_INSTALL_MENU_BUTTON
+         projectMenu, $"Install", t, disabled = true;
+#endif
+         bitmap = { ":status/software-update-available.png" };
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(projectView)
+               projectView.ProjectInstall(projectView.active ? selection : null, mods);
+            return true;
+         }
+      }
       MenuItem projectCompileItem;
    Menu debugMenu { menu, $"Debug", d, hasMargin = true };
       MenuItem debugStartResumeItem
@@ -1017,6 +1063,8 @@ class IDEWorkSpace : Window
          bitmap = { ":actions/pause.png" };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
+            if(projectView && projectView.buildInProgress != none)
+               return true;
             if(projectView)
                projectView.DebugBreak();
             return true;
@@ -1033,6 +1081,96 @@ class IDEWorkSpace : Window
             return true;
          }
       }
+#ifndef __WIN32__
+      MenuDivider { debugMenu };
+      MenuItem debugUseValgrindItem
+      {
+         debugMenu, $"Use Valgrind", d, disabled = true, checkable = true;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(ide.workspace)
+            {
+               ide.workspace.useValgrind = selection.checked;
+               ide.workspace.Save();
+            }
+            ide.AdjustValgrindMenus();
+            return true;
+         }
+      }
+      Menu debugValgrindLeakCheckItem { debugMenu, $"Valgrind Leak Check", h };
+         MenuItem debugValgrindNoLeakCheckItem      { debugValgrindLeakCheckItem, $"No"     , f, id = ValgrindLeakCheck::no     , checkable = true, disabled = true; NotifySelect = ValgrindLCSelect; }
+         MenuItem debugValgrindSummaryLeakCheckItem { debugValgrindLeakCheckItem, $"Summary", f, id = ValgrindLeakCheck::summary, checkable = true, disabled = true; NotifySelect = ValgrindLCSelect, checked = true; }
+         MenuItem debugValgrindYesLeakCheckItem     { debugValgrindLeakCheckItem, $"Yes"    , f, id = ValgrindLeakCheck::yes    , checkable = true, disabled = true; NotifySelect = ValgrindLCSelect; }
+         MenuItem debugValgrindFullLeakCheckItem    { debugValgrindLeakCheckItem, $"Full"   , f, id = ValgrindLeakCheck::full   , checkable = true, disabled = true; NotifySelect = ValgrindLCSelect; }
+         bool ValgrindLCSelect(MenuItem selection, Modifiers mods)
+         {
+            if(ide.workspace)
+            {
+               if(selection.checked)
+               {
+                  ValgrindLeakCheck vgLeakCheck = (ValgrindLeakCheck)selection.id;
+
+                  debugValgrindNoLeakCheckItem.checked      = debugValgrindNoLeakCheckItem.id      == vgLeakCheck;
+                  debugValgrindSummaryLeakCheckItem.checked = debugValgrindSummaryLeakCheckItem.id == vgLeakCheck;
+                  debugValgrindYesLeakCheckItem.checked     = debugValgrindYesLeakCheckItem.id     == vgLeakCheck;
+                  debugValgrindFullLeakCheckItem.checked    = debugValgrindFullLeakCheckItem.id    == vgLeakCheck;
+
+                  ide.workspace.vgLeakCheck = vgLeakCheck;
+                  ide.workspace.Save();
+               }
+               else
+                  selection.checked = true;
+            }
+            return true;
+         }
+      Menu debugValgrindRedzoneSizeItem { debugMenu, $"Valgrind Redzone Size", z };
+         MenuItem debugValgrindRSDefaultItem { debugValgrindRedzoneSizeItem, $"Default", f, id =  -1, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect, checked = true; }
+         MenuItem debugValgrindRS0Item       { debugValgrindRedzoneSizeItem, $"0"      , f, id =   0, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS16Item      { debugValgrindRedzoneSizeItem, $"16"     , f, id =  16, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS32Item      { debugValgrindRedzoneSizeItem, $"32"     , f, id =  32, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS64Item      { debugValgrindRedzoneSizeItem, $"64"     , f, id =  64, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS128Item     { debugValgrindRedzoneSizeItem, $"128"    , f, id = 128, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS256Item     { debugValgrindRedzoneSizeItem, $"256"    , f, id = 256, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         MenuItem debugValgrindRS512Item     { debugValgrindRedzoneSizeItem, $"512"    , f, id = 512, checkable = true, disabled = true; NotifySelect = ValgrindRSSelect; }
+         bool ValgrindRSSelect(MenuItem selection, Modifiers mods)
+         {
+            if(ide.workspace)
+            {
+               if(selection.checked)
+               {
+                  int vgRedzoneSize = (int)selection.id;
+
+                  debugValgrindRSDefaultItem.checked = debugValgrindRSDefaultItem.id == vgRedzoneSize;
+                  debugValgrindRS0Item.checked       = debugValgrindRS0Item.id       == vgRedzoneSize;
+                  debugValgrindRS16Item.checked      = debugValgrindRS16Item.id      == vgRedzoneSize;
+                  debugValgrindRS32Item.checked      = debugValgrindRS32Item.id      == vgRedzoneSize;
+                  debugValgrindRS64Item.checked      = debugValgrindRS64Item.id      == vgRedzoneSize;
+                  debugValgrindRS128Item.checked     = debugValgrindRS128Item.id     == vgRedzoneSize;
+                  debugValgrindRS256Item.checked     = debugValgrindRS256Item.id     == vgRedzoneSize;
+                  debugValgrindRS512Item.checked     = debugValgrindRS512Item.id     == vgRedzoneSize;
+
+                  ide.workspace.vgRedzoneSize = vgRedzoneSize;
+                  ide.workspace.Save();
+               }
+               else
+                  selection.checked = true;
+            }
+            return true;
+         }
+      MenuItem debugValgrindTrackOriginsItem
+      {
+         debugMenu, $"Valgrind Track Origins", k, checkable = true, disabled = true;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(ide.workspace)
+            {
+               ide.workspace.vgTrackOrigins = selection.checked;
+               ide.workspace.Save();
+            }
+            return true;
+         }
+      };
+#endif
       MenuDivider { debugMenu };
       MenuItem debugStepIntoItem
       {
@@ -1040,8 +1178,7 @@ class IDEWorkSpace : Window
          bitmap = { ":actions/stepInto.png" };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            if(projectView)
-               projectView.DebugStepInto();
+            if(projectView) projectView.DebugStepInto();
             return true;
          }
       }
@@ -1051,8 +1188,17 @@ class IDEWorkSpace : Window
          bitmap = { ":actions/stepOver.png" };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            if(projectView)
-               projectView.DebugStepOver(false);
+            if(projectView) projectView.DebugStepOver(false);
+            return true;
+         }
+      }
+      MenuItem debugSkipStepOverItem
+      {
+         debugMenu, $"Step Over Skipping Breakpoints", e, shiftF10, disabled = true;
+         bitmap = { ":actions/stepOverSkipBreak.png" };
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(projectView) projectView.DebugStepOver(true);
             return true;
          }
       }
@@ -1062,34 +1208,50 @@ class IDEWorkSpace : Window
          bitmap = { ":actions/stepOut.png" };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            if(projectView)
-               projectView.DebugStepOut(false);
+            if(projectView) projectView.DebugStepOut(false);
             return true;
          }
       }
-      MenuPlacement debugRunToCursorItem { debugMenu, $"Run To Cursor", c };
-      MenuItem debugSkipStepOverItem
+      MenuItem debugSkipStepOutItem
       {
-         debugMenu, $"Step Over Skipping Breakpoints", e, shiftF10, disabled = true;
+         debugMenu, $"Step Out Skipping Breakpoints", n, Key { f11, ctrl = true, shift = true }, disabled = true;
+         bitmap = { ":actions/skipBreaks.png" };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            if(projectView)
-               projectView.DebugStepOver(true);
+            if(projectView) projectView.DebugStepOut(true);
             return true;
          }
       }
-      MenuItem debugSkipStepOutItem
+#if 0
+      MenuItem debugStepUntilItem
       {
-         debugMenu, $"Step Out Skipping Breakpoints", t, Key { f11, ctrl = true, shift = true }, disabled = true;
-         bitmap = { ":actions/skipBreaks.png" };
+         debugMenu, $"Step Over Until Next Line", x, disabled = true;
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            if(projectView)
-               projectView.DebugStepOut(true);
+            if(projectView) projectView.DebugStepUntil(false);
             return true;
          }
       }
+      MenuItem debugSkipStepUntilItem
+      {
+         debugMenu, $"Step Over Until Next Line Skipping Breakpoints", e, Key { f10, shift = true, alt = true }, disabled = true;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            if(projectView) projectView.DebugStepUntil(true);
+            return true;
+         }
+      }
+#endif
+      MenuPlacement debugRunToCursorItem { debugMenu, $"Run To Cursor", c };
       MenuPlacement debugSkipRunToCursorItem { debugMenu, $"Run To Cursor Skipping Breakpoints", u };
+      MenuPlacement debugRunToCursorAtSameLevelItem { debugMenu, $"Run To Cursor At Same Level", l };
+      MenuPlacement debugSkipRunToCursorAtSameLevelItem { debugMenu, $"Run To Cursor At Same Level Skipping Breakpoints", g };
+#if 0
+      MenuPlacement debugBpRunToCursorItem { debugMenu, $"BP Run To Cursor" };
+      MenuPlacement debugBpSkipRunToCursorItem { debugMenu, $"BP Run To Cursor Skipping Breakpoints" };
+      MenuPlacement debugBpRunToCursorAtSameLevelItem { debugMenu, $"BP Run To Cursor At Same Level" };
+      MenuPlacement debugBpSkipRunToCursorAtSameLevelItem { debugMenu, $"BP Run To Cursor At Same Level Skipping Breakpoints" };
+#endif
       //MenuDivider { debugMenu };
       //MenuPlacement debugToggleBreakpoint { debugMenu, "Toggle Breakpoint", t };
    MenuPlacement imageMenu { menu, $"Image", i };
@@ -1249,11 +1411,11 @@ class IDEWorkSpace : Window
       MenuDivider { viewMenu };
       MenuItem viewColorPicker
       {
-         viewMenu, $"Color Picker...", c, Key { c, ctrl = true , shift = true };
+         viewMenu, $"Color Picker...", l, Key { c, ctrl = true , shift = true };
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            ColorPicker colorPicker { master = this, parent = this, stayOnTop = true };
-            colorPicker.Create();
+            ColorPicker colorPicker { master = this };
+            colorPicker.Modal();
             return true;
          }
       }
@@ -1292,7 +1454,74 @@ class IDEWorkSpace : Window
          helpMenu, $"API Reference", r, f1;
          bool NotifySelect(MenuItem selection, Modifiers mods)
          {
-            Execute("documentor");
+            if(!documentor)
+            {
+               char * p = new char[MAX_LOCATION];
+               p[0] = '\0';
+               strncpy(p, settingsContainer.moduleLocation, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+               PathCat(p, "documentor");
+   #if defined(__WIN32__)
+               ChangeExtension(p, "exe", p);
+   #endif
+               if(!FileExists(p).isFile)
+                  strcpy(p, "documentor");
+
+               documentor = DualPipeOpen({ input = true, output = true, showWindow = true }, p);
+               delete p;
+            }
+            else
+            {
+               Process_ShowWindows(documentor.GetProcessID());
+               // documentor.Puts("Activate\n");
+            }
+            return true;
+         }
+      }
+      MenuDivider { helpMenu };
+      MenuItem
+      {
+         helpMenu, $"Ecere Tao of Programming [work in progress]", t;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            FindAndShellOpenInstalledFile("doc", "Ecere Tao of Programming [work in progress].pdf");
+            return true;
+         }
+      }
+      MenuDivider { helpMenu };
+      MenuItem
+      {
+         helpMenu, $"Documentation Folder", d;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            FindAndShellOpenInstalledFolder("doc");
+            return true;
+         }
+      }
+      MenuItem
+      {
+         helpMenu, $"Samples Folder", s;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            FindAndShellOpenInstalledFolder("samples");
+            return true;
+         }
+      }
+      MenuItem
+      {
+         helpMenu, $"Extras Folder", x;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            FindAndShellOpenInstalledFolder("extras");
+            return true;
+         }
+      }
+      MenuDivider { helpMenu };
+      MenuItem
+      {
+         helpMenu, $"Community Forums", f;
+         bool NotifySelect(MenuItem selection, Modifiers mods)
+         {
+            ShellOpen("http://ecere.com/forums");
             return true;
          }
       }
@@ -1329,16 +1558,18 @@ class IDEWorkSpace : Window
 
    FindInFilesDialog findInFilesDialog
    {
-      master = this, parent = this;
+      master = this,
       filters = findInFilesFileFilters.array, sizeFilters = findInFilesFileFilters.count * sizeof(FileFilter);
       filter = 1;
    };
 
+   bool noParsing;
+
 #ifdef GDB_DEBUG_GUI
    GDBDialog gdbDialog
    {
       master = this, parent = this;
-      anchor = { left = 100, top = 100, right = 100, bottom = 100 };
+      //anchor = { left = 100, top = 100, right = 100, bottom = 100 };
 
       void OnCommand(char * string)
       {
@@ -1347,11 +1578,11 @@ class IDEWorkSpace : Window
       }
    };
 #endif
-   
+
    bool NotifySelectDisplayDriver(MenuItem selection, Modifiers mods)
    {
       //app.driver = app.drivers[selection.id];
-#ifdef __unix__
+#if defined(__unix__) || defined(__APPLE__)
       app.driver = selection.id ? "OpenGL" : "X";
 #else
       app.driver = selection.id ? "OpenGL" : "GDI";
@@ -1395,12 +1626,12 @@ class IDEWorkSpace : Window
       {
          this;
          fileName = fileName;
-         
+
          void NotifyDestroyed(Window window, DialogResult result)
          {
             projectView = null;
             text = titleECEREIDE;
-            
+
             AdjustMenus();
          }
       };
@@ -1427,17 +1658,23 @@ class IDEWorkSpace : Window
       return projectView;
    }
 
-   bool GetDebugMenusDisabled()
+   bool ProjectClose()
    {
-      if(projectView)
+      projectView.visible = false;
+      if((!projectView || projectView.created == false || projectView.Destroy(0)) && MenuWindowCloseAll(null, 0))
       {
-         Project project = projectView.project;
-         if(project)
-            if(project.GetTargetType(project.config) == executable)
-               return false;
-           
+         if(findInFilesDialog)
+         {
+            char workingDir[MAX_LOCATION];
+            GetWorkingDir(workingDir, MAX_LOCATION);
+            findInFilesDialog.SearchStop();
+            findInFilesDialog.currentDirectory = workingDir;
+         }
+         ideMainFrame.text = titleECEREIDE;
+         ide.AdjustMenus();
+         return true;
       }
-      return true;
+      return false;
    }
 
    void RepositionWindows(bool expand)
@@ -1454,10 +1691,10 @@ class IDEWorkSpace : Window
          bool outputVisible = expand ? false : outputView.visible;
          int topDistance = (callStackVisible || threadsVisible) ? 200 : 0;
          int bottomDistance = (outputVisible || watchesVisible || breakpointsVisible) ? 240 : 0;
-         
+
          for(child = firstChild; child; child = child.next)
          {
-            if(child._class == class(CodeEditor) || child._class == class(Designer) || 
+            if(child._class == class(CodeEditor) || child._class == class(Designer) ||
                child._class == class(Sheet) || child._class == class(ProjectView))
             {
                Anchor anchor = child.anchor;
@@ -1465,13 +1702,14 @@ class IDEWorkSpace : Window
                anchor.bottom = bottomDistance;
                if(child._class == class(CodeEditor) || child._class == class(Designer))
                {
+                  anchor.left = 300;
                   anchor.right = toolBoxVisible ? 150 : 0;
                }
                child.anchor = anchor;
             }
             else if(expand)
             {
-               if(child._class == class(OutputView) || child._class == class(CallStackView) || child._class == class(ThreadsView) || child._class == class(WatchesView) || 
+               if(child._class == class(OutputView) || child._class == class(CallStackView) || child._class == class(ThreadsView) || child._class == class(WatchesView) ||
                   child._class == class(BreakpointsView))
                   child.visible = false;
             }
@@ -1486,7 +1724,7 @@ class IDEWorkSpace : Window
       if(activeClient)
          activeClient.Activate();
       else if(projectView)
-      { 
+      {
          projectView.visible = true;
          projectView.Activate();
       }
@@ -1498,11 +1736,6 @@ class IDEWorkSpace : Window
       return false;
    }
 
-   bool ShouldStopBuild()
-   {
-      return projectView.stopBuild;
-   }
-
    void DocumentSaved(Window document, char * fileName)
    {
       ideSettings.AddRecentFile(fileName);
@@ -1519,6 +1752,7 @@ class IDEWorkSpace : Window
       if(MessageBox { type = yesNo, master = this/*.parent*/,
             text = $"Document has been modified", contents = temp }.Modal() == yes)
       {
+         bool noParsing = (this._class == class(CodeEditor) && ((CodeEditor)this).noParsing) ? true : false;
          char * fileName = CopyString(this.fileName);
          WindowState state = this.state;
          Anchor anchor = this.anchor;
@@ -1526,7 +1760,7 @@ class IDEWorkSpace : Window
 
          this.modifiedDocument = false;
          this.Destroy(0);
-         this = ide.OpenFile(fileName, normal, true, null, no, normal);
+         this = ide.OpenFile(fileName, normal, true, null, no, normal, noParsing);
          if(this)
          {
             this.anchor = anchor;
@@ -1550,19 +1784,112 @@ class IDEWorkSpace : Window
       }
    }
 
-   void UpdateCompilerConfigs()
+   void UpdateCompilerConfigs(bool mute)
    {
+      UpdateToolBarActiveCompilers();
       if(workspace)
       {
+         bool silent = mute || (ide.projectView.buildInProgress == none ? false : true);
          CompilerConfig compiler = ideSettings.GetCompilerConfig(workspace.compiler);
-         projectView.ShowOutputBuildLog(true);
-         projectView.DisplayCompiler(compiler, false);
+         if(!silent)
+         {
+            projectView.ShowOutputBuildLog(true);
+            projectView.DisplayCompiler(compiler, false);
+         }
          for(prj : workspace.projects)
-            projectView.ProjectPrepareCompiler(prj, compiler);
+            projectView.ProjectPrepareCompiler(prj, compiler, silent);
          delete compiler;
       }
    }
 
+   void UpdateToolBarActiveCompilers()
+   {
+      toolBar.activeCompiler.Clear();
+      for(compiler : ideSettings.compilerConfigs)
+      {
+         DataRow row = toolBar.activeCompiler.AddString(compiler.name);
+         if(workspace && workspace.compiler && !strcmp(compiler.name, workspace.compiler))
+            toolBar.activeCompiler.currentRow = row;
+      }
+      if(!toolBar.activeCompiler.currentRow && toolBar.activeCompiler.firstRow)
+         toolBar.activeCompiler.SelectRow(toolBar.activeCompiler.firstRow);
+   }
+
+   void UpdateToolBarActiveConfigs(bool selectionOnly)
+   {
+      bool commonSelected = false;
+      DataRow row = toolBar.activeConfig.currentRow;
+      if(selectionOnly)
+         row = toolBar.activeConfig.FindRow(1);
+      else
+      {
+         toolBar.activeConfig.Clear();
+         row = toolBar.activeConfig.AddString($"(Mixed)");
+         row.tag = 1;
+      }
+      if(workspace)
+      {
+         char * configName = null;
+         if(!selectionOnly)
+         {
+            Map<String, int> configs { }; // TOIMP: just need sort but using map until containers have sort
+            for(prj : workspace.projects)
+            {
+               for(cfg : prj.configurations)
+               {
+                  if(cfg.name)
+                     configs[cfg.name] = 1;
+               }
+            }
+            for(name : configs)
+            {
+               toolBar.activeConfig.AddString(&name);
+            }
+            delete configs;
+         }
+         if(projectView && projectView.project)
+         {
+            for(prj : workspace.projects)
+            {
+               if(prj.config && prj.config.name)
+               {
+                  configName = prj.config.name;
+                  break;
+               }
+            }
+            if(configName)
+            {
+               commonSelected = true;
+               for(prj : workspace.projects)
+               {
+                  if(prj.config && (!prj.config.name || strcmp(prj.config.name, configName)))
+                  {
+                     commonSelected = false;
+                     break;
+                  }
+               }
+            }
+         }
+         if(commonSelected)
+         {
+            commonSelected = false;
+            for(row = toolBar.activeConfig.firstRow; row; row = row.next)
+            {
+               if(!strcmp(row.string, configName))
+               {
+                  toolBar.activeConfig.currentRow = row;
+                  commonSelected = true;
+                  break;
+               }
+            }
+         }
+      }
+      if(!selectionOnly)
+         toolBar.activeConfig.Sort(null, 0);
+      if(!commonSelected)
+         toolBar.activeConfig.currentRow = row;
+   }
+
    void AdjustMenus()
    {
       bool unavailable = !project;
@@ -1570,19 +1897,48 @@ class IDEWorkSpace : Window
       projectAddItem.disabled             = unavailable;
       toolBar.buttonAddProject.disabled   = unavailable;
 
-      activeCompilerItem.disabled         = unavailable;
-      projectActiveConfigItem.disabled    = unavailable;
       projectSettingsItem.disabled        = unavailable;
 
       projectBrowseFolderItem.disabled    = unavailable;
 
       viewProjectItem.disabled            = unavailable;
 
+      toolBar.activeConfig.disabled       = unavailable;
+      toolBar.activeCompiler.disabled     = unavailable;
+      toolBar.activeBitDepth.disabled     = unavailable;
+
+#ifndef __WIN32__
+      debugUseValgrindItem.disabled       = unavailable;
+      AdjustValgrindMenus();
+#endif
+
       AdjustFileMenus();
       AdjustBuildMenus();
       AdjustDebugMenus();
    }
 
+#ifndef __WIN32__
+   void AdjustValgrindMenus()
+   {
+      bool unavailable = !project || !debugUseValgrindItem.checked;
+      debugValgrindNoLeakCheckItem.disabled        = unavailable;
+      debugValgrindSummaryLeakCheckItem.disabled   = unavailable;
+      debugValgrindYesLeakCheckItem.disabled       = unavailable;
+      debugValgrindFullLeakCheckItem.disabled      = unavailable;
+
+      debugValgrindTrackOriginsItem.disabled       = unavailable;
+
+      debugValgrindRSDefaultItem.disabled          = unavailable;
+      debugValgrindRS0Item.disabled                = unavailable;
+      debugValgrindRS16Item.disabled               = unavailable;
+      debugValgrindRS32Item.disabled               = unavailable;
+      debugValgrindRS64Item.disabled               = unavailable;
+      debugValgrindRS128Item.disabled              = unavailable;
+      debugValgrindRS256Item.disabled              = unavailable;
+      debugValgrindRS512Item.disabled              = unavailable;
+   }
+#endif
+
    property bool hasOpenedCodeEditors
    {
       get
@@ -1607,6 +1963,7 @@ class IDEWorkSpace : Window
    void AdjustBuildMenus()
    {
       bool unavailable = project && projectView.buildInProgress;
+      bool naForRun = unavailable || !project || project.GetTargetType(project.config) != executable;
 
       projectNewItem.disabled             = unavailable;
       toolBar.buttonNewProject.disabled   = unavailable;
@@ -1618,84 +1975,129 @@ class IDEWorkSpace : Window
       projectCloseItem.disabled           = unavailable;
       // toolBar.buttonCloseProject.disabled = unavailable;
 
-      projectRunItem.disabled    = unavailable || project.GetTargetType(project.config) != executable;
-      toolBar.buttonRun.disabled = unavailable || project.GetTargetType(project.config) != executable;
-      projectBuildItem.disabled                 = unavailable;
-      toolBar.buttonBuild.disabled              = unavailable;
+      projectRunItem.disabled    = naForRun;
+      toolBar.buttonRun.disabled = naForRun;
+
+      projectBuildItem.disabled = false;
+      projectBuildItem.text     = unavailable ? $"Stop Build" : $"Build";
+      projectBuildItem.accelerator = unavailable ? Key { pauseBreak, ctrl = true } : f7;
+
       projectLinkItem.disabled                  = unavailable;
       toolBar.buttonReLink.disabled             = unavailable;
       projectRebuildItem.disabled               = unavailable;
       toolBar.buttonRebuild.disabled            = unavailable;
       projectCleanItem.disabled                 = unavailable;
       toolBar.buttonClean.disabled              = unavailable;
+      projectCleanTargetItem.disabled           = unavailable;
       projectRealCleanItem.disabled             = unavailable;
       // toolBar.buttonRealClean.disabled          = unavailable;
       projectRegenerateItem.disabled            = unavailable;
       toolBar.buttonRegenerateMakefile.disabled = unavailable;
+#ifdef IDE_SHOW_INSTALL_MENU_BUTTON
+      projectInstallItem.disabled               = unavailable;
+      toolBar.buttonInstall.disabled            = unavailable;
+#endif
       projectCompileItem.disabled               = unavailable;
 
+      AdjustPopupBuildMenus();
+   }
+
+   void AdjustPopupBuildMenus()
+   {
+      bool unavailable = !project || projectView.buildInProgress;
+
       if(projectView && projectView.popupMenu && projectView.popupMenu.menu && projectView.popupMenu.created)
       {
          MenuItem menu;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectBuild, 0);      if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectLink, 0);       if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRebuild, 0);    if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectClean, 0);      if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRealClean, 0);  if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRegenerate, 0); if(menu) menu.disabled = unavailable;
-         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileCompile, 0);       if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectBuild, 0);
+         if(menu)
+         {
+            menu.disabled = false;
+            menu.text   = unavailable ? $"Stop Build" : $"Build";
+            menu.accelerator = unavailable ? Key { pauseBreak, ctrl = true } : f7;
+         }
+
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectLink, 0);              if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRebuild, 0);           if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectCleanTarget, 0);       if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectClean, 0);             if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRealClean, 0);         if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRegenerate, 0);        if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectInstall, 0);           if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::ProjectRemove, 0);            if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileClean, 0);                if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileCompile, 0);              if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileDebugPrecompile, 0);      if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileDebugCompile, 0);         if(menu) menu.disabled = unavailable;
+         menu = projectView.popupMenu.menu.FindItem(ProjectView::FileDebugGenerateSymbols, 0); if(menu) menu.disabled = unavailable;
          projectView.popupMenu.Update(null);
       }
    }
 
+   property bool areDebugMenusUnavailable { get {
+      return !project ||
+            project.GetTargetType(project.config) != executable ||
+            projectView.buildInProgress == buildingMainProject;
+   } }
+
+   property bool isBreakpointTogglingUnavailable { get { return !project; } }
+   property bool isDebuggerRunning { get { if(ide.debugger) return ide.debugger.state == running; return false; } }
+   property bool isDebuggerStopped { get { if(ide.debugger) return ide.debugger.state == stopped; return false; } }
+
    void AdjustDebugMenus()
    {
-      bool unavailable = !project || project.GetTargetType(project.config) != executable ||
-               projectView.buildInProgress == buildingMainProject;
-      bool active = ide.debugger.isActive;
-      bool executing = ide.debugger.state == running;
-      //bool holding = ide.debugger.state == stopped;
-
-      debugStartResumeItem.disabled       = unavailable || executing;
+      bool unavailable = areDebugMenusUnavailable;
+      bool running = isDebuggerRunning;
+      bool stopped = isDebuggerStopped;
+      bool active = debugger.isActive;
+      bool noBreakpointToggle = !project;
+
+      bool isNotRunning    = unavailable || !running;
+      bool isNotNotRunning = unavailable || running;
+      bool isNotStopped    = unavailable || !stopped;
+      bool isNotActive     = unavailable || !active;
+
+      debugStartResumeItem.disabled       = isNotNotRunning;
       debugStartResumeItem.text           = active ? $"Resume" : $"Start";
       debugStartResumeItem.NotifySelect   = active ? MenuDebugResume : MenuDebugStart;
       if(toolBar)
       {
-         toolBar.buttonDebugStartResume.disabled      = unavailable || executing;
+         toolBar.buttonDebugStartResume.disabled      = isNotNotRunning;
          toolBar.buttonDebugStartResume.toolTip       = active ? $"Resume" : $"Start";
       }
 
-      debugBreakItem.disabled             = unavailable || !executing;
-      debugStopItem.disabled              = unavailable || !active;
-      debugRestartItem.disabled           = unavailable || !active;
+      debugBreakItem.disabled             = isNotRunning;
+      debugStopItem.disabled              = isNotActive;
+      debugRestartItem.disabled           = isNotActive;
       if(toolBar)
       {
-         toolBar.buttonDebugPause.disabled            = unavailable || !executing;
-         toolBar.buttonDebugStop.disabled             = unavailable || !active;
-         toolBar.buttonDebugRestart.disabled          = unavailable || !active;
+         toolBar.buttonDebugPause.disabled            = isNotRunning;
+         toolBar.buttonDebugStop.disabled             = isNotActive;
+         toolBar.buttonDebugRestart.disabled          = isNotActive;
       }
 
-      debugStepIntoItem.disabled          = unavailable || executing;
-      debugStepOverItem.disabled          = unavailable || executing;
-      debugStepOutItem.disabled           = unavailable || executing || !active;
-      debugSkipStepOverItem.disabled      = unavailable || executing;
-      debugSkipStepOutItem.disabled       = unavailable || executing || !active;
+      debugStepIntoItem.disabled          = isNotNotRunning;
+      debugStepOverItem.disabled          = isNotNotRunning;
+      debugSkipStepOverItem.disabled      = isNotNotRunning;
+      debugStepOutItem.disabled           = isNotStopped;
+      debugSkipStepOutItem.disabled       = isNotStopped;
+#if 0
+      debugStepUntilItem.disabled         = isNotStopped;
+      debugSkipStepUntilItem.disabled     = isNotStopped;
+#endif
       if(toolBar)
       {
-         toolBar.buttonDebugStepInto.disabled         = unavailable || executing;
-         toolBar.buttonDebugStepOver.disabled         = unavailable || executing;
-         toolBar.buttonDebugStepOut.disabled          = unavailable || executing || !active;
-         toolBar.buttonDebugSkipStepOver.disabled     = unavailable || executing;
-         // toolBar.buttonDebugSkipStepOutItem.disabled  = unavailable || executing;
+         toolBar.buttonDebugStepInto.disabled         = isNotNotRunning;
+         toolBar.buttonDebugStepOver.disabled         = isNotNotRunning;
+         toolBar.buttonDebugSkipStepOver.disabled     = isNotNotRunning;
+         toolBar.buttonDebugStepOut.disabled          = isNotStopped;
+         //toolBar.buttonDebugSkipStepOutItem.disabled  = isNotNotRunning;
       }
       if((Designer)GetActiveDesigner())
       {
          CodeEditor codeEditor = ((Designer)GetActiveDesigner()).codeEditor;
          if(codeEditor)
-         {
-            codeEditor.debugRunToCursor.disabled      = unavailable || executing;
-            codeEditor.debugSkipRunToCursor.disabled  = unavailable || executing;
-         }
+            codeEditor.AdjustDebugMenus();
       }
    }
 
@@ -1742,13 +2144,13 @@ class IDEWorkSpace : Window
    {
       if(debugger.isActive)
       {
-         if(MessageBox { type = yesNo, master = ide, 
-                           contents = $"Do you want to terminate the debugging session in progress?", 
+         if(MessageBox { type = yesNo, master = ide,
+                           contents = $"Do you want to terminate the debugging session in progress?",
                            text = title }.Modal() == no)
             return true;
          /*
-         MessageBox msg { type = yesNo, master = ide, 
-                           contents = "Do you want to terminate the debugging session in progress?", 
+         MessageBox msg { type = yesNo, master = ide,
+                           contents = "Do you want to terminate the debugging session in progress?",
                            text = title };
          if(msg.Modal() == no)
          {
@@ -1762,7 +2164,7 @@ class IDEWorkSpace : Window
       return false;
    }
 
-   Window OpenFile(char * origFilePath, WindowState state, bool visible, char * type, OpenCreateIfFails createIfFails, OpenMethod openMethod)
+   Window OpenFile(char * origFilePath, WindowState state, bool visible, char * type, OpenCreateIfFails createIfFails, OpenMethod openMethod, bool noParsing)
    {
       char extension[MAX_EXTENSION] = "";
       Window document = null;
@@ -1804,21 +2206,15 @@ class IDEWorkSpace : Window
             if(DontTerminateDebugSession($"Open Project"))
                return null;
             isProject = true;
-            if(MenuWindowCloseAll(null, 0))
+            if(ProjectClose())
             {
-               if(projectView)
-               {
-                  projectView.visible = false;
-                  projectView.Destroy(0);
-                  // Where did this come from? projectView = null;
-               }
                if(!projectView)
                {
                   for(;;)
                   {
                      Project project;
                      Workspace workspace = null;
-                     
+
                      if(FileExists(filePath))
                      {
                         if(!strcmp(extension, ProjectExtension))
@@ -1832,16 +2228,17 @@ class IDEWorkSpace : Window
                            workspace = LoadWorkspace(filePath, null);
                         else
                            return null;
-                        //project = LoadProject(filePath);
+                        //project = LoadProject(filePath, null);
                      }
-                     
+
                      if(workspace)
                      {
                         char absolutePath[MAX_LOCATION];
                         CreateProjectView(workspace, filePath);
                         document = projectView;
 
-                        workspace.DropInvalidBreakpoints();
+                        workspace.ParseLoadedBreakpoints();
+                        workspace.DropInvalidBreakpoints(null);
                         workspace.Save();
 
                         ide.projectView.ShowOutputBuildLog(true);
@@ -1850,7 +2247,7 @@ class IDEWorkSpace : Window
                            ide.projectView.DisplayCompiler(compiler, false);
                            delete compiler;
                         }
-                        UpdateCompilerConfigs();
+                        UpdateCompilerConfigs(false);
                         UpdateMakefiles();
                         {
                            char newWorkingDir[MAX_LOCATION];
@@ -1870,7 +2267,7 @@ class IDEWorkSpace : Window
                         {
                            if(ofi.state != closed)
                            {
-                              Window file = OpenFile(ofi.path, normal, true, null, no, normal);
+                              Window file = OpenFile(ofi.path, normal, true, null, no, normal, noParsing);
                               if(file)
                               {
                                  char fileName[MAX_LOCATION];
@@ -1882,27 +2279,44 @@ class IDEWorkSpace : Window
                               }
                            }
                         }
+                        ide.RepositionWindows(false);
                         workspace.holdTracking = false;
 
                         workspace.timer.Start();
 
+#if !defined(__WIN32__)
+                        // Valgrind Debug menu updates
+                        debugUseValgrindItem.checked = workspace.useValgrind;
+
+                        debugValgrindNoLeakCheckItem.checked      = workspace.vgLeakCheck == no;
+                        debugValgrindSummaryLeakCheckItem.checked = workspace.vgLeakCheck == summary;
+                        debugValgrindYesLeakCheckItem.checked     = workspace.vgLeakCheck == yes;
+                        debugValgrindFullLeakCheckItem.checked    = workspace.vgLeakCheck == full;
+
+                        debugValgrindRSDefaultItem.checked = workspace.vgRedzoneSize == -1;
+                        debugValgrindRS0Item.checked       = workspace.vgRedzoneSize == 0;
+                        debugValgrindRS16Item.checked      = workspace.vgRedzoneSize == 16;
+                        debugValgrindRS32Item.checked      = workspace.vgRedzoneSize == 32;
+                        debugValgrindRS64Item.checked      = workspace.vgRedzoneSize == 64;
+                        debugValgrindRS128Item.checked     = workspace.vgRedzoneSize == 128;
+                        debugValgrindRS256Item.checked     = workspace.vgRedzoneSize == 256;
+                        debugValgrindRS512Item.checked     = workspace.vgRedzoneSize == 512;
+
+                        debugValgrindTrackOriginsItem.checked = workspace.vgTrackOrigins;
+#endif
+
                         findInFilesDialog.mode = FindInFilesMode::project;
                         findInFilesDialog.currentDirectory = ide.project.topNode.path;
-                        
+
                         {
                            char location[MAX_LOCATION];
                            StripLastDirectory(ide.project.topNode.path, location);
                            ChangeProjectFileDialogDirectory(location);
                         }
-                        
-                        /*
-                        if(projectView.debugger)
-                           projectView.debugger.EvaluateWatches();
-                        */
-                        
+
                         break;
                      }
-                     else 
+                     else
                      {
                         if(MessageBox { type = yesNo, master = this, text = $"Error opening project", contents = $"Open a different project?" }.Modal() == yes)
                         {
@@ -1938,17 +2352,32 @@ class IDEWorkSpace : Window
                }
                if(prj)
                {
-                  MessageBox { type = ok, parent = parent, master = this, text = $"Same Project", 
+                  MessageBox { type = ok, parent = parent, master = this, text = $"Same Project",
                         contents = $"This project is already present in workspace." }.Modal();
                }
                else
                {
-                  prj = LoadProject(filePath);
+                  prj = LoadProject(filePath, null);
                   if(prj)
                   {
+                     char * activeConfigName = null;
                      CompilerConfig compiler = ideSettings.GetCompilerConfig(workspace.compiler);
                      prj.StartMonitoring();
                      workspace.projects.Add(prj);
+                     if(toolBar.activeConfig.currentRow && toolBar.activeConfig.currentRow != toolBar.activeConfig.firstRow &&
+                           toolBar.activeConfig.currentRow.string && toolBar.activeConfig.currentRow.string[0])
+                        activeConfigName = toolBar.activeConfig.currentRow.string;
+                     if(activeConfigName)
+                     {
+                        for(cfg : prj.configurations)
+                        {
+                           if(cfg.name && !strcmp(cfg.name, activeConfigName))
+                           {
+                              prj.config = cfg;
+                              break;
+                           }
+                        }
+                     }
                      if(projectView)
                         projectView.AddNode(prj.topNode, null);
                      workspace.modified = true;
@@ -1979,8 +2408,8 @@ class IDEWorkSpace : Window
             !strcmp(extension, "jpeg") || !strcmp(extension, "png"))
       {
          if(FileExists(filePath))
-            document = PictureEdit { hasMaximize = true, hasMinimize = true, hasClose = true, borderStyle = sizable, 
-                                       hasVertScroll = true, hasHorzScroll = true, parent = this, state = state, 
+            document = PictureEdit { hasMaximize = true, hasMinimize = true, hasClose = true, borderStyle = sizable,
+                                       hasVertScroll = true, hasHorzScroll = true, parent = this, state = state,
                                        visible = visible, bitmapFile = filePath, OnClose = PictureEditOnClose/*why?--GenericDocumentOnClose*/;
                                     };
          if(!document)
@@ -1990,8 +2419,8 @@ class IDEWorkSpace : Window
       else if(!strcmp(extension, "3ds"))
       {
          if(FileExists(filePath))
-            document = ModelView { hasMaximize = true, hasMinimize = true, hasClose = true, borderStyle = sizable, 
-                                    hasVertScroll = true, hasHorzScroll = true, parent = this, state = state, 
+            document = ModelView { hasMaximize = true, hasMinimize = true, hasClose = true, borderStyle = sizable,
+                                    hasVertScroll = true, hasHorzScroll = true, parent = this, state = state,
                                     visible = visible, modelFile = filePath, OnClose = ModelViewOnClose/*why?--GenericDocumentOnClose*/
                                     };
 
@@ -2005,7 +2434,7 @@ class IDEWorkSpace : Window
             !strcmp(extension, "css") || !strcmp(extension, "php") ||
             !strcmp(extension, "js"))
       {
-         CodeEditor editor { parent = this, state = state, visible = false };
+         CodeEditor editor { parent = this, state = state, visible = false, noParsing = noParsing };
          editor.updatingCode = true;
          if(editor.LoadFile(filePath))
          {
@@ -2018,7 +2447,7 @@ class IDEWorkSpace : Window
       }
       else
       {
-         CodeEditor editor { parent = this, state = state, visible = false };
+         CodeEditor editor { parent = this, state = state, visible = false, noParsing = noParsing };
          if(editor.LoadFile(filePath))
          {
             document = editor;
@@ -2040,10 +2469,10 @@ class IDEWorkSpace : Window
                workspace.UpdateOpenedFileInfo(filePath, opened);
          }
       }
-      
+
       if(!document && createIfFails != no)
       {
-         if(createIfFails != yes && !needFileModified && 
+         if(createIfFails != yes && !needFileModified &&
                MessageBox { type = yesNo, master = this, text = filePath, contents = $"File doesn't exist. Create?" }.Modal() == yes)
             createIfFails = yes;
          if(createIfFails == yes || createIfFails == whatever)
@@ -2072,11 +2501,11 @@ class IDEWorkSpace : Window
             editor.editBox.scroll = scroll;
             editor.openedFileInfo.holdTracking = false;
          }
-         
+
          if(needFileModified)
             document.OnFileModified = OnFileModified;
          document.NotifySaved = DocumentSaved;
-         
+
          if(isProject)
             ideSettings.AddRecentProject(document.fileName);
          else
@@ -2084,7 +2513,7 @@ class IDEWorkSpace : Window
          ide.UpdateRecentMenus();
          ide.AdjustFileMenus();
          settingsContainer.Save();
-         
+
          return document;
       }
       else
@@ -2120,10 +2549,17 @@ class IDEWorkSpace : Window
    }
    */
 
+   void UpdateStateLight(StatusField fld, bool on)
+   {
+      fld.color = on ? lime : Color { 128,128,128 };
+      fld.backColor = on ? dimGray : 0;
+      fld.bold = on;
+   }
+
    bool OnActivate(bool active, Window swap, bool * goOnWithActivation, bool direct)
    {
-      caps.color = app.GetKeyState(capsState) ? black : Color { 128,128,128 };
-      num.color = app.GetKeyState(numState) ? black : Color { 128,128,128 };
+      UpdateStateLight(caps, app.GetKeyState(capsState));
+      UpdateStateLight(num, app.GetKeyState(numState));
       return true;
    }
 
@@ -2131,42 +2567,88 @@ class IDEWorkSpace : Window
    {
       switch(key)
       {
-         case b:
-            projectView.Update(null);
-            break;
-         case capsLock:
-            caps.color = app.GetKeyState(capsState) ? black : Color { 128,128,128 };
-            break;
-         case numLock:
-            num.color = app.GetKeyState(numState) ? black : Color { 128,128,128 };
-            break;
+         case b: projectView.Update(null); break;
+         case capsLock: UpdateStateLight(caps, app.GetKeyState(capsState)); break;
+         case numLock:  UpdateStateLight(num, app.GetKeyState(numState)); break;
+      }
+      return true;
+   }
+
+   bool OnKeyUp(Key key, unichar ch)
+   {
+      switch(key)
+      {
+         case capsLock: UpdateStateLight(caps, app.GetKeyState(capsState)); break;
+         case numLock:  UpdateStateLight(num, app.GetKeyState(numState)); break;
       }
       return true;
    }
 
-   void GoToError(const char * line)
+   void GoToError(const char * line, bool noParsing)
    {
       if(projectView)
-         projectView.GoToError(line);
+         projectView.GoToError(line, noParsing);
    }
 
    void CodeLocationParseAndGoTo(const char * text, Project project, const char * dir)
    {
+      char *s = null;
       char *path = text;
       char *colon = strchr(text, ':');
-      char filePath[MAX_LOCATION];
+      char filePath[MAX_LOCATION] = "";
       char completePath[MAX_LOCATION];
       int line = 0, col = 0;
+      int len = strlen(text);
       Project prj = null;
+      FileAttribs fileAttribs;
 
-      if(text[3] == '(')
+      // support for valgrind output
+      if((s = strstr(text, "==")) && (s = strstr(s+2, "==")) && (s = strstr(s+2, ":")) && (s = strstr(s+1, ":")))
+      {
+         colon = s;
+         for(; s>text; s--)
+         {
+            if(*s == '(')
+            {
+               path = s+1;
+               break;
+            }
+         }
+         /*for(s=colon; *s; s++)
+         {
+            if(*s == ')')
+            {
+               *s = '\0';;
+               break;
+            }
+         }*/
+         //*colon = '\0';
+         //line = atoi(colon+1);
+      }
+      // support for "Found n match(es) in "file/path";
+      else if(path[len-1] == '\"' && strstr(path, $"Found %d match%s in \"%s\"%s\n\n"."Found") && strstr(path, $"match") && strstr(path, $"in") && (s = strstr(path, "\"")) && s != path+len-1)
       {
-         char * close = strchr(text, ')');
+         path = s+1;
+      }
+      else
+      {
+         if(colon && (colon[1] == '/' || colon[1] == '\\'))
+         {
+            path = (colon - 1 > path) ? colon - 1 : path;
+            colon = strstr(colon + 1, ":");
+         }
+         if(*path == '*' && (s = strchr(path+1, '*')))
+            path = s+1;
+         while(isspace(*path)) path++;
+      }
+      if(*path == '(')
+      {
+         char * close = strchr(path, ')');
          if(close)
          {
             char name[256];
-            strncpy(name, &text[4], close - text - 4);
-            name[close - text - 4] = '\0';
+            strncpy(name, path+1, close - path - 1);
+            name[close - path - 1] = '\0';
             for(p : ide.workspace.projects)
             {
                if(!strcmp(p.name, name))
@@ -2180,12 +2662,6 @@ class IDEWorkSpace : Window
       }
       if(!prj)
          prj = project ? project : (dir ? null : ide.project);
-      if(colon && (colon[1] == '/' || colon[1] == '\\'))
-      {
-         path = (colon - 1 > path) ? colon - 1 : path;
-         colon = strstr(colon + 1, ":");
-      }
-      while(isspace(*path)) path++;
       if(colon)
       {
          strncpy(filePath, path, colon - path);
@@ -2195,7 +2671,7 @@ class IDEWorkSpace : Window
          if(colon)
             col = atoi(colon + 1);
       }
-      else if(path - 1 >= path && *(path - 1) == '\"')
+      else if(path - 1 >= text && *(path - 1) == '\"')
       {
          colon = strchr(path, '\"');
          if(colon)
@@ -2204,25 +2680,84 @@ class IDEWorkSpace : Window
             filePath[colon - path] = '\0';
          }
       }
+      else if(path && !colon)
+      {
+         strcpy(filePath, path);
+      }
 
-      if(prj)
-         strcpy(completePath, prj.topNode.path);
-      else if(dir && dir[0])
-         strcpy(completePath, dir);
-      else
-         completePath[0] = '\0';
-      PathCat(completePath, filePath);
+      if(filePath[0])
+      {
+         if(prj)
+            strcpy(completePath, prj.topNode.path);
+         else if(dir && dir[0])
+            strcpy(completePath, dir);
+         else
+            completePath[0] = '\0';
+         PathCat(completePath, filePath);
+
+         if((fileAttribs = FileExists(completePath)))
+            CodeLocationGoTo(completePath, fileAttribs, line, col);
+         else if(ide.workspace)
+         {
+            bool done = false;
+            for(p : ide.workspace.projects)
+            {
+               strcpy(completePath, p.topNode.path);
+               PathCat(completePath, filePath);
+               if((fileAttribs = FileExists(completePath)).isFile)
+               {
+                  CodeLocationGoTo(completePath, fileAttribs, line, col);
+                  done = true;
+                  break;
+               }
+            }
+            if(!done)
+            {
+               for(p : ide.workspace.projects)
+               {
+                  ProjectNode node = p.topNode.Find(filePath, false);
+                  if(node)
+                  {
+                     node.GetFullFilePath(completePath);
+                     if((fileAttribs = FileExists(completePath)).isFile)
+                     {
+                        CodeLocationGoTo(completePath, fileAttribs, line, col);
+                        break;
+                     }
+                  }
+               }
+            }
+         }
+      }
+   }
 
-      if(FileExists(completePath).isFile)
+   void CodeLocationGoTo(const char * path, const FileAttribs fileAttribs, int line, int col)
+   {
+      if(fileAttribs.isFile)
       {
-         CodeEditor codeEditor = (CodeEditor)OpenFile(completePath, normal, true, "", no, normal);
-         if(codeEditor && line)
+         char ext[MAX_EXTENSION];
+         GetExtension(path, ext);
+         if(!strcmp(ext, "mp3") || !strcmp(ext, "flac") || !strcmp(ext, "ogg") || !strcmp(ext, "avi") || !strcmp(ext, "mkv"))
+            ShellOpen(path);
+         else if(!strcmp(ext, "a") || !strcmp(ext, "o") || !strcmp(ext, "lib") || !strcmp(ext, "dll") || !strcmp(ext, "exe"))
          {
-            EditBox editBox = codeEditor.editBox;
-            editBox.GoToLineNum(line - 1);
-            editBox.GoToPosition(editBox.line, line - 1, col ? (col - 1) : 0);
+            char dirPath[MAX_LOCATION];
+            StripLastDirectory(path, dirPath);
+            ShellOpen(dirPath);
+         }
+         else
+         {
+            CodeEditor codeEditor = (CodeEditor)OpenFile(path, normal, true, ext, no, normal, false);
+            if(codeEditor && line)
+            {
+               EditBox editBox = codeEditor.editBox;
+               editBox.GoToLineNum(line - 1);
+               editBox.GoToPosition(editBox.line, line - 1, col ? (col - 1) : 0);
+            }
          }
       }
+      else if(fileAttribs.isDirectory)
+         ShellOpen(path);
    }
 
    void OnRedraw(Surface surface)
@@ -2294,12 +2829,12 @@ class IDEWorkSpace : Window
             SetCurrentContext(codeEditor.globalContext);
             SetTopContext(codeEditor.globalContext);
             SetGlobalContext(codeEditor.globalContext);
-            
+
             SetDefines(&codeEditor.defines);
             SetImports(&codeEditor.imports);
 
             SetActiveDesigner(codeEditor.designer);
-            
+
             sheet.codeEditor = codeEditor;
             toolBox.codeEditor = codeEditor;
 
@@ -2382,25 +2917,34 @@ class IDEWorkSpace : Window
 
             statusBar.AddField(pos);
 
-            caps = { width = 40, text = $"CAPS", color = app.GetKeyState(capsState) ? black : Color { 128, 128, 128 } };
+            caps = { width = 40, text = $"CAPS" };
             statusBar.AddField(caps);
+            UpdateStateLight(caps, app.GetKeyState(capsState));
 
-            ovr = { width = 30, text = $"OVR", color = editBox.overwrite ? black : Color { 128, 128, 128 } };
+            ovr = { width = 36, text = $"OVR" };
             statusBar.AddField(ovr);
+            UpdateStateLight(ovr, (editBox && editBox.overwrite));
 
-            num = { width = 30, text = $"NUM", color = app.GetKeyState(numState) ? black : Color { 128, 128, 128 } };
+            num = { width = 36, text = $"NUM" };
             statusBar.AddField(num);
+            UpdateStateLight(num, app.GetKeyState(numState));
 
             //statusBar.text = "Ready";
 
             if(projectView && projectView.project)
             {
-               ProjectNode node = projectView.GetNodeFromWindow(client, null);
+               bool isCObject = false;
+               ProjectNode node = projectView.GetNodeFromWindow(client, null, true, false, null);
+               if(!node && (node = projectView.GetNodeFromWindow(client, null, true, true, null)))
+                  isCObject = true;
                if(node)
                {
-                  char name[1024];
-                  sprintf(name, $"Compile %s", node.name);
-                  projectCompileItem = 
+                  char nodeName[MAX_FILENAME];
+                  char name[MAX_FILENAME+96];
+                  if(isCObject)
+                     ChangeExtension(node.name, "c", nodeName);
+                  sprintf(name, $"Compile %s", isCObject ? nodeName : node.name);
+                  projectCompileItem =
                   {
                      copyText = true, text = name, c, ctrlF7, disabled = projectView.buildInProgress;
 
@@ -2408,19 +2952,21 @@ class IDEWorkSpace : Window
                      {
                         if(projectView)
                         {
-                           bool result = false;
-                           ProjectNode node = null;
-                           for(p : ide.workspace.projects)
+                           bool isCObject = false;
+                           bool isExcluded = false;
+                           ProjectNode node = projectView.GetNodeForCompilationFromWindow(activeClient, true, &isExcluded, &isCObject);
+                           if(node)
                            {
-                              node = projectView.GetNodeFromWindow(activeClient, p);
-                              if(node && projectView.Compile(node))
+                              if(isExcluded)
+                                 ide.outputView.buildBox.Logf($"%s %s is excluded from current build configuration.\n", isCObject ? "Object file" : "File", node.name);
+                              else
                               {
-                                 result = true;
-                                 break;
+                                 List<ProjectNode> nodes { };
+                                 nodes.Add(node);
+                                 projectView.Compile(node.project, nodes, mods.ctrl && mods.shift, isCObject ? cObject : normal);
+                                 delete nodes;
                               }
                            }
-                           if(!result && node)
-                              ide.outputView.buildBox.Logf($"File %s is excluded from current build configuration.\n", node.name);
                         }
                         return true;
                      }
@@ -2457,33 +3003,61 @@ class IDEWorkSpace : Window
    bool OnPostCreate()
    {
       int c;
+      bool passThrough = false;
+      bool debugStart = false;
+      bool debugWorkDir = false;
+      char * passDebugWorkDir = null;
+      bool openAsText = false;
+      DynamicString passArgs { };
+      int ptArg = 0;
+
       for(c = 1; c<app.argc; c++)
       {
-         char fullPath[MAX_LOCATION];
-         char parentPath[MAX_LOCATION];
-         char ext[MAX_EXTENSION];
-         bool isProject;
-         FileAttribs dirAttribs;
-         GetWorkingDir(fullPath, MAX_LOCATION);
-         PathCat(fullPath, app.argv[c]);
-         StripLastDirectory(fullPath, parentPath);
-         GetExtension(app.argv[c], ext);
-         isProject = !strcmpi(ext, "epj");
-
-         if(isProject && c > 1) continue;
-
-         // Create directory for projects (only)
-         if(((dirAttribs = FileExists(parentPath)) && dirAttribs.isDirectory) || isProject)
+         if(passThrough)
+         {
+            char * arg = app.argv[c];
+            char * buf = new char[strlen(arg)*2+1];
+            if(ptArg++ > 0)
+               passArgs.concat(" ");
+            PassArg(buf, arg);
+            passArgs.concat(buf);
+            delete buf;
+         }
+         else if(debugWorkDir)
+         {
+            passDebugWorkDir = CopyString(app.argv[c]);
+            StripQuotes(passDebugWorkDir, passDebugWorkDir);
+            debugWorkDir = false;
+         }
+         else if(!strcmp(app.argv[c], "-t"))
+            openAsText = true;
+         else if(!strcmp(app.argv[c], "-no-parsing"))
+            ide.noParsing = true;
+         else if(!strcmp(app.argv[c], "-debug-start"))
+            debugStart = true;
+         else if(!strcmp(app.argv[c], "-debug-work-dir"))
+            debugWorkDir = true;
+         else if(!strcmp(app.argv[c], "-@"))
+            passThrough = true;
+         else
          {
-            if(isProject && !FileExists(fullPath))
+            char fullPath[MAX_LOCATION];
+            char parentPath[MAX_LOCATION];
+            char ext[MAX_EXTENSION];
+            bool isProject;
+            FileAttribs dirAttribs;
+            GetWorkingDir(fullPath, MAX_LOCATION);
+            PathCat(fullPath, app.argv[c]);
+            StripLastDirectory(fullPath, parentPath);
+            GetExtension(app.argv[c], ext);
+            isProject = !openAsText && !strcmpi(ext, "epj");
+
+            if(isProject && c > (debugStart ? 2 : 1)) continue;
+
+            // Create directory for projects (only)
+            if(((dirAttribs = FileExists(parentPath)) && dirAttribs.isDirectory) || isProject)
             {
-               // The NewProject will handle directory creation
-               /*if(!dirAttribs.isDirectory)
-               {
-                  MakeDir(parentPath);
-                  dirAttribs = FileExists(parentPath);
-               }
-               if(dirAttribs.isDirectory)*/
+               if(isProject && !FileExists(fullPath))
                {
                   char name[MAX_LOCATION];
                   NewProjectDialog newProjectDialog;
@@ -2505,6 +3079,7 @@ class IDEWorkSpace : Window
                   newProjectDialog.locationEditBox.path = parentPath;
                   newProjectDialog.NotifyModifiedLocation(newProjectDialog.locationEditBox);
 
+                  incref newProjectDialog;
                   newProjectDialog.Modal();
                   if(projectView)
                   {
@@ -2512,14 +3087,30 @@ class IDEWorkSpace : Window
                      ide.UpdateRecentMenus();
                      settingsContainer.Save();
                   }
+                  delete newProjectDialog;
+                  // Open only one project
+                  break;
                }
-               // Open only one project
-               break;
+               else
+                  ide.OpenFile(fullPath, (app.argc == 2) * maximized, true, openAsText ? "txt" : null, yes, normal, false);
             }
-            else
-               ide.OpenFile(fullPath, (app.argc == 2) * maximized, true, null, yes, normal);
+            else if(strstr(fullPath, "http://") == fullPath)
+               ide.OpenFile(fullPath, (app.argc == 2) * maximized, true, openAsText ? "txt" : null, yes, normal, false);
          }
       }
+      if(passThrough && projectView && projectView.project && workspace)
+         workspace.commandLineArgs = passArgs;
+      if(passDebugWorkDir && projectView && projectView.project && workspace)
+      {
+         workspace.debugDir = passDebugWorkDir;
+         delete passDebugWorkDir;
+      }
+      if(debugStart)
+         ;//MenuDebugStart(debugStartResumeItem, 0); // <-- how TODO this without getting into the app.Wait lock
+
+      UpdateToolBarActiveConfigs(false);
+      UpdateToolBarActiveCompilers();
+      delete passArgs;
       return true;
    }
 
@@ -2538,7 +3129,7 @@ class IDEWorkSpace : Window
 #endif
    }
 
-   void SetPath(bool projectsDirs, CompilerConfig compiler, ProjectConfig config)
+   void SetPath(bool projectsDirs, CompilerConfig compiler, ProjectConfig config, int bitDepth)
    {
       int c, len, count;
       char * newList;
@@ -2567,7 +3158,7 @@ class IDEWorkSpace : Window
             //       To go with the initial state, e.g. when F5 was pressed,
             //       we nould need to keep a list of all project's active
             //       config upon startup.
-            targetDirExp = prj.GetTargetDir(compiler, prj.config);
+            targetDirExp = prj.GetTargetDir(compiler, prj.config, bitDepth);
 
             /*if(prj.config.targetType == sharedLibrary && prj.config.debug)
                cfg = prj.config;
@@ -2669,8 +3260,9 @@ class IDEWorkSpace : Window
       {
          if(!libPathExists[item])  // fstrcmp should be used
          {
-            newLibPaths.Add(item);
-            libPathExists[item] = true;
+            String s = CopyString(item);
+            newLibPaths.Add(s);
+            libPathExists[s] = true;
          }
       }
 
@@ -2687,8 +3279,9 @@ class IDEWorkSpace : Window
       {
          if(!libPathExists[oldPaths[c]])  // fstrcmp should be used
          {
-            newLibPaths.Add(oldPaths[c]);
-            libPathExists[oldPaths[c]] = true;
+            String s = CopyString(oldPaths[c]);
+            newLibPaths.Add(s);
+            libPathExists[s] = true;
          }
       }
 
@@ -2713,6 +3306,7 @@ class IDEWorkSpace : Window
 #endif*/
       delete newList;
 
+      newLibPaths.Free();
       delete newLibPaths;
       delete libPathExists;
 #endif
@@ -2749,29 +3343,29 @@ class IDEWorkSpace : Window
       {
          driverItems[c] = MenuItem { driversMenu, app.drivers[c], NotifySelect = NotifySelectDisplayDriver };
          driverItems[c].id = c;
-         driverItems[c].isRadio = true;         
+         driverItems[c].isRadio = true;
       }
 */
       driverItems = new MenuItem[2];
 #if defined(__unix__)
          driverItems[0] = MenuItem { driversMenu, "X", NotifySelect = NotifySelectDisplayDriver };
          driverItems[0].id = 0;
-         driverItems[0].isRadio = true;         
+         driverItems[0].isRadio = true;
 #else
          driverItems[0] = MenuItem { driversMenu, "GDI", NotifySelect = NotifySelectDisplayDriver };
          driverItems[0].id = 0;
-         driverItems[0].isRadio = true;         
+         driverItems[0].isRadio = true;
 #endif
          driverItems[1] = MenuItem { driversMenu, "OpenGL", NotifySelect = NotifySelectDisplayDriver };
          driverItems[1].id = 1;
-         driverItems[1].isRadio = true;         
+         driverItems[1].isRadio = true;
 
 /*      skinItems = new MenuItem[app.numSkins];
       for(c = 0; c < app.numSkins; c++)
       {
          skinItems[c] = MenuItem {skinsMenu, app.skins[c], NotifySelect = NotifySelectDisplaySkin };
          skinItems[c].id = c;
-         skinItems[c].isRadio = true;         
+         skinItems[c].isRadio = true;
       }
 */
       ideFileDialog.master = this;
@@ -2787,7 +3381,8 @@ class IDEWorkSpace : Window
       Menu fileMenu = menu.FindMenu($"File");
       Menu recentFiles = fileMenu.FindMenu($"Recent Files");
       Menu recentProjects = fileMenu.FindMenu($"Recent Projects");
-      char itemName[MAX_LOCATION + 4];
+      char * itemPath = new char[MAX_LOCATION];
+      char * itemName = new char[MAX_LOCATION+4];
       MenuItem item;
 
       recentFiles.Clear();
@@ -2795,8 +3390,9 @@ class IDEWorkSpace : Window
 
       for(recent : ideSettings.recentFiles)
       {
-         sprintf(itemName, "%d %s", 1 + c, recent);
-         MakeSystemPath(itemName);
+         strncpy(itemPath, recent, MAX_LOCATION); itemPath[MAX_LOCATION-1] = '\0';
+         MakeSystemPath(itemPath);
+         snprintf(itemName, MAX_LOCATION+4, "%d %s", 1 + c, itemPath); itemName[MAX_LOCATION+4-1] = '\0';
          recentFiles.AddDynamic(MenuItem { copyText = true, text = itemName, (Key)k1 + c, id = c, NotifySelect = ide.FileRecentFile }, ide, true);
          c++;
       }
@@ -2805,11 +3401,15 @@ class IDEWorkSpace : Window
       c = 0;
       for(recent : ideSettings.recentProjects)
       {
-         sprintf(itemName, "%d %s", 1 + c, recent);
-         MakeSystemPath(itemName);
+         strncpy(itemPath, recent, MAX_LOCATION); itemPath[MAX_LOCATION-1] = '\0';
+         MakeSystemPath(itemPath);
+         snprintf(itemName, MAX_LOCATION+4, "%d %s", 1 + c, itemPath); itemName[MAX_LOCATION+4-1] = '\0';
          recentProjects.AddDynamic(MenuItem { copyText = true, text = itemName, (Key)k1 + c, id = c, NotifySelect = ide.FileRecentProject }, ide, true);
          c++;
       }
+
+      delete itemPath;
+      delete itemName;
    }
 
    ~IDEWorkSpace()
@@ -2817,6 +3417,12 @@ class IDEWorkSpace : Window
       delete driverItems;
       delete skinItems;
       delete ideSettings;
+      if(documentor)
+      {
+         documentor.Puts("Quit\n");
+         documentor.Wait();
+         delete documentor;
+      }
    }
 }
 
@@ -2827,6 +3433,148 @@ void DestroyDir(char * path)
    delete fsi;
 }
 
+#if defined(__WIN32__)
+define sdkDirName = "Ecere SDK";
+#else
+define sdkDirName = "ecere";
+#endif
+
+void FindAndShellOpenInstalledFolder(char * name)
+{
+   char * p = new char[MAX_LOCATION];
+   char * v = new char[maxPathLen];
+   byte * tokens[256];
+   int c, numTokens;
+   Array<String> paths { };
+   p[0] = v[0] = '\0';
+   strncpy(p, settingsContainer.moduleLocation, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+   StripLastDirectory(p, p);
+   PathCat(p, name);
+   paths.Add(CopyString(p));
+#if defined(__WIN32__)
+   GetEnvironment("ECERE_SDK_SRC", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, name); paths.Add(CopyString(p));
+   }
+   GetEnvironment("AppData", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, name); paths.Add(CopyString(p));
+   }
+   GetEnvironment("ProgramFiles", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, name); paths.Add(CopyString(p));
+   }
+   GetEnvironment("ProgramFiles(x86)", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, name); paths.Add(CopyString(p));
+   }
+   GetEnvironment("SystemDrive", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, "Program Files"); PathCat(p, sdkDirName); PathCat(p, name); paths.Add(CopyString(p));
+   }
+#else
+   GetEnvironment("XDG_DATA_DIRS", v, maxPathLen);
+   numTokens = TokenizeWith(v, sizeof(tokens) / sizeof(byte *), tokens, ":", false);
+   for(c=0; c<numTokens; c++)
+   {
+      strncpy(p, tokens[c], MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, name); paths.Add(CopyString(p));
+   }
+#endif
+   for(path : paths)
+   {
+      strncpy(p, path, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      if(FileExists(p).isDirectory)
+      {
+         ShellOpen(p);
+         break;
+      }
+   }
+   delete p;
+   delete v;
+   paths.Free();
+   delete paths;
+}
+
+void FindAndShellOpenInstalledFile(char * subdir, char * name)
+{
+   char * p = new char[MAX_LOCATION];
+   char * v = new char[maxPathLen];
+   byte * tokens[256];
+   int c, numTokens;
+   Array<String> paths { };
+   p[0] = v[0] = '\0';
+   strncpy(p, settingsContainer.moduleLocation, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+   paths.Add(CopyString(p));
+   StripLastDirectory(p, p);
+   PathCat(p, subdir);
+   paths.Add(CopyString(p));
+#if defined(__WIN32__)
+   GetEnvironment("ECERE_SDK_SRC", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+   GetEnvironment("AppData", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+   GetEnvironment("ProgramFiles", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+   GetEnvironment("ProgramFiles(x86)", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+   GetEnvironment("SystemDrive", v, maxPathLen);
+   if(v[0])
+   {
+      strncpy(p, v, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, "Program Files"); PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+#else
+   GetEnvironment("XDG_DATA_DIRS", v, maxPathLen);
+   numTokens = TokenizeWith(v, sizeof(tokens) / sizeof(byte *), tokens, ":", false);
+   for(c=0; c<numTokens; c++)
+   {
+      strncpy(p, tokens[c], MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, sdkDirName); PathCat(p, subdir); paths.Add(CopyString(p));
+   }
+#endif
+   for(path : paths)
+   {
+      strncpy(p, path, MAX_LOCATION); p[MAX_LOCATION-1] = '\0';
+      PathCat(p, name);
+      if(FileExists(p).isFile)
+      {
+         ShellOpen(p);
+         break;
+      }
+   }
+   delete p;
+   delete v;
+   paths.Free();
+   delete paths;
+}
+
 class RecursiveDeleteFolderFSI : NormalFileSystemIterator
 {
    bool preserveRootFolder;
@@ -2850,18 +3598,30 @@ class IDEApp : GuiApplication
    // driver = "OpenGL";
    // skin = "Aqua";
    //skin = "TVision";
+
+   TempFile includeFile { };
+
    bool Init()
    {
+      char ext[MAX_EXTENSION];
       SetLoggingMode(stdOut, null);
       //SetLoggingMode(debug, null);
 
       settingsContainer.Load();
+      if(argc > 1 && !strcmpi(GetExtension(argv[1], ext), "3ds"))
+      {
+         app.driver = "OpenGL";
+         ide.driverItems[1].checked = true;
+      }
+      else
+      {
 #if defined(__unix__) || defined(__APPLE__)
-      app.driver = (ideSettings.displayDriver && !strcmp(ideSettings.displayDriver, "OpenGL")) ? ideSettings.displayDriver : "X";
+         app.driver = (ideSettings.displayDriver && !strcmp(ideSettings.displayDriver, "OpenGL")) ? ideSettings.displayDriver : "X";
 #else
-      app.driver = (ideSettings.displayDriver && !strcmp(ideSettings.displayDriver, "OpenGL")) ? ideSettings.displayDriver : "GDI";
+         app.driver = (ideSettings.displayDriver && !strcmp(ideSettings.displayDriver, "OpenGL")) ? ideSettings.displayDriver : "GDI";
 #endif
-      ide.driverItems[ideSettings.displayDriver && !strcmp(ideSettings.displayDriver,"OpenGL")].checked = true;
+         ide.driverItems[ideSettings.displayDriver && !strcmp(ideSettings.displayDriver,"OpenGL")].checked = true;
+      }
 
       SetInIDE(true);
 
@@ -2873,11 +3633,64 @@ class IDEApp : GuiApplication
          char fullPath[MAX_LOCATION];
          GetWorkingDir(fullPath, MAX_LOCATION);
          PathCat(fullPath, app.argv[c]);
-         ide.OpenFile(fullPath, (app.argc == 2) * maximized, true, null, yes, normal);
+         ide.OpenFile(fullPath, (app.argc == 2) * maximized, true, null, yes, normal, false);
       }
       */
+
+      if(!LoadIncludeFile())
+         PrintLn("error: unable to load :crossplatform.mk file inside ide binary.");
+
+      return true;
+   }
+
+   bool Cycle(bool idle)
+   {
+      if(ide.documentor)
+      {
+         if(ide.documentor.Peek())
+         {
+            char line[1024];
+            ide.documentor.GetLine(line, sizeof(line));
+            if(!strcmpi(line, "Exited"))
+            {
+               ide.documentor.CloseInput();
+               ide.documentor.CloseOutput();
+               ide.documentor.Wait();
+               delete ide.documentor;
+            }
+         }
+         if(ide.documentor && ide.documentor.eof)
+         {
+            ide.documentor.CloseInput();
+            ide.documentor.CloseOutput();
+            ide.documentor.Wait();
+            delete ide.documentor;
+         }
+      }
       return true;
    }
+
+   bool LoadIncludeFile()
+   {
+      bool result = false;
+      File include = FileOpen(":crossplatform.mk", read);
+      if(include)
+      {
+         File f = includeFile;
+         if(f)
+         {
+            for(; !include.Eof(); )
+            {
+               char buffer[4096];
+               int count = include.Read(buffer, 1, 4096);
+               f.Write(buffer, 1, count);
+            }
+            result = true;
+         }
+         delete include;
+      }
+      return result;
+   }
 }
 
 IDEMainFrame ideMainFrame { };